bkui-vue 0.0.1-beta.34 → 0.0.1-beta.340

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 (644) hide show
  1. package/dist/index.cjs.js +173 -0
  2. package/dist/index.esm.js +38318 -0
  3. package/dist/index.umd.js +173 -0
  4. package/dist/style.css +1 -5865
  5. package/dist/style.variable.css +1 -0
  6. package/lib/affix/affix.css +360 -0
  7. package/lib/affix/affix.d.ts +47 -0
  8. package/lib/affix/affix.less +5 -0
  9. package/lib/affix/affix.variable.css +836 -0
  10. package/lib/affix/index.d.ts +143 -0
  11. package/lib/affix/index.js +1 -0
  12. package/lib/alert/alert.css +369 -6
  13. package/lib/alert/alert.less +29 -20
  14. package/lib/alert/alert.variable.css +753 -7
  15. package/lib/alert/index.js +1 -0
  16. package/lib/animate-number/{animate-number.js → index.js} +1 -1
  17. package/lib/backtop/backtop.css +367 -2
  18. package/lib/backtop/backtop.d.ts +2 -2
  19. package/lib/backtop/backtop.less +8 -0
  20. package/lib/backtop/backtop.variable.css +752 -4
  21. package/lib/backtop/index.d.ts +7 -7
  22. package/lib/backtop/index.js +1 -0
  23. package/lib/badge/badge.css +388 -31
  24. package/lib/badge/badge.d.ts +28 -7
  25. package/lib/badge/badge.less +5 -6
  26. package/lib/badge/badge.variable.css +749 -9
  27. package/lib/badge/index.d.ts +68 -18
  28. package/lib/badge/index.js +1 -0
  29. package/lib/breadcrumb/breadcrumb.css +413 -5
  30. package/lib/breadcrumb/breadcrumb.variable.css +795 -4
  31. package/lib/breadcrumb/index.js +1 -0
  32. package/lib/button/button.css +534 -139
  33. package/lib/button/button.d.ts +28 -7
  34. package/lib/button/button.less +74 -41
  35. package/lib/button/button.variable.css +831 -53
  36. package/lib/button/index.d.ts +45 -12
  37. package/lib/button/index.js +1 -0
  38. package/lib/card/card.css +457 -5
  39. package/lib/card/card.d.ts +47 -6
  40. package/lib/card/card.less +50 -2
  41. package/lib/card/card.variable.css +840 -5
  42. package/lib/card/index.d.ts +113 -17
  43. package/lib/card/index.js +1 -0
  44. package/lib/cascader/cascader-panel.d.ts +100 -0
  45. package/lib/cascader/cascader.css +530 -0
  46. package/lib/cascader/cascader.d.ts +303 -0
  47. package/lib/cascader/cascader.less +196 -0
  48. package/lib/cascader/cascader.variable.css +1006 -0
  49. package/lib/cascader/index.d.ts +868 -0
  50. package/lib/cascader/index.js +1 -0
  51. package/lib/cascader/interface.d.ts +51 -0
  52. package/lib/cascader/node.d.ts +31 -0
  53. package/lib/cascader/store.d.ts +23 -0
  54. package/lib/checkbox/checkbox-group.d.ts +16 -0
  55. package/lib/checkbox/checkbox.css +408 -15
  56. package/lib/checkbox/checkbox.d.ts +16 -14
  57. package/lib/checkbox/checkbox.less +79 -31
  58. package/lib/checkbox/checkbox.variable.css +790 -14
  59. package/lib/checkbox/common.d.ts +3 -3
  60. package/lib/checkbox/index.d.ts +40 -23
  61. package/lib/checkbox/index.js +1 -0
  62. package/lib/checkbox/type.d.ts +2 -6
  63. package/lib/code-diff/code-diff.css +357 -0
  64. package/lib/code-diff/code-diff.d.ts +1 -1
  65. package/lib/code-diff/code-diff.variable.css +744 -4
  66. package/lib/code-diff/index.js +1 -0
  67. package/lib/collapse/collapse-panel.d.ts +72 -0
  68. package/lib/collapse/collapse.css +385 -12
  69. package/lib/collapse/collapse.d.ts +11 -52
  70. package/lib/collapse/collapse.less +54 -29
  71. package/lib/collapse/collapse.variable.css +861 -12
  72. package/lib/collapse/index.d.ts +113 -16
  73. package/lib/collapse/index.js +1 -0
  74. package/lib/collapse/props.d.ts +121 -0
  75. package/lib/collapse/utils.d.ts +11 -0
  76. package/lib/color-picker/color-picker.css +632 -0
  77. package/lib/color-picker/color-picker.d.ts +144 -0
  78. package/lib/color-picker/color-picker.less +325 -0
  79. package/lib/color-picker/color-picker.variable.css +1108 -0
  80. package/lib/color-picker/components/color-input.d.ts +42 -0
  81. package/lib/color-picker/components/hue-slider.d.ts +41 -0
  82. package/lib/color-picker/components/input-container.d.ts +42 -0
  83. package/lib/color-picker/components/recommend-colors.d.ts +51 -0
  84. package/lib/color-picker/components/saturation-panel.d.ts +41 -0
  85. package/lib/color-picker/index.d.ts +254 -0
  86. package/lib/color-picker/index.js +1 -0
  87. package/lib/color-picker/utils.d.ts +37 -0
  88. package/lib/components.d.ts +26 -7
  89. package/lib/components.js +1 -0
  90. package/lib/container/col.d.ts +51 -0
  91. package/lib/container/container.css +448 -0
  92. package/lib/container/container.d.ts +83 -0
  93. package/lib/container/container.less +20 -0
  94. package/lib/container/container.variable.css +924 -0
  95. package/lib/container/index.d.ts +223 -0
  96. package/lib/container/index.js +1 -0
  97. package/lib/container/row.d.ts +4 -0
  98. package/lib/date-picker/base/confirm.d.ts +74 -0
  99. package/lib/date-picker/base/date-table.d.ts +102 -0
  100. package/lib/date-picker/base/picker-dropdown.d.ts +73 -0
  101. package/lib/date-picker/base/time-spinner.d.ts +153 -0
  102. package/lib/date-picker/date-picker.css +403 -20
  103. package/lib/date-picker/date-picker.d.ts +44 -15
  104. package/lib/date-picker/date-picker.less +36 -3
  105. package/lib/date-picker/date-picker.variable.css +773 -7
  106. package/lib/date-picker/index.d.ts +110 -43
  107. package/lib/date-picker/index.js +1 -0
  108. package/lib/date-picker/interface.d.ts +11 -1
  109. package/lib/date-picker/panel/date-range.d.ts +309 -0
  110. package/lib/date-picker/panel/date.d.ts +206 -0
  111. package/lib/date-picker/panel/time-range.d.ts +489 -0
  112. package/lib/date-picker/panel/time.d.ts +448 -0
  113. package/lib/date-picker/props.d.ts +53 -3
  114. package/lib/date-picker/time-picker.d.ts +381 -0
  115. package/lib/date-picker/utils.d.ts +22 -2
  116. package/lib/dialog/dialog.css +144 -22
  117. package/lib/dialog/dialog.d.ts +275 -57
  118. package/lib/dialog/dialog.less +97 -23
  119. package/lib/dialog/dialog.variable.css +144 -22
  120. package/lib/dialog/index.d.ts +606 -126
  121. package/lib/dialog/index.js +1 -0
  122. package/lib/dialog/props.d.ts +138 -0
  123. package/lib/directives/ellipsis.d.ts +7 -0
  124. package/lib/directives/index.d.ts +1 -0
  125. package/lib/directives/index.js +2 -0
  126. package/lib/directives/{directives.js.LICENSE.txt → index.js.LICENSE.txt} +0 -0
  127. package/lib/directives/tooltips.d.ts +1 -1
  128. package/lib/dist.index.js +1 -0
  129. package/lib/divider/divider.css +360 -3
  130. package/lib/divider/divider.d.ts +1 -1
  131. package/lib/divider/divider.variable.css +744 -4
  132. package/lib/divider/index.d.ts +4 -4
  133. package/lib/divider/{divider.js → index.js} +0 -0
  134. package/lib/dropdown/const.d.ts +4 -0
  135. package/lib/dropdown/dropdown.css +370 -7
  136. package/lib/dropdown/dropdown.d.ts +42 -11
  137. package/lib/dropdown/dropdown.less +47 -34
  138. package/lib/dropdown/dropdown.variable.css +757 -11
  139. package/lib/dropdown/index.d.ts +71 -10
  140. package/lib/dropdown/index.js +1 -0
  141. package/lib/exception/exception.css +397 -14
  142. package/lib/exception/exception.d.ts +10 -3
  143. package/lib/exception/exception.less +59 -22
  144. package/lib/exception/exception.variable.css +784 -18
  145. package/lib/exception/index.d.ts +23 -8
  146. package/lib/exception/index.js +1 -0
  147. package/lib/exception/typings/index.d.ts +4 -0
  148. package/lib/fixed-navbar/fixed-navbar.css +361 -4
  149. package/lib/fixed-navbar/fixed-navbar.d.ts +16 -2
  150. package/lib/fixed-navbar/fixed-navbar.variable.css +744 -4
  151. package/lib/fixed-navbar/index.d.ts +40 -5
  152. package/lib/fixed-navbar/{fixed-navbar.js → index.js} +1 -1
  153. package/lib/form/compose-form-item.d.ts +16 -0
  154. package/lib/form/form-item.d.ts +30 -8
  155. package/lib/form/form.css +461 -14
  156. package/lib/form/form.d.ts +28 -11
  157. package/lib/form/form.less +153 -45
  158. package/lib/form/form.variable.css +937 -14
  159. package/lib/form/index.d.ts +99 -32
  160. package/lib/form/index.js +1 -0
  161. package/lib/form/type.d.ts +8 -7
  162. package/lib/form/utils.d.ts +2 -0
  163. package/lib/form/validator.d.ts +1 -0
  164. package/lib/icon/angle-double-down-line.js +1 -1
  165. package/lib/icon/angle-double-left-line.js +1 -1
  166. package/lib/icon/angle-double-left.js +1 -1
  167. package/lib/icon/angle-double-right-line.js +1 -1
  168. package/lib/icon/angle-double-right.js +1 -1
  169. package/lib/icon/angle-double-up-line.js +1 -1
  170. package/lib/icon/angle-down-fill.js +1 -1
  171. package/lib/icon/angle-down-line.js +1 -1
  172. package/lib/icon/angle-down.js +1 -1
  173. package/lib/icon/angle-left.js +1 -1
  174. package/lib/icon/angle-right.js +1 -1
  175. package/lib/icon/angle-up-fill.js +1 -1
  176. package/lib/icon/angle-up.js +1 -1
  177. package/lib/icon/archive-fill.d.ts +4 -0
  178. package/lib/icon/archive-fill.js +1 -0
  179. package/lib/icon/arrows-left.js +1 -1
  180. package/lib/icon/arrows-right.js +1 -1
  181. package/lib/icon/audio-fill.d.ts +4 -0
  182. package/lib/icon/audio-fill.js +1 -0
  183. package/lib/icon/bk.js +1 -1
  184. package/lib/icon/circle.js +1 -1
  185. package/lib/icon/close-line.d.ts +4 -0
  186. package/lib/icon/close-line.js +1 -0
  187. package/lib/icon/close.js +1 -1
  188. package/lib/icon/code.js +1 -1
  189. package/lib/icon/cog-shape.js +1 -1
  190. package/lib/icon/collapse-left.js +1 -1
  191. package/lib/icon/copy.js +1 -1
  192. package/lib/icon/data-shape.d.ts +4 -0
  193. package/lib/icon/data-shape.js +1 -0
  194. package/lib/icon/del.d.ts +4 -0
  195. package/lib/icon/del.js +1 -0
  196. package/lib/icon/doc-fill.d.ts +4 -0
  197. package/lib/icon/doc-fill.js +1 -0
  198. package/lib/icon/done.js +1 -1
  199. package/lib/icon/down-shape.js +1 -1
  200. package/lib/icon/down-small.js +1 -1
  201. package/lib/icon/edit-line.d.ts +4 -0
  202. package/lib/icon/edit-line.js +1 -0
  203. package/lib/icon/ellipsis.js +1 -1
  204. package/lib/icon/enlarge-line.d.ts +4 -0
  205. package/lib/icon/enlarge-line.js +1 -0
  206. package/lib/icon/error.js +1 -1
  207. package/lib/icon/excel-fill.d.ts +4 -0
  208. package/lib/icon/excel-fill.js +1 -0
  209. package/lib/icon/exclamation-circle-shape.d.ts +4 -0
  210. package/lib/icon/exclamation-circle-shape.js +1 -0
  211. package/lib/icon/eye.js +1 -1
  212. package/lib/icon/filliscreen-line.d.ts +4 -0
  213. package/lib/icon/filliscreen-line.js +1 -0
  214. package/lib/icon/folder-open.js +1 -1
  215. package/lib/icon/folder-shape-open.js +1 -1
  216. package/lib/icon/folder-shape.js +1 -1
  217. package/lib/icon/folder.js +1 -1
  218. package/lib/icon/funnel.d.ts +4 -0
  219. package/lib/icon/funnel.js +1 -0
  220. package/lib/icon/help-document-fill.js +1 -1
  221. package/lib/icon/help-fill.js +1 -1
  222. package/lib/icon/help.js +1 -1
  223. package/lib/icon/image-fill.d.ts +4 -0
  224. package/lib/icon/img-error.d.ts +4 -0
  225. package/lib/icon/img-error.js +1 -0
  226. package/lib/icon/img-placehoulder.d.ts +4 -0
  227. package/lib/icon/img-placehoulder.js +1 -0
  228. package/lib/icon/index.d.ts +27 -1
  229. package/lib/icon/index.js +1 -0
  230. package/lib/icon/info-line.js +1 -1
  231. package/lib/icon/info.js +1 -1
  232. package/lib/icon/left-shape.js +1 -1
  233. package/lib/icon/left-turn-line.d.ts +4 -0
  234. package/lib/icon/left-turn-line.js +1 -0
  235. package/lib/icon/narrow-line.d.ts +4 -0
  236. package/lib/icon/narrow-line.js +1 -0
  237. package/lib/icon/original .d.ts +4 -0
  238. package/lib/icon/original .js +1 -0
  239. package/lib/icon/pdf-fill.d.ts +4 -0
  240. package/lib/icon/pdf-fill.js +1 -0
  241. package/lib/icon/play-shape.js +1 -1
  242. package/lib/icon/plus.js +1 -1
  243. package/lib/icon/ppt-fill.d.ts +4 -0
  244. package/lib/icon/ppt-fill.js +1 -0
  245. package/lib/icon/qq.js +1 -1
  246. package/lib/icon/right-shape.js +1 -1
  247. package/lib/icon/right-turn-line.d.ts +4 -0
  248. package/lib/icon/right-turn-line.js +1 -0
  249. package/lib/icon/search.js +1 -1
  250. package/lib/icon/share.js +1 -1
  251. package/lib/icon/spinner.js +1 -1
  252. package/lib/icon/success.js +1 -1
  253. package/lib/icon/switcher-loading.js +1 -1
  254. package/lib/icon/text-file.js +1 -1
  255. package/lib/icon/text-fill.d.ts +4 -0
  256. package/lib/icon/text-fill.js +1 -0
  257. package/lib/icon/transfer.d.ts +4 -0
  258. package/lib/icon/transfer.js +1 -0
  259. package/lib/icon/tree-application-shape.js +1 -1
  260. package/lib/icon/unfull-screen.d.ts +4 -0
  261. package/lib/icon/unfull-screen.js +1 -0
  262. package/lib/icon/unvisible.js +1 -1
  263. package/lib/icon/up-shape.js +1 -1
  264. package/lib/icon/upload.d.ts +4 -0
  265. package/lib/icon/upload.js +1 -0
  266. package/lib/icon/video-fill.d.ts +4 -0
  267. package/lib/icon/video-fill.js +1 -0
  268. package/lib/icon/warn.js +1 -1
  269. package/lib/icon/weixin.js +1 -1
  270. package/lib/image/image-viewer.css +142 -0
  271. package/lib/image/image-viewer.d.ts +73 -0
  272. package/lib/image/image-viewer.less +168 -0
  273. package/lib/image/image-viewer.variable.css +142 -0
  274. package/lib/image/image.css +37 -0
  275. package/lib/image/image.d.ts +93 -0
  276. package/lib/image/image.less +44 -0
  277. package/lib/image/image.variable.css +37 -0
  278. package/lib/image/index.d.ts +246 -0
  279. package/lib/image/index.js +1 -0
  280. package/lib/image/props.d.ts +71 -0
  281. package/lib/index.d.ts +1 -1
  282. package/lib/index.js +1 -0
  283. package/lib/info-box/index.d.ts +6 -0
  284. package/lib/info-box/index.js +1 -0
  285. package/lib/info-box/info-box.css +37 -0
  286. package/lib/info-box/info-box.d.ts +26 -0
  287. package/lib/info-box/info-box.less +50 -0
  288. package/lib/info-box/info-box.variable.css +37 -0
  289. package/lib/input/index.d.ts +171 -60
  290. package/lib/input/index.js +1 -0
  291. package/lib/input/input.css +600 -41
  292. package/lib/input/input.d.ts +116 -16
  293. package/lib/input/input.less +158 -17
  294. package/lib/input/input.variable.css +960 -18
  295. package/lib/link/index.d.ts +4 -4
  296. package/lib/link/{link.js → index.js} +0 -0
  297. package/lib/link/link.css +381 -24
  298. package/lib/link/link.d.ts +1 -1
  299. package/lib/link/link.less +16 -14
  300. package/lib/link/link.variable.css +756 -16
  301. package/lib/loading/index.d.ts +81 -4
  302. package/lib/loading/index.js +1 -0
  303. package/lib/loading/loading.css +450 -50
  304. package/lib/loading/loading.d.ts +55 -1
  305. package/lib/loading/loading.less +17 -22
  306. package/lib/loading/loading.variable.css +821 -38
  307. package/lib/menu/index.d.ts +16 -24
  308. package/lib/menu/index.js +1 -0
  309. package/lib/menu/menu.css +426 -18
  310. package/lib/menu/menu.d.ts +7 -16
  311. package/lib/menu/menu.variable.css +795 -4
  312. package/lib/menu/submenu.css +357 -0
  313. package/lib/menu/submenu.variable.css +744 -4
  314. package/lib/message/index.js +1 -0
  315. package/lib/message/message.css +397 -19
  316. package/lib/message/message.less +28 -3
  317. package/lib/message/message.variable.css +769 -8
  318. package/lib/message/messageConstructor.d.ts +43 -7
  319. package/lib/modal/index.d.ts +508 -78
  320. package/lib/modal/index.js +1 -0
  321. package/lib/modal/modal.css +63 -1
  322. package/lib/modal/modal.d.ts +194 -30
  323. package/lib/modal/modal.less +36 -1
  324. package/lib/modal/modal.variable.css +63 -1
  325. package/lib/modal/props.mixin.d.ts +82 -13
  326. package/lib/navigation/index.d.ts +310 -1
  327. package/lib/navigation/index.js +1 -0
  328. package/lib/navigation/navigation.css +360 -3
  329. package/lib/navigation/navigation.d.ts +10 -1
  330. package/lib/navigation/navigation.less +1 -1
  331. package/lib/navigation/navigation.variable.css +745 -5
  332. package/lib/notify/index.js +1 -0
  333. package/lib/notify/notify.css +386 -9
  334. package/lib/notify/notify.less +27 -4
  335. package/lib/notify/notify.variable.css +768 -8
  336. package/lib/notify/notifyConstructor.d.ts +51 -7
  337. package/lib/pagination/index.d.ts +28 -13
  338. package/lib/pagination/index.js +1 -0
  339. package/lib/pagination/pagination.css +412 -29
  340. package/lib/pagination/pagination.d.ts +14 -4
  341. package/lib/pagination/pagination.less +59 -30
  342. package/lib/pagination/pagination.variable.css +798 -32
  343. package/lib/plugin-popover/index.d.ts +27 -0
  344. package/lib/plugin-popover/index.js +1 -0
  345. package/lib/plugins/index.d.ts +1 -0
  346. package/lib/plugins/index.js +1 -0
  347. package/lib/popover/arrow.d.ts +2 -0
  348. package/lib/popover/const.d.ts +16 -0
  349. package/lib/popover/content.d.ts +24 -0
  350. package/lib/popover/index.d.ts +357 -75
  351. package/lib/popover/index.js +1 -0
  352. package/lib/popover/plugin-popover.d.ts +12 -0
  353. package/lib/popover/popover.css +364 -47
  354. package/lib/popover/popover.d.ts +155 -33
  355. package/lib/popover/popover.less +19 -66
  356. package/lib/popover/popover.variable.css +751 -51
  357. package/lib/popover/props.d.ts +75 -25
  358. package/lib/popover/reference.d.ts +2 -0
  359. package/lib/popover/root.d.ts +16 -0
  360. package/lib/popover/use-floating.d.ts +31 -0
  361. package/lib/popover/use-platform.d.ts +30 -0
  362. package/lib/popover/use-popover-init.d.ts +22 -0
  363. package/lib/popover/use-popper-id.d.ts +6 -0
  364. package/lib/popover/utils.d.ts +2 -0
  365. package/lib/popover2/index.d.ts +44 -0
  366. package/lib/popover2/index.js +1 -0
  367. package/lib/popover2/popover.d.ts +2 -0
  368. package/lib/preset.js +1 -0
  369. package/lib/process/index.d.ts +9 -9
  370. package/lib/process/index.js +1 -0
  371. package/lib/process/process.css +381 -11
  372. package/lib/process/process.d.ts +2 -2
  373. package/lib/process/process.less +17 -0
  374. package/lib/process/process.variable.css +757 -4
  375. package/lib/progress/index.d.ts +10 -10
  376. package/lib/progress/index.js +1 -0
  377. package/lib/progress/progress.css +412 -4
  378. package/lib/progress/progress.d.ts +3 -3
  379. package/lib/progress/progress.variable.css +795 -4
  380. package/lib/radio/common.d.ts +5 -5
  381. package/lib/radio/index.d.ts +29 -18
  382. package/lib/radio/index.js +1 -0
  383. package/lib/radio/radio-button.d.ts +7 -8
  384. package/lib/radio/radio-group.d.ts +16 -0
  385. package/lib/radio/radio.css +418 -60
  386. package/lib/radio/radio.d.ts +4 -4
  387. package/lib/radio/radio.less +177 -173
  388. package/lib/radio/radio.variable.css +795 -54
  389. package/lib/radio/type.d.ts +9 -4
  390. package/lib/rate/index.d.ts +24 -1
  391. package/lib/rate/index.js +1 -0
  392. package/lib/rate/rate.d.ts +11 -0
  393. package/lib/rate/star.d.ts +1 -1
  394. package/lib/resize-layout/index.d.ts +7 -7
  395. package/lib/resize-layout/index.js +1 -0
  396. package/lib/resize-layout/resize-layout.css +360 -15
  397. package/lib/resize-layout/resize-layout.d.ts +2 -2
  398. package/lib/resize-layout/resize-layout.less +3 -19
  399. package/lib/resize-layout/resize-layout.variable.css +747 -19
  400. package/lib/search-select/index.d.ts +681 -0
  401. package/lib/search-select/index.js +1 -0
  402. package/lib/search-select/input.d.ts +85 -0
  403. package/lib/search-select/menu.d.ts +83 -0
  404. package/lib/search-select/search-select.css +780 -0
  405. package/lib/search-select/search-select.d.ts +273 -0
  406. package/lib/search-select/search-select.less +375 -0
  407. package/lib/search-select/search-select.variable.css +1256 -0
  408. package/lib/search-select/selected.d.ts +137 -0
  409. package/lib/search-select/utils.d.ts +79 -0
  410. package/lib/select/common.d.ts +5 -12
  411. package/lib/select/index.d.ts +1188 -564
  412. package/lib/select/index.js +1 -0
  413. package/lib/select/option.d.ts +16 -4
  414. package/lib/select/optionGroup.d.ts +1 -1
  415. package/lib/select/select.css +553 -121
  416. package/lib/select/select.d.ts +447 -115
  417. package/lib/select/select.less +317 -197
  418. package/lib/select/select.variable.css +931 -116
  419. package/lib/select/selectTagInput.d.ts +93 -0
  420. package/lib/select/type.d.ts +21 -13
  421. package/lib/shared/dom.d.ts +3 -0
  422. package/lib/shared/hooks/use-form-item.d.ts +2 -0
  423. package/lib/shared/hooks/use-form.d.ts +2 -0
  424. package/lib/shared/index.d.ts +23 -0
  425. package/lib/shared/index.js +1 -0
  426. package/lib/shared/mask-manager.d.ts +6 -2
  427. package/lib/shared/pop-manager.d.ts +8 -4
  428. package/lib/shared/popover.d.ts +6 -2
  429. package/lib/shared/token.d.ts +4 -0
  430. package/lib/shared/utils.d.ts +13 -0
  431. package/lib/shared/vue-types.d.ts +4 -0
  432. package/lib/sideslider/index.d.ts +387 -72
  433. package/lib/sideslider/index.js +1 -0
  434. package/lib/sideslider/sideslider.css +413 -11
  435. package/lib/sideslider/sideslider.d.ts +180 -32
  436. package/lib/sideslider/sideslider.less +72 -13
  437. package/lib/sideslider/sideslider.variable.css +799 -14
  438. package/lib/slider/index.d.ts +414 -1
  439. package/lib/slider/index.js +1 -0
  440. package/lib/slider/slider.css +361 -4
  441. package/lib/slider/slider.d.ts +3 -3
  442. package/lib/slider/slider.variable.css +744 -4
  443. package/lib/steps/index.d.ts +4 -4
  444. package/lib/steps/index.js +1 -0
  445. package/lib/steps/steps.css +405 -36
  446. package/lib/steps/steps.d.ts +1 -1
  447. package/lib/steps/steps.less +24 -3
  448. package/lib/steps/steps.variable.css +759 -7
  449. package/lib/styles/index.d.ts +7 -1
  450. package/lib/styles/mixins/clearfix.css +8 -0
  451. package/lib/styles/mixins/clearfix.less +10 -0
  452. package/lib/styles/mixins/clearfix.variable.css +8 -0
  453. package/lib/styles/mixins/mixins.css +51 -0
  454. package/lib/styles/mixins/mixins.less +2 -0
  455. package/lib/styles/mixins/mixins.variable.css +51 -0
  456. package/lib/styles/mixins/scroll.css +374 -0
  457. package/lib/styles/mixins/scroll.less +22 -0
  458. package/lib/styles/mixins/scroll.variable.css +850 -0
  459. package/lib/styles/reset.css +36 -0
  460. package/lib/styles/reset.less +26 -0
  461. package/lib/styles/reset.variable.css +36 -0
  462. package/lib/styles/themes/themes.css +357 -0
  463. package/lib/styles/themes/themes.less +622 -90
  464. package/lib/styles/themes/themes.variable.css +357 -0
  465. package/lib/swiper/index.js +1 -0
  466. package/lib/switcher/index.d.ts +34 -11
  467. package/lib/switcher/index.js +1 -0
  468. package/lib/switcher/switcher.css +431 -23
  469. package/lib/switcher/switcher.d.ts +15 -4
  470. package/lib/switcher/switcher.less +5 -26
  471. package/lib/switcher/switcher.variable.css +801 -10
  472. package/lib/tab/index.d.ts +22 -25
  473. package/lib/tab/index.js +1 -0
  474. package/lib/tab/props.d.ts +3 -0
  475. package/lib/tab/tab-nav.d.ts +11 -7
  476. package/lib/tab/tab-panel.d.ts +4 -4
  477. package/lib/tab/tab.css +400 -20
  478. package/lib/tab/tab.d.ts +5 -6
  479. package/lib/tab/tab.less +29 -18
  480. package/lib/tab/tab.variable.css +767 -4
  481. package/lib/table/components/index.d.ts +3 -0
  482. package/lib/table/components/table-cell.d.ts +38 -0
  483. package/lib/table/components/table-column.d.ts +142 -0
  484. package/lib/table/components/table-row.d.ts +2 -0
  485. package/lib/table/const.d.ts +109 -1
  486. package/lib/table/index.d.ts +764 -30
  487. package/lib/table/index.js +1 -0
  488. package/lib/table/plugins/body-empty.d.ts +40 -0
  489. package/lib/table/plugins/col-group.d.ts +38 -0
  490. package/lib/table/plugins/common.d.ts +6 -0
  491. package/lib/table/plugins/head-filter.css +429 -0
  492. package/lib/table/plugins/head-filter.d.ts +26 -0
  493. package/lib/table/plugins/head-filter.less +93 -0
  494. package/lib/table/plugins/head-filter.variable.css +905 -0
  495. package/lib/table/plugins/head-sort.css +382 -0
  496. package/lib/table/plugins/head-sort.d.ts +22 -0
  497. package/lib/table/plugins/head-sort.less +31 -0
  498. package/lib/table/plugins/head-sort.variable.css +858 -0
  499. package/lib/table/plugins/index.d.ts +5 -0
  500. package/lib/table/plugins/settings.css +502 -0
  501. package/lib/table/plugins/settings.d.ts +37 -0
  502. package/lib/table/plugins/settings.less +179 -0
  503. package/lib/table/plugins/settings.variable.css +978 -0
  504. package/lib/table/plugins/use-active-columns.d.ts +16 -0
  505. package/lib/table/plugins/use-column-resize.d.ts +15 -0
  506. package/lib/table/plugins/use-fixed-column.d.ts +12 -0
  507. package/lib/table/plugins/use-pagination.d.ts +16 -0
  508. package/lib/table/plugins/use-scroll-loading.d.ts +5 -0
  509. package/lib/table/props.d.ts +282 -6
  510. package/lib/table/render.d.ts +43 -3
  511. package/lib/table/table.css +1540 -29
  512. package/lib/table/table.d.ts +191 -12
  513. package/lib/table/table.less +254 -25
  514. package/lib/table/table.variable.css +2341 -90
  515. package/lib/table/use-column.d.ts +11 -0
  516. package/lib/table/use-common.d.ts +97 -0
  517. package/lib/table/utils.d.ts +65 -9
  518. package/lib/table-column/index.d.ts +336 -0
  519. package/lib/table-column/index.js +1 -0
  520. package/lib/tag/index.d.ts +7 -7
  521. package/lib/tag/index.js +1 -0
  522. package/lib/tag/tag.css +408 -18
  523. package/lib/tag/tag.d.ts +2 -2
  524. package/lib/tag/tag.less +46 -10
  525. package/lib/tag/tag.variable.css +790 -17
  526. package/lib/tag-input/common.d.ts +13 -1
  527. package/lib/tag-input/index.d.ts +1274 -1
  528. package/lib/tag-input/index.js +1 -0
  529. package/lib/tag-input/list-tag-render.d.ts +0 -3
  530. package/lib/tag-input/tag-input.css +399 -41
  531. package/lib/tag-input/tag-input.d.ts +224 -30
  532. package/lib/tag-input/tag-input.less +102 -101
  533. package/lib/tag-input/tag-input.variable.css +768 -27
  534. package/lib/tag-input/tag-props.d.ts +106 -5
  535. package/lib/tag-input/tag-render.d.ts +0 -3
  536. package/lib/time-picker/index.d.ts +904 -0
  537. package/lib/time-picker/index.js +1 -0
  538. package/lib/time-picker/time-picker.css +572 -0
  539. package/lib/time-picker/time-picker.less +260 -0
  540. package/lib/time-picker/time-picker.variable.css +1048 -0
  541. package/lib/timeline/index.d.ts +6 -6
  542. package/lib/timeline/index.js +1 -0
  543. package/lib/timeline/timeline.css +392 -28
  544. package/lib/timeline/timeline.d.ts +1 -1
  545. package/lib/timeline/timeline.less +22 -9
  546. package/lib/timeline/timeline.variable.css +760 -13
  547. package/lib/transfer/const.d.ts +5 -0
  548. package/lib/transfer/index.d.ts +164 -150
  549. package/lib/transfer/index.js +1 -0
  550. package/lib/transfer/props.d.ts +54 -0
  551. package/lib/transfer/transfer.css +451 -91
  552. package/lib/transfer/transfer.d.ts +70 -95
  553. package/lib/transfer/transfer.less +93 -113
  554. package/lib/transfer/transfer.variable.css +838 -95
  555. package/lib/tree/constant.d.ts +57 -0
  556. package/lib/tree/index.d.ts +417 -57
  557. package/lib/tree/index.js +1 -0
  558. package/lib/tree/props.d.ts +124 -0
  559. package/lib/tree/tree.css +534 -9
  560. package/lib/tree/tree.d.ts +190 -18
  561. package/lib/tree/tree.less +54 -3
  562. package/lib/tree/tree.variable.css +1278 -13
  563. package/lib/tree/use-empty.d.ts +6 -0
  564. package/lib/tree/use-node-action.d.ts +12 -0
  565. package/lib/tree/use-node-async.d.ts +5 -0
  566. package/lib/tree/use-node-attribute.d.ts +33 -0
  567. package/lib/tree/use-node-drag.d.ts +3 -0
  568. package/lib/tree/use-search.d.ts +11 -0
  569. package/lib/tree/use-tree-init.d.ts +15 -0
  570. package/lib/tree/util.d.ts +4 -6
  571. package/lib/upload/index.d.ts +566 -0
  572. package/lib/upload/index.js +1 -0
  573. package/lib/upload/props.d.ts +111 -0
  574. package/lib/upload/upload-list.d.ts +47 -0
  575. package/lib/upload/upload-trigger.d.ts +51 -0
  576. package/lib/upload/upload.css +782 -0
  577. package/lib/upload/upload.d.ts +246 -0
  578. package/lib/upload/upload.less +464 -0
  579. package/lib/upload/upload.type.d.ts +78 -0
  580. package/lib/upload/upload.variable.css +1258 -0
  581. package/lib/upload/use-ajax-upload.d.ts +3 -0
  582. package/lib/upload/use-file-handler.d.ts +44 -0
  583. package/lib/virtual-render/index.d.ts +27 -4
  584. package/lib/virtual-render/index.js +1 -0
  585. package/lib/virtual-render/props.d.ts +10 -0
  586. package/lib/virtual-render/use-tag-render.d.ts +7 -0
  587. package/lib/virtual-render/v-virtual-render.d.ts +0 -1
  588. package/lib/virtual-render/virtual-render.css +374 -24
  589. package/lib/virtual-render/virtual-render.d.ts +12 -1
  590. package/lib/virtual-render/virtual-render.less +2 -31
  591. package/lib/virtual-render/virtual-render.variable.css +1207 -24
  592. package/lib/volar.components.d.ts +101 -0
  593. package/package.json +61 -42
  594. package/README_EN.md +0 -93
  595. package/dist/bkui-vue.cjs.js +0 -20212
  596. package/dist/bkui-vue.esm.js +0 -20159
  597. package/dist/bkui-vue.umd.js +0 -20215
  598. package/lib/alert/alert.js +0 -1
  599. package/lib/backtop/backtop.js +0 -1
  600. package/lib/badge/badge.js +0 -1
  601. package/lib/breadcrumb/breadcrumb.js +0 -1
  602. package/lib/button/button.js +0 -1
  603. package/lib/card/card.js +0 -1
  604. package/lib/checkbox/checkbox.js +0 -1
  605. package/lib/code-diff/code-diff.js +0 -1
  606. package/lib/collapse/collapse.js +0 -1
  607. package/lib/date-picker/date-picker.js +0 -1
  608. package/lib/dialog/dialog.js +0 -1
  609. package/lib/directives/directives.js +0 -2
  610. package/lib/dropdown/dropdown.js +0 -1
  611. package/lib/exception/exception.js +0 -1
  612. package/lib/form/common.d.ts +0 -3
  613. package/lib/form/form.js +0 -1
  614. package/lib/icon/icon.js +0 -1
  615. package/lib/input/input.js +0 -1
  616. package/lib/loading/loading.js +0 -1
  617. package/lib/menu/menu.js +0 -1
  618. package/lib/message/message.js +0 -1
  619. package/lib/modal/modal.js +0 -1
  620. package/lib/navigation/navigation.js +0 -1
  621. package/lib/notify/notify.js +0 -1
  622. package/lib/pagination/pagination.js +0 -1
  623. package/lib/popover/popover.js +0 -1
  624. package/lib/process/process.js +0 -1
  625. package/lib/progress/progress.js +0 -1
  626. package/lib/radio/radio.js +0 -1
  627. package/lib/rate/rate.js +0 -1
  628. package/lib/resize-layout/resize-layout.js +0 -1
  629. package/lib/select/select.js +0 -1
  630. package/lib/shared/shared.js +0 -1
  631. package/lib/sideslider/sideslider.js +0 -1
  632. package/lib/slider/slider.js +0 -1
  633. package/lib/steps/steps.js +0 -1
  634. package/lib/swiper/swiper.js +0 -1
  635. package/lib/switcher/switcher.js +0 -1
  636. package/lib/tab/tab.js +0 -1
  637. package/lib/table/table.js +0 -1
  638. package/lib/tag/tag.js +0 -1
  639. package/lib/tag-input/tag-input.js +0 -1
  640. package/lib/timeline/timeline.js +0 -1
  641. package/lib/transfer/transfer.js +0 -1
  642. package/lib/tree/tree.js +0 -1
  643. package/lib/use-form.d.ts +0 -3
  644. package/lib/virtual-render/virtual-render.js +0 -1
@@ -0,0 +1,173 @@
1
+ (function(Me,a){typeof exports=="object"&&typeof module!="undefined"?a(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],a):(Me=typeof globalThis!="undefined"?globalThis:Me||self,a(Me.bkuiVue={},Me.Vue))})(this,function(Me,a){"use strict";var Jk=Object.defineProperty,Qk=Object.defineProperties;var Rk=Object.getOwnPropertyDescriptors;var Lo=Object.getOwnPropertySymbols;var Yg=Object.prototype.hasOwnProperty,Ug=Object.prototype.propertyIsEnumerable;var Fd=(Me,a,Tt)=>a in Me?Jk(Me,a,{enumerable:!0,configurable:!0,writable:!0,value:Tt}):Me[a]=Tt,Y=(Me,a)=>{for(var Tt in a||(a={}))Yg.call(a,Tt)&&Fd(Me,Tt,a[Tt]);if(Lo)for(var Tt of Lo(a))Ug.call(a,Tt)&&Fd(Me,Tt,a[Tt]);return Me},xe=(Me,a)=>Qk(Me,Rk(a));var Da=(Me,a)=>{var Tt={};for(var Qn in Me)Yg.call(Me,Qn)&&a.indexOf(Qn)<0&&(Tt[Qn]=Me[Qn]);if(Me!=null&&Lo)for(var Qn of Lo(Me))a.indexOf(Qn)<0&&Ug.call(Me,Qn)&&(Tt[Qn]=Me[Qn]);return Tt};var mr=(Me,a,Tt)=>(Fd(Me,typeof a!="symbol"?a+"":a,Tt),Tt);var Tt="",Qn="",_k="",Wk="",Hk="",Bk="",Fk="",Gk="",Zk="",Yk="",Uk="",$k="",Kk="",Xk="",qk="",eT="",tT="",nT="",iT="",aT="",rT="",sT="",lT="",oT="",cT="",uT="",dT="",fT="",hT="",gT="",mT="",pT="",bT="",yT="",CT="",vT="",wT="",MT="",IT="",NT="",LT="",kT="",TT="",xT="",ST="",DT="",jT="",zT="",OT="",ET="",PT="",AT="",VT="";const Ms={bottom:0,content:1,navi:100,fullScreen:1e3,modal:3e3,plugins:8e3,message:1e4,popper:99999};class $g{constructor(){this.storageLayerIndexValue={},this.copyDefaultValue()}getNextIndex(t){return Object.prototype.hasOwnProperty.call(this.storageLayerIndexValue,t)?(this.storageLayerIndexValue[t]=this.storageLayerIndexValue[t]+1,this.storageLayerIndexValue[t]):(this.storageLayerIndexValue.modal=this.storageLayerIndexValue.modal+1,this.storageLayerIndexValue.modal)}getModalNextIndex(){return this.getNextIndex("modal")}getMessageNextIndex(){return this.getNextIndex("message")}getFullScreenNextIndex(){return this.getNextIndex("fullScreen")}getNaviNextIndex(){return this.getNextIndex("navi")}getPopperIndex(){return Ms.popper}setDefaultZIndex(t){Object.keys(t||{}).forEach(n=>{Object.prototype.hasOwnProperty.call(this.storageLayerIndexValue.__proto__,n)&&Object.assign(this.storageLayerIndexValue.__proto__,{[n]:t[n]})}),this.copyDefaultValue()}resetZIndex(t){Object.keys(t||{}).forEach(n=>{Object.prototype.hasOwnProperty.call(this.storageLayerIndexValue,n)&&Object.assign(this.storageLayerIndexValue,{[n]:t[n]})})}copyDefaultValue(){const t=Object.keys(Ms).reduce((n,i)=>Object.assign(n,{[i]:{value:Ms[i],writable:!0,configurable:!0}}),{});this.storageLayerIndexValue=Object.create(Ms,t)}}const Rn=new $g;var pr=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},Is={exports:{}},Gd=typeof crypto!="undefined"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto!="undefined"&&typeof window.msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto);if(Gd){var Zd=new Uint8Array(16);Is.exports=function(){return Gd(Zd),Zd}}else{var Yd=new Array(16);Is.exports=function(){for(var t=0,n;t<16;t++)(t&3)===0&&(n=Math.random()*4294967296),Yd[t]=n>>>((t&3)<<3)&255;return Yd}}for(var Ud=[],Ns=0;Ns<256;++Ns)Ud[Ns]=(Ns+256).toString(16).substr(1);function Kg(e,t){var n=t||0,i=Ud;return[i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],"-",i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]],i[e[n++]]].join("")}var $d=Kg,Xg=Is.exports,qg=$d,Kd,ko,To=0,xo=0;function e1(e,t,n){var i=t&&n||0,s=t||[];e=e||{};var o=e.node||Kd,c=e.clockseq!==void 0?e.clockseq:ko;if(o==null||c==null){var d=Xg();o==null&&(o=Kd=[d[0]|1,d[1],d[2],d[3],d[4],d[5]]),c==null&&(c=ko=(d[6]<<8|d[7])&16383)}var u=e.msecs!==void 0?e.msecs:new Date().getTime(),f=e.nsecs!==void 0?e.nsecs:xo+1,m=u-To+(f-xo)/1e4;if(m<0&&e.clockseq===void 0&&(c=c+1&16383),(m<0||u>To)&&e.nsecs===void 0&&(f=0),f>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");To=u,xo=f,ko=c,u+=122192928e5;var p=((u&268435455)*1e4+f)%4294967296;s[i++]=p>>>24&255,s[i++]=p>>>16&255,s[i++]=p>>>8&255,s[i++]=p&255;var y=u/4294967296*1e4&268435455;s[i++]=y>>>8&255,s[i++]=y&255,s[i++]=y>>>24&15|16,s[i++]=y>>>16&255,s[i++]=c>>>8|128,s[i++]=c&255;for(var b=0;b<6;++b)s[i+b]=o[b];return t||qg(s)}var t1=e1,n1=Is.exports,i1=$d;function a1(e,t,n){var i=t&&n||0;typeof e=="string"&&(t=e==="binary"?new Array(16):null,e=null),e=e||{};var s=e.random||(e.rng||n1)();if(s[6]=s[6]&15|64,s[8]=s[8]&63|128,t)for(var o=0;o<16;++o)t[i+o]=s[o];return t||i1(s)}var r1=a1,s1=t1,Xd=r1,So=Xd;So.v1=s1,So.v4=Xd;var ki=So,Ft="top",hn="bottom",gn="right",Gt="left",Do="auto",br=[Ft,hn,gn,Gt],ja="start",yr="end",l1="clippingParents",qd="viewport",Cr="popper",o1="reference",ef=br.reduce(function(e,t){return e.concat([t+"-"+ja,t+"-"+yr])},[]),tf=[].concat(br,[Do]).reduce(function(e,t){return e.concat([t,t+"-"+ja,t+"-"+yr])},[]),c1="beforeRead",u1="read",d1="afterRead",f1="beforeMain",h1="main",g1="afterMain",m1="beforeWrite",p1="write",b1="afterWrite",y1=[c1,u1,d1,f1,h1,g1,m1,p1,b1];function _n(e){return e?(e.nodeName||"").toLowerCase():null}function Sn(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function za(e){var t=Sn(e).Element;return e instanceof t||e instanceof Element}function mn(e){var t=Sn(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function jo(e){if(typeof ShadowRoot=="undefined")return!1;var t=Sn(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function C1(e){var t=e.state;Object.keys(t.elements).forEach(function(n){var i=t.styles[n]||{},s=t.attributes[n]||{},o=t.elements[n];!mn(o)||!_n(o)||(Object.assign(o.style,i),Object.keys(s).forEach(function(c){var d=s[c];d===!1?o.removeAttribute(c):o.setAttribute(c,d===!0?"":d)}))})}function v1(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach(function(i){var s=t.elements[i],o=t.attributes[i]||{},c=Object.keys(t.styles.hasOwnProperty(i)?t.styles[i]:n[i]),d=c.reduce(function(u,f){return u[f]="",u},{});!mn(s)||!_n(s)||(Object.assign(s.style,d),Object.keys(o).forEach(function(u){s.removeAttribute(u)}))})}}var w1={name:"applyStyles",enabled:!0,phase:"write",fn:C1,effect:v1,requires:["computeStyles"]};function Wn(e){return e.split("-")[0]}var ea=Math.max,Ls=Math.min,Oa=Math.round;function Ea(e,t){t===void 0&&(t=!1);var n=e.getBoundingClientRect(),i=1,s=1;if(mn(e)&&t){var o=e.offsetHeight,c=e.offsetWidth;c>0&&(i=Oa(n.width)/c||1),o>0&&(s=Oa(n.height)/o||1)}return{width:n.width/i,height:n.height/s,top:n.top/s,right:n.right/i,bottom:n.bottom/s,left:n.left/i,x:n.left/i,y:n.top/s}}function zo(e){var t=Ea(e),n=e.offsetWidth,i=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-i)<=1&&(i=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:i}}function nf(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&jo(n)){var i=t;do{if(i&&e.isSameNode(i))return!0;i=i.parentNode||i.host}while(i)}return!1}function ai(e){return Sn(e).getComputedStyle(e)}function M1(e){return["table","td","th"].indexOf(_n(e))>=0}function Ti(e){return((za(e)?e.ownerDocument:e.document)||window.document).documentElement}function ks(e){return _n(e)==="html"?e:e.assignedSlot||e.parentNode||(jo(e)?e.host:null)||Ti(e)}function af(e){return!mn(e)||ai(e).position==="fixed"?null:e.offsetParent}function I1(e){var t=navigator.userAgent.toLowerCase().indexOf("firefox")!==-1,n=navigator.userAgent.indexOf("Trident")!==-1;if(n&&mn(e)){var i=ai(e);if(i.position==="fixed")return null}var s=ks(e);for(jo(s)&&(s=s.host);mn(s)&&["html","body"].indexOf(_n(s))<0;){var o=ai(s);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return s;s=s.parentNode}return null}function vr(e){for(var t=Sn(e),n=af(e);n&&M1(n)&&ai(n).position==="static";)n=af(n);return n&&(_n(n)==="html"||_n(n)==="body"&&ai(n).position==="static")?t:n||I1(e)||t}function Oo(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function wr(e,t,n){return ea(e,Ls(t,n))}function N1(e,t,n){var i=wr(e,t,n);return i>n?n:i}function rf(){return{top:0,right:0,bottom:0,left:0}}function sf(e){return Object.assign({},rf(),e)}function lf(e,t){return t.reduce(function(n,i){return n[i]=e,n},{})}var L1=function(t,n){return t=typeof t=="function"?t(Object.assign({},n.rects,{placement:n.placement})):t,sf(typeof t!="number"?t:lf(t,br))};function k1(e){var t,n=e.state,i=e.name,s=e.options,o=n.elements.arrow,c=n.modifiersData.popperOffsets,d=Wn(n.placement),u=Oo(d),f=[Gt,gn].indexOf(d)>=0,m=f?"height":"width";if(!(!o||!c)){var p=L1(s.padding,n),y=zo(o),b=u==="y"?Ft:Gt,v=u==="y"?hn:gn,T=n.rects.reference[m]+n.rects.reference[u]-c[u]-n.rects.popper[m],x=c[u]-n.rects.reference[u],k=vr(o),I=k?u==="y"?k.clientHeight||0:k.clientWidth||0:0,C=T/2-x/2,M=p[b],N=I-y[m]-p[v],L=I/2-y[m]/2+C,j=wr(M,L,N),z=u;n.modifiersData[i]=(t={},t[z]=j,t.centerOffset=j-L,t)}}function T1(e){var t=e.state,n=e.options,i=n.element,s=i===void 0?"[data-popper-arrow]":i;s!=null&&(typeof s=="string"&&(s=t.elements.popper.querySelector(s),!s)||!nf(t.elements.popper,s)||(t.elements.arrow=s))}var x1={name:"arrow",enabled:!0,phase:"main",fn:k1,effect:T1,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Pa(e){return e.split("-")[1]}var S1={top:"auto",right:"auto",bottom:"auto",left:"auto"};function D1(e){var t=e.x,n=e.y,i=window,s=i.devicePixelRatio||1;return{x:Oa(t*s)/s||0,y:Oa(n*s)/s||0}}function of(e){var t,n=e.popper,i=e.popperRect,s=e.placement,o=e.variation,c=e.offsets,d=e.position,u=e.gpuAcceleration,f=e.adaptive,m=e.roundOffsets,p=e.isFixed,y=c.x,b=y===void 0?0:y,v=c.y,T=v===void 0?0:v,x=typeof m=="function"?m({x:b,y:T}):{x:b,y:T};b=x.x,T=x.y;var k=c.hasOwnProperty("x"),I=c.hasOwnProperty("y"),C=Gt,M=Ft,N=window;if(f){var L=vr(n),j="clientHeight",z="clientWidth";if(L===Sn(n)&&(L=Ti(n),ai(L).position!=="static"&&d==="absolute"&&(j="scrollHeight",z="scrollWidth")),L=L,s===Ft||(s===Gt||s===gn)&&o===yr){M=hn;var O=p&&L===N&&N.visualViewport?N.visualViewport.height:L[j];T-=O-i.height,T*=u?1:-1}if(s===Gt||(s===Ft||s===hn)&&o===yr){C=gn;var R=p&&L===N&&N.visualViewport?N.visualViewport.width:L[z];b-=R-i.width,b*=u?1:-1}}var P=Object.assign({position:d},f&&S1),Z=m===!0?D1({x:b,y:T}):{x:b,y:T};if(b=Z.x,T=Z.y,u){var B;return Object.assign({},P,(B={},B[M]=I?"0":"",B[C]=k?"0":"",B.transform=(N.devicePixelRatio||1)<=1?"translate("+b+"px, "+T+"px)":"translate3d("+b+"px, "+T+"px, 0)",B))}return Object.assign({},P,(t={},t[M]=I?T+"px":"",t[C]=k?b+"px":"",t.transform="",t))}function j1(e){var t=e.state,n=e.options,i=n.gpuAcceleration,s=i===void 0?!0:i,o=n.adaptive,c=o===void 0?!0:o,d=n.roundOffsets,u=d===void 0?!0:d,f={placement:Wn(t.placement),variation:Pa(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:s,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,of(Object.assign({},f,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:c,roundOffsets:u})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,of(Object.assign({},f,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:u})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var z1={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:j1,data:{}},Ts={passive:!0};function O1(e){var t=e.state,n=e.instance,i=e.options,s=i.scroll,o=s===void 0?!0:s,c=i.resize,d=c===void 0?!0:c,u=Sn(t.elements.popper),f=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&f.forEach(function(m){m.addEventListener("scroll",n.update,Ts)}),d&&u.addEventListener("resize",n.update,Ts),function(){o&&f.forEach(function(m){m.removeEventListener("scroll",n.update,Ts)}),d&&u.removeEventListener("resize",n.update,Ts)}}var E1={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:O1,data:{}},P1={left:"right",right:"left",bottom:"top",top:"bottom"};function xs(e){return e.replace(/left|right|bottom|top/g,function(t){return P1[t]})}var A1={start:"end",end:"start"};function cf(e){return e.replace(/start|end/g,function(t){return A1[t]})}function Eo(e){var t=Sn(e),n=t.pageXOffset,i=t.pageYOffset;return{scrollLeft:n,scrollTop:i}}function Po(e){return Ea(Ti(e)).left+Eo(e).scrollLeft}function V1(e){var t=Sn(e),n=Ti(e),i=t.visualViewport,s=n.clientWidth,o=n.clientHeight,c=0,d=0;return i&&(s=i.width,o=i.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(c=i.offsetLeft,d=i.offsetTop)),{width:s,height:o,x:c+Po(e),y:d}}function J1(e){var t,n=Ti(e),i=Eo(e),s=(t=e.ownerDocument)==null?void 0:t.body,o=ea(n.scrollWidth,n.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),c=ea(n.scrollHeight,n.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),d=-i.scrollLeft+Po(e),u=-i.scrollTop;return ai(s||n).direction==="rtl"&&(d+=ea(n.clientWidth,s?s.clientWidth:0)-o),{width:o,height:c,x:d,y:u}}function Ao(e){var t=ai(e),n=t.overflow,i=t.overflowX,s=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+s+i)}function uf(e){return["html","body","#document"].indexOf(_n(e))>=0?e.ownerDocument.body:mn(e)&&Ao(e)?e:uf(ks(e))}function Mr(e,t){var n;t===void 0&&(t=[]);var i=uf(e),s=i===((n=e.ownerDocument)==null?void 0:n.body),o=Sn(i),c=s?[o].concat(o.visualViewport||[],Ao(i)?i:[]):i,d=t.concat(c);return s?d:d.concat(Mr(ks(c)))}function Vo(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Q1(e){var t=Ea(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}function df(e,t){return t===qd?Vo(V1(e)):za(t)?Q1(t):Vo(J1(Ti(e)))}function R1(e){var t=Mr(ks(e)),n=["absolute","fixed"].indexOf(ai(e).position)>=0,i=n&&mn(e)?vr(e):e;return za(i)?t.filter(function(s){return za(s)&&nf(s,i)&&_n(s)!=="body"}):[]}function _1(e,t,n){var i=t==="clippingParents"?R1(e):[].concat(t),s=[].concat(i,[n]),o=s[0],c=s.reduce(function(d,u){var f=df(e,u);return d.top=ea(f.top,d.top),d.right=Ls(f.right,d.right),d.bottom=Ls(f.bottom,d.bottom),d.left=ea(f.left,d.left),d},df(e,o));return c.width=c.right-c.left,c.height=c.bottom-c.top,c.x=c.left,c.y=c.top,c}function ff(e){var t=e.reference,n=e.element,i=e.placement,s=i?Wn(i):null,o=i?Pa(i):null,c=t.x+t.width/2-n.width/2,d=t.y+t.height/2-n.height/2,u;switch(s){case Ft:u={x:c,y:t.y-n.height};break;case hn:u={x:c,y:t.y+t.height};break;case gn:u={x:t.x+t.width,y:d};break;case Gt:u={x:t.x-n.width,y:d};break;default:u={x:t.x,y:t.y}}var f=s?Oo(s):null;if(f!=null){var m=f==="y"?"height":"width";switch(o){case ja:u[f]=u[f]-(t[m]/2-n[m]/2);break;case yr:u[f]=u[f]+(t[m]/2-n[m]/2);break}}return u}function Ir(e,t){t===void 0&&(t={});var n=t,i=n.placement,s=i===void 0?e.placement:i,o=n.boundary,c=o===void 0?l1:o,d=n.rootBoundary,u=d===void 0?qd:d,f=n.elementContext,m=f===void 0?Cr:f,p=n.altBoundary,y=p===void 0?!1:p,b=n.padding,v=b===void 0?0:b,T=sf(typeof v!="number"?v:lf(v,br)),x=m===Cr?o1:Cr,k=e.rects.popper,I=e.elements[y?x:m],C=_1(za(I)?I:I.contextElement||Ti(e.elements.popper),c,u),M=Ea(e.elements.reference),N=ff({reference:M,element:k,strategy:"absolute",placement:s}),L=Vo(Object.assign({},k,N)),j=m===Cr?L:M,z={top:C.top-j.top+T.top,bottom:j.bottom-C.bottom+T.bottom,left:C.left-j.left+T.left,right:j.right-C.right+T.right},O=e.modifiersData.offset;if(m===Cr&&O){var R=O[s];Object.keys(z).forEach(function(P){var Z=[gn,hn].indexOf(P)>=0?1:-1,B=[Ft,hn].indexOf(P)>=0?"y":"x";z[P]+=R[B]*Z})}return z}function W1(e,t){t===void 0&&(t={});var n=t,i=n.placement,s=n.boundary,o=n.rootBoundary,c=n.padding,d=n.flipVariations,u=n.allowedAutoPlacements,f=u===void 0?tf:u,m=Pa(i),p=m?d?ef:ef.filter(function(v){return Pa(v)===m}):br,y=p.filter(function(v){return f.indexOf(v)>=0});y.length===0&&(y=p);var b=y.reduce(function(v,T){return v[T]=Ir(e,{placement:T,boundary:s,rootBoundary:o,padding:c})[Wn(T)],v},{});return Object.keys(b).sort(function(v,T){return b[v]-b[T]})}function H1(e){if(Wn(e)===Do)return[];var t=xs(e);return[cf(e),t,cf(t)]}function B1(e){var t=e.state,n=e.options,i=e.name;if(!t.modifiersData[i]._skip){for(var s=n.mainAxis,o=s===void 0?!0:s,c=n.altAxis,d=c===void 0?!0:c,u=n.fallbackPlacements,f=n.padding,m=n.boundary,p=n.rootBoundary,y=n.altBoundary,b=n.flipVariations,v=b===void 0?!0:b,T=n.allowedAutoPlacements,x=t.options.placement,k=Wn(x),I=k===x,C=u||(I||!v?[xs(x)]:H1(x)),M=[x].concat(C).reduce(function(ee,ie){return ee.concat(Wn(ie)===Do?W1(t,{placement:ie,boundary:m,rootBoundary:p,padding:f,flipVariations:v,allowedAutoPlacements:T}):ie)},[]),N=t.rects.reference,L=t.rects.popper,j=new Map,z=!0,O=M[0],R=0;R<M.length;R++){var P=M[R],Z=Wn(P),B=Pa(P)===ja,ne=[Ft,hn].indexOf(Z)>=0,ue=ne?"width":"height",Ce=Ir(t,{placement:P,boundary:m,rootBoundary:p,altBoundary:y,padding:f}),Ne=ne?B?gn:Gt:B?hn:Ft;N[ue]>L[ue]&&(Ne=xs(Ne));var fe=xs(Ne),he=[];if(o&&he.push(Ce[Z]<=0),d&&he.push(Ce[Ne]<=0,Ce[fe]<=0),he.every(function(ee){return ee})){O=P,z=!1;break}j.set(P,he)}if(z)for(var $=v?3:1,A=function(ie){var ae=M.find(function(me){var Le=j.get(me);if(Le)return Le.slice(0,ie).every(function(X){return X})});if(ae)return O=ae,"break"},H=$;H>0;H--){var F=A(H);if(F==="break")break}t.placement!==O&&(t.modifiersData[i]._skip=!0,t.placement=O,t.reset=!0)}}var F1={name:"flip",enabled:!0,phase:"main",fn:B1,requiresIfExists:["offset"],data:{_skip:!1}};function hf(e,t,n){return n===void 0&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function gf(e){return[Ft,gn,hn,Gt].some(function(t){return e[t]>=0})}function G1(e){var t=e.state,n=e.name,i=t.rects.reference,s=t.rects.popper,o=t.modifiersData.preventOverflow,c=Ir(t,{elementContext:"reference"}),d=Ir(t,{altBoundary:!0}),u=hf(c,i),f=hf(d,s,o),m=gf(u),p=gf(f);t.modifiersData[n]={referenceClippingOffsets:u,popperEscapeOffsets:f,isReferenceHidden:m,hasPopperEscaped:p},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":m,"data-popper-escaped":p})}var Z1={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:G1};function Y1(e,t,n){var i=Wn(e),s=[Gt,Ft].indexOf(i)>=0?-1:1,o=typeof n=="function"?n(Object.assign({},t,{placement:e})):n,c=o[0],d=o[1];return c=c||0,d=(d||0)*s,[Gt,gn].indexOf(i)>=0?{x:d,y:c}:{x:c,y:d}}function U1(e){var t=e.state,n=e.options,i=e.name,s=n.offset,o=s===void 0?[0,0]:s,c=tf.reduce(function(m,p){return m[p]=Y1(p,t.rects,o),m},{}),d=c[t.placement],u=d.x,f=d.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=u,t.modifiersData.popperOffsets.y+=f),t.modifiersData[i]=c}var $1={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:U1};function K1(e){var t=e.state,n=e.name;t.modifiersData[n]=ff({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}var X1={name:"popperOffsets",enabled:!0,phase:"read",fn:K1,data:{}};function q1(e){return e==="x"?"y":"x"}function e4(e){var t=e.state,n=e.options,i=e.name,s=n.mainAxis,o=s===void 0?!0:s,c=n.altAxis,d=c===void 0?!1:c,u=n.boundary,f=n.rootBoundary,m=n.altBoundary,p=n.padding,y=n.tether,b=y===void 0?!0:y,v=n.tetherOffset,T=v===void 0?0:v,x=Ir(t,{boundary:u,rootBoundary:f,padding:p,altBoundary:m}),k=Wn(t.placement),I=Pa(t.placement),C=!I,M=Oo(k),N=q1(M),L=t.modifiersData.popperOffsets,j=t.rects.reference,z=t.rects.popper,O=typeof T=="function"?T(Object.assign({},t.rects,{placement:t.placement})):T,R=typeof O=="number"?{mainAxis:O,altAxis:O}:Object.assign({mainAxis:0,altAxis:0},O),P=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,Z={x:0,y:0};if(!!L){if(o){var B,ne=M==="y"?Ft:Gt,ue=M==="y"?hn:gn,Ce=M==="y"?"height":"width",Ne=L[M],fe=Ne+x[ne],he=Ne-x[ue],$=b?-z[Ce]/2:0,A=I===ja?j[Ce]:z[Ce],H=I===ja?-z[Ce]:-j[Ce],F=t.elements.arrow,ee=b&&F?zo(F):{width:0,height:0},ie=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:rf(),ae=ie[ne],me=ie[ue],Le=wr(0,j[Ce],ee[Ce]),X=C?j[Ce]/2-$-Le-ae-R.mainAxis:A-Le-ae-R.mainAxis,W=C?-j[Ce]/2+$+Le+me+R.mainAxis:H+Le+me+R.mainAxis,Q=t.elements.arrow&&vr(t.elements.arrow),re=Q?M==="y"?Q.clientTop||0:Q.clientLeft||0:0,D=(B=P==null?void 0:P[M])!=null?B:0,_=Ne+X-D-re,J=Ne+W-D,se=wr(b?Ls(fe,_):fe,Ne,b?ea(he,J):he);L[M]=se,Z[M]=se-Ne}if(d){var ce,pe=M==="x"?Ft:Gt,ke=M==="x"?hn:gn,te=L[N],le=N==="y"?"height":"width",we=te+x[pe],je=te-x[ke],Qe=[Ft,Gt].indexOf(k)!==-1,Xe=(ce=P==null?void 0:P[N])!=null?ce:0,st=Qe?we:te-j[le]-z[le]-Xe+R.altAxis,yt=Qe?te+j[le]+z[le]-Xe-R.altAxis:je,at=b&&Qe?N1(st,te,yt):wr(b?st:we,te,b?yt:je);L[N]=at,Z[N]=at-te}t.modifiersData[i]=Z}}var t4={name:"preventOverflow",enabled:!0,phase:"main",fn:e4,requiresIfExists:["offset"]};function n4(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function i4(e){return e===Sn(e)||!mn(e)?Eo(e):n4(e)}function a4(e){var t=e.getBoundingClientRect(),n=Oa(t.width)/e.offsetWidth||1,i=Oa(t.height)/e.offsetHeight||1;return n!==1||i!==1}function r4(e,t,n){n===void 0&&(n=!1);var i=mn(t),s=mn(t)&&a4(t),o=Ti(t),c=Ea(e,s),d={scrollLeft:0,scrollTop:0},u={x:0,y:0};return(i||!i&&!n)&&((_n(t)!=="body"||Ao(o))&&(d=i4(t)),mn(t)?(u=Ea(t,!0),u.x+=t.clientLeft,u.y+=t.clientTop):o&&(u.x=Po(o))),{x:c.left+d.scrollLeft-u.x,y:c.top+d.scrollTop-u.y,width:c.width,height:c.height}}function s4(e){var t=new Map,n=new Set,i=[];e.forEach(function(o){t.set(o.name,o)});function s(o){n.add(o.name);var c=[].concat(o.requires||[],o.requiresIfExists||[]);c.forEach(function(d){if(!n.has(d)){var u=t.get(d);u&&s(u)}}),i.push(o)}return e.forEach(function(o){n.has(o.name)||s(o)}),i}function l4(e){var t=s4(e);return y1.reduce(function(n,i){return n.concat(t.filter(function(s){return s.phase===i}))},[])}function o4(e){var t;return function(){return t||(t=new Promise(function(n){Promise.resolve().then(function(){t=void 0,n(e())})})),t}}function c4(e){var t=e.reduce(function(n,i){var s=n[i.name];return n[i.name]=s?Object.assign({},s,i,{options:Object.assign({},s.options,i.options),data:Object.assign({},s.data,i.data)}):i,n},{});return Object.keys(t).map(function(n){return t[n]})}var mf={placement:"bottom",modifiers:[],strategy:"absolute"};function pf(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return!t.some(function(i){return!(i&&typeof i.getBoundingClientRect=="function")})}function u4(e){e===void 0&&(e={});var t=e,n=t.defaultModifiers,i=n===void 0?[]:n,s=t.defaultOptions,o=s===void 0?mf:s;return function(d,u,f){f===void 0&&(f=o);var m={placement:"bottom",orderedModifiers:[],options:Object.assign({},mf,o),modifiersData:{},elements:{reference:d,popper:u},attributes:{},styles:{}},p=[],y=!1,b={state:m,setOptions:function(k){var I=typeof k=="function"?k(m.options):k;T(),m.options=Object.assign({},o,m.options,I),m.scrollParents={reference:za(d)?Mr(d):d.contextElement?Mr(d.contextElement):[],popper:Mr(u)};var C=l4(c4([].concat(i,m.options.modifiers)));return m.orderedModifiers=C.filter(function(M){return M.enabled}),v(),b.update()},forceUpdate:function(){if(!y){var k=m.elements,I=k.reference,C=k.popper;if(!!pf(I,C)){m.rects={reference:r4(I,vr(C),m.options.strategy==="fixed"),popper:zo(C)},m.reset=!1,m.placement=m.options.placement,m.orderedModifiers.forEach(function(R){return m.modifiersData[R.name]=Object.assign({},R.data)});for(var M=0;M<m.orderedModifiers.length;M++){if(m.reset===!0){m.reset=!1,M=-1;continue}var N=m.orderedModifiers[M],L=N.fn,j=N.options,z=j===void 0?{}:j,O=N.name;typeof L=="function"&&(m=L({state:m,options:z,name:O,instance:b})||m)}}}},update:o4(function(){return new Promise(function(x){b.forceUpdate(),x(m)})}),destroy:function(){T(),y=!0}};if(!pf(d,u))return b;b.setOptions(f).then(function(x){!y&&f.onFirstUpdate&&f.onFirstUpdate(x)});function v(){m.orderedModifiers.forEach(function(x){var k=x.name,I=x.options,C=I===void 0?{}:I,M=x.effect;if(typeof M=="function"){var N=M({state:m,name:k,instance:b,options:C}),L=function(){};p.push(N||L)}})}function T(){p.forEach(function(x){return x()}),p=[]}return b}}var d4=[E1,X1,z1,w1,$1,F1,t4,x1,Z1],bf=u4({defaultModifiers:d4});function yf(e){return e===null||typeof e=="undefined"}function Cf(e){if(Array.isArray(e))return!0;const t=Object.prototype.toString.call(e);return t.substr(0,7)==="[object"&&t.substr(-6)==="Array]"}function Nr(e){return e!==null&&/^\[object (Object|Module)\]/.test(Object.prototype.toString.call(e))}function Jo(e){if(Cf(e))return e.map(Jo);if(Nr(e)){const t=Object.create(null),n=Object.keys(e),i=n.length;let s=0;for(;s<i;++s)t[n[s]]=Jo(e[n[s]]);return t}return e}function f4(e){return["__proto__","prototype","constructor"].indexOf(e)===-1}function h4(e,t,n,i){if(!f4(e))return;const s=t[e],o=n[e];Nr(s)&&Nr(o)?vf(s,o,i):t[e]=Jo(o)}function vf(e,t,n){const i=Cf(t)?t:[t],s=i.length;if(!Nr(e))return e;n=n||{};const o=n.merger||h4;for(let c=0;c<s;++c){if(t=i[c],!Nr(t))continue;const d=Object.keys(t);for(let u=0,f=d.length;u<f;++u)o(d[u],e,t,n)}return e}function Aa(e){try{return e instanceof HTMLElement}catch{return typeof e=="object"&&e.nodeType===1&&typeof e.style=="object"&&typeof e.ownerDocument=="object"}}class g4{constructor(t,n,i){var s,o;this.isShow=!1,this.trigger=void 0,this.instance=void 0,this.always=!1,this.reference=void 0,this.referenceTarget=void 0,this.popperRefer=void 0,this.delay=50,this.isInnerPopper=!1,this.disabled=!1,this.afterShow=null,this.afterHidden=null,this.appendTo="parent",this.container=null,this.fixOnBoundary=!1,this.instanceOptions=this.initDefaultOptions(i),this.reference=this.resolveInputSelectorToHtmlElement(t),this.popperRefer=this.resolveInputSelectorToHtmlElement(n),this.referenceTarget=this.getTargetReferenceElement(),this.container=(s=this.popperRefer)==null?void 0:s.parentElement,this.isShow=!!((o=this.instanceOptions)!=null&&o.isShow),this.always=this.instanceOptions.always,this.trigger=this.instanceOptions.trigger,this.disabled=this.instanceOptions.disabled,this.appendTo=this.instanceOptions.appendTo,this.afterHidden=typeof i.afterHidden=="function"?i.afterHidden:()=>{},this.afterShow=typeof i.afterShow=="function"?i.afterShow:()=>{},this.fixOnBoundary=this.instanceOptions.fixOnBoundary,this.initInstance(),this.registerEvents(),(this.isShow||this.always)&&this.show(null)}forceUpdate(){var t;(t=this.instance)==null||t.forceUpdate()}update(){var t;(t=this.instance)==null||t.update()}updateOptions(t){var n;this.instanceOptions=this.initDefaultOptions(t),this.isShow=!!((n=this.instanceOptions)!=null&&n.isShow),this.trigger=this.instanceOptions.trigger,this.disabled=this.instanceOptions.disabled,this.setOptions(this.instanceOptions)}setOptions(t){var n;(n=this.instance)==null||n.setOptions(t)}destroy(){var t;(t=this.instance)==null||t.destroy()}updateDisabled(t){this.disabled=t!=null?t:!this.disabled,this.disabled&&this.hide()}show(t){var n;this.disabled||((n=this.popperRefer)==null||n.setAttribute("data-show",""),this.setOptions({modifiers:[...this.instanceOptions.modifiers||[],{name:"eventListeners",enabled:!0}]}),this.update(),this.isShow=!0,this.afterShow(),this.fixOnBoundary||this.appendToTarget())}hide(){var t;this.always||((t=this.popperRefer)==null||t.removeAttribute("data-show"),this.setOptions({modifiers:[...this.instanceOptions.modifiers||[],{name:"eventListeners",enabled:!1}]}),this.isShow=!1,this.isInnerPopper=!1,this.afterHidden(),this.fixOnBoundary||this.restorePopContent())}restorePopContent(){const t=this.getAppendToTarget();Aa(t)&&t.contains(this.popperRefer)&&this.container&&!this.container.contains(this.popperRefer)&&this.container.append(this.popperRefer)}appendToTarget(){const t=this.getAppendToTarget();Aa(t)&&t.contains(this.popperRefer)&&t.append(this.popperRefer)}getAppendToTarget(){const{appendTo:t}=this;let n=t;return t!=="parent"&&typeof t=="string"&&(n=document.querySelector(t)),n}initDefaultOptions(t){const i=vf({placement:"top",modifiers:[{name:"offset",options:{offset:[0,8]}}],strategy:"absolute",onFirstUpdate:void 0,isShow:!1,theme:"dark",trigger:"hover",disabled:!1},t||{}),s=i.onFirstUpdate;return i.onFirstUpdate=o=>{typeof s=="function"&&(s.call(this,o),this.handleFirstUpdate())},i}handleFirstUpdate(){this.fixOnBoundary&&this.appendToTarget()}getTargetReferenceElement(){return this.isElement(this.reference)?this.reference.childElementCount===1?this.reference.firstElementChild:this.reference:this.reference}initInstance(){var t,n;this.referenceTarget&&(this.referenceTarget&&this.popperRefer?(this.instance=bf(this.referenceTarget,this.popperRefer,this.instanceOptions),(n=this.popperRefer)==null||n.setAttribute("data-theme",(t=this.instanceOptions.theme)!=null?t:"dark")):console.error("reference or popperRefer is null, please check html element."))}resolveInputSelectorToHtmlElement(t){if(this.isElement(t))return t;if(typeof t=="string")return document.querySelector(t);if(typeof t=="object"){if(Object.prototype.hasOwnProperty.call(t,"getBoundingClientRect"))return t}else console.error("'getBoundingClientRect' is needed when use virtual elements");return null}isElement(t){return Aa(t)}registerEvents(){if(this.isElement(this.referenceTarget)&&this.trigger==="hover"){const t=["mouseenter","focus"],n=["mouseleave","blur"],i=["mouseenter","mouseleave"];t.forEach(s=>{this.referenceTarget.addEventListener(s,o=>{s==="mouseenter"&&(this.isInnerPopper=!0),this.show(o)})}),n.forEach(s=>{this.referenceTarget.addEventListener(s,()=>{this.isInnerPopper=!1,setTimeout(()=>{!this.isInnerPopper&&this.hide()},this.delay)})}),this.isElement(this.popperRefer)&&i.forEach(s=>{this.popperRefer.addEventListener(s,()=>{s==="mouseenter"&&(this.isInnerPopper=!0),s==="mouseleave"&&this.hide()})})}this.trigger==="click"&&["click"].forEach(n=>{document.body.addEventListener(n,i=>{this.isSameElement(i.target,this.reference)||this.reference.contains(i.target)?this.show(i):this.isShow&&!this.isSameElement(i.target,this.popperRefer)&&!this.popperRefer.contains(i.target)&&this.hide()})})}isSameElement(t,n){return t&&(t===n||t===n.firstElementChild)}}var ot={exports:{}};/**
2
+ * @license
3
+ * Lodash <https://lodash.com/>
4
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
5
+ * Released under MIT license <https://lodash.com/license>
6
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
7
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
8
+ */(function(e,t){(function(){var n,i="4.17.21",s=200,o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",c="Expected a function",d="Invalid `variable` option passed into `_.template`",u="__lodash_hash_undefined__",f=500,m="__lodash_placeholder__",p=1,y=2,b=4,v=1,T=2,x=1,k=2,I=4,C=8,M=16,N=32,L=64,j=128,z=256,O=512,R=30,P="...",Z=800,B=16,ne=1,ue=2,Ce=3,Ne=1/0,fe=9007199254740991,he=17976931348623157e292,$=0/0,A=4294967295,H=A-1,F=A>>>1,ee=[["ary",j],["bind",x],["bindKey",k],["curry",C],["curryRight",M],["flip",O],["partial",N],["partialRight",L],["rearg",z]],ie="[object Arguments]",ae="[object Array]",me="[object AsyncFunction]",Le="[object Boolean]",X="[object Date]",W="[object DOMException]",Q="[object Error]",re="[object Function]",D="[object GeneratorFunction]",_="[object Map]",J="[object Number]",se="[object Null]",ce="[object Object]",pe="[object Promise]",ke="[object Proxy]",te="[object RegExp]",le="[object Set]",we="[object String]",je="[object Symbol]",Qe="[object Undefined]",Xe="[object WeakMap]",st="[object WeakSet]",yt="[object ArrayBuffer]",at="[object DataView]",ft="[object Float32Array]",vn="[object Float64Array]",et="[object Int8Array]",mt="[object Int16Array]",Ge="[object Int32Array]",_t="[object Uint8Array]",ba="[object Uint8ClampedArray]",er="[object Uint16Array]",is="[object Uint32Array]",pi=/\b__p \+= '';/g,as=/\b(__p \+=) '' \+/g,qn=/(__e\(.*?\)|\b__t\)) \+\n'';/g,jl=/&(?:amp|lt|gt|quot|#39);/g,zl=/[&<>"']/g,xu=RegExp(jl.source),rs=RegExp(zl.source),ya=/<%-([\s\S]+?)%>/g,Su=/<%([\s\S]+?)%>/g,Ol=/<%=([\s\S]+?)%>/g,Du=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ju=/^\w*$/,zu=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Ca=/[\\^$.*+?()[\]{}|]/g,El=RegExp(Ca.source),va=/^\s+/,Ou=/\s/,Eu=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Ie=/\{\n\/\* \[wrapped with (.+)\] \*/,Oe=/,? & /,Je=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ei=/[()=,{}\[\]\/\s]/,Bi=/\\(\\)?/g,Pl=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,ss=/\w*$/,en=/^[-+]0x[0-9a-f]+$/i,Lv=/^0b[01]+$/i,kv=/^\[object .+?Constructor\]$/,Tv=/^0o[0-7]+$/i,xv=/^(?:0|[1-9]\d*)$/,Sv=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Al=/($^)/,Dv=/['\n\r\u2028\u2029\\]/g,Vl="\\ud800-\\udfff",jv="\\u0300-\\u036f",zv="\\ufe20-\\ufe2f",Ov="\\u20d0-\\u20ff",I3=jv+zv+Ov,N3="\\u2700-\\u27bf",L3="a-z\\xdf-\\xf6\\xf8-\\xff",Ev="\\xac\\xb1\\xd7\\xf7",Pv="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",Av="\\u2000-\\u206f",Vv=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",k3="A-Z\\xc0-\\xd6\\xd8-\\xde",T3="\\ufe0e\\ufe0f",x3=Ev+Pv+Av+Vv,Pu="['\u2019]",Jv="["+Vl+"]",S3="["+x3+"]",Jl="["+I3+"]",D3="\\d+",Qv="["+N3+"]",j3="["+L3+"]",z3="[^"+Vl+x3+D3+N3+L3+k3+"]",Au="\\ud83c[\\udffb-\\udfff]",Rv="(?:"+Jl+"|"+Au+")",O3="[^"+Vl+"]",Vu="(?:\\ud83c[\\udde6-\\uddff]){2}",Ju="[\\ud800-\\udbff][\\udc00-\\udfff]",tr="["+k3+"]",E3="\\u200d",P3="(?:"+j3+"|"+z3+")",_v="(?:"+tr+"|"+z3+")",A3="(?:"+Pu+"(?:d|ll|m|re|s|t|ve))?",V3="(?:"+Pu+"(?:D|LL|M|RE|S|T|VE))?",J3=Rv+"?",Q3="["+T3+"]?",Wv="(?:"+E3+"(?:"+[O3,Vu,Ju].join("|")+")"+Q3+J3+")*",Hv="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Bv="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",R3=Q3+J3+Wv,Fv="(?:"+[Qv,Vu,Ju].join("|")+")"+R3,Gv="(?:"+[O3+Jl+"?",Jl,Vu,Ju,Jv].join("|")+")",Zv=RegExp(Pu,"g"),Yv=RegExp(Jl,"g"),Qu=RegExp(Au+"(?="+Au+")|"+Gv+R3,"g"),Uv=RegExp([tr+"?"+j3+"+"+A3+"(?="+[S3,tr,"$"].join("|")+")",_v+"+"+V3+"(?="+[S3,tr+P3,"$"].join("|")+")",tr+"?"+P3+"+"+A3,tr+"+"+V3,Bv,Hv,D3,Fv].join("|"),"g"),$v=RegExp("["+E3+Vl+I3+T3+"]"),Kv=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Xv=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],qv=-1,ut={};ut[ft]=ut[vn]=ut[et]=ut[mt]=ut[Ge]=ut[_t]=ut[ba]=ut[er]=ut[is]=!0,ut[ie]=ut[ae]=ut[yt]=ut[Le]=ut[at]=ut[X]=ut[Q]=ut[re]=ut[_]=ut[J]=ut[ce]=ut[te]=ut[le]=ut[we]=ut[Xe]=!1;var ct={};ct[ie]=ct[ae]=ct[yt]=ct[at]=ct[Le]=ct[X]=ct[ft]=ct[vn]=ct[et]=ct[mt]=ct[Ge]=ct[_]=ct[J]=ct[ce]=ct[te]=ct[le]=ct[we]=ct[je]=ct[_t]=ct[ba]=ct[er]=ct[is]=!0,ct[Q]=ct[re]=ct[Xe]=!1;var ew={\u00C0:"A",\u00C1:"A",\u00C2:"A",\u00C3:"A",\u00C4:"A",\u00C5:"A",\u00E0:"a",\u00E1:"a",\u00E2:"a",\u00E3:"a",\u00E4:"a",\u00E5:"a",\u00C7:"C",\u00E7:"c",\u00D0:"D",\u00F0:"d",\u00C8:"E",\u00C9:"E",\u00CA:"E",\u00CB:"E",\u00E8:"e",\u00E9:"e",\u00EA:"e",\u00EB:"e",\u00CC:"I",\u00CD:"I",\u00CE:"I",\u00CF:"I",\u00EC:"i",\u00ED:"i",\u00EE:"i",\u00EF:"i",\u00D1:"N",\u00F1:"n",\u00D2:"O",\u00D3:"O",\u00D4:"O",\u00D5:"O",\u00D6:"O",\u00D8:"O",\u00F2:"o",\u00F3:"o",\u00F4:"o",\u00F5:"o",\u00F6:"o",\u00F8:"o",\u00D9:"U",\u00DA:"U",\u00DB:"U",\u00DC:"U",\u00F9:"u",\u00FA:"u",\u00FB:"u",\u00FC:"u",\u00DD:"Y",\u00FD:"y",\u00FF:"y",\u00C6:"Ae",\u00E6:"ae",\u00DE:"Th",\u00FE:"th",\u00DF:"ss",\u0100:"A",\u0102:"A",\u0104:"A",\u0101:"a",\u0103:"a",\u0105:"a",\u0106:"C",\u0108:"C",\u010A:"C",\u010C:"C",\u0107:"c",\u0109:"c",\u010B:"c",\u010D:"c",\u010E:"D",\u0110:"D",\u010F:"d",\u0111:"d",\u0112:"E",\u0114:"E",\u0116:"E",\u0118:"E",\u011A:"E",\u0113:"e",\u0115:"e",\u0117:"e",\u0119:"e",\u011B:"e",\u011C:"G",\u011E:"G",\u0120:"G",\u0122:"G",\u011D:"g",\u011F:"g",\u0121:"g",\u0123:"g",\u0124:"H",\u0126:"H",\u0125:"h",\u0127:"h",\u0128:"I",\u012A:"I",\u012C:"I",\u012E:"I",\u0130:"I",\u0129:"i",\u012B:"i",\u012D:"i",\u012F:"i",\u0131:"i",\u0134:"J",\u0135:"j",\u0136:"K",\u0137:"k",\u0138:"k",\u0139:"L",\u013B:"L",\u013D:"L",\u013F:"L",\u0141:"L",\u013A:"l",\u013C:"l",\u013E:"l",\u0140:"l",\u0142:"l",\u0143:"N",\u0145:"N",\u0147:"N",\u014A:"N",\u0144:"n",\u0146:"n",\u0148:"n",\u014B:"n",\u014C:"O",\u014E:"O",\u0150:"O",\u014D:"o",\u014F:"o",\u0151:"o",\u0154:"R",\u0156:"R",\u0158:"R",\u0155:"r",\u0157:"r",\u0159:"r",\u015A:"S",\u015C:"S",\u015E:"S",\u0160:"S",\u015B:"s",\u015D:"s",\u015F:"s",\u0161:"s",\u0162:"T",\u0164:"T",\u0166:"T",\u0163:"t",\u0165:"t",\u0167:"t",\u0168:"U",\u016A:"U",\u016C:"U",\u016E:"U",\u0170:"U",\u0172:"U",\u0169:"u",\u016B:"u",\u016D:"u",\u016F:"u",\u0171:"u",\u0173:"u",\u0174:"W",\u0175:"w",\u0176:"Y",\u0177:"y",\u0178:"Y",\u0179:"Z",\u017B:"Z",\u017D:"Z",\u017A:"z",\u017C:"z",\u017E:"z",\u0132:"IJ",\u0133:"ij",\u0152:"Oe",\u0153:"oe",\u0149:"'n",\u017F:"s"},tw={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},nw={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},iw={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},aw=parseFloat,rw=parseInt,_3=typeof pr=="object"&&pr&&pr.Object===Object&&pr,sw=typeof self=="object"&&self&&self.Object===Object&&self,jt=_3||sw||Function("return this")(),Ru=t&&!t.nodeType&&t,wa=Ru&&!0&&e&&!e.nodeType&&e,W3=wa&&wa.exports===Ru,_u=W3&&_3.process,wn=function(){try{var K=wa&&wa.require&&wa.require("util").types;return K||_u&&_u.binding&&_u.binding("util")}catch{}}(),H3=wn&&wn.isArrayBuffer,B3=wn&&wn.isDate,F3=wn&&wn.isMap,G3=wn&&wn.isRegExp,Z3=wn&&wn.isSet,Y3=wn&&wn.isTypedArray;function ln(K,ge,oe){switch(oe.length){case 0:return K.call(ge);case 1:return K.call(ge,oe[0]);case 2:return K.call(ge,oe[0],oe[1]);case 3:return K.call(ge,oe[0],oe[1],oe[2])}return K.apply(ge,oe)}function lw(K,ge,oe,Se){for(var _e=-1,tt=K==null?0:K.length;++_e<tt;){var Lt=K[_e];ge(Se,Lt,oe(Lt),K)}return Se}function Mn(K,ge){for(var oe=-1,Se=K==null?0:K.length;++oe<Se&&ge(K[oe],oe,K)!==!1;);return K}function ow(K,ge){for(var oe=K==null?0:K.length;oe--&&ge(K[oe],oe,K)!==!1;);return K}function U3(K,ge){for(var oe=-1,Se=K==null?0:K.length;++oe<Se;)if(!ge(K[oe],oe,K))return!1;return!0}function Fi(K,ge){for(var oe=-1,Se=K==null?0:K.length,_e=0,tt=[];++oe<Se;){var Lt=K[oe];ge(Lt,oe,K)&&(tt[_e++]=Lt)}return tt}function Ql(K,ge){var oe=K==null?0:K.length;return!!oe&&nr(K,ge,0)>-1}function Wu(K,ge,oe){for(var Se=-1,_e=K==null?0:K.length;++Se<_e;)if(oe(ge,K[Se]))return!0;return!1}function dt(K,ge){for(var oe=-1,Se=K==null?0:K.length,_e=Array(Se);++oe<Se;)_e[oe]=ge(K[oe],oe,K);return _e}function Gi(K,ge){for(var oe=-1,Se=ge.length,_e=K.length;++oe<Se;)K[_e+oe]=ge[oe];return K}function Hu(K,ge,oe,Se){var _e=-1,tt=K==null?0:K.length;for(Se&&tt&&(oe=K[++_e]);++_e<tt;)oe=ge(oe,K[_e],_e,K);return oe}function cw(K,ge,oe,Se){var _e=K==null?0:K.length;for(Se&&_e&&(oe=K[--_e]);_e--;)oe=ge(oe,K[_e],_e,K);return oe}function Bu(K,ge){for(var oe=-1,Se=K==null?0:K.length;++oe<Se;)if(ge(K[oe],oe,K))return!0;return!1}var uw=Fu("length");function dw(K){return K.split("")}function fw(K){return K.match(Je)||[]}function $3(K,ge,oe){var Se;return oe(K,function(_e,tt,Lt){if(ge(_e,tt,Lt))return Se=tt,!1}),Se}function Rl(K,ge,oe,Se){for(var _e=K.length,tt=oe+(Se?1:-1);Se?tt--:++tt<_e;)if(ge(K[tt],tt,K))return tt;return-1}function nr(K,ge,oe){return ge===ge?Nw(K,ge,oe):Rl(K,K3,oe)}function hw(K,ge,oe,Se){for(var _e=oe-1,tt=K.length;++_e<tt;)if(Se(K[_e],ge))return _e;return-1}function K3(K){return K!==K}function X3(K,ge){var oe=K==null?0:K.length;return oe?Zu(K,ge)/oe:$}function Fu(K){return function(ge){return ge==null?n:ge[K]}}function Gu(K){return function(ge){return K==null?n:K[ge]}}function q3(K,ge,oe,Se,_e){return _e(K,function(tt,Lt,lt){oe=Se?(Se=!1,tt):ge(oe,tt,Lt,lt)}),oe}function gw(K,ge){var oe=K.length;for(K.sort(ge);oe--;)K[oe]=K[oe].value;return K}function Zu(K,ge){for(var oe,Se=-1,_e=K.length;++Se<_e;){var tt=ge(K[Se]);tt!==n&&(oe=oe===n?tt:oe+tt)}return oe}function Yu(K,ge){for(var oe=-1,Se=Array(K);++oe<K;)Se[oe]=ge(oe);return Se}function mw(K,ge){return dt(ge,function(oe){return[oe,K[oe]]})}function e6(K){return K&&K.slice(0,a6(K)+1).replace(va,"")}function on(K){return function(ge){return K(ge)}}function Uu(K,ge){return dt(ge,function(oe){return K[oe]})}function ls(K,ge){return K.has(ge)}function t6(K,ge){for(var oe=-1,Se=K.length;++oe<Se&&nr(ge,K[oe],0)>-1;);return oe}function n6(K,ge){for(var oe=K.length;oe--&&nr(ge,K[oe],0)>-1;);return oe}function pw(K,ge){for(var oe=K.length,Se=0;oe--;)K[oe]===ge&&++Se;return Se}var bw=Gu(ew),yw=Gu(tw);function Cw(K){return"\\"+iw[K]}function vw(K,ge){return K==null?n:K[ge]}function ir(K){return $v.test(K)}function ww(K){return Kv.test(K)}function Mw(K){for(var ge,oe=[];!(ge=K.next()).done;)oe.push(ge.value);return oe}function $u(K){var ge=-1,oe=Array(K.size);return K.forEach(function(Se,_e){oe[++ge]=[_e,Se]}),oe}function i6(K,ge){return function(oe){return K(ge(oe))}}function Zi(K,ge){for(var oe=-1,Se=K.length,_e=0,tt=[];++oe<Se;){var Lt=K[oe];(Lt===ge||Lt===m)&&(K[oe]=m,tt[_e++]=oe)}return tt}function _l(K){var ge=-1,oe=Array(K.size);return K.forEach(function(Se){oe[++ge]=Se}),oe}function Iw(K){var ge=-1,oe=Array(K.size);return K.forEach(function(Se){oe[++ge]=[Se,Se]}),oe}function Nw(K,ge,oe){for(var Se=oe-1,_e=K.length;++Se<_e;)if(K[Se]===ge)return Se;return-1}function Lw(K,ge,oe){for(var Se=oe+1;Se--;)if(K[Se]===ge)return Se;return Se}function ar(K){return ir(K)?Tw(K):uw(K)}function Pn(K){return ir(K)?xw(K):dw(K)}function a6(K){for(var ge=K.length;ge--&&Ou.test(K.charAt(ge)););return ge}var kw=Gu(nw);function Tw(K){for(var ge=Qu.lastIndex=0;Qu.test(K);)++ge;return ge}function xw(K){return K.match(Qu)||[]}function Sw(K){return K.match(Uv)||[]}var Dw=function K(ge){ge=ge==null?jt:rr.defaults(jt.Object(),ge,rr.pick(jt,Xv));var oe=ge.Array,Se=ge.Date,_e=ge.Error,tt=ge.Function,Lt=ge.Math,lt=ge.Object,Ku=ge.RegExp,jw=ge.String,In=ge.TypeError,Wl=oe.prototype,zw=tt.prototype,sr=lt.prototype,Hl=ge["__core-js_shared__"],Bl=zw.toString,rt=sr.hasOwnProperty,Ow=0,r6=function(){var r=/[^.]+$/.exec(Hl&&Hl.keys&&Hl.keys.IE_PROTO||"");return r?"Symbol(src)_1."+r:""}(),Fl=sr.toString,Ew=Bl.call(lt),Pw=jt._,Aw=Ku("^"+Bl.call(rt).replace(Ca,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Gl=W3?ge.Buffer:n,Yi=ge.Symbol,Zl=ge.Uint8Array,s6=Gl?Gl.allocUnsafe:n,Yl=i6(lt.getPrototypeOf,lt),l6=lt.create,o6=sr.propertyIsEnumerable,Ul=Wl.splice,c6=Yi?Yi.isConcatSpreadable:n,os=Yi?Yi.iterator:n,Ma=Yi?Yi.toStringTag:n,$l=function(){try{var r=Ta(lt,"defineProperty");return r({},"",{}),r}catch{}}(),Vw=ge.clearTimeout!==jt.clearTimeout&&ge.clearTimeout,Jw=Se&&Se.now!==jt.Date.now&&Se.now,Qw=ge.setTimeout!==jt.setTimeout&&ge.setTimeout,Kl=Lt.ceil,Xl=Lt.floor,Xu=lt.getOwnPropertySymbols,Rw=Gl?Gl.isBuffer:n,u6=ge.isFinite,_w=Wl.join,Ww=i6(lt.keys,lt),kt=Lt.max,Et=Lt.min,Hw=Se.now,Bw=ge.parseInt,d6=Lt.random,Fw=Wl.reverse,qu=Ta(ge,"DataView"),cs=Ta(ge,"Map"),ed=Ta(ge,"Promise"),lr=Ta(ge,"Set"),us=Ta(ge,"WeakMap"),ds=Ta(lt,"create"),ql=us&&new us,or={},Gw=xa(qu),Zw=xa(cs),Yw=xa(ed),Uw=xa(lr),$w=xa(us),eo=Yi?Yi.prototype:n,fs=eo?eo.valueOf:n,f6=eo?eo.toString:n;function E(r){if(pt(r)&&!We(r)&&!(r instanceof Ke)){if(r instanceof Nn)return r;if(rt.call(r,"__wrapped__"))return hg(r)}return new Nn(r)}var cr=function(){function r(){}return function(l){if(!ht(l))return{};if(l6)return l6(l);r.prototype=l;var h=new r;return r.prototype=n,h}}();function to(){}function Nn(r,l){this.__wrapped__=r,this.__actions__=[],this.__chain__=!!l,this.__index__=0,this.__values__=n}E.templateSettings={escape:ya,evaluate:Su,interpolate:Ol,variable:"",imports:{_:E}},E.prototype=to.prototype,E.prototype.constructor=E,Nn.prototype=cr(to.prototype),Nn.prototype.constructor=Nn;function Ke(r){this.__wrapped__=r,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=A,this.__views__=[]}function Kw(){var r=new Ke(this.__wrapped__);return r.__actions__=tn(this.__actions__),r.__dir__=this.__dir__,r.__filtered__=this.__filtered__,r.__iteratees__=tn(this.__iteratees__),r.__takeCount__=this.__takeCount__,r.__views__=tn(this.__views__),r}function Xw(){if(this.__filtered__){var r=new Ke(this);r.__dir__=-1,r.__filtered__=!0}else r=this.clone(),r.__dir__*=-1;return r}function qw(){var r=this.__wrapped__.value(),l=this.__dir__,h=We(r),w=l<0,S=h?r.length:0,V=dI(0,S,this.__views__),G=V.start,U=V.end,q=U-G,be=w?U:G-1,ye=this.__iteratees__,ve=ye.length,Te=0,De=Et(q,this.__takeCount__);if(!h||!w&&S==q&&De==q)return A6(r,this.__actions__);var Pe=[];e:for(;q--&&Te<De;){be+=l;for(var Fe=-1,Ae=r[be];++Fe<ve;){var $e=ye[Fe],qe=$e.iteratee,dn=$e.type,Bt=qe(Ae);if(dn==ue)Ae=Bt;else if(!Bt){if(dn==ne)continue e;break e}}Pe[Te++]=Ae}return Pe}Ke.prototype=cr(to.prototype),Ke.prototype.constructor=Ke;function Ia(r){var l=-1,h=r==null?0:r.length;for(this.clear();++l<h;){var w=r[l];this.set(w[0],w[1])}}function eM(){this.__data__=ds?ds(null):{},this.size=0}function tM(r){var l=this.has(r)&&delete this.__data__[r];return this.size-=l?1:0,l}function nM(r){var l=this.__data__;if(ds){var h=l[r];return h===u?n:h}return rt.call(l,r)?l[r]:n}function iM(r){var l=this.__data__;return ds?l[r]!==n:rt.call(l,r)}function aM(r,l){var h=this.__data__;return this.size+=this.has(r)?0:1,h[r]=ds&&l===n?u:l,this}Ia.prototype.clear=eM,Ia.prototype.delete=tM,Ia.prototype.get=nM,Ia.prototype.has=iM,Ia.prototype.set=aM;function bi(r){var l=-1,h=r==null?0:r.length;for(this.clear();++l<h;){var w=r[l];this.set(w[0],w[1])}}function rM(){this.__data__=[],this.size=0}function sM(r){var l=this.__data__,h=no(l,r);if(h<0)return!1;var w=l.length-1;return h==w?l.pop():Ul.call(l,h,1),--this.size,!0}function lM(r){var l=this.__data__,h=no(l,r);return h<0?n:l[h][1]}function oM(r){return no(this.__data__,r)>-1}function cM(r,l){var h=this.__data__,w=no(h,r);return w<0?(++this.size,h.push([r,l])):h[w][1]=l,this}bi.prototype.clear=rM,bi.prototype.delete=sM,bi.prototype.get=lM,bi.prototype.has=oM,bi.prototype.set=cM;function yi(r){var l=-1,h=r==null?0:r.length;for(this.clear();++l<h;){var w=r[l];this.set(w[0],w[1])}}function uM(){this.size=0,this.__data__={hash:new Ia,map:new(cs||bi),string:new Ia}}function dM(r){var l=mo(this,r).delete(r);return this.size-=l?1:0,l}function fM(r){return mo(this,r).get(r)}function hM(r){return mo(this,r).has(r)}function gM(r,l){var h=mo(this,r),w=h.size;return h.set(r,l),this.size+=h.size==w?0:1,this}yi.prototype.clear=uM,yi.prototype.delete=dM,yi.prototype.get=fM,yi.prototype.has=hM,yi.prototype.set=gM;function Na(r){var l=-1,h=r==null?0:r.length;for(this.__data__=new yi;++l<h;)this.add(r[l])}function mM(r){return this.__data__.set(r,u),this}function pM(r){return this.__data__.has(r)}Na.prototype.add=Na.prototype.push=mM,Na.prototype.has=pM;function An(r){var l=this.__data__=new bi(r);this.size=l.size}function bM(){this.__data__=new bi,this.size=0}function yM(r){var l=this.__data__,h=l.delete(r);return this.size=l.size,h}function CM(r){return this.__data__.get(r)}function vM(r){return this.__data__.has(r)}function wM(r,l){var h=this.__data__;if(h instanceof bi){var w=h.__data__;if(!cs||w.length<s-1)return w.push([r,l]),this.size=++h.size,this;h=this.__data__=new yi(w)}return h.set(r,l),this.size=h.size,this}An.prototype.clear=bM,An.prototype.delete=yM,An.prototype.get=CM,An.prototype.has=vM,An.prototype.set=wM;function h6(r,l){var h=We(r),w=!h&&Sa(r),S=!h&&!w&&qi(r),V=!h&&!w&&!S&&hr(r),G=h||w||S||V,U=G?Yu(r.length,jw):[],q=U.length;for(var be in r)(l||rt.call(r,be))&&!(G&&(be=="length"||S&&(be=="offset"||be=="parent")||V&&(be=="buffer"||be=="byteLength"||be=="byteOffset")||Mi(be,q)))&&U.push(be);return U}function g6(r){var l=r.length;return l?r[dd(0,l-1)]:n}function MM(r,l){return po(tn(r),La(l,0,r.length))}function IM(r){return po(tn(r))}function td(r,l,h){(h!==n&&!Vn(r[l],h)||h===n&&!(l in r))&&Ci(r,l,h)}function hs(r,l,h){var w=r[l];(!(rt.call(r,l)&&Vn(w,h))||h===n&&!(l in r))&&Ci(r,l,h)}function no(r,l){for(var h=r.length;h--;)if(Vn(r[h][0],l))return h;return-1}function NM(r,l,h,w){return Ui(r,function(S,V,G){l(w,S,h(S),G)}),w}function m6(r,l){return r&&ni(l,St(l),r)}function LM(r,l){return r&&ni(l,an(l),r)}function Ci(r,l,h){l=="__proto__"&&$l?$l(r,l,{configurable:!0,enumerable:!0,value:h,writable:!0}):r[l]=h}function nd(r,l){for(var h=-1,w=l.length,S=oe(w),V=r==null;++h<w;)S[h]=V?n:Ad(r,l[h]);return S}function La(r,l,h){return r===r&&(h!==n&&(r=r<=h?r:h),l!==n&&(r=r>=l?r:l)),r}function Ln(r,l,h,w,S,V){var G,U=l&p,q=l&y,be=l&b;if(h&&(G=S?h(r,w,S,V):h(r)),G!==n)return G;if(!ht(r))return r;var ye=We(r);if(ye){if(G=hI(r),!U)return tn(r,G)}else{var ve=Pt(r),Te=ve==re||ve==D;if(qi(r))return Q6(r,U);if(ve==ce||ve==ie||Te&&!S){if(G=q||Te?{}:ag(r),!U)return q?nI(r,LM(G,r)):tI(r,m6(G,r))}else{if(!ct[ve])return S?r:{};G=gI(r,ve,U)}}V||(V=new An);var De=V.get(r);if(De)return De;V.set(r,G),Og(r)?r.forEach(function(Ae){G.add(Ln(Ae,l,h,Ae,r,V))}):jg(r)&&r.forEach(function(Ae,$e){G.set($e,Ln(Ae,l,h,$e,r,V))});var Pe=be?q?Md:wd:q?an:St,Fe=ye?n:Pe(r);return Mn(Fe||r,function(Ae,$e){Fe&&($e=Ae,Ae=r[$e]),hs(G,$e,Ln(Ae,l,h,$e,r,V))}),G}function kM(r){var l=St(r);return function(h){return p6(h,r,l)}}function p6(r,l,h){var w=h.length;if(r==null)return!w;for(r=lt(r);w--;){var S=h[w],V=l[S],G=r[S];if(G===n&&!(S in r)||!V(G))return!1}return!0}function b6(r,l,h){if(typeof r!="function")throw new In(c);return vs(function(){r.apply(n,h)},l)}function gs(r,l,h,w){var S=-1,V=Ql,G=!0,U=r.length,q=[],be=l.length;if(!U)return q;h&&(l=dt(l,on(h))),w?(V=Wu,G=!1):l.length>=s&&(V=ls,G=!1,l=new Na(l));e:for(;++S<U;){var ye=r[S],ve=h==null?ye:h(ye);if(ye=w||ye!==0?ye:0,G&&ve===ve){for(var Te=be;Te--;)if(l[Te]===ve)continue e;q.push(ye)}else V(l,ve,w)||q.push(ye)}return q}var Ui=B6(ti),y6=B6(ad,!0);function TM(r,l){var h=!0;return Ui(r,function(w,S,V){return h=!!l(w,S,V),h}),h}function io(r,l,h){for(var w=-1,S=r.length;++w<S;){var V=r[w],G=l(V);if(G!=null&&(U===n?G===G&&!un(G):h(G,U)))var U=G,q=V}return q}function xM(r,l,h,w){var S=r.length;for(h=Be(h),h<0&&(h=-h>S?0:S+h),w=w===n||w>S?S:Be(w),w<0&&(w+=S),w=h>w?0:Pg(w);h<w;)r[h++]=l;return r}function C6(r,l){var h=[];return Ui(r,function(w,S,V){l(w,S,V)&&h.push(w)}),h}function zt(r,l,h,w,S){var V=-1,G=r.length;for(h||(h=pI),S||(S=[]);++V<G;){var U=r[V];l>0&&h(U)?l>1?zt(U,l-1,h,w,S):Gi(S,U):w||(S[S.length]=U)}return S}var id=F6(),v6=F6(!0);function ti(r,l){return r&&id(r,l,St)}function ad(r,l){return r&&v6(r,l,St)}function ao(r,l){return Fi(l,function(h){return Ii(r[h])})}function ka(r,l){l=Ki(l,r);for(var h=0,w=l.length;r!=null&&h<w;)r=r[ii(l[h++])];return h&&h==w?r:n}function w6(r,l,h){var w=l(r);return We(r)?w:Gi(w,h(r))}function Wt(r){return r==null?r===n?Qe:se:Ma&&Ma in lt(r)?uI(r):II(r)}function rd(r,l){return r>l}function SM(r,l){return r!=null&&rt.call(r,l)}function DM(r,l){return r!=null&&l in lt(r)}function jM(r,l,h){return r>=Et(l,h)&&r<kt(l,h)}function sd(r,l,h){for(var w=h?Wu:Ql,S=r[0].length,V=r.length,G=V,U=oe(V),q=1/0,be=[];G--;){var ye=r[G];G&&l&&(ye=dt(ye,on(l))),q=Et(ye.length,q),U[G]=!h&&(l||S>=120&&ye.length>=120)?new Na(G&&ye):n}ye=r[0];var ve=-1,Te=U[0];e:for(;++ve<S&&be.length<q;){var De=ye[ve],Pe=l?l(De):De;if(De=h||De!==0?De:0,!(Te?ls(Te,Pe):w(be,Pe,h))){for(G=V;--G;){var Fe=U[G];if(!(Fe?ls(Fe,Pe):w(r[G],Pe,h)))continue e}Te&&Te.push(Pe),be.push(De)}}return be}function zM(r,l,h,w){return ti(r,function(S,V,G){l(w,h(S),V,G)}),w}function ms(r,l,h){l=Ki(l,r),r=og(r,l);var w=r==null?r:r[ii(Tn(l))];return w==null?n:ln(w,r,h)}function M6(r){return pt(r)&&Wt(r)==ie}function OM(r){return pt(r)&&Wt(r)==yt}function EM(r){return pt(r)&&Wt(r)==X}function ps(r,l,h,w,S){return r===l?!0:r==null||l==null||!pt(r)&&!pt(l)?r!==r&&l!==l:PM(r,l,h,w,ps,S)}function PM(r,l,h,w,S,V){var G=We(r),U=We(l),q=G?ae:Pt(r),be=U?ae:Pt(l);q=q==ie?ce:q,be=be==ie?ce:be;var ye=q==ce,ve=be==ce,Te=q==be;if(Te&&qi(r)){if(!qi(l))return!1;G=!0,ye=!1}if(Te&&!ye)return V||(V=new An),G||hr(r)?tg(r,l,h,w,S,V):oI(r,l,q,h,w,S,V);if(!(h&v)){var De=ye&&rt.call(r,"__wrapped__"),Pe=ve&&rt.call(l,"__wrapped__");if(De||Pe){var Fe=De?r.value():r,Ae=Pe?l.value():l;return V||(V=new An),S(Fe,Ae,h,w,V)}}return Te?(V||(V=new An),cI(r,l,h,w,S,V)):!1}function AM(r){return pt(r)&&Pt(r)==_}function ld(r,l,h,w){var S=h.length,V=S,G=!w;if(r==null)return!V;for(r=lt(r);S--;){var U=h[S];if(G&&U[2]?U[1]!==r[U[0]]:!(U[0]in r))return!1}for(;++S<V;){U=h[S];var q=U[0],be=r[q],ye=U[1];if(G&&U[2]){if(be===n&&!(q in r))return!1}else{var ve=new An;if(w)var Te=w(be,ye,q,r,l,ve);if(!(Te===n?ps(ye,be,v|T,w,ve):Te))return!1}}return!0}function I6(r){if(!ht(r)||yI(r))return!1;var l=Ii(r)?Aw:kv;return l.test(xa(r))}function VM(r){return pt(r)&&Wt(r)==te}function JM(r){return pt(r)&&Pt(r)==le}function QM(r){return pt(r)&&Mo(r.length)&&!!ut[Wt(r)]}function N6(r){return typeof r=="function"?r:r==null?rn:typeof r=="object"?We(r)?T6(r[0],r[1]):k6(r):Gg(r)}function od(r){if(!Cs(r))return Ww(r);var l=[];for(var h in lt(r))rt.call(r,h)&&h!="constructor"&&l.push(h);return l}function RM(r){if(!ht(r))return MI(r);var l=Cs(r),h=[];for(var w in r)w=="constructor"&&(l||!rt.call(r,w))||h.push(w);return h}function cd(r,l){return r<l}function L6(r,l){var h=-1,w=nn(r)?oe(r.length):[];return Ui(r,function(S,V,G){w[++h]=l(S,V,G)}),w}function k6(r){var l=Nd(r);return l.length==1&&l[0][2]?sg(l[0][0],l[0][1]):function(h){return h===r||ld(h,r,l)}}function T6(r,l){return kd(r)&&rg(l)?sg(ii(r),l):function(h){var w=Ad(h,r);return w===n&&w===l?Vd(h,r):ps(l,w,v|T)}}function ro(r,l,h,w,S){r!==l&&id(l,function(V,G){if(S||(S=new An),ht(V))_M(r,l,G,h,ro,w,S);else{var U=w?w(xd(r,G),V,G+"",r,l,S):n;U===n&&(U=V),td(r,G,U)}},an)}function _M(r,l,h,w,S,V,G){var U=xd(r,h),q=xd(l,h),be=G.get(q);if(be){td(r,h,be);return}var ye=V?V(U,q,h+"",r,l,G):n,ve=ye===n;if(ve){var Te=We(q),De=!Te&&qi(q),Pe=!Te&&!De&&hr(q);ye=q,Te||De||Pe?We(U)?ye=U:Ct(U)?ye=tn(U):De?(ve=!1,ye=Q6(q,!0)):Pe?(ve=!1,ye=R6(q,!0)):ye=[]:ws(q)||Sa(q)?(ye=U,Sa(U)?ye=Ag(U):(!ht(U)||Ii(U))&&(ye=ag(q))):ve=!1}ve&&(G.set(q,ye),S(ye,q,w,V,G),G.delete(q)),td(r,h,ye)}function x6(r,l){var h=r.length;if(!!h)return l+=l<0?h:0,Mi(l,h)?r[l]:n}function S6(r,l,h){l.length?l=dt(l,function(V){return We(V)?function(G){return ka(G,V.length===1?V[0]:V)}:V}):l=[rn];var w=-1;l=dt(l,on(Ee()));var S=L6(r,function(V,G,U){var q=dt(l,function(be){return be(V)});return{criteria:q,index:++w,value:V}});return gw(S,function(V,G){return eI(V,G,h)})}function WM(r,l){return D6(r,l,function(h,w){return Vd(r,w)})}function D6(r,l,h){for(var w=-1,S=l.length,V={};++w<S;){var G=l[w],U=ka(r,G);h(U,G)&&bs(V,Ki(G,r),U)}return V}function HM(r){return function(l){return ka(l,r)}}function ud(r,l,h,w){var S=w?hw:nr,V=-1,G=l.length,U=r;for(r===l&&(l=tn(l)),h&&(U=dt(r,on(h)));++V<G;)for(var q=0,be=l[V],ye=h?h(be):be;(q=S(U,ye,q,w))>-1;)U!==r&&Ul.call(U,q,1),Ul.call(r,q,1);return r}function j6(r,l){for(var h=r?l.length:0,w=h-1;h--;){var S=l[h];if(h==w||S!==V){var V=S;Mi(S)?Ul.call(r,S,1):gd(r,S)}}return r}function dd(r,l){return r+Xl(d6()*(l-r+1))}function BM(r,l,h,w){for(var S=-1,V=kt(Kl((l-r)/(h||1)),0),G=oe(V);V--;)G[w?V:++S]=r,r+=h;return G}function fd(r,l){var h="";if(!r||l<1||l>fe)return h;do l%2&&(h+=r),l=Xl(l/2),l&&(r+=r);while(l);return h}function Ze(r,l){return Sd(lg(r,l,rn),r+"")}function FM(r){return g6(gr(r))}function GM(r,l){var h=gr(r);return po(h,La(l,0,h.length))}function bs(r,l,h,w){if(!ht(r))return r;l=Ki(l,r);for(var S=-1,V=l.length,G=V-1,U=r;U!=null&&++S<V;){var q=ii(l[S]),be=h;if(q==="__proto__"||q==="constructor"||q==="prototype")return r;if(S!=G){var ye=U[q];be=w?w(ye,q,U):n,be===n&&(be=ht(ye)?ye:Mi(l[S+1])?[]:{})}hs(U,q,be),U=U[q]}return r}var z6=ql?function(r,l){return ql.set(r,l),r}:rn,ZM=$l?function(r,l){return $l(r,"toString",{configurable:!0,enumerable:!1,value:Qd(l),writable:!0})}:rn;function YM(r){return po(gr(r))}function kn(r,l,h){var w=-1,S=r.length;l<0&&(l=-l>S?0:S+l),h=h>S?S:h,h<0&&(h+=S),S=l>h?0:h-l>>>0,l>>>=0;for(var V=oe(S);++w<S;)V[w]=r[w+l];return V}function UM(r,l){var h;return Ui(r,function(w,S,V){return h=l(w,S,V),!h}),!!h}function so(r,l,h){var w=0,S=r==null?w:r.length;if(typeof l=="number"&&l===l&&S<=F){for(;w<S;){var V=w+S>>>1,G=r[V];G!==null&&!un(G)&&(h?G<=l:G<l)?w=V+1:S=V}return S}return hd(r,l,rn,h)}function hd(r,l,h,w){var S=0,V=r==null?0:r.length;if(V===0)return 0;l=h(l);for(var G=l!==l,U=l===null,q=un(l),be=l===n;S<V;){var ye=Xl((S+V)/2),ve=h(r[ye]),Te=ve!==n,De=ve===null,Pe=ve===ve,Fe=un(ve);if(G)var Ae=w||Pe;else be?Ae=Pe&&(w||Te):U?Ae=Pe&&Te&&(w||!De):q?Ae=Pe&&Te&&!De&&(w||!Fe):De||Fe?Ae=!1:Ae=w?ve<=l:ve<l;Ae?S=ye+1:V=ye}return Et(V,H)}function O6(r,l){for(var h=-1,w=r.length,S=0,V=[];++h<w;){var G=r[h],U=l?l(G):G;if(!h||!Vn(U,q)){var q=U;V[S++]=G===0?0:G}}return V}function E6(r){return typeof r=="number"?r:un(r)?$:+r}function cn(r){if(typeof r=="string")return r;if(We(r))return dt(r,cn)+"";if(un(r))return f6?f6.call(r):"";var l=r+"";return l=="0"&&1/r==-Ne?"-0":l}function $i(r,l,h){var w=-1,S=Ql,V=r.length,G=!0,U=[],q=U;if(h)G=!1,S=Wu;else if(V>=s){var be=l?null:sI(r);if(be)return _l(be);G=!1,S=ls,q=new Na}else q=l?[]:U;e:for(;++w<V;){var ye=r[w],ve=l?l(ye):ye;if(ye=h||ye!==0?ye:0,G&&ve===ve){for(var Te=q.length;Te--;)if(q[Te]===ve)continue e;l&&q.push(ve),U.push(ye)}else S(q,ve,h)||(q!==U&&q.push(ve),U.push(ye))}return U}function gd(r,l){return l=Ki(l,r),r=og(r,l),r==null||delete r[ii(Tn(l))]}function P6(r,l,h,w){return bs(r,l,h(ka(r,l)),w)}function lo(r,l,h,w){for(var S=r.length,V=w?S:-1;(w?V--:++V<S)&&l(r[V],V,r););return h?kn(r,w?0:V,w?V+1:S):kn(r,w?V+1:0,w?S:V)}function A6(r,l){var h=r;return h instanceof Ke&&(h=h.value()),Hu(l,function(w,S){return S.func.apply(S.thisArg,Gi([w],S.args))},h)}function md(r,l,h){var w=r.length;if(w<2)return w?$i(r[0]):[];for(var S=-1,V=oe(w);++S<w;)for(var G=r[S],U=-1;++U<w;)U!=S&&(V[S]=gs(V[S]||G,r[U],l,h));return $i(zt(V,1),l,h)}function V6(r,l,h){for(var w=-1,S=r.length,V=l.length,G={};++w<S;){var U=w<V?l[w]:n;h(G,r[w],U)}return G}function pd(r){return Ct(r)?r:[]}function bd(r){return typeof r=="function"?r:rn}function Ki(r,l){return We(r)?r:kd(r,l)?[r]:fg(nt(r))}var $M=Ze;function Xi(r,l,h){var w=r.length;return h=h===n?w:h,!l&&h>=w?r:kn(r,l,h)}var J6=Vw||function(r){return jt.clearTimeout(r)};function Q6(r,l){if(l)return r.slice();var h=r.length,w=s6?s6(h):new r.constructor(h);return r.copy(w),w}function yd(r){var l=new r.constructor(r.byteLength);return new Zl(l).set(new Zl(r)),l}function KM(r,l){var h=l?yd(r.buffer):r.buffer;return new r.constructor(h,r.byteOffset,r.byteLength)}function XM(r){var l=new r.constructor(r.source,ss.exec(r));return l.lastIndex=r.lastIndex,l}function qM(r){return fs?lt(fs.call(r)):{}}function R6(r,l){var h=l?yd(r.buffer):r.buffer;return new r.constructor(h,r.byteOffset,r.length)}function _6(r,l){if(r!==l){var h=r!==n,w=r===null,S=r===r,V=un(r),G=l!==n,U=l===null,q=l===l,be=un(l);if(!U&&!be&&!V&&r>l||V&&G&&q&&!U&&!be||w&&G&&q||!h&&q||!S)return 1;if(!w&&!V&&!be&&r<l||be&&h&&S&&!w&&!V||U&&h&&S||!G&&S||!q)return-1}return 0}function eI(r,l,h){for(var w=-1,S=r.criteria,V=l.criteria,G=S.length,U=h.length;++w<G;){var q=_6(S[w],V[w]);if(q){if(w>=U)return q;var be=h[w];return q*(be=="desc"?-1:1)}}return r.index-l.index}function W6(r,l,h,w){for(var S=-1,V=r.length,G=h.length,U=-1,q=l.length,be=kt(V-G,0),ye=oe(q+be),ve=!w;++U<q;)ye[U]=l[U];for(;++S<G;)(ve||S<V)&&(ye[h[S]]=r[S]);for(;be--;)ye[U++]=r[S++];return ye}function H6(r,l,h,w){for(var S=-1,V=r.length,G=-1,U=h.length,q=-1,be=l.length,ye=kt(V-U,0),ve=oe(ye+be),Te=!w;++S<ye;)ve[S]=r[S];for(var De=S;++q<be;)ve[De+q]=l[q];for(;++G<U;)(Te||S<V)&&(ve[De+h[G]]=r[S++]);return ve}function tn(r,l){var h=-1,w=r.length;for(l||(l=oe(w));++h<w;)l[h]=r[h];return l}function ni(r,l,h,w){var S=!h;h||(h={});for(var V=-1,G=l.length;++V<G;){var U=l[V],q=w?w(h[U],r[U],U,h,r):n;q===n&&(q=r[U]),S?Ci(h,U,q):hs(h,U,q)}return h}function tI(r,l){return ni(r,Ld(r),l)}function nI(r,l){return ni(r,ng(r),l)}function oo(r,l){return function(h,w){var S=We(h)?lw:NM,V=l?l():{};return S(h,r,Ee(w,2),V)}}function ur(r){return Ze(function(l,h){var w=-1,S=h.length,V=S>1?h[S-1]:n,G=S>2?h[2]:n;for(V=r.length>3&&typeof V=="function"?(S--,V):n,G&&Ht(h[0],h[1],G)&&(V=S<3?n:V,S=1),l=lt(l);++w<S;){var U=h[w];U&&r(l,U,w,V)}return l})}function B6(r,l){return function(h,w){if(h==null)return h;if(!nn(h))return r(h,w);for(var S=h.length,V=l?S:-1,G=lt(h);(l?V--:++V<S)&&w(G[V],V,G)!==!1;);return h}}function F6(r){return function(l,h,w){for(var S=-1,V=lt(l),G=w(l),U=G.length;U--;){var q=G[r?U:++S];if(h(V[q],q,V)===!1)break}return l}}function iI(r,l,h){var w=l&x,S=ys(r);function V(){var G=this&&this!==jt&&this instanceof V?S:r;return G.apply(w?h:this,arguments)}return V}function G6(r){return function(l){l=nt(l);var h=ir(l)?Pn(l):n,w=h?h[0]:l.charAt(0),S=h?Xi(h,1).join(""):l.slice(1);return w[r]()+S}}function dr(r){return function(l){return Hu(Bg(Hg(l).replace(Zv,"")),r,"")}}function ys(r){return function(){var l=arguments;switch(l.length){case 0:return new r;case 1:return new r(l[0]);case 2:return new r(l[0],l[1]);case 3:return new r(l[0],l[1],l[2]);case 4:return new r(l[0],l[1],l[2],l[3]);case 5:return new r(l[0],l[1],l[2],l[3],l[4]);case 6:return new r(l[0],l[1],l[2],l[3],l[4],l[5]);case 7:return new r(l[0],l[1],l[2],l[3],l[4],l[5],l[6])}var h=cr(r.prototype),w=r.apply(h,l);return ht(w)?w:h}}function aI(r,l,h){var w=ys(r);function S(){for(var V=arguments.length,G=oe(V),U=V,q=fr(S);U--;)G[U]=arguments[U];var be=V<3&&G[0]!==q&&G[V-1]!==q?[]:Zi(G,q);if(V-=be.length,V<h)return K6(r,l,co,S.placeholder,n,G,be,n,n,h-V);var ye=this&&this!==jt&&this instanceof S?w:r;return ln(ye,this,G)}return S}function Z6(r){return function(l,h,w){var S=lt(l);if(!nn(l)){var V=Ee(h,3);l=St(l),h=function(U){return V(S[U],U,S)}}var G=r(l,h,w);return G>-1?S[V?l[G]:G]:n}}function Y6(r){return wi(function(l){var h=l.length,w=h,S=Nn.prototype.thru;for(r&&l.reverse();w--;){var V=l[w];if(typeof V!="function")throw new In(c);if(S&&!G&&go(V)=="wrapper")var G=new Nn([],!0)}for(w=G?w:h;++w<h;){V=l[w];var U=go(V),q=U=="wrapper"?Id(V):n;q&&Td(q[0])&&q[1]==(j|C|N|z)&&!q[4].length&&q[9]==1?G=G[go(q[0])].apply(G,q[3]):G=V.length==1&&Td(V)?G[U]():G.thru(V)}return function(){var be=arguments,ye=be[0];if(G&&be.length==1&&We(ye))return G.plant(ye).value();for(var ve=0,Te=h?l[ve].apply(this,be):ye;++ve<h;)Te=l[ve].call(this,Te);return Te}})}function co(r,l,h,w,S,V,G,U,q,be){var ye=l&j,ve=l&x,Te=l&k,De=l&(C|M),Pe=l&O,Fe=Te?n:ys(r);function Ae(){for(var $e=arguments.length,qe=oe($e),dn=$e;dn--;)qe[dn]=arguments[dn];if(De)var Bt=fr(Ae),fn=pw(qe,Bt);if(w&&(qe=W6(qe,w,S,De)),V&&(qe=H6(qe,V,G,De)),$e-=fn,De&&$e<be){var vt=Zi(qe,Bt);return K6(r,l,co,Ae.placeholder,h,qe,vt,U,q,be-$e)}var Jn=ve?h:this,Li=Te?Jn[r]:r;return $e=qe.length,U?qe=NI(qe,U):Pe&&$e>1&&qe.reverse(),ye&&q<$e&&(qe.length=q),this&&this!==jt&&this instanceof Ae&&(Li=Fe||ys(Li)),Li.apply(Jn,qe)}return Ae}function U6(r,l){return function(h,w){return zM(h,r,l(w),{})}}function uo(r,l){return function(h,w){var S;if(h===n&&w===n)return l;if(h!==n&&(S=h),w!==n){if(S===n)return w;typeof h=="string"||typeof w=="string"?(h=cn(h),w=cn(w)):(h=E6(h),w=E6(w)),S=r(h,w)}return S}}function Cd(r){return wi(function(l){return l=dt(l,on(Ee())),Ze(function(h){var w=this;return r(l,function(S){return ln(S,w,h)})})})}function fo(r,l){l=l===n?" ":cn(l);var h=l.length;if(h<2)return h?fd(l,r):l;var w=fd(l,Kl(r/ar(l)));return ir(l)?Xi(Pn(w),0,r).join(""):w.slice(0,r)}function rI(r,l,h,w){var S=l&x,V=ys(r);function G(){for(var U=-1,q=arguments.length,be=-1,ye=w.length,ve=oe(ye+q),Te=this&&this!==jt&&this instanceof G?V:r;++be<ye;)ve[be]=w[be];for(;q--;)ve[be++]=arguments[++U];return ln(Te,S?h:this,ve)}return G}function $6(r){return function(l,h,w){return w&&typeof w!="number"&&Ht(l,h,w)&&(h=w=n),l=Ni(l),h===n?(h=l,l=0):h=Ni(h),w=w===n?l<h?1:-1:Ni(w),BM(l,h,w,r)}}function ho(r){return function(l,h){return typeof l=="string"&&typeof h=="string"||(l=xn(l),h=xn(h)),r(l,h)}}function K6(r,l,h,w,S,V,G,U,q,be){var ye=l&C,ve=ye?G:n,Te=ye?n:G,De=ye?V:n,Pe=ye?n:V;l|=ye?N:L,l&=~(ye?L:N),l&I||(l&=~(x|k));var Fe=[r,l,S,De,ve,Pe,Te,U,q,be],Ae=h.apply(n,Fe);return Td(r)&&cg(Ae,Fe),Ae.placeholder=w,ug(Ae,r,l)}function vd(r){var l=Lt[r];return function(h,w){if(h=xn(h),w=w==null?0:Et(Be(w),292),w&&u6(h)){var S=(nt(h)+"e").split("e"),V=l(S[0]+"e"+(+S[1]+w));return S=(nt(V)+"e").split("e"),+(S[0]+"e"+(+S[1]-w))}return l(h)}}var sI=lr&&1/_l(new lr([,-0]))[1]==Ne?function(r){return new lr(r)}:Wd;function X6(r){return function(l){var h=Pt(l);return h==_?$u(l):h==le?Iw(l):mw(l,r(l))}}function vi(r,l,h,w,S,V,G,U){var q=l&k;if(!q&&typeof r!="function")throw new In(c);var be=w?w.length:0;if(be||(l&=~(N|L),w=S=n),G=G===n?G:kt(Be(G),0),U=U===n?U:Be(U),be-=S?S.length:0,l&L){var ye=w,ve=S;w=S=n}var Te=q?n:Id(r),De=[r,l,h,w,S,ye,ve,V,G,U];if(Te&&wI(De,Te),r=De[0],l=De[1],h=De[2],w=De[3],S=De[4],U=De[9]=De[9]===n?q?0:r.length:kt(De[9]-be,0),!U&&l&(C|M)&&(l&=~(C|M)),!l||l==x)var Pe=iI(r,l,h);else l==C||l==M?Pe=aI(r,l,U):(l==N||l==(x|N))&&!S.length?Pe=rI(r,l,h,w):Pe=co.apply(n,De);var Fe=Te?z6:cg;return ug(Fe(Pe,De),r,l)}function q6(r,l,h,w){return r===n||Vn(r,sr[h])&&!rt.call(w,h)?l:r}function eg(r,l,h,w,S,V){return ht(r)&&ht(l)&&(V.set(l,r),ro(r,l,n,eg,V),V.delete(l)),r}function lI(r){return ws(r)?n:r}function tg(r,l,h,w,S,V){var G=h&v,U=r.length,q=l.length;if(U!=q&&!(G&&q>U))return!1;var be=V.get(r),ye=V.get(l);if(be&&ye)return be==l&&ye==r;var ve=-1,Te=!0,De=h&T?new Na:n;for(V.set(r,l),V.set(l,r);++ve<U;){var Pe=r[ve],Fe=l[ve];if(w)var Ae=G?w(Fe,Pe,ve,l,r,V):w(Pe,Fe,ve,r,l,V);if(Ae!==n){if(Ae)continue;Te=!1;break}if(De){if(!Bu(l,function($e,qe){if(!ls(De,qe)&&(Pe===$e||S(Pe,$e,h,w,V)))return De.push(qe)})){Te=!1;break}}else if(!(Pe===Fe||S(Pe,Fe,h,w,V))){Te=!1;break}}return V.delete(r),V.delete(l),Te}function oI(r,l,h,w,S,V,G){switch(h){case at:if(r.byteLength!=l.byteLength||r.byteOffset!=l.byteOffset)return!1;r=r.buffer,l=l.buffer;case yt:return!(r.byteLength!=l.byteLength||!V(new Zl(r),new Zl(l)));case Le:case X:case J:return Vn(+r,+l);case Q:return r.name==l.name&&r.message==l.message;case te:case we:return r==l+"";case _:var U=$u;case le:var q=w&v;if(U||(U=_l),r.size!=l.size&&!q)return!1;var be=G.get(r);if(be)return be==l;w|=T,G.set(r,l);var ye=tg(U(r),U(l),w,S,V,G);return G.delete(r),ye;case je:if(fs)return fs.call(r)==fs.call(l)}return!1}function cI(r,l,h,w,S,V){var G=h&v,U=wd(r),q=U.length,be=wd(l),ye=be.length;if(q!=ye&&!G)return!1;for(var ve=q;ve--;){var Te=U[ve];if(!(G?Te in l:rt.call(l,Te)))return!1}var De=V.get(r),Pe=V.get(l);if(De&&Pe)return De==l&&Pe==r;var Fe=!0;V.set(r,l),V.set(l,r);for(var Ae=G;++ve<q;){Te=U[ve];var $e=r[Te],qe=l[Te];if(w)var dn=G?w(qe,$e,Te,l,r,V):w($e,qe,Te,r,l,V);if(!(dn===n?$e===qe||S($e,qe,h,w,V):dn)){Fe=!1;break}Ae||(Ae=Te=="constructor")}if(Fe&&!Ae){var Bt=r.constructor,fn=l.constructor;Bt!=fn&&"constructor"in r&&"constructor"in l&&!(typeof Bt=="function"&&Bt instanceof Bt&&typeof fn=="function"&&fn instanceof fn)&&(Fe=!1)}return V.delete(r),V.delete(l),Fe}function wi(r){return Sd(lg(r,n,pg),r+"")}function wd(r){return w6(r,St,Ld)}function Md(r){return w6(r,an,ng)}var Id=ql?function(r){return ql.get(r)}:Wd;function go(r){for(var l=r.name+"",h=or[l],w=rt.call(or,l)?h.length:0;w--;){var S=h[w],V=S.func;if(V==null||V==r)return S.name}return l}function fr(r){var l=rt.call(E,"placeholder")?E:r;return l.placeholder}function Ee(){var r=E.iteratee||Rd;return r=r===Rd?N6:r,arguments.length?r(arguments[0],arguments[1]):r}function mo(r,l){var h=r.__data__;return bI(l)?h[typeof l=="string"?"string":"hash"]:h.map}function Nd(r){for(var l=St(r),h=l.length;h--;){var w=l[h],S=r[w];l[h]=[w,S,rg(S)]}return l}function Ta(r,l){var h=vw(r,l);return I6(h)?h:n}function uI(r){var l=rt.call(r,Ma),h=r[Ma];try{r[Ma]=n;var w=!0}catch{}var S=Fl.call(r);return w&&(l?r[Ma]=h:delete r[Ma]),S}var Ld=Xu?function(r){return r==null?[]:(r=lt(r),Fi(Xu(r),function(l){return o6.call(r,l)}))}:Hd,ng=Xu?function(r){for(var l=[];r;)Gi(l,Ld(r)),r=Yl(r);return l}:Hd,Pt=Wt;(qu&&Pt(new qu(new ArrayBuffer(1)))!=at||cs&&Pt(new cs)!=_||ed&&Pt(ed.resolve())!=pe||lr&&Pt(new lr)!=le||us&&Pt(new us)!=Xe)&&(Pt=function(r){var l=Wt(r),h=l==ce?r.constructor:n,w=h?xa(h):"";if(w)switch(w){case Gw:return at;case Zw:return _;case Yw:return pe;case Uw:return le;case $w:return Xe}return l});function dI(r,l,h){for(var w=-1,S=h.length;++w<S;){var V=h[w],G=V.size;switch(V.type){case"drop":r+=G;break;case"dropRight":l-=G;break;case"take":l=Et(l,r+G);break;case"takeRight":r=kt(r,l-G);break}}return{start:r,end:l}}function fI(r){var l=r.match(Ie);return l?l[1].split(Oe):[]}function ig(r,l,h){l=Ki(l,r);for(var w=-1,S=l.length,V=!1;++w<S;){var G=ii(l[w]);if(!(V=r!=null&&h(r,G)))break;r=r[G]}return V||++w!=S?V:(S=r==null?0:r.length,!!S&&Mo(S)&&Mi(G,S)&&(We(r)||Sa(r)))}function hI(r){var l=r.length,h=new r.constructor(l);return l&&typeof r[0]=="string"&&rt.call(r,"index")&&(h.index=r.index,h.input=r.input),h}function ag(r){return typeof r.constructor=="function"&&!Cs(r)?cr(Yl(r)):{}}function gI(r,l,h){var w=r.constructor;switch(l){case yt:return yd(r);case Le:case X:return new w(+r);case at:return KM(r,h);case ft:case vn:case et:case mt:case Ge:case _t:case ba:case er:case is:return R6(r,h);case _:return new w;case J:case we:return new w(r);case te:return XM(r);case le:return new w;case je:return qM(r)}}function mI(r,l){var h=l.length;if(!h)return r;var w=h-1;return l[w]=(h>1?"& ":"")+l[w],l=l.join(h>2?", ":" "),r.replace(Eu,`{
9
+ /* [wrapped with `+l+`] */
10
+ `)}function pI(r){return We(r)||Sa(r)||!!(c6&&r&&r[c6])}function Mi(r,l){var h=typeof r;return l=l==null?fe:l,!!l&&(h=="number"||h!="symbol"&&xv.test(r))&&r>-1&&r%1==0&&r<l}function Ht(r,l,h){if(!ht(h))return!1;var w=typeof l;return(w=="number"?nn(h)&&Mi(l,h.length):w=="string"&&l in h)?Vn(h[l],r):!1}function kd(r,l){if(We(r))return!1;var h=typeof r;return h=="number"||h=="symbol"||h=="boolean"||r==null||un(r)?!0:ju.test(r)||!Du.test(r)||l!=null&&r in lt(l)}function bI(r){var l=typeof r;return l=="string"||l=="number"||l=="symbol"||l=="boolean"?r!=="__proto__":r===null}function Td(r){var l=go(r),h=E[l];if(typeof h!="function"||!(l in Ke.prototype))return!1;if(r===h)return!0;var w=Id(h);return!!w&&r===w[0]}function yI(r){return!!r6&&r6 in r}var CI=Hl?Ii:Bd;function Cs(r){var l=r&&r.constructor,h=typeof l=="function"&&l.prototype||sr;return r===h}function rg(r){return r===r&&!ht(r)}function sg(r,l){return function(h){return h==null?!1:h[r]===l&&(l!==n||r in lt(h))}}function vI(r){var l=vo(r,function(w){return h.size===f&&h.clear(),w}),h=l.cache;return l}function wI(r,l){var h=r[1],w=l[1],S=h|w,V=S<(x|k|j),G=w==j&&h==C||w==j&&h==z&&r[7].length<=l[8]||w==(j|z)&&l[7].length<=l[8]&&h==C;if(!(V||G))return r;w&x&&(r[2]=l[2],S|=h&x?0:I);var U=l[3];if(U){var q=r[3];r[3]=q?W6(q,U,l[4]):U,r[4]=q?Zi(r[3],m):l[4]}return U=l[5],U&&(q=r[5],r[5]=q?H6(q,U,l[6]):U,r[6]=q?Zi(r[5],m):l[6]),U=l[7],U&&(r[7]=U),w&j&&(r[8]=r[8]==null?l[8]:Et(r[8],l[8])),r[9]==null&&(r[9]=l[9]),r[0]=l[0],r[1]=S,r}function MI(r){var l=[];if(r!=null)for(var h in lt(r))l.push(h);return l}function II(r){return Fl.call(r)}function lg(r,l,h){return l=kt(l===n?r.length-1:l,0),function(){for(var w=arguments,S=-1,V=kt(w.length-l,0),G=oe(V);++S<V;)G[S]=w[l+S];S=-1;for(var U=oe(l+1);++S<l;)U[S]=w[S];return U[l]=h(G),ln(r,this,U)}}function og(r,l){return l.length<2?r:ka(r,kn(l,0,-1))}function NI(r,l){for(var h=r.length,w=Et(l.length,h),S=tn(r);w--;){var V=l[w];r[w]=Mi(V,h)?S[V]:n}return r}function xd(r,l){if(!(l==="constructor"&&typeof r[l]=="function")&&l!="__proto__")return r[l]}var cg=dg(z6),vs=Qw||function(r,l){return jt.setTimeout(r,l)},Sd=dg(ZM);function ug(r,l,h){var w=l+"";return Sd(r,mI(w,LI(fI(w),h)))}function dg(r){var l=0,h=0;return function(){var w=Hw(),S=B-(w-h);if(h=w,S>0){if(++l>=Z)return arguments[0]}else l=0;return r.apply(n,arguments)}}function po(r,l){var h=-1,w=r.length,S=w-1;for(l=l===n?w:l;++h<l;){var V=dd(h,S),G=r[V];r[V]=r[h],r[h]=G}return r.length=l,r}var fg=vI(function(r){var l=[];return r.charCodeAt(0)===46&&l.push(""),r.replace(zu,function(h,w,S,V){l.push(S?V.replace(Bi,"$1"):w||h)}),l});function ii(r){if(typeof r=="string"||un(r))return r;var l=r+"";return l=="0"&&1/r==-Ne?"-0":l}function xa(r){if(r!=null){try{return Bl.call(r)}catch{}try{return r+""}catch{}}return""}function LI(r,l){return Mn(ee,function(h){var w="_."+h[0];l&h[1]&&!Ql(r,w)&&r.push(w)}),r.sort()}function hg(r){if(r instanceof Ke)return r.clone();var l=new Nn(r.__wrapped__,r.__chain__);return l.__actions__=tn(r.__actions__),l.__index__=r.__index__,l.__values__=r.__values__,l}function kI(r,l,h){(h?Ht(r,l,h):l===n)?l=1:l=kt(Be(l),0);var w=r==null?0:r.length;if(!w||l<1)return[];for(var S=0,V=0,G=oe(Kl(w/l));S<w;)G[V++]=kn(r,S,S+=l);return G}function TI(r){for(var l=-1,h=r==null?0:r.length,w=0,S=[];++l<h;){var V=r[l];V&&(S[w++]=V)}return S}function xI(){var r=arguments.length;if(!r)return[];for(var l=oe(r-1),h=arguments[0],w=r;w--;)l[w-1]=arguments[w];return Gi(We(h)?tn(h):[h],zt(l,1))}var SI=Ze(function(r,l){return Ct(r)?gs(r,zt(l,1,Ct,!0)):[]}),DI=Ze(function(r,l){var h=Tn(l);return Ct(h)&&(h=n),Ct(r)?gs(r,zt(l,1,Ct,!0),Ee(h,2)):[]}),jI=Ze(function(r,l){var h=Tn(l);return Ct(h)&&(h=n),Ct(r)?gs(r,zt(l,1,Ct,!0),n,h):[]});function zI(r,l,h){var w=r==null?0:r.length;return w?(l=h||l===n?1:Be(l),kn(r,l<0?0:l,w)):[]}function OI(r,l,h){var w=r==null?0:r.length;return w?(l=h||l===n?1:Be(l),l=w-l,kn(r,0,l<0?0:l)):[]}function EI(r,l){return r&&r.length?lo(r,Ee(l,3),!0,!0):[]}function PI(r,l){return r&&r.length?lo(r,Ee(l,3),!0):[]}function AI(r,l,h,w){var S=r==null?0:r.length;return S?(h&&typeof h!="number"&&Ht(r,l,h)&&(h=0,w=S),xM(r,l,h,w)):[]}function gg(r,l,h){var w=r==null?0:r.length;if(!w)return-1;var S=h==null?0:Be(h);return S<0&&(S=kt(w+S,0)),Rl(r,Ee(l,3),S)}function mg(r,l,h){var w=r==null?0:r.length;if(!w)return-1;var S=w-1;return h!==n&&(S=Be(h),S=h<0?kt(w+S,0):Et(S,w-1)),Rl(r,Ee(l,3),S,!0)}function pg(r){var l=r==null?0:r.length;return l?zt(r,1):[]}function VI(r){var l=r==null?0:r.length;return l?zt(r,Ne):[]}function JI(r,l){var h=r==null?0:r.length;return h?(l=l===n?1:Be(l),zt(r,l)):[]}function QI(r){for(var l=-1,h=r==null?0:r.length,w={};++l<h;){var S=r[l];w[S[0]]=S[1]}return w}function bg(r){return r&&r.length?r[0]:n}function RI(r,l,h){var w=r==null?0:r.length;if(!w)return-1;var S=h==null?0:Be(h);return S<0&&(S=kt(w+S,0)),nr(r,l,S)}function _I(r){var l=r==null?0:r.length;return l?kn(r,0,-1):[]}var WI=Ze(function(r){var l=dt(r,pd);return l.length&&l[0]===r[0]?sd(l):[]}),HI=Ze(function(r){var l=Tn(r),h=dt(r,pd);return l===Tn(h)?l=n:h.pop(),h.length&&h[0]===r[0]?sd(h,Ee(l,2)):[]}),BI=Ze(function(r){var l=Tn(r),h=dt(r,pd);return l=typeof l=="function"?l:n,l&&h.pop(),h.length&&h[0]===r[0]?sd(h,n,l):[]});function FI(r,l){return r==null?"":_w.call(r,l)}function Tn(r){var l=r==null?0:r.length;return l?r[l-1]:n}function GI(r,l,h){var w=r==null?0:r.length;if(!w)return-1;var S=w;return h!==n&&(S=Be(h),S=S<0?kt(w+S,0):Et(S,w-1)),l===l?Lw(r,l,S):Rl(r,K3,S,!0)}function ZI(r,l){return r&&r.length?x6(r,Be(l)):n}var YI=Ze(yg);function yg(r,l){return r&&r.length&&l&&l.length?ud(r,l):r}function UI(r,l,h){return r&&r.length&&l&&l.length?ud(r,l,Ee(h,2)):r}function $I(r,l,h){return r&&r.length&&l&&l.length?ud(r,l,n,h):r}var KI=wi(function(r,l){var h=r==null?0:r.length,w=nd(r,l);return j6(r,dt(l,function(S){return Mi(S,h)?+S:S}).sort(_6)),w});function XI(r,l){var h=[];if(!(r&&r.length))return h;var w=-1,S=[],V=r.length;for(l=Ee(l,3);++w<V;){var G=r[w];l(G,w,r)&&(h.push(G),S.push(w))}return j6(r,S),h}function Dd(r){return r==null?r:Fw.call(r)}function qI(r,l,h){var w=r==null?0:r.length;return w?(h&&typeof h!="number"&&Ht(r,l,h)?(l=0,h=w):(l=l==null?0:Be(l),h=h===n?w:Be(h)),kn(r,l,h)):[]}function eN(r,l){return so(r,l)}function tN(r,l,h){return hd(r,l,Ee(h,2))}function nN(r,l){var h=r==null?0:r.length;if(h){var w=so(r,l);if(w<h&&Vn(r[w],l))return w}return-1}function iN(r,l){return so(r,l,!0)}function aN(r,l,h){return hd(r,l,Ee(h,2),!0)}function rN(r,l){var h=r==null?0:r.length;if(h){var w=so(r,l,!0)-1;if(Vn(r[w],l))return w}return-1}function sN(r){return r&&r.length?O6(r):[]}function lN(r,l){return r&&r.length?O6(r,Ee(l,2)):[]}function oN(r){var l=r==null?0:r.length;return l?kn(r,1,l):[]}function cN(r,l,h){return r&&r.length?(l=h||l===n?1:Be(l),kn(r,0,l<0?0:l)):[]}function uN(r,l,h){var w=r==null?0:r.length;return w?(l=h||l===n?1:Be(l),l=w-l,kn(r,l<0?0:l,w)):[]}function dN(r,l){return r&&r.length?lo(r,Ee(l,3),!1,!0):[]}function fN(r,l){return r&&r.length?lo(r,Ee(l,3)):[]}var hN=Ze(function(r){return $i(zt(r,1,Ct,!0))}),gN=Ze(function(r){var l=Tn(r);return Ct(l)&&(l=n),$i(zt(r,1,Ct,!0),Ee(l,2))}),mN=Ze(function(r){var l=Tn(r);return l=typeof l=="function"?l:n,$i(zt(r,1,Ct,!0),n,l)});function pN(r){return r&&r.length?$i(r):[]}function bN(r,l){return r&&r.length?$i(r,Ee(l,2)):[]}function yN(r,l){return l=typeof l=="function"?l:n,r&&r.length?$i(r,n,l):[]}function jd(r){if(!(r&&r.length))return[];var l=0;return r=Fi(r,function(h){if(Ct(h))return l=kt(h.length,l),!0}),Yu(l,function(h){return dt(r,Fu(h))})}function Cg(r,l){if(!(r&&r.length))return[];var h=jd(r);return l==null?h:dt(h,function(w){return ln(l,n,w)})}var CN=Ze(function(r,l){return Ct(r)?gs(r,l):[]}),vN=Ze(function(r){return md(Fi(r,Ct))}),wN=Ze(function(r){var l=Tn(r);return Ct(l)&&(l=n),md(Fi(r,Ct),Ee(l,2))}),MN=Ze(function(r){var l=Tn(r);return l=typeof l=="function"?l:n,md(Fi(r,Ct),n,l)}),IN=Ze(jd);function NN(r,l){return V6(r||[],l||[],hs)}function LN(r,l){return V6(r||[],l||[],bs)}var kN=Ze(function(r){var l=r.length,h=l>1?r[l-1]:n;return h=typeof h=="function"?(r.pop(),h):n,Cg(r,h)});function vg(r){var l=E(r);return l.__chain__=!0,l}function TN(r,l){return l(r),r}function bo(r,l){return l(r)}var xN=wi(function(r){var l=r.length,h=l?r[0]:0,w=this.__wrapped__,S=function(V){return nd(V,r)};return l>1||this.__actions__.length||!(w instanceof Ke)||!Mi(h)?this.thru(S):(w=w.slice(h,+h+(l?1:0)),w.__actions__.push({func:bo,args:[S],thisArg:n}),new Nn(w,this.__chain__).thru(function(V){return l&&!V.length&&V.push(n),V}))});function SN(){return vg(this)}function DN(){return new Nn(this.value(),this.__chain__)}function jN(){this.__values__===n&&(this.__values__=Eg(this.value()));var r=this.__index__>=this.__values__.length,l=r?n:this.__values__[this.__index__++];return{done:r,value:l}}function zN(){return this}function ON(r){for(var l,h=this;h instanceof to;){var w=hg(h);w.__index__=0,w.__values__=n,l?S.__wrapped__=w:l=w;var S=w;h=h.__wrapped__}return S.__wrapped__=r,l}function EN(){var r=this.__wrapped__;if(r instanceof Ke){var l=r;return this.__actions__.length&&(l=new Ke(this)),l=l.reverse(),l.__actions__.push({func:bo,args:[Dd],thisArg:n}),new Nn(l,this.__chain__)}return this.thru(Dd)}function PN(){return A6(this.__wrapped__,this.__actions__)}var AN=oo(function(r,l,h){rt.call(r,h)?++r[h]:Ci(r,h,1)});function VN(r,l,h){var w=We(r)?U3:TM;return h&&Ht(r,l,h)&&(l=n),w(r,Ee(l,3))}function JN(r,l){var h=We(r)?Fi:C6;return h(r,Ee(l,3))}var QN=Z6(gg),RN=Z6(mg);function _N(r,l){return zt(yo(r,l),1)}function WN(r,l){return zt(yo(r,l),Ne)}function HN(r,l,h){return h=h===n?1:Be(h),zt(yo(r,l),h)}function wg(r,l){var h=We(r)?Mn:Ui;return h(r,Ee(l,3))}function Mg(r,l){var h=We(r)?ow:y6;return h(r,Ee(l,3))}var BN=oo(function(r,l,h){rt.call(r,h)?r[h].push(l):Ci(r,h,[l])});function FN(r,l,h,w){r=nn(r)?r:gr(r),h=h&&!w?Be(h):0;var S=r.length;return h<0&&(h=kt(S+h,0)),Io(r)?h<=S&&r.indexOf(l,h)>-1:!!S&&nr(r,l,h)>-1}var GN=Ze(function(r,l,h){var w=-1,S=typeof l=="function",V=nn(r)?oe(r.length):[];return Ui(r,function(G){V[++w]=S?ln(l,G,h):ms(G,l,h)}),V}),ZN=oo(function(r,l,h){Ci(r,h,l)});function yo(r,l){var h=We(r)?dt:L6;return h(r,Ee(l,3))}function YN(r,l,h,w){return r==null?[]:(We(l)||(l=l==null?[]:[l]),h=w?n:h,We(h)||(h=h==null?[]:[h]),S6(r,l,h))}var UN=oo(function(r,l,h){r[h?0:1].push(l)},function(){return[[],[]]});function $N(r,l,h){var w=We(r)?Hu:q3,S=arguments.length<3;return w(r,Ee(l,4),h,S,Ui)}function KN(r,l,h){var w=We(r)?cw:q3,S=arguments.length<3;return w(r,Ee(l,4),h,S,y6)}function XN(r,l){var h=We(r)?Fi:C6;return h(r,wo(Ee(l,3)))}function qN(r){var l=We(r)?g6:FM;return l(r)}function e7(r,l,h){(h?Ht(r,l,h):l===n)?l=1:l=Be(l);var w=We(r)?MM:GM;return w(r,l)}function t7(r){var l=We(r)?IM:YM;return l(r)}function n7(r){if(r==null)return 0;if(nn(r))return Io(r)?ar(r):r.length;var l=Pt(r);return l==_||l==le?r.size:od(r).length}function i7(r,l,h){var w=We(r)?Bu:UM;return h&&Ht(r,l,h)&&(l=n),w(r,Ee(l,3))}var a7=Ze(function(r,l){if(r==null)return[];var h=l.length;return h>1&&Ht(r,l[0],l[1])?l=[]:h>2&&Ht(l[0],l[1],l[2])&&(l=[l[0]]),S6(r,zt(l,1),[])}),Co=Jw||function(){return jt.Date.now()};function r7(r,l){if(typeof l!="function")throw new In(c);return r=Be(r),function(){if(--r<1)return l.apply(this,arguments)}}function Ig(r,l,h){return l=h?n:l,l=r&&l==null?r.length:l,vi(r,j,n,n,n,n,l)}function Ng(r,l){var h;if(typeof l!="function")throw new In(c);return r=Be(r),function(){return--r>0&&(h=l.apply(this,arguments)),r<=1&&(l=n),h}}var zd=Ze(function(r,l,h){var w=x;if(h.length){var S=Zi(h,fr(zd));w|=N}return vi(r,w,l,h,S)}),Lg=Ze(function(r,l,h){var w=x|k;if(h.length){var S=Zi(h,fr(Lg));w|=N}return vi(l,w,r,h,S)});function kg(r,l,h){l=h?n:l;var w=vi(r,C,n,n,n,n,n,l);return w.placeholder=kg.placeholder,w}function Tg(r,l,h){l=h?n:l;var w=vi(r,M,n,n,n,n,n,l);return w.placeholder=Tg.placeholder,w}function xg(r,l,h){var w,S,V,G,U,q,be=0,ye=!1,ve=!1,Te=!0;if(typeof r!="function")throw new In(c);l=xn(l)||0,ht(h)&&(ye=!!h.leading,ve="maxWait"in h,V=ve?kt(xn(h.maxWait)||0,l):V,Te="trailing"in h?!!h.trailing:Te);function De(vt){var Jn=w,Li=S;return w=S=n,be=vt,G=r.apply(Li,Jn),G}function Pe(vt){return be=vt,U=vs($e,l),ye?De(vt):G}function Fe(vt){var Jn=vt-q,Li=vt-be,Zg=l-Jn;return ve?Et(Zg,V-Li):Zg}function Ae(vt){var Jn=vt-q,Li=vt-be;return q===n||Jn>=l||Jn<0||ve&&Li>=V}function $e(){var vt=Co();if(Ae(vt))return qe(vt);U=vs($e,Fe(vt))}function qe(vt){return U=n,Te&&w?De(vt):(w=S=n,G)}function dn(){U!==n&&J6(U),be=0,w=q=S=U=n}function Bt(){return U===n?G:qe(Co())}function fn(){var vt=Co(),Jn=Ae(vt);if(w=arguments,S=this,q=vt,Jn){if(U===n)return Pe(q);if(ve)return J6(U),U=vs($e,l),De(q)}return U===n&&(U=vs($e,l)),G}return fn.cancel=dn,fn.flush=Bt,fn}var s7=Ze(function(r,l){return b6(r,1,l)}),l7=Ze(function(r,l,h){return b6(r,xn(l)||0,h)});function o7(r){return vi(r,O)}function vo(r,l){if(typeof r!="function"||l!=null&&typeof l!="function")throw new In(c);var h=function(){var w=arguments,S=l?l.apply(this,w):w[0],V=h.cache;if(V.has(S))return V.get(S);var G=r.apply(this,w);return h.cache=V.set(S,G)||V,G};return h.cache=new(vo.Cache||yi),h}vo.Cache=yi;function wo(r){if(typeof r!="function")throw new In(c);return function(){var l=arguments;switch(l.length){case 0:return!r.call(this);case 1:return!r.call(this,l[0]);case 2:return!r.call(this,l[0],l[1]);case 3:return!r.call(this,l[0],l[1],l[2])}return!r.apply(this,l)}}function c7(r){return Ng(2,r)}var u7=$M(function(r,l){l=l.length==1&&We(l[0])?dt(l[0],on(Ee())):dt(zt(l,1),on(Ee()));var h=l.length;return Ze(function(w){for(var S=-1,V=Et(w.length,h);++S<V;)w[S]=l[S].call(this,w[S]);return ln(r,this,w)})}),Od=Ze(function(r,l){var h=Zi(l,fr(Od));return vi(r,N,n,l,h)}),Sg=Ze(function(r,l){var h=Zi(l,fr(Sg));return vi(r,L,n,l,h)}),d7=wi(function(r,l){return vi(r,z,n,n,n,l)});function f7(r,l){if(typeof r!="function")throw new In(c);return l=l===n?l:Be(l),Ze(r,l)}function h7(r,l){if(typeof r!="function")throw new In(c);return l=l==null?0:kt(Be(l),0),Ze(function(h){var w=h[l],S=Xi(h,0,l);return w&&Gi(S,w),ln(r,this,S)})}function g7(r,l,h){var w=!0,S=!0;if(typeof r!="function")throw new In(c);return ht(h)&&(w="leading"in h?!!h.leading:w,S="trailing"in h?!!h.trailing:S),xg(r,l,{leading:w,maxWait:l,trailing:S})}function m7(r){return Ig(r,1)}function p7(r,l){return Od(bd(l),r)}function b7(){if(!arguments.length)return[];var r=arguments[0];return We(r)?r:[r]}function y7(r){return Ln(r,b)}function C7(r,l){return l=typeof l=="function"?l:n,Ln(r,b,l)}function v7(r){return Ln(r,p|b)}function w7(r,l){return l=typeof l=="function"?l:n,Ln(r,p|b,l)}function M7(r,l){return l==null||p6(r,l,St(l))}function Vn(r,l){return r===l||r!==r&&l!==l}var I7=ho(rd),N7=ho(function(r,l){return r>=l}),Sa=M6(function(){return arguments}())?M6:function(r){return pt(r)&&rt.call(r,"callee")&&!o6.call(r,"callee")},We=oe.isArray,L7=H3?on(H3):OM;function nn(r){return r!=null&&Mo(r.length)&&!Ii(r)}function Ct(r){return pt(r)&&nn(r)}function k7(r){return r===!0||r===!1||pt(r)&&Wt(r)==Le}var qi=Rw||Bd,T7=B3?on(B3):EM;function x7(r){return pt(r)&&r.nodeType===1&&!ws(r)}function S7(r){if(r==null)return!0;if(nn(r)&&(We(r)||typeof r=="string"||typeof r.splice=="function"||qi(r)||hr(r)||Sa(r)))return!r.length;var l=Pt(r);if(l==_||l==le)return!r.size;if(Cs(r))return!od(r).length;for(var h in r)if(rt.call(r,h))return!1;return!0}function D7(r,l){return ps(r,l)}function j7(r,l,h){h=typeof h=="function"?h:n;var w=h?h(r,l):n;return w===n?ps(r,l,n,h):!!w}function Ed(r){if(!pt(r))return!1;var l=Wt(r);return l==Q||l==W||typeof r.message=="string"&&typeof r.name=="string"&&!ws(r)}function z7(r){return typeof r=="number"&&u6(r)}function Ii(r){if(!ht(r))return!1;var l=Wt(r);return l==re||l==D||l==me||l==ke}function Dg(r){return typeof r=="number"&&r==Be(r)}function Mo(r){return typeof r=="number"&&r>-1&&r%1==0&&r<=fe}function ht(r){var l=typeof r;return r!=null&&(l=="object"||l=="function")}function pt(r){return r!=null&&typeof r=="object"}var jg=F3?on(F3):AM;function O7(r,l){return r===l||ld(r,l,Nd(l))}function E7(r,l,h){return h=typeof h=="function"?h:n,ld(r,l,Nd(l),h)}function P7(r){return zg(r)&&r!=+r}function A7(r){if(CI(r))throw new _e(o);return I6(r)}function V7(r){return r===null}function J7(r){return r==null}function zg(r){return typeof r=="number"||pt(r)&&Wt(r)==J}function ws(r){if(!pt(r)||Wt(r)!=ce)return!1;var l=Yl(r);if(l===null)return!0;var h=rt.call(l,"constructor")&&l.constructor;return typeof h=="function"&&h instanceof h&&Bl.call(h)==Ew}var Pd=G3?on(G3):VM;function Q7(r){return Dg(r)&&r>=-fe&&r<=fe}var Og=Z3?on(Z3):JM;function Io(r){return typeof r=="string"||!We(r)&&pt(r)&&Wt(r)==we}function un(r){return typeof r=="symbol"||pt(r)&&Wt(r)==je}var hr=Y3?on(Y3):QM;function R7(r){return r===n}function _7(r){return pt(r)&&Pt(r)==Xe}function W7(r){return pt(r)&&Wt(r)==st}var H7=ho(cd),B7=ho(function(r,l){return r<=l});function Eg(r){if(!r)return[];if(nn(r))return Io(r)?Pn(r):tn(r);if(os&&r[os])return Mw(r[os]());var l=Pt(r),h=l==_?$u:l==le?_l:gr;return h(r)}function Ni(r){if(!r)return r===0?r:0;if(r=xn(r),r===Ne||r===-Ne){var l=r<0?-1:1;return l*he}return r===r?r:0}function Be(r){var l=Ni(r),h=l%1;return l===l?h?l-h:l:0}function Pg(r){return r?La(Be(r),0,A):0}function xn(r){if(typeof r=="number")return r;if(un(r))return $;if(ht(r)){var l=typeof r.valueOf=="function"?r.valueOf():r;r=ht(l)?l+"":l}if(typeof r!="string")return r===0?r:+r;r=e6(r);var h=Lv.test(r);return h||Tv.test(r)?rw(r.slice(2),h?2:8):en.test(r)?$:+r}function Ag(r){return ni(r,an(r))}function F7(r){return r?La(Be(r),-fe,fe):r===0?r:0}function nt(r){return r==null?"":cn(r)}var G7=ur(function(r,l){if(Cs(l)||nn(l)){ni(l,St(l),r);return}for(var h in l)rt.call(l,h)&&hs(r,h,l[h])}),Vg=ur(function(r,l){ni(l,an(l),r)}),No=ur(function(r,l,h,w){ni(l,an(l),r,w)}),Z7=ur(function(r,l,h,w){ni(l,St(l),r,w)}),Y7=wi(nd);function U7(r,l){var h=cr(r);return l==null?h:m6(h,l)}var $7=Ze(function(r,l){r=lt(r);var h=-1,w=l.length,S=w>2?l[2]:n;for(S&&Ht(l[0],l[1],S)&&(w=1);++h<w;)for(var V=l[h],G=an(V),U=-1,q=G.length;++U<q;){var be=G[U],ye=r[be];(ye===n||Vn(ye,sr[be])&&!rt.call(r,be))&&(r[be]=V[be])}return r}),K7=Ze(function(r){return r.push(n,eg),ln(Jg,n,r)});function X7(r,l){return $3(r,Ee(l,3),ti)}function q7(r,l){return $3(r,Ee(l,3),ad)}function eL(r,l){return r==null?r:id(r,Ee(l,3),an)}function tL(r,l){return r==null?r:v6(r,Ee(l,3),an)}function nL(r,l){return r&&ti(r,Ee(l,3))}function iL(r,l){return r&&ad(r,Ee(l,3))}function aL(r){return r==null?[]:ao(r,St(r))}function rL(r){return r==null?[]:ao(r,an(r))}function Ad(r,l,h){var w=r==null?n:ka(r,l);return w===n?h:w}function sL(r,l){return r!=null&&ig(r,l,SM)}function Vd(r,l){return r!=null&&ig(r,l,DM)}var lL=U6(function(r,l,h){l!=null&&typeof l.toString!="function"&&(l=Fl.call(l)),r[l]=h},Qd(rn)),oL=U6(function(r,l,h){l!=null&&typeof l.toString!="function"&&(l=Fl.call(l)),rt.call(r,l)?r[l].push(h):r[l]=[h]},Ee),cL=Ze(ms);function St(r){return nn(r)?h6(r):od(r)}function an(r){return nn(r)?h6(r,!0):RM(r)}function uL(r,l){var h={};return l=Ee(l,3),ti(r,function(w,S,V){Ci(h,l(w,S,V),w)}),h}function dL(r,l){var h={};return l=Ee(l,3),ti(r,function(w,S,V){Ci(h,S,l(w,S,V))}),h}var fL=ur(function(r,l,h){ro(r,l,h)}),Jg=ur(function(r,l,h,w){ro(r,l,h,w)}),hL=wi(function(r,l){var h={};if(r==null)return h;var w=!1;l=dt(l,function(V){return V=Ki(V,r),w||(w=V.length>1),V}),ni(r,Md(r),h),w&&(h=Ln(h,p|y|b,lI));for(var S=l.length;S--;)gd(h,l[S]);return h});function gL(r,l){return Qg(r,wo(Ee(l)))}var mL=wi(function(r,l){return r==null?{}:WM(r,l)});function Qg(r,l){if(r==null)return{};var h=dt(Md(r),function(w){return[w]});return l=Ee(l),D6(r,h,function(w,S){return l(w,S[0])})}function pL(r,l,h){l=Ki(l,r);var w=-1,S=l.length;for(S||(S=1,r=n);++w<S;){var V=r==null?n:r[ii(l[w])];V===n&&(w=S,V=h),r=Ii(V)?V.call(r):V}return r}function bL(r,l,h){return r==null?r:bs(r,l,h)}function yL(r,l,h,w){return w=typeof w=="function"?w:n,r==null?r:bs(r,l,h,w)}var Rg=X6(St),_g=X6(an);function CL(r,l,h){var w=We(r),S=w||qi(r)||hr(r);if(l=Ee(l,4),h==null){var V=r&&r.constructor;S?h=w?new V:[]:ht(r)?h=Ii(V)?cr(Yl(r)):{}:h={}}return(S?Mn:ti)(r,function(G,U,q){return l(h,G,U,q)}),h}function vL(r,l){return r==null?!0:gd(r,l)}function wL(r,l,h){return r==null?r:P6(r,l,bd(h))}function ML(r,l,h,w){return w=typeof w=="function"?w:n,r==null?r:P6(r,l,bd(h),w)}function gr(r){return r==null?[]:Uu(r,St(r))}function IL(r){return r==null?[]:Uu(r,an(r))}function NL(r,l,h){return h===n&&(h=l,l=n),h!==n&&(h=xn(h),h=h===h?h:0),l!==n&&(l=xn(l),l=l===l?l:0),La(xn(r),l,h)}function LL(r,l,h){return l=Ni(l),h===n?(h=l,l=0):h=Ni(h),r=xn(r),jM(r,l,h)}function kL(r,l,h){if(h&&typeof h!="boolean"&&Ht(r,l,h)&&(l=h=n),h===n&&(typeof l=="boolean"?(h=l,l=n):typeof r=="boolean"&&(h=r,r=n)),r===n&&l===n?(r=0,l=1):(r=Ni(r),l===n?(l=r,r=0):l=Ni(l)),r>l){var w=r;r=l,l=w}if(h||r%1||l%1){var S=d6();return Et(r+S*(l-r+aw("1e-"+((S+"").length-1))),l)}return dd(r,l)}var TL=dr(function(r,l,h){return l=l.toLowerCase(),r+(h?Wg(l):l)});function Wg(r){return Jd(nt(r).toLowerCase())}function Hg(r){return r=nt(r),r&&r.replace(Sv,bw).replace(Yv,"")}function xL(r,l,h){r=nt(r),l=cn(l);var w=r.length;h=h===n?w:La(Be(h),0,w);var S=h;return h-=l.length,h>=0&&r.slice(h,S)==l}function SL(r){return r=nt(r),r&&rs.test(r)?r.replace(zl,yw):r}function DL(r){return r=nt(r),r&&El.test(r)?r.replace(Ca,"\\$&"):r}var jL=dr(function(r,l,h){return r+(h?"-":"")+l.toLowerCase()}),zL=dr(function(r,l,h){return r+(h?" ":"")+l.toLowerCase()}),OL=G6("toLowerCase");function EL(r,l,h){r=nt(r),l=Be(l);var w=l?ar(r):0;if(!l||w>=l)return r;var S=(l-w)/2;return fo(Xl(S),h)+r+fo(Kl(S),h)}function PL(r,l,h){r=nt(r),l=Be(l);var w=l?ar(r):0;return l&&w<l?r+fo(l-w,h):r}function AL(r,l,h){r=nt(r),l=Be(l);var w=l?ar(r):0;return l&&w<l?fo(l-w,h)+r:r}function VL(r,l,h){return h||l==null?l=0:l&&(l=+l),Bw(nt(r).replace(va,""),l||0)}function JL(r,l,h){return(h?Ht(r,l,h):l===n)?l=1:l=Be(l),fd(nt(r),l)}function QL(){var r=arguments,l=nt(r[0]);return r.length<3?l:l.replace(r[1],r[2])}var RL=dr(function(r,l,h){return r+(h?"_":"")+l.toLowerCase()});function _L(r,l,h){return h&&typeof h!="number"&&Ht(r,l,h)&&(l=h=n),h=h===n?A:h>>>0,h?(r=nt(r),r&&(typeof l=="string"||l!=null&&!Pd(l))&&(l=cn(l),!l&&ir(r))?Xi(Pn(r),0,h):r.split(l,h)):[]}var WL=dr(function(r,l,h){return r+(h?" ":"")+Jd(l)});function HL(r,l,h){return r=nt(r),h=h==null?0:La(Be(h),0,r.length),l=cn(l),r.slice(h,h+l.length)==l}function BL(r,l,h){var w=E.templateSettings;h&&Ht(r,l,h)&&(l=n),r=nt(r),l=No({},l,w,q6);var S=No({},l.imports,w.imports,q6),V=St(S),G=Uu(S,V),U,q,be=0,ye=l.interpolate||Al,ve="__p += '",Te=Ku((l.escape||Al).source+"|"+ye.source+"|"+(ye===Ol?Pl:Al).source+"|"+(l.evaluate||Al).source+"|$","g"),De="//# sourceURL="+(rt.call(l,"sourceURL")?(l.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++qv+"]")+`
11
+ `;r.replace(Te,function(Ae,$e,qe,dn,Bt,fn){return qe||(qe=dn),ve+=r.slice(be,fn).replace(Dv,Cw),$e&&(U=!0,ve+=`' +
12
+ __e(`+$e+`) +
13
+ '`),Bt&&(q=!0,ve+=`';
14
+ `+Bt+`;
15
+ __p += '`),qe&&(ve+=`' +
16
+ ((__t = (`+qe+`)) == null ? '' : __t) +
17
+ '`),be=fn+Ae.length,Ae}),ve+=`';
18
+ `;var Pe=rt.call(l,"variable")&&l.variable;if(!Pe)ve=`with (obj) {
19
+ `+ve+`
20
+ }
21
+ `;else if(ei.test(Pe))throw new _e(d);ve=(q?ve.replace(pi,""):ve).replace(as,"$1").replace(qn,"$1;"),ve="function("+(Pe||"obj")+`) {
22
+ `+(Pe?"":`obj || (obj = {});
23
+ `)+"var __t, __p = ''"+(U?", __e = _.escape":"")+(q?`, __j = Array.prototype.join;
24
+ function print() { __p += __j.call(arguments, '') }
25
+ `:`;
26
+ `)+ve+`return __p
27
+ }`;var Fe=Fg(function(){return tt(V,De+"return "+ve).apply(n,G)});if(Fe.source=ve,Ed(Fe))throw Fe;return Fe}function FL(r){return nt(r).toLowerCase()}function GL(r){return nt(r).toUpperCase()}function ZL(r,l,h){if(r=nt(r),r&&(h||l===n))return e6(r);if(!r||!(l=cn(l)))return r;var w=Pn(r),S=Pn(l),V=t6(w,S),G=n6(w,S)+1;return Xi(w,V,G).join("")}function YL(r,l,h){if(r=nt(r),r&&(h||l===n))return r.slice(0,a6(r)+1);if(!r||!(l=cn(l)))return r;var w=Pn(r),S=n6(w,Pn(l))+1;return Xi(w,0,S).join("")}function UL(r,l,h){if(r=nt(r),r&&(h||l===n))return r.replace(va,"");if(!r||!(l=cn(l)))return r;var w=Pn(r),S=t6(w,Pn(l));return Xi(w,S).join("")}function $L(r,l){var h=R,w=P;if(ht(l)){var S="separator"in l?l.separator:S;h="length"in l?Be(l.length):h,w="omission"in l?cn(l.omission):w}r=nt(r);var V=r.length;if(ir(r)){var G=Pn(r);V=G.length}if(h>=V)return r;var U=h-ar(w);if(U<1)return w;var q=G?Xi(G,0,U).join(""):r.slice(0,U);if(S===n)return q+w;if(G&&(U+=q.length-U),Pd(S)){if(r.slice(U).search(S)){var be,ye=q;for(S.global||(S=Ku(S.source,nt(ss.exec(S))+"g")),S.lastIndex=0;be=S.exec(ye);)var ve=be.index;q=q.slice(0,ve===n?U:ve)}}else if(r.indexOf(cn(S),U)!=U){var Te=q.lastIndexOf(S);Te>-1&&(q=q.slice(0,Te))}return q+w}function KL(r){return r=nt(r),r&&xu.test(r)?r.replace(jl,kw):r}var XL=dr(function(r,l,h){return r+(h?" ":"")+l.toUpperCase()}),Jd=G6("toUpperCase");function Bg(r,l,h){return r=nt(r),l=h?n:l,l===n?ww(r)?Sw(r):fw(r):r.match(l)||[]}var Fg=Ze(function(r,l){try{return ln(r,n,l)}catch(h){return Ed(h)?h:new _e(h)}}),qL=wi(function(r,l){return Mn(l,function(h){h=ii(h),Ci(r,h,zd(r[h],r))}),r});function ek(r){var l=r==null?0:r.length,h=Ee();return r=l?dt(r,function(w){if(typeof w[1]!="function")throw new In(c);return[h(w[0]),w[1]]}):[],Ze(function(w){for(var S=-1;++S<l;){var V=r[S];if(ln(V[0],this,w))return ln(V[1],this,w)}})}function tk(r){return kM(Ln(r,p))}function Qd(r){return function(){return r}}function nk(r,l){return r==null||r!==r?l:r}var ik=Y6(),ak=Y6(!0);function rn(r){return r}function Rd(r){return N6(typeof r=="function"?r:Ln(r,p))}function rk(r){return k6(Ln(r,p))}function sk(r,l){return T6(r,Ln(l,p))}var lk=Ze(function(r,l){return function(h){return ms(h,r,l)}}),ok=Ze(function(r,l){return function(h){return ms(r,h,l)}});function _d(r,l,h){var w=St(l),S=ao(l,w);h==null&&!(ht(l)&&(S.length||!w.length))&&(h=l,l=r,r=this,S=ao(l,St(l)));var V=!(ht(h)&&"chain"in h)||!!h.chain,G=Ii(r);return Mn(S,function(U){var q=l[U];r[U]=q,G&&(r.prototype[U]=function(){var be=this.__chain__;if(V||be){var ye=r(this.__wrapped__),ve=ye.__actions__=tn(this.__actions__);return ve.push({func:q,args:arguments,thisArg:r}),ye.__chain__=be,ye}return q.apply(r,Gi([this.value()],arguments))})}),r}function ck(){return jt._===this&&(jt._=Pw),this}function Wd(){}function uk(r){return r=Be(r),Ze(function(l){return x6(l,r)})}var dk=Cd(dt),fk=Cd(U3),hk=Cd(Bu);function Gg(r){return kd(r)?Fu(ii(r)):HM(r)}function gk(r){return function(l){return r==null?n:ka(r,l)}}var mk=$6(),pk=$6(!0);function Hd(){return[]}function Bd(){return!1}function bk(){return{}}function yk(){return""}function Ck(){return!0}function vk(r,l){if(r=Be(r),r<1||r>fe)return[];var h=A,w=Et(r,A);l=Ee(l),r-=A;for(var S=Yu(w,l);++h<r;)l(h);return S}function wk(r){return We(r)?dt(r,ii):un(r)?[r]:tn(fg(nt(r)))}function Mk(r){var l=++Ow;return nt(r)+l}var Ik=uo(function(r,l){return r+l},0),Nk=vd("ceil"),Lk=uo(function(r,l){return r/l},1),kk=vd("floor");function Tk(r){return r&&r.length?io(r,rn,rd):n}function xk(r,l){return r&&r.length?io(r,Ee(l,2),rd):n}function Sk(r){return X3(r,rn)}function Dk(r,l){return X3(r,Ee(l,2))}function jk(r){return r&&r.length?io(r,rn,cd):n}function zk(r,l){return r&&r.length?io(r,Ee(l,2),cd):n}var Ok=uo(function(r,l){return r*l},1),Ek=vd("round"),Pk=uo(function(r,l){return r-l},0);function Ak(r){return r&&r.length?Zu(r,rn):0}function Vk(r,l){return r&&r.length?Zu(r,Ee(l,2)):0}return E.after=r7,E.ary=Ig,E.assign=G7,E.assignIn=Vg,E.assignInWith=No,E.assignWith=Z7,E.at=Y7,E.before=Ng,E.bind=zd,E.bindAll=qL,E.bindKey=Lg,E.castArray=b7,E.chain=vg,E.chunk=kI,E.compact=TI,E.concat=xI,E.cond=ek,E.conforms=tk,E.constant=Qd,E.countBy=AN,E.create=U7,E.curry=kg,E.curryRight=Tg,E.debounce=xg,E.defaults=$7,E.defaultsDeep=K7,E.defer=s7,E.delay=l7,E.difference=SI,E.differenceBy=DI,E.differenceWith=jI,E.drop=zI,E.dropRight=OI,E.dropRightWhile=EI,E.dropWhile=PI,E.fill=AI,E.filter=JN,E.flatMap=_N,E.flatMapDeep=WN,E.flatMapDepth=HN,E.flatten=pg,E.flattenDeep=VI,E.flattenDepth=JI,E.flip=o7,E.flow=ik,E.flowRight=ak,E.fromPairs=QI,E.functions=aL,E.functionsIn=rL,E.groupBy=BN,E.initial=_I,E.intersection=WI,E.intersectionBy=HI,E.intersectionWith=BI,E.invert=lL,E.invertBy=oL,E.invokeMap=GN,E.iteratee=Rd,E.keyBy=ZN,E.keys=St,E.keysIn=an,E.map=yo,E.mapKeys=uL,E.mapValues=dL,E.matches=rk,E.matchesProperty=sk,E.memoize=vo,E.merge=fL,E.mergeWith=Jg,E.method=lk,E.methodOf=ok,E.mixin=_d,E.negate=wo,E.nthArg=uk,E.omit=hL,E.omitBy=gL,E.once=c7,E.orderBy=YN,E.over=dk,E.overArgs=u7,E.overEvery=fk,E.overSome=hk,E.partial=Od,E.partialRight=Sg,E.partition=UN,E.pick=mL,E.pickBy=Qg,E.property=Gg,E.propertyOf=gk,E.pull=YI,E.pullAll=yg,E.pullAllBy=UI,E.pullAllWith=$I,E.pullAt=KI,E.range=mk,E.rangeRight=pk,E.rearg=d7,E.reject=XN,E.remove=XI,E.rest=f7,E.reverse=Dd,E.sampleSize=e7,E.set=bL,E.setWith=yL,E.shuffle=t7,E.slice=qI,E.sortBy=a7,E.sortedUniq=sN,E.sortedUniqBy=lN,E.split=_L,E.spread=h7,E.tail=oN,E.take=cN,E.takeRight=uN,E.takeRightWhile=dN,E.takeWhile=fN,E.tap=TN,E.throttle=g7,E.thru=bo,E.toArray=Eg,E.toPairs=Rg,E.toPairsIn=_g,E.toPath=wk,E.toPlainObject=Ag,E.transform=CL,E.unary=m7,E.union=hN,E.unionBy=gN,E.unionWith=mN,E.uniq=pN,E.uniqBy=bN,E.uniqWith=yN,E.unset=vL,E.unzip=jd,E.unzipWith=Cg,E.update=wL,E.updateWith=ML,E.values=gr,E.valuesIn=IL,E.without=CN,E.words=Bg,E.wrap=p7,E.xor=vN,E.xorBy=wN,E.xorWith=MN,E.zip=IN,E.zipObject=NN,E.zipObjectDeep=LN,E.zipWith=kN,E.entries=Rg,E.entriesIn=_g,E.extend=Vg,E.extendWith=No,_d(E,E),E.add=Ik,E.attempt=Fg,E.camelCase=TL,E.capitalize=Wg,E.ceil=Nk,E.clamp=NL,E.clone=y7,E.cloneDeep=v7,E.cloneDeepWith=w7,E.cloneWith=C7,E.conformsTo=M7,E.deburr=Hg,E.defaultTo=nk,E.divide=Lk,E.endsWith=xL,E.eq=Vn,E.escape=SL,E.escapeRegExp=DL,E.every=VN,E.find=QN,E.findIndex=gg,E.findKey=X7,E.findLast=RN,E.findLastIndex=mg,E.findLastKey=q7,E.floor=kk,E.forEach=wg,E.forEachRight=Mg,E.forIn=eL,E.forInRight=tL,E.forOwn=nL,E.forOwnRight=iL,E.get=Ad,E.gt=I7,E.gte=N7,E.has=sL,E.hasIn=Vd,E.head=bg,E.identity=rn,E.includes=FN,E.indexOf=RI,E.inRange=LL,E.invoke=cL,E.isArguments=Sa,E.isArray=We,E.isArrayBuffer=L7,E.isArrayLike=nn,E.isArrayLikeObject=Ct,E.isBoolean=k7,E.isBuffer=qi,E.isDate=T7,E.isElement=x7,E.isEmpty=S7,E.isEqual=D7,E.isEqualWith=j7,E.isError=Ed,E.isFinite=z7,E.isFunction=Ii,E.isInteger=Dg,E.isLength=Mo,E.isMap=jg,E.isMatch=O7,E.isMatchWith=E7,E.isNaN=P7,E.isNative=A7,E.isNil=J7,E.isNull=V7,E.isNumber=zg,E.isObject=ht,E.isObjectLike=pt,E.isPlainObject=ws,E.isRegExp=Pd,E.isSafeInteger=Q7,E.isSet=Og,E.isString=Io,E.isSymbol=un,E.isTypedArray=hr,E.isUndefined=R7,E.isWeakMap=_7,E.isWeakSet=W7,E.join=FI,E.kebabCase=jL,E.last=Tn,E.lastIndexOf=GI,E.lowerCase=zL,E.lowerFirst=OL,E.lt=H7,E.lte=B7,E.max=Tk,E.maxBy=xk,E.mean=Sk,E.meanBy=Dk,E.min=jk,E.minBy=zk,E.stubArray=Hd,E.stubFalse=Bd,E.stubObject=bk,E.stubString=yk,E.stubTrue=Ck,E.multiply=Ok,E.nth=ZI,E.noConflict=ck,E.noop=Wd,E.now=Co,E.pad=EL,E.padEnd=PL,E.padStart=AL,E.parseInt=VL,E.random=kL,E.reduce=$N,E.reduceRight=KN,E.repeat=JL,E.replace=QL,E.result=pL,E.round=Ek,E.runInContext=K,E.sample=qN,E.size=n7,E.snakeCase=RL,E.some=i7,E.sortedIndex=eN,E.sortedIndexBy=tN,E.sortedIndexOf=nN,E.sortedLastIndex=iN,E.sortedLastIndexBy=aN,E.sortedLastIndexOf=rN,E.startCase=WL,E.startsWith=HL,E.subtract=Pk,E.sum=Ak,E.sumBy=Vk,E.template=BL,E.times=vk,E.toFinite=Ni,E.toInteger=Be,E.toLength=Pg,E.toLower=FL,E.toNumber=xn,E.toSafeInteger=F7,E.toString=nt,E.toUpper=GL,E.trim=ZL,E.trimEnd=YL,E.trimStart=UL,E.truncate=$L,E.unescape=KL,E.uniqueId=Mk,E.upperCase=XL,E.upperFirst=Jd,E.each=wg,E.eachRight=Mg,E.first=bg,_d(E,function(){var r={};return ti(E,function(l,h){rt.call(E.prototype,h)||(r[h]=l)}),r}(),{chain:!1}),E.VERSION=i,Mn(["bind","bindKey","curry","curryRight","partial","partialRight"],function(r){E[r].placeholder=E}),Mn(["drop","take"],function(r,l){Ke.prototype[r]=function(h){h=h===n?1:kt(Be(h),0);var w=this.__filtered__&&!l?new Ke(this):this.clone();return w.__filtered__?w.__takeCount__=Et(h,w.__takeCount__):w.__views__.push({size:Et(h,A),type:r+(w.__dir__<0?"Right":"")}),w},Ke.prototype[r+"Right"]=function(h){return this.reverse()[r](h).reverse()}}),Mn(["filter","map","takeWhile"],function(r,l){var h=l+1,w=h==ne||h==Ce;Ke.prototype[r]=function(S){var V=this.clone();return V.__iteratees__.push({iteratee:Ee(S,3),type:h}),V.__filtered__=V.__filtered__||w,V}}),Mn(["head","last"],function(r,l){var h="take"+(l?"Right":"");Ke.prototype[r]=function(){return this[h](1).value()[0]}}),Mn(["initial","tail"],function(r,l){var h="drop"+(l?"":"Right");Ke.prototype[r]=function(){return this.__filtered__?new Ke(this):this[h](1)}}),Ke.prototype.compact=function(){return this.filter(rn)},Ke.prototype.find=function(r){return this.filter(r).head()},Ke.prototype.findLast=function(r){return this.reverse().find(r)},Ke.prototype.invokeMap=Ze(function(r,l){return typeof r=="function"?new Ke(this):this.map(function(h){return ms(h,r,l)})}),Ke.prototype.reject=function(r){return this.filter(wo(Ee(r)))},Ke.prototype.slice=function(r,l){r=Be(r);var h=this;return h.__filtered__&&(r>0||l<0)?new Ke(h):(r<0?h=h.takeRight(-r):r&&(h=h.drop(r)),l!==n&&(l=Be(l),h=l<0?h.dropRight(-l):h.take(l-r)),h)},Ke.prototype.takeRightWhile=function(r){return this.reverse().takeWhile(r).reverse()},Ke.prototype.toArray=function(){return this.take(A)},ti(Ke.prototype,function(r,l){var h=/^(?:filter|find|map|reject)|While$/.test(l),w=/^(?:head|last)$/.test(l),S=E[w?"take"+(l=="last"?"Right":""):l],V=w||/^find/.test(l);!S||(E.prototype[l]=function(){var G=this.__wrapped__,U=w?[1]:arguments,q=G instanceof Ke,be=U[0],ye=q||We(G),ve=function($e){var qe=S.apply(E,Gi([$e],U));return w&&Te?qe[0]:qe};ye&&h&&typeof be=="function"&&be.length!=1&&(q=ye=!1);var Te=this.__chain__,De=!!this.__actions__.length,Pe=V&&!Te,Fe=q&&!De;if(!V&&ye){G=Fe?G:new Ke(this);var Ae=r.apply(G,U);return Ae.__actions__.push({func:bo,args:[ve],thisArg:n}),new Nn(Ae,Te)}return Pe&&Fe?r.apply(this,U):(Ae=this.thru(ve),Pe?w?Ae.value()[0]:Ae.value():Ae)})}),Mn(["pop","push","shift","sort","splice","unshift"],function(r){var l=Wl[r],h=/^(?:push|sort|unshift)$/.test(r)?"tap":"thru",w=/^(?:pop|shift)$/.test(r);E.prototype[r]=function(){var S=arguments;if(w&&!this.__chain__){var V=this.value();return l.apply(We(V)?V:[],S)}return this[h](function(G){return l.apply(We(G)?G:[],S)})}}),ti(Ke.prototype,function(r,l){var h=E[l];if(h){var w=h.name+"";rt.call(or,w)||(or[w]=[]),or[w].push({name:l,func:h})}}),or[co(n,k).name]=[{name:"wrapper",func:n}],Ke.prototype.clone=Kw,Ke.prototype.reverse=Xw,Ke.prototype.value=qw,E.prototype.at=xN,E.prototype.chain=SN,E.prototype.commit=DN,E.prototype.next=jN,E.prototype.plant=ON,E.prototype.reverse=EN,E.prototype.toJSON=E.prototype.valueOf=E.prototype.value=PN,E.prototype.first=E.prototype.head,os&&(E.prototype[os]=zN),E},rr=Dw();wa?((wa.exports=rr)._=rr,Ru._=rr):jt._=rr}).call(pr)})(ot,ot.exports);var Lr=ot.exports;const m4="abcdefghijklmnopqrstuvwxyz0123456789",Va=(e,t=m4)=>{let n="";for(let i=0;i<e;i++)n+=t[parseInt((Math.random()*t.length).toString(),10)];return n},p4=(e,t,n=60,i=!1)=>{const s=ot.exports.throttle(()=>{typeof t=="function"&&t()},n),o=new ResizeObserver(()=>{s()});return i&&typeof t=="function"&&t(),{start:()=>{o.observe(e)},stop:()=>{o.disconnect(),o.unobserve(e)}}},kr=e=>e[0].toUpperCase()+e.slice(1);class b4{constructor(t){this.multiInstance=!1,this.uniqueMaskAttrTag="",this.parentNode=document.body,this.activeInstance=void 0,this.zIndexStore=new Map,this.lastUUID=null,this.maskStyle={position:"absolute",left:0,top:0,bottom:0,right:0,display:"none","background-color":"rgba(0,0,0,.6)"};const{multiInstance:n=!1,maskAttrTag:i="auto",parentNode:s=document.body,maskStyle:o={},onClick:c=null}=t||{};this.onClick=c,this.activeInstance=void 0,this.multiInstance=n,this.uniqueMaskAttrTag=this.getMaskAttrTag(i),this.parentNode=s||document,this.mask=this.getMask(),this.backupMask=this.createMask("data-bk-backup-uid"),this.setMaskStyle(Object.assign({},this.maskStyle,o))}setOption(t){const{parentNode:n=document.body,maskStyle:i={},onClick:s=null}=t||{};this.onClick=s,this.parentNode=n||document,this.setMaskStyle(Object.assign({},this.maskStyle,i))}show(t,n,i=!0,s={},o=null,c=!1){const d=o!=null?o:Va(16),u=/-?\d+/.test(`${n}`)?n:Rn.getModalNextIndex();let f=Object.assign({},this.maskStyle,s||{});i||this.lastUUID&&(f=this.zIndexStore.get(this.lastUUID).style),this.storeMaskInsCfg({zIndex:u,style:Y({},f),uuid:d,preUID:this.lastUUID}),this.setMaskStyle(f),this.mask.style.setProperty("display","block"),this.mask.style.setProperty("z-index",`${u}`),this.backupMask.style.setProperty("z-index",`${u-1}`),t&&(c&&t.style.setProperty("z-index",`${u+1}`),this.activeInstance=t,c||this.appendContentToMask(t))}hide(t=!1,n,i){var o;const s=i!=null?i:this.lastUUID;this.mask.style.setProperty("display","none"),t||(n==null||n.remove(),(o=this.activeInstance)==null||o.remove()),this.activeInstance=void 0,this.popIndexStore(s)}storeMaskInsCfg(t){return this.zIndexStore.set(t.uuid,t),this.lastUUID=t.uuid,this.zIndexStore.get(t.uuid)}popIndexStore(t){if(this.zIndexStore.has(t)){const n=this.zIndexStore.get(t);return this.lastUUID=n.preUID,this.zIndexStore.delete(t)}return this.lastUUID=null,!1}backupActiveInstance(){this.activeInstance&&this.backupMask.append(this.activeInstance)}backupContentElement(t){t&&this.backupMask.append(t)}getActiveContentInstance(){return this.activeInstance}getMask(){if(this.multiInstance)return this.createMask();let t=this.parentNode.querySelector(`[data-bkmask-uid='${this.uniqueMaskAttrTag}']`);return t||(t=this.createMask(),t.addEventListener("click",n=>{n.target===t&&typeof this.onClick=="function"&&Reflect.apply(this.onClick,this,[n])},!0)),t}createMask(t="data-bk-mask-uid"){const n=document.createElement("div");return n.setAttribute(t,this.uniqueMaskAttrTag),this.parentNode.append(n),n}setMaskStyle(t={}){this.mask&&Object.entries(t).forEach(n=>this.mask.style.setProperty(n[0],n[1]))}getMaskAttrTag(t){return/^(auto|\s+)$/i.test(t)||t===null||t===void 0||t===""?`__bk_mask_${Va(16)}`:t}appendContentToMask(t){this.mask.append(t)}}const xi=new b4({});class y4{constructor(){this.popInstanceList=[],this.clickFn=[],this.uuidAttrName="data-bk-pop-uuid",xi.setOption({onClick:this.onMaskClickFn.bind(this)})}onMaskClick(t){this.clickFn.push(t)}show(t,n=!0,i={},s=!1,o=void 0){if(!t){console.warn("pop show error: content is null or undefined");return}const c=typeof o=="number"?o:Rn.getModalNextIndex(),d=Va(16);t.setAttribute(this.uuidAttrName,d),this.popInstanceList.push({uuid:d,zIndex:c,content:t,showMask:n,appendStyle:i}),n&&xi.backupActiveInstance(),xi.show(t,c,n,i,d,s)}destroy(t,n=!1){var i;(i=this.clickFn)==null||i.pop(),this.hide(t,n)}popHide(t=!0){if(this.popInstanceList.length){if(t){const n=this.popInstanceList.pop();xi.popIndexStore(n.uuid),n.remove()}if(this.popInstanceList.length){const n=this.popInstanceList.slice(-1)[0],{zIndex:i,content:s,showMask:o,appendStyle:c,uuid:d}=n;xi.show(s,i,o,c,d)}else xi.hide()}}hide(t,n=!1){const i=t==null?void 0:t.getAttribute(this.uuidAttrName);if(i){const s=this.popInstanceList.findIndex(o=>o.uuid===i);s>=0&&(n||this.popInstanceList[s].content.remove(),this.popInstanceList.splice(s,1),xi.popIndexStore(i),this.popInstanceList.length?this.popHide(!1):xi.hide(n))}else t==null||t.remove()}onMaskClickFn(t){var i,s;const n=(s=(i=this.clickFn)==null?void 0:i.slice(-1))==null?void 0:s.at(0);n&&Reflect.apply(n,this,[t])}}const Zt=new y4;/*!
28
+ * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
29
+ *
30
+ * Copyright (c) 2014-2017, Jon Schlinkert.
31
+ * Released under the MIT License.
32
+ */function wf(e){return Object.prototype.toString.call(e)==="[object Object]"}function C4(e){var t,n;return wf(e)===!1?!1:(t=e.constructor,t===void 0?!0:(n=t.prototype,!(wf(n)===!1||n.hasOwnProperty("isPrototypeOf")===!1)))}function Tr(){return Tr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},Tr.apply(this,arguments)}function Mf(e,t){if(e==null)return{};var n,i,s={},o=Object.keys(e);for(i=0;i<o.length;i++)t.indexOf(n=o[i])>=0||(s[n]=e[n]);return s}const v4={silent:!1,logLevel:"warn"},w4=["validator"],If=Object.prototype,Nf=If.toString,M4=If.hasOwnProperty,Lf=/^\s*function (\w+)/;function kf(e){var t;const n=(t=e==null?void 0:e.type)!==null&&t!==void 0?t:e;if(n){const i=n.toString().match(Lf);return i?i[1]:""}return""}const ta=C4;let Ot=e=>e;const Ja=(e,t)=>M4.call(e,t),I4=Number.isInteger||function(e){return typeof e=="number"&&isFinite(e)&&Math.floor(e)===e},Qa=Array.isArray||function(e){return Nf.call(e)==="[object Array]"},Ra=e=>Nf.call(e)==="[object Function]",Ss=e=>ta(e)&&Ja(e,"_vueTypes_name"),Tf=e=>ta(e)&&(Ja(e,"type")||["_vueTypes_name","validator","default","required"].some(t=>Ja(e,t)));function Qo(e,t){return Object.defineProperty(e.bind(t),"__original",{value:e})}function na(e,t,n=!1){let i,s=!0,o="";i=ta(e)?e:{type:e};const c=Ss(i)?i._vueTypes_name+" - ":"";if(Tf(i)&&i.type!==null){if(i.type===void 0||i.type===!0||!i.required&&t===void 0)return s;Qa(i.type)?(s=i.type.some(d=>na(d,t,!0)===!0),o=i.type.map(d=>kf(d)).join(" or ")):(o=kf(i),s=o==="Array"?Qa(t):o==="Object"?ta(t):o==="String"||o==="Number"||o==="Boolean"||o==="Function"?function(d){if(d==null)return"";const u=d.constructor.toString().match(Lf);return u?u[1]:""}(t)===o:t instanceof i.type)}if(!s){const d=`${c}value "${t}" should be of type "${o}"`;return n===!1?(Ot(d),!1):d}if(Ja(i,"validator")&&Ra(i.validator)){const d=Ot,u=[];if(Ot=f=>{u.push(f)},s=i.validator(t),Ot=d,!s){const f=(u.length>1?"* ":"")+u.join(`
33
+ * `);return u.length=0,n===!1?(Ot(f),s):f}}return s}function Nt(e,t){const n=Object.defineProperties(t,{_vueTypes_name:{value:e,writable:!0},isRequired:{get(){return this.required=!0,this}},def:{value(s){return s===void 0?(Ja(this,"default")&&delete this.default,this):Ra(s)||na(this,s,!0)===!0?(this.default=Qa(s)?()=>[...s]:ta(s)?()=>Object.assign({},s):s,this):(Ot(`${this._vueTypes_name} - invalid default value: "${s}"`),this)}}}),{validator:i}=n;return Ra(i)&&(n.validator=Qo(i,n)),n}function Hn(e,t){const n=Nt(e,t);return Object.defineProperty(n,"validate",{value(i){return Ra(this.validator)&&Ot(`${this._vueTypes_name} - calling .validate() will overwrite the current custom validator function. Validator info:
34
+ ${JSON.stringify(this)}`),this.validator=Qo(i,this),this}})}function xf(e,t,n){const i=function(u){const f={};return Object.getOwnPropertyNames(u).forEach(m=>{f[m]=Object.getOwnPropertyDescriptor(u,m)}),Object.defineProperties({},f)}(t);if(i._vueTypes_name=e,!ta(n))return i;const{validator:s}=n,o=Mf(n,w4);if(Ra(s)){let{validator:u}=i;u&&(u=(d=(c=u).__original)!==null&&d!==void 0?d:c),i.validator=Qo(u?function(f){return u.call(this,f)&&s.call(this,f)}:s,i)}var c,d;return Object.assign(i,o)}function Ds(e){return e.replace(/^(?!\s*$)/gm," ")}const N4=()=>Hn("any",{}),L4=()=>Hn("function",{type:Function}),k4=()=>Hn("boolean",{type:Boolean}),_a=()=>Hn("string",{type:String}),Sf=()=>Hn("number",{type:Number}),Ro=()=>Hn("array",{type:Array}),Df=()=>Hn("object",{type:Object}),T4=()=>Nt("integer",{type:Number,validator:e=>I4(e)}),x4=()=>Nt("symbol",{validator:e=>typeof e=="symbol"});function S4(e,t="custom validation failed"){if(typeof e!="function")throw new TypeError("[VueTypes error]: You must provide a function as argument");return Nt(e.name||"<<anonymous function>>",{type:null,validator(n){const i=e(n);return i||Ot(`${this._vueTypes_name} - ${t}`),i}})}function D4(e){if(!Qa(e))throw new TypeError("[VueTypes error]: You must provide an array as argument.");const t=`oneOf - value should be one of "${e.join('", "')}".`,n=e.reduce((i,s)=>{if(s!=null){const o=s.constructor;i.indexOf(o)===-1&&i.push(o)}return i},[]);return Nt("oneOf",{type:n.length>0?n:void 0,validator(i){const s=e.indexOf(i)!==-1;return s||Ot(t),s}})}function j4(e){if(!Qa(e))throw new TypeError("[VueTypes error]: You must provide an array as argument");let t=!1,n=[];for(let s=0;s<e.length;s+=1){const o=e[s];if(Tf(o)){if(Ss(o)&&o._vueTypes_name==="oneOf"&&o.type){n=n.concat(o.type);continue}if(Ra(o.validator)&&(t=!0),o.type===!0||!o.type){Ot('oneOfType - invalid usage of "true" or "null" as types.');continue}n=n.concat(o.type)}else n.push(o)}n=n.filter((s,o)=>n.indexOf(s)===o);const i=n.length>0?n:null;return Nt("oneOfType",t?{type:i,validator(s){const o=[],c=e.some(d=>{const u=na(Ss(d)&&d._vueTypes_name==="oneOf"?d.type||null:d,s,!0);return typeof u=="string"&&o.push(u),u===!0});return c||Ot(`oneOfType - provided value does not match any of the ${o.length} passed-in validators:
35
+ ${Ds(o.join(`
36
+ `))}`),c}}:{type:i})}function z4(e){return Nt("arrayOf",{type:Array,validator(t){let n="";const i=t.every(s=>(n=na(e,s,!0),n===!0));return i||Ot(`arrayOf - value validation error:
37
+ ${Ds(n)}`),i}})}function O4(e){return Nt("instanceOf",{type:e})}function E4(e){return Nt("objectOf",{type:Object,validator(t){let n="";const i=Object.keys(t).every(s=>(n=na(e,t[s],!0),n===!0));return i||Ot(`objectOf - value validation error:
38
+ ${Ds(n)}`),i}})}function P4(e){const t=Object.keys(e),n=t.filter(s=>{var o;return!((o=e[s])===null||o===void 0||!o.required)}),i=Nt("shape",{type:Object,validator(s){if(!ta(s))return!1;const o=Object.keys(s);if(n.length>0&&n.some(c=>o.indexOf(c)===-1)){const c=n.filter(d=>o.indexOf(d)===-1);return Ot(c.length===1?`shape - required property "${c[0]}" is not defined.`:`shape - required properties "${c.join('", "')}" are not defined.`),!1}return o.every(c=>{if(t.indexOf(c)===-1)return this._vueTypes_isLoose===!0||(Ot(`shape - shape definition does not include a "${c}" property. Allowed keys: "${t.join('", "')}".`),!1);const d=na(e[c],s[c],!0);return typeof d=="string"&&Ot(`shape - "${c}" property validation error:
39
+ ${Ds(d)}`),d===!0})}});return Object.defineProperty(i,"_vueTypes_isLoose",{writable:!0,value:!1}),Object.defineProperty(i,"loose",{get(){return this._vueTypes_isLoose=!0,this}}),i}const A4=["name","validate","getter"],V4=(()=>{var e,t;return t=e=class{static get any(){return N4()}static get func(){return L4().def(this.defaults.func)}static get bool(){return k4().def(this.defaults.bool)}static get string(){return _a().def(this.defaults.string)}static get number(){return Sf().def(this.defaults.number)}static get array(){return Ro().def(this.defaults.array)}static get object(){return Df().def(this.defaults.object)}static get integer(){return T4().def(this.defaults.integer)}static get symbol(){return x4()}static extend(n){if(Qa(n))return n.forEach(f=>this.extend(f)),this;const{name:i,validate:s=!1,getter:o=!1}=n,c=Mf(n,A4);if(Ja(this,i))throw new TypeError(`[VueTypes error]: Type "${i}" already defined`);const{type:d}=c;if(Ss(d))return delete c.type,Object.defineProperty(this,i,o?{get:()=>xf(i,d,c)}:{value(...f){const m=xf(i,d,c);return m.validator&&(m.validator=m.validator.bind(m,...f)),m}});let u;return u=o?{get(){const f=Object.assign({},c);return s?Hn(i,f):Nt(i,f)},enumerable:!0}:{value(...f){const m=Object.assign({},c);let p;return p=s?Hn(i,m):Nt(i,m),m.validator&&(p.validator=m.validator.bind(p,...f)),p},enumerable:!0},Object.defineProperty(this,i,u)}},e.defaults={},e.sensibleDefaults=void 0,e.config=v4,e.custom=S4,e.oneOf=D4,e.instanceOf=O4,e.oneOfType=j4,e.arrayOf=z4,e.objectOf=E4,e.shape=P4,e.utils={validate:(n,i)=>na(i,n,!0)===!0,toType:(n,i,s=!1)=>s?Hn(n,i):Nt(n,i)},t})();function jf(e={func:()=>{},bool:!0,string:"",number:0,array:()=>[],object:()=>({}),integer:0}){var t,n;return n=t=class extends V4{static get sensibleDefaults(){return Tr({},this.defaults)}static set sensibleDefaults(i){this.defaults=i!==!1?Tr({},i!==!0?i:e):{}}},t.defaults=Tr({},e),n}class QT extends jf(){}const J4=jf({});function zf(e){return e.reduce((t,n)=>(t[n]=n,t),Object.create(null))}class g extends J4{static size(t=["small","default","large"]){return Nt("Size",{type:String,validator:n=>!n||t.includes(n)?!0:(console.error(`invalid size, ${n}, the size must be one of \u3010${t.join(" | ")}\u3011`),!1),default:"default"})}static theme(t=["primary","warning","success","danger"]){return Nt("Theme",{type:String,validator:n=>!n||t.includes(n)?!0:(console.error(`invalid theme, ${n}, the theme must be one of \u3010${t.join(" | ")}\u3011`),!1)})}static placement(t=["top","left","right","bottom"]){return Nt("Placements",{type:String,validator:n=>!n||t.includes(n)?!0:(console.error(`invalid placements, ${n}, the placement must be one of \u3010${t.join(" | ")}\u3011`),!1),default:"top"})}static commonType(t=[],n="commonType"){return Nt(n.replace(/^\S/,i=>i.toUpperCase()),{type:String,validator:i=>{const s=t.includes(i);return s||console.error(`invalid ${n}, ${i}, the ${n} must be one of \u3010${t.join(" | ")}\u3011`),s},default:t[0]})}static style(){return Nt("Style",{type:[String,Object]})}static position(t=["top-left","top-right","bottom-left","bottom-right"]){return Nt("positions",{type:String,validator:n=>!n||t.includes(n)?!0:(console.error(`invalid positions, ${n}, the position must be one of \u3010${t.join(" | ")}\u3011`),!1),default:"top-center"})}}const Of=Symbol("form"),Ef=Symbol("formItem"),Q4=()=>a.inject(Of),Dn=()=>a.inject(Ef,void 0),R4=(()=>document.addEventListener?(e,t,n)=>{e&&t&&n&&e.addEventListener(t,n,!0)}:(e,t,n)=>{e&&t&&n&&e.attachEvent(`on${t}`,n)})(),_4=(()=>document.removeEventListener?(e,t,n)=>{e&&t&&e.removeEventListener(t,n,!0)}:(e,t,n)=>{e&&t&&e.detachEvent(`on${t}`,n)})();function W4(e,t=0,n,i=500,s){const o=Math.abs(t-n),c=Math.ceil(o/i*50);function d(u,f,m){if(u===f){s==null||s();return}let p=u+m>f?f:u+m;u>f&&(p=u-m<f?f:u-m),e===window?window.scrollTo(p,p):e.scrollTop=p,window.requestAnimationFrame(()=>d(p,f,m))}d(t,n,c)}function ze(e,t=""){return Object.entries(e).filter(n=>n[1]).map(n=>n[0]).join(" ").concat(t?` ${t}`:"")}const Pf=Object.create({}),Af=e=>Object.keys(e).length<1,He=e=>(e.install=function(t,{prefix:n}={}){const i=t.config.globalProperties.bkUIPrefix||n||"Bk";t.component(i+e.name,e)},e),Yt=(e,t,n=!1)=>(e.install=function(i,{prefix:s}={}){const o=i.config.globalProperties.bkUIPrefix||s||"Bk";i.component(o+e.name,e),!n&&Object.values(t).forEach(c=>{i.component(o+c.name,c)})},Object.keys(t).forEach(i=>{e[i]=t[i]}),e);function Ye(e,t="bk"){return`${t}-${e}`}function js(e=300,t,n=!1){let i,s;const o=function(){const c=this,d=arguments;if(i&&clearTimeout(i),n){const u=!i;i=setTimeout(()=>{i=null},e),u&&(s=t.apply(c,d))}else i=setTimeout(()=>{t.apply(c,d)},e);return s};return o.cancel=function(){clearTimeout(i),i=null},o}function xr(e=[],t=[]){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++){if(Array.isArray(e[n]))return xr(e[n],t[n]);if(e[n]!==t[n])return!1}return!0}function Vf(e,t,n){return a.h(e.name,xe(Y({key:t},e.attributes),{style:`${e.attributes.style} ${n||""}`}),(e.elements||[]).map((i,s)=>Vf(i,`${t}-${e.name}-${s}`)))}const Ve=(e,t)=>{const f=Y(Y({},t.attrs),e),{data:n,name:i,width:s,height:o,fill:c}=f,d=Da(f,["data","name","width","height","fill"]),u=`width: ${s}; height: ${o}; fill: ${c}`;return a.createVNode("span",d,[Vf(n,i,u)])};Ve.inheritAttrs=!1,Ve.displayName="bkIcon",JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 744.64L789.6 462.72 880 554.56 512 928 144 554.56 234.4 462.72 512 744.64z"}},{"type":"element","name":"path","attributes":{"d":"M144 187.68L234.4 96 512 377.76 789.6 96 880 187.68 512 561.28 144 187.68z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M279.36 512L561.28 789.6 469.44 880 96 512 469.44 144 561.28 234.4 279.36 512z"}},{"type":"element","name":"path","attributes":{"d":"M836.32 144L928 234.4 646.08 512 928 789.6 836.32 880 462.72 512 836.32 144z"}}]}');const H4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M697.6 281.6l48 48-176 176 176 176-48 48-224-224L697.6 281.6z"}},{"type":"element","name":"path","attributes":{"d":"M505.6 281.6l48 48-176 176 176 176-48 48-224-224L505.6 281.6z"}}]}'),Sr=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:H4,name:"angleDoubleLeft"}),null)};Sr.displayName="angleDoubleLeft",Sr.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M744.64 512L462.72 789.6 554.56 880 928 512 554.56 144 462.72 234.4 744.64 512z"}},{"type":"element","name":"path","attributes":{"d":"M187.68 144L96 234.4 377.76 512 96 789.6 187.68 880 561.28 512 187.68 144z"}}]}');const B4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M358.4 729.6l-48-48 176-176-176-176 48-48 224 224L358.4 729.6z"}},{"type":"element","name":"path","attributes":{"d":"M550.4 729.6l-48-48 176-176-176-176 48-48 224 224L550.4 729.6z"}}]}'),Dr=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:B4,name:"angleDoubleRight"}),null)};Dr.displayName="angleDoubleRight",Dr.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 279.36L789.6 561.28 880 469.44 512 96 144 469.44 234.4 561.28 512 279.36z"}},{"type":"element","name":"path","attributes":{"d":"M144 836.32L234.4 928 512 646.08 789.6 928 880 836.32 512 462.72 144 836.32z"}}]}');const F4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 256L96 704 187.04 704 512 704 836.96 704 928 704 512 256z"}}]}'),_o=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:F4,name:"angleDownFill"}),null)};_o.displayName="angleDownFill",_o.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 762.56L98.72 349.28 189.28 258.72 512 581.44 834.72 258.72 925.28 349.28 512 762.56z"}}]}');const G4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M288 448L336 400 512 576 688 400 736 448 512 672z"}}]}'),zs=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:G4,name:"angleDown"}),null)};zs.displayName="angleDown",zs.inheritAttrs=!1;const Z4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M376 504L600 280 648 328 472 504 648 680 600 728 376 504z"}}]}'),Si=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:Z4,name:"angleLeft"}),null)};Si.displayName="angleLeft",Si.inheritAttrs=!1;const Y4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M424 728L376 680 552 504 376 328 424 280 648 504 424 728z"}}]}'),jn=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:Y4,name:"angleRight"}),null)};jn.displayName="angleRight",jn.inheritAttrs=!1;const U4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 704L96 256 187.04 256 512 256 836.96 256 928 256 512 704z"}}]}'),Os=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:U4,name:"angleUpFill"}),null)};Os.displayName="angleUpFill",Os.inheritAttrs=!1;const $4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 368L736 592 688 640 512 464 336 640 288 592 512 368z"}}]}'),Wa=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:$4,name:"angleUp"}),null)};Wa.displayName="angleUp",Wa.inheritAttrs=!1;const K4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1194.667","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M661.331584 0C696.6651477333332 0 745.9971968 20.667040213333333 770.6658858666666 45.333077333333335L978.6642816 253.3329224533333C1003.3316394666667 278.00029312 1024 327.33370112 1024 362.66728575999997L1024 1130.6680490666665C1024 1166.0002986666666 995.3336490666667 1194.6666666666665 959.9974143999999 1194.6666666666665L64 1194.6666666666665C28.666351530666663 1194.6666666666665 0 1166.0002986666666 0 1130.6680490666665L0 64C0 28.666367530666665 28.667684991999998 0 64 0L661.331584 0ZM224 522.6666666666666L138.66666666666666 522.6666666666666 138.66666666666666 818.6666666666666 309.3333333333333 818.6666666666666 309.3333333333333 605.3333333333333 224 605.3333333333333 224 522.6666666666666ZM245.33333333333331 669.3333333333333L245.33333333333331 754.6666666666666 202.66666666666666 754.6666666666666 202.66666666666666 669.3333333333333 245.33333333333331 669.3333333333333ZM309.3333333333333 437.3333333333333L224 437.3333333333333 224 522.6666666666666 309.3333333333333 522.6666666666666 309.3333333333333 437.3333333333333ZM224 352L138.66666666666666 352 138.66666666666666 437.3333333333333 224 437.3333333333333 224 352ZM309.3333333333333 266.66666666666663L224 266.66666666666663 224 352 309.3333333333333 352 309.3333333333333 266.66666666666663ZM682.6666666666666 90.66615466666667L682.6666666666666 341.33352362666665 933.3325610666667 341.33352362666665C929.3322325333334 329.9992546133333 923.3317418666667 318.66631850666664 918.6646911999999 313.9992661333333L709.9995776000001 105.33269930666667C705.3325269333333 100.66564736 693.9982634666667 94.66648490666667 682.6666666666666 90.66615466666667ZM224 181.33333333333331L138.66666666666666 181.33333333333331 138.66666666666666 266.66666666666663 224 266.66666666666663 224 181.33333333333331ZM309.3333333333333 96L224 96 224 181.33333333333331 309.3333333333333 181.33333333333331 309.3333333333333 96Z"}}]}'),Wo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:K4,name:"archiveFill"}),null)};Wo.displayName="archiveFill",Wo.inheritAttrs=!1;const X4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M416 480h320v64H416l96 96-48 48L288 512l176-176L512 384 416 480z"}}]}'),Ho=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:X4,name:"arrowsLeft"}),null)};Ho.displayName="arrowsLeft",Ho.inheritAttrs=!1;const q4=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M608 480H288v64H608l-96 96 48 48L736 512l-176-176L512 384Z"}}]}'),Bo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:q4,name:"arrowsRight"}),null)};Bo.displayName="arrowsRight",Bo.inheritAttrs=!1;const e2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M664.4363636363637 0C676.8000000000001 0 688.5818181818182 4.945454545454545 697.3090909090909 13.672727272727274L697.3090909090909 13.672727272727274 1010.3272727272728 326.6909090909091C1019.0545454545455 335.41818181818184 1024 347.3454545454546 1024 359.70909090909095L1024 359.70909090909095 1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L977.4545454545455 1303.2727272727273 46.54545454545455 1303.2727272727273C20.8 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 1256.7272727272727 0 46.54545454545455C0 20.8 20.8 0 46.54545454545455 0L46.54545454545455 0ZM655.2545466181818 560.2713367272728L460.52727249454546 619.8349730909091C436.9818181818182 626.5804288 417.7636361309091 651.1440616727273 417.7636361309091 674.6895173818182L417.7636361309091 880.1077015272728C417.7636361309091 880.1077015272728 403.6363636363636 870.5622434909092 372.19999976727274 875.0167924363637 326 881.6349742545455 288.5818181818182 917.016790109091 288.5818181818182 954.1804264727273 288.5818181818182 991.3440628363637 326 1014.1258798545455 372.19999976727274 1007.5076980363638 418.4 1001.016790109091 452.2545454545455 966.6531560727274 452.2545454545455 929.4895197090908L452.2545454545455 754.1076992000001C452.2545454545455 737.5622469818182 472.10908858181824 730.562243490909 472.10908858181824 730.562243490909L644.3090897454546 676.5986071272727C644.3090897454546 676.5986071272727 663.4000011636364 670.2349730909091 663.4000011636364 687.7986071272728L663.4000011636364 828.689519709091C663.4000011636364 828.689519709091 645.8363624727273 818.6349707636364 614.4 822.4531549090909 568.2000011636363 828.053154909091 530.7818170181819 862.6713367272728 530.7818170181819 899.8349730909091 530.7818170181819 936.9986094545455 568.2000011636363 960.5440651636363 614.4 954.9440651636363 660.5999988363636 949.3440651636365 698.0181829818182 914.7258833454546 698.0181829818182 877.5622469818182L698.0181829818182 590.8167912727273C698.0181829818182 567.1440616727273 678.9272715636364 553.5258810181818 655.2545466181818 560.2713367272728ZM642.9090909090909 107.34545454545454L642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091 642.9090909090909 107.34545454545454Z"}}]}'),Fo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:e2,name:"audioFill"}),null)};Fo.displayName="audioFill",Fo.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M384 289.28c103.50933333333333 18.986666666666665 183.89333333333332 99.37066666666666 202.62399999999997 201.344l5.3759999999999994 37.376c1.664 83.62666666666667 32.59733333333333 159.7013333333333 82.94399999999999 218.70933333333335 32.72533333333333 37.84533333333333 81.024 62.29333333333333 135.08266666666665 63.53066666666667 2.9013333333333335 0.128 6.0586666666666655 0.21333333333333332 9.216 0.21333333333333332 49.834666666666664 0 95.488-17.962666666666664 130.81599999999997-47.78666666666667 47.40266666666666-42.367999999999995 77.312-104.10666666666665 77.312-172.79999999999998 0-13.952-1.2373333333333334-27.562666666666665-3.584-40.831999999999994-15.786666666666665-115.62666666666667-96.29866666666666-210.43200000000002-203.73333333333335-246.91199999999998-5.8453333333333335-59.98933333333333-33.49333333333333-112.21333333333332-75.47733333333332-148.224-37.33333333333333-34.432-87.03999999999999-55.42399999999999-141.61066666666665-55.42399999999999-15.445333333333332 0-30.506666666666664 1.664-45.01333333333333 4.864-50.986666666666665 13.141333333333332-95.01866666666666 42.83733333333333-126.208 83.072-5.333333333333333 6.143999999999999-8.362666666666666 13.568-8.362666666666666 21.674666666666667 0 9.685333333333332 4.309333333333333 18.389333333333333 11.136 24.27733333333333l3.8826666666666663 0.042666666666666665c-16.21333333333333-4.053333333333333-34.901333333333326-6.613333333333333-54.10133333333333-7.04-6.101333333333333-0.38399999999999995-12.927999999999999-0.6399999999999999-19.797333333333334-0.6399999999999999s-13.696 0.21333333333333332-20.43733333333333 0.6826666666666666l0.9386666666666665-10.922666666666666c2.1333333333333333-25.813333333333333 17.194666666666667-47.70133333333334 38.656-59.30666666666666 9.173333333333332-6.015999999999999 14.933333333333332-15.872 14.933333333333332-27.093333333333334 0-17.749333333333333-14.378666666666668-32.128-32.128-32.128-6.528 0-12.629333333333332 1.9626666666666666-17.706666666666663 5.333333333333333-21.290666666666667 13.653333333333332-38.18666666666667 32.81066666666666-48.81066666666666 55.42399999999999-15.274666666666665-6.442666666666666-32.85333333333333-10.709333333333333-51.413333333333334-10.709333333333333-8.661333333333333 0-17.109333333333332 0.9386666666666665-25.258666666666663 2.6879999999999997-14.037333333333333 3.1999999999999997-24.959999999999997 16.256-24.959999999999997 31.872 0 18.090666666666664 14.677333333333332 32.768 32.768 32.768 2.474666666666667 0 4.906666666666666-0.29866666666666664 7.253333333333334-0.8106666666666666 2.1333333333333333-0.29866666666666664 4.8213333333333335-0.512 7.552-0.512 18.048 0 34.176 8.405333333333333 44.629333333333335 21.546666666666667l0.08533333333333333 0.128c-122.24000000000001 28.16-197.12 139.51999999999998-240 236.79999999999998-33.28 74.88-80.63999999999999 215.67999999999998-24.319999999999997 316.79999999999995 29.610666666666663 61.056 88.96 103.55199999999999 158.72 108.75733333333332l704.64 0.042666666666666665c17.663999999999998 0 32-14.336 32-32s-14.336-32-32-32h-704c-46.848-4.906666666666666-85.80266666666667-34.474666666666664-103.97866666666665-75.34933333333333-44.50133333333333-80.17066666666666 3.498666666666667-208.81066666666666 26.538666666666664-260.65066666666667 65.91999999999999-147.2 156.79999999999998-217.59999999999997 275.84-206.71999999999997zM480 229.12c22.826666666666668-30.976 55.296-53.63199999999999 92.88533333333334-63.744 10.069333333333333-2.1759999999999997 20.266666666666666-3.2426666666666666 30.72-3.2426666666666666 37.888 0 72.448 14.250666666666667 98.60266666666666 37.67466666666667 31.786666666666665 28.8 51.754666666666665 70.39999999999999 51.754666666666665 116.69333333333333 0 1.2373333333333334 0 2.474666666666667-0.042666666666666665 3.7119999999999997l0 32.46933333333333 24.959999999999997 3.84c95.27466666666666 23.296 167.25333333333333 101.50399999999999 180.992 198.4 1.92 10.495999999999999 2.944 21.119999999999997 2.944 32 0 52.522666666666666-23.59466666666667 99.49866666666665-60.75733333333333 130.98666666666665-21.503999999999998 16.554666666666666-48.512 26.368-77.824 26.368-4.224 0-8.448-0.21333333333333332-12.586666666666666-0.5973333333333333 0.512 0.042666666666666665 0.512 0.042666666666666665 0.512 0.042666666666666665-35.583999999999996 0-67.54133333333333-15.530666666666665-89.472-40.19199999999999-39.38133333333333-48.768-63.40266666666666-111.18933333333332-64.08533333333332-179.15733333333333l-5.76-42.410666666666664c-22.954666666666668-111.744-100.30933333333333-201.38666666666666-202.58133333333333-241.152-1.1093333333333333-0.6399999999999999 0.21333333333333332-0.5546666666666666 1.5359999999999998-0.5546666666666666 10.239999999999998 0 19.413333333333334-4.522666666666666 25.599999999999998-11.690666666666667z"}}]}');const t2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 0c-17.919999999999998 0-32 14.08-32 32s14.08 32 32 32c247.04 0 448 200.95999999999998 448 448 0 17.919999999999998 14.08 32 32 32s32-14.08 32-32c0-282.24-229.76-512-512-512z"}}]}'),Es=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:t2,name:"circle"}),null)};Es.displayName="circle",Es.inheritAttrs=!1;const n2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M902.56 166.56L857.44 121.44 512 466.72 166.56 121.44 121.44 166.56 466.72 512 121.44 857.44 166.56 902.56 512 557.28 857.44 902.56 902.56 857.44 557.28 512 902.56 166.56z"}}]}'),Ps=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:n2,name:"closeLine"}),null)};Ps.displayName="closeLine",Ps.inheritAttrs=!1;const i2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zM670.4 625.1l-45.3 45.3L512 557.3 398.9 670.4l-45.3-45.3L466.7 512 353.6 398.9l45.3-45.3L512 466.7l113.1-113.1 45.3 45.3L557.3 512 670.4 625.1z"}}]}'),Ut=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:i2,name:"close"}),null)};Ut.displayName="close",Ut.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M1011.1999999999999 489.59999999999997l-224-224c-12.799999999999999-12.799999999999999-32.64-12.799999999999999-45.44 0s-12.799999999999999 32.64 0 45.44l201.59999999999997 200.95999999999998-201.59999999999997 201.59999999999997c-12.799999999999999 12.799999999999999-12.799999999999999 32.64 0 45.44 6.3999999999999995 6.3999999999999995 14.719999999999999 9.6 22.4 9.6s16.64-3.1999999999999997 22.4-9.6l224-224c12.799999999999999-12.799999999999999 12.799999999999999-33.28 0.6399999999999999-45.44z"}},{"type":"element","name":"path","attributes":{"d":"M282.24 265.59999999999997c-12.799999999999999-12.799999999999999-32.64-12.799999999999999-45.44 0l-224 224c-12.799999999999999 12.799999999999999-12.799999999999999 32.64 0 45.44l224 224c6.3999999999999995 5.76 14.719999999999999 8.959999999999999 23.04 8.959999999999999s16.64-3.1999999999999997 22.4-9.6c12.799999999999999-12.799999999999999 12.799999999999999-32.64 0-45.44l-201.59999999999997-200.95999999999998 201.59999999999997-201.59999999999997c12.159999999999998-12.159999999999998 12.159999999999998-32.64 0-44.8z"}},{"type":"element","name":"path","attributes":{"d":"M616.3199999999999 129.27999999999997c-16.64-5.119999999999999-34.56 5.119999999999999-39.04 22.4l-192 704c-4.4799999999999995 17.28 5.119999999999999 34.56 22.4 39.04 2.5599999999999996 0.6399999999999999 5.76 1.2799999999999998 8.32 1.2799999999999998 14.08 0 26.88-9.6 30.72-23.68l192-704c4.4799999999999995-16.64-5.119999999999999-34.56-22.4-39.04z"}}]}');const a2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M608 512A96 96 0 0 1 512 608 96 96 0 0 1 416 512 96 96 0 0 1 608 512z"}},{"type":"element","name":"path","attributes":{"d":"M860.8 558.4c4.8-30.4 4.8-62.4 0-92.8l67.2-57.6c9.6-8 14.4-22.4 9.6-35.2-19.2-59.2-51.2-115.2-92.8-161.6-6.4-6.4-14.4-11.2-24-11.2-3.2 0-8 0-11.2 1.6l-83.2 30.4c-24-19.2-52.8-35.2-81.6-46.4l-16-86.4c-1.6-12.8-12.8-22.4-25.6-25.6-60.8-12.8-124.8-12.8-185.6 0-12.8 3.2-22.4 12.8-24 25.6l-16 86.4c-28.8 11.2-56 27.2-81.6 46.4l-83.2-30.4c-3.2-1.6-6.4-1.6-11.2-1.6-9.6 0-17.6 3.2-24 11.2-41.6 46.4-73.6 100.8-92.8 161.6-4.8 12.8 0 27.2 9.6 35.2l67.2 57.6C160 496 160 528 163.2 558.4L96 616c-9.6 8-14.4 22.4-9.6 35.2 19.2 59.2 51.2 115.2 92.8 161.6 6.4 6.4 14.4 11.2 24 11.2 3.2 0 8 0 11.2-1.6l83.2-30.4c24 19.2 52.8 35.2 81.6 46.4l16 86.4c1.6 12.8 12.8 22.4 25.6 25.6 60.8 12.8 124.8 12.8 185.6 0 12.8-3.2 22.4-12.8 25.6-25.6l16-86.4c28.8-11.2 56-27.2 81.6-46.4l83.2 30.4c3.2 1.6 6.4 1.6 11.2 1.6 9.6 0 17.6-3.2 24-11.2 41.6-46.4 73.6-100.8 92.8-161.6 3.2-12.8 0-27.2-11.2-35.2L860.8 558.4zM512 672c-88 0-160-72-160-160s72-160 160-160 160 72 160 160S600 672 512 672z"}}]}'),Go=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:a2,name:"cogShape"}),null)};Go.displayName="cogShape",Go.inheritAttrs=!1;const r2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M496 216l-76.32 76.32 152.64 152.8H64v101.76H572.16l-152.48 152.8L496 776 775.52 496Zm362.4 0v560H960v-560Z"}}]}'),Zo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:r2,name:"collapseLeft"}),null)};Zo.displayName="collapseLeft",Zo.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M864 128H288c-17.6 0-32 14.4-32 32v96h-96c-17.6 0-32 14.4-32 32v576c0 17.6 14.4 32 32 32h576c17.6 0 32-14.4 32-32v-96h96c17.6 0 32-14.4 32-32V160C896 142.4 881.6 128 864 128zM704 704v64 64H192V320h64 64 384V704zM832 704h-64V288c0-17.6-14.4-32-32-32H320v-64h512V704z"}},{"type":"element","name":"path","attributes":{"d":"M275.2 419.2H611.2V483.2H275.2z"}},{"type":"element","name":"path","attributes":{"d":"M272 544H608V608H272z"}},{"type":"element","name":"path","attributes":{"d":"M272 672H608V736H272z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1170.2857142857142","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M176.27428571428572 248.68571428571425c100.74209523809523 24.673523809523807 216.40533333333332 38.863238095238096 335.335619047619 38.863238095238096s234.5935238095238-14.14095238095238 345.38057142857144-40.86247619047619c106.30095238095238-27.209142857142858 167.00952380952378-74.02057142857143 167.00952380952378-100.35199999999999 0-49.00571428571428-180.66285714285715-146.28571428571428-512-146.28571428571428s-512 95.81714285714285-512 146.28571428571428c0 26.33142857142857 60.70857142857143 73.14285714285714 176.27428571428572 102.4z"}},{"type":"element","name":"path","attributes":{"d":"M856.5028571428571 923.7942857142857c-99.2304761904762 25.6-213.13828571428573 40.27733333333333-330.45942857142853 40.27733333333333-4.924952380952381 0-9.849904761904762-0.04876190476190476-14.774857142857142-0.09752380952380953-3.4620952380952374 0.04876190476190476-8.387047619047618 0.09752380952380953-13.360761904761905 0.09752380952380953-117.32114285714286 0-231.18019047619046-14.677333333333332-339.87047619047615-42.37409523809524-113.37142857142858 37.156571428571425-157.98857142857142 81.77371428571428-157.98857142857142 102.25371428571428 0 49.00571428571428 180.66285714285715 146.28571428571428 512 146.28571428571428s512-95.08571428571427 512-146.28571428571428c0-20.479999999999997-44.61714285714286-65.09714285714286-167.49714285714285-100.2057142857143z"}},{"type":"element","name":"path","attributes":{"d":"M856.5028571428571 626.8342857142857c-103.37523809523809 25.063619047619046-222.0617142857143 39.44838095238095-344.16152380952377 39.44838095238095s-240.73752380952382-14.384761904761904-354.4990476190476-41.54514285714286c-113.27390476190476 37.20533333333333-157.8910476190476 82.55390476190476-157.8910476190476 106.69104761904762 0 49.00571428571428 180.66285714285715 146.28571428571428 512 146.28571428571428s512-95.08571428571427 512-146.28571428571428c0-24.137142857142855-44.61714285714286-69.48571428571428-167.49714285714285-104.5942857142857z"}},{"type":"element","name":"path","attributes":{"d":"M856.5028571428571 332.0685714285714h-13.165714285714285c-99.42552380952381 25.40495238095238-213.62590476190476 40.03352380952381-331.23961904761904 40.22857142857142-3.072 0-6.534095238095238 0.04876190476190476-10.04495238095238 0.04876190476190476-114.00533333333333 0-224.88990476190475-13.604571428571429-330.9958095238095-39.30209523809524l-2.8769523809523805 1.9504761904761905c-123.61142857142858 30.72-168.22857142857143 77.53142857142858-168.22857142857143 99.47428571428571 0 49.00571428571428 180.66285714285715 146.28571428571428 512 146.28571428571428s512-95.81714285714285 512-146.28571428571428c0-21.942857142857143-44.61714285714286-68.7542857142857-167.49714285714285-102.4z"}}]}');const s2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M928 224H672v-64c0-35.2-28.8-64-64-64H416c-35.2 0-64 28.8-64 64v64H96v64h112v576c0 35.2 28.8 64 64 64h480c35.2 0 64-28.8 64-64V288h112V224zM432 160h160c9.6 0 16 6.4 16 16v48H416v-48C416 166.4 422.4 160 432 160zM736 864H288c-9.6 0-16-6.4-16-16V288h480v560C752 857.6 745.6 864 736 864z"}},{"type":"element","name":"path","attributes":{"d":"M576 400H640V752H576V400z"}},{"type":"element","name":"path","attributes":{"d":"M384 400H448V752H384V400z"}}]}'),jr=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:s2,name:"del"}),null)};jr.displayName="del",jr.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1097.143","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M698.6979072 34.411393901714284C704.0406784 39.04304329142857 707.1085714285714 45.76605271771429 707.1085714285714 52.83693527771428L707.1085714285714 1069.3276013714285C707.1085714285714 1076.3886738285712 704.0452278857143 1083.1024822857141 698.7138852571428 1087.7323337142855 693.3825389714286 1092.362185142857 686.3058176 1094.453295542857 679.3142857142858 1093.4647442285714L66.27961892571427 1005.9371263999999C42.24804234971429 1002.5144795428571 24.393142857142855 981.9369252571428 24.393142857142855 957.6628406857142L24.393142857142855 164.50169709714285C24.393142857142855 140.22761252571428 42.24804234971429 119.65005750857142 66.27961892571427 116.22741138285714L66.32838107428572 116.22741138285714 679.2655250285715 28.699792423131427C686.2647552000001 27.695727027199997 693.355136 29.77974452662857 698.6979072 34.411393901714284ZM950.9180964571428 122.22512566857142C977.8485504 122.22512566857142 999.68 144.05657417142857 999.68 170.9870306742857L999.68 951.1775049142856C999.68 978.1079625142856 977.8485504 999.9394121142856 950.9180964571428 999.9394121142856L755.8704749714285 999.9394121142856 755.8704749714285 902.4156013714285 902.1561892571428 902.4156013714285 902.1561892571428 219.7489353142857 755.8704749714285 219.7489353142857 755.8704749714285 122.22512566857142 950.9180964571428 122.22512566857142ZM268.25142857142856 366.03464959999997L170.72761892571427 366.03464959999997 170.72761892571427 756.1298870857141 268.25142857142856 756.1298870857141 365.7752382171428 658.606076342857 463.2990464 756.1298870857141 560.8228571428571 756.1298870857141 560.8228571428571 366.03464959999997 463.2990464 366.03464959999997 463.2990464 609.3077906285713 365.7752382171428 512.3203620571429 268.73904749714285 609.8441727999999 268.25142857142856 366.03464959999997Z"}}]}');const l2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M704 352l48 48-304 304-176-176 48-48 128 128z"}}]}'),ia=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:l2,name:"done"}),null)};ia.displayName="done",ia.inheritAttrs=!1;const o2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 768c-6.3999999999999995 0-13.44-2.5599999999999996-18.56-8.32l-356.48-384c-8.32-8.959999999999999-10.879999999999999-23.04-7.04-35.199999999999996s14.08-20.479999999999997 25.599999999999998-20.479999999999997h712.96c11.52 0 21.119999999999997 8.32 25.599999999999998 20.479999999999997s1.2799999999999998 26.24-7.04 35.199999999999996l-356.48 384c-5.119999999999999 5.76-12.159999999999998 8.32-18.56 8.32z"}}]}'),As=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:o2,name:"downShape"}),null)};As.displayName="downShape",As.inheritAttrs=!1;const c2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M288 448L336 400 512 576 688 400 736 448 512 672z"}}]}'),Vs=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:c2,name:"downSmall"}),null)};Vs.displayName="downSmall",Vs.inheritAttrs=!1;const u2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M609.6 201.6L203.2 609.6 203.2 710.4 304 710.4 712 304z"}},{"type":"element","name":"path","attributes":{"d":"M128 800H896V896H128z"}},{"type":"element","name":"path","attributes":{"d":"M683.6717566325265 128.04165515828316L785.4933559547056 229.86680878681256 740.2377321198037 275.1208529300033 638.4161327976245 173.2956993014738z"}}]}'),Yo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:u2,name:"editLine"}),null)};Yo.displayName="editLine",Yo.inheritAttrs=!1;const d2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M320 512c0 35.199999999999996-28.8 64-64 64s-64-28.8-64-64c0-35.199999999999996 28.8-64 64-64s64 28.8 64 64zM512 448c-35.199999999999996 0-64 28.8-64 64s28.8 64 64 64 64-28.8 64-64c0-35.199999999999996-28.8-64-64-64zM768 448c-35.199999999999996 0-64 28.8-64 64s28.8 64 64 64 64-28.8 64-64c0-35.199999999999996-28.8-64-64-64z"}}]}'),Js=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:d2,name:"ellipsis"}),null)};Js.displayName="ellipsis",Js.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M885.76 840.64l-148.96-149.12a344.16 344.16 0 1 0-45.28 45.28l149.12 148.96a32 32 0 1 0 45.12-45.12ZM472 752A280 280 0 1 1 752 472 280.32 280.32 0 0 1 472 752Z"}},{"type":"element","name":"path","attributes":{"d":"M576 448H496V368a32 32 0 0 0-64 0v80H352a32 32 0 0 0 0 64h80v80a32 32 0 0 0 64 0V512h80a32 32 0 0 0 0-64Z"}}]}');const f2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M452.7573333333333 510.91200000000003L225.83338666666668 737.8346666666666 286.1730133333333 798.1738666666666 513.0965333333334 571.2511999999999 739.8399999999999 797.9946666666666 797.9946666666666 739.8399999999999 571.2511999999999 513.0965333333334 798.1738666666666 286.1730133333333 737.8346666666666 225.83338666666668 510.91200000000003 452.7573333333333 283.9867733333333 225.83338666666668 225.83338666666668 283.9867733333333 452.7573333333333 510.91200000000003Z","clip-rule":"evenodd"}}]}'),Bn=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:f2,name:"error"}),null)};Bn.displayName="error",Bn.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1097.143","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M698.6369535999999 21.90055387428571C703.9797248 26.53220315428571 707.0476178285713 33.25521261714285 707.0476178285713 40.326095360000004L707.0476178285713 1056.8167606857141C707.0476178285713 1063.8778368 703.9842779428571 1070.5916416 698.6529316571427 1075.2214930285713 693.3215890285713 1079.8513481142857 686.2448676571429 1081.9424548571428 679.2533321142857 1080.953903542857L66.21866678857141 993.4262857142858C42.18708992 990.0036388571428 24.332190354285718 969.4260845714285 24.332190354285718 945.152L24.332190354285718 151.99085714285712C24.332190354285718 127.71677257142855 42.18708992 107.13921718857142 66.21866678857141 103.71657142857141L66.26742857142857 103.71657142857141 679.2045714285714 16.188952502857138C686.2038015999999 15.18488685714286 693.2941824 17.26890459428571 698.6369535999999 21.90055387428571ZM950.8571428571428 109.71428571428571C977.7876004571428 109.71428571428571 999.6190463999999 131.54573421714286 999.6190463999999 158.4761903542857L999.6190463999999 938.6666678857142C999.6190463999999 965.5971218285714 977.7876004571428 987.4285714285713 950.8571428571428 987.4285714285713L755.8095250285714 987.4285714285713 755.8095250285714 889.9047606857142 902.0952393142857 889.9047606857142 902.0952393142857 207.23809536 755.8095250285714 207.23809536 755.8095250285714 109.71428571428571 950.8571428571428 109.71428571428571ZM287.69523821714284 353.52381074285717L170.6666667885714 353.52381074285717 307.2 548.5714285714286 170.6666667885714 743.6190463999999 287.69523821714284 743.6190463999999 365.71428571428567 632.1493321142857 443.7333321142857 743.6190463999999 560.7619035428571 743.6190463999999 424.2285714285714 548.5714285714286 560.7619035428571 353.52381074285717 443.7333321142857 353.52381074285717 365.71428571428567 464.9935250285714 287.69523821714284 353.52381074285717Z"}}]}');const h2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64zM512 768c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S539.2 768 512 768zM560 308.8L544 608c0 17.6-14.4 32-32 32-17.6 0-32-14.4-32-32l-16-299.2c0-1.6 0-3.2 0-4.8 0-27.2 20.8-48 48-48 27.2 0 48 20.8 48 48C560 305.6 560 307.2 560 308.8z"}}]}'),Qs=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:h2,name:"exclamationCircleShape"}),null)};Qs.displayName="exclamationCircleShape",Qs.inheritAttrs=!1;const g2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 384a128 128 0 1 0 128 128A128 128 0 0 0 512 384Zm0 192a64 64 0 1 1 64-64A64 64 0 0 1 512 576Z"}},{"type":"element","name":"path","attributes":{"d":"M512 240C264.64 240 64 512 64 512S264.64 784 512 784 960 512 960 512 759.36 240 512 240Zm0 480C352 720 208 580.96 147.04 512 208 442.88 352 304 512 304s304 139.04 364.96 208C816 581.12 672 720 512 720Z"}}]}'),Uo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:g2,name:"eye"}),null)};Uo.displayName="eye",Uo.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M128 384L192 384 192 192 384 192 384 128 128 128 128 384Z"}},{"type":"element","name":"path","attributes":{"d":"M640 128L640 192 832 192 832 384 896 384 896 128 640 128Z"}},{"type":"element","name":"path","attributes":{"d":"M192 640L128 640 128 896 384 896 384 832 192 832 192 640Z"}},{"type":"element","name":"path","attributes":{"d":"M832 832L640 832 640 896 896 896 896 640 832 640 832 832Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M928 320h-35.199999999999996c-15.402666666666665-73.55733333333333-79.744-128-156.75733333333332-128 0 0-0.042666666666666665 0-0.042666666666666665 0h-288v-32c0-53.034666666666666-42.96533333333333-96-96-96h-256c-53.034666666666666 0-96 42.96533333333333-96 96v640c0 88.36266666666667 71.63733333333333 160 160 160h704c0.38399999999999995 0 0.8533333333333333 0 1.3226666666666667 0 51.199999999999996 0 92.88533333333334-40.61866666666666 94.67733333333332-91.34933333333333l64-452.65066666666667c0-53.034666666666666-42.96533333333333-96-96-96zM64 800v-640c0-17.663999999999998 14.336-32 32-32h256c17.663999999999998 0 32 14.336 32 32v64c0 17.663999999999998 14.336 32 32 32h320c41.42933333333333 0.128 76.71466666666666 26.496 90.02666666666666 63.31733333333333l-538.0266666666666 0.6826666666666666c-0.38399999999999995 0-0.8533333333333333 0-1.3226666666666667 0-51.199999999999996 0-92.88533333333334 40.61866666666666-94.67733333333332 91.34933333333333l-64 452.65066666666667c0.128 9.856 1.7493333333333334 19.328 4.650666666666666 28.202666666666666-39.97866666666667-12.842666666666666-68.47999999999999-49.151999999999994-68.65066666666667-92.16zM896 864c0 17.663999999999998-14.336 32-32 32h-640c-0.08533333333333333 0-0.21333333333333332 0-0.29866666666666664 0-16.08533333333333 0-29.39733333333333-11.861333333333334-31.658666666666665-27.349333333333334l64-452.65066666666667c0-17.663999999999998 14.336-32 32-32h640c0.08533333333333333 0 0.21333333333333332 0 0.29866666666666664 0 16.08533333333333 0 29.39733333333333 11.861333333333334 31.658666666666665 27.349333333333334z"}}]}');const m2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M202.24 421.11999999999995c1.792-56.23466666666667 47.78666666666667-101.12 104.27733333333333-101.12 0.46933333333333327 0 0.9386666666666665 0 1.408 0l568.2346666666666 0c0.17066666666666666 0 0.38399999999999995 0 0.5973333333333333 0 7.082666666666666 0 12.799999999999999-5.717333333333333 12.799999999999999-12.799999999999999 0-1.3653333333333333-0.21333333333333332-2.6879999999999997-0.6399999999999999-3.925333333333333-21.205333333333332-65.024-81.40799999999999-111.27466666666666-152.40533333333332-111.27466666666666-0.17066666666666666 0-0.38399999999999995 0-0.5546666666666666 0h-287.9573333333333v-32c0-53.034666666666666-42.96533333333333-96-96-96h-256c-53.034666666666666 0-96 42.96533333333333-96 96v640c0 0.9813333333333333-0.042666666666666665 2.0906666666666665-0.042666666666666665 3.2426666666666666 0 77.056 54.44266666666667 141.39733333333334 126.976 156.58666666666664 0.896-1.92 0.8106666666666666-4.394666666666666 0.8106666666666666-6.8693333333333335s0.08533333333333333-4.949333333333334 0.256-7.381333333333332z"}},{"type":"element","name":"path","attributes":{"d":"M960 384h-652.16c-22.954666666666668 0-41.599999999999994 18.645333333333333-41.599999999999994 41.599999999999994l-74.24 521.5999999999999c-0.42666666666666664 1.92-0.6399999999999999 4.1386666666666665-0.6399999999999999 6.3999999999999995s0.256 4.4799999999999995 0.6826666666666666 6.613333333333333l703.9573333333333-0.21333333333333332c35.327999999999996 0 64-28.672 64-64l64-448c0-35.327999999999996-28.672-64-64-64z"}}]}'),$o=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:m2,name:"folderShapeOpen"}),null)};$o.displayName="folderShapeOpen",$o.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M864 192h-416v-32c0-53.034666666666666-42.96533333333333-96-96-96h-256c-53.034666666666666 0-96 42.96533333333333-96 96v640c0 88.36266666666667 71.63733333333333 160 160 160h704c88.36266666666667 0 160-71.63733333333333 160-160v-448c0-88.36266666666667-71.63733333333333-160-160-160z"}}]}');const p2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M864 960h-704c-88.36266666666667 0-160-71.63733333333333-160-160v-640c0-53.034666666666666 42.96533333333333-96 96-96h256c53.034666666666666 0 96 42.96533333333333 96 96v32h416c88.36266666666667 0 160 71.63733333333333 160 160v448c0 88.36266666666667-71.63733333333333 160-160 160zM96 128c-17.663999999999998 0-32 14.336-32 32v640c0 53.034666666666666 42.96533333333333 96 96 96h704c53.034666666666666 0 96-42.96533333333333 96-96v-448c0-53.034666666666666-42.96533333333333-96-96-96h-448c-17.663999999999998 0-32-14.336-32-32v-64c0-17.663999999999998-14.336-32-32-32z"}}]}'),Ko=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:p2,name:"folder"}),null)};Ko.displayName="folder",Ko.inheritAttrs=!1;const b2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M860.8 128H163.2a32 32 0 0 0-27.36 52l295.2 336 0.96 0V896l160-82.72V516.8l0.96 0 295.2-336A32 32 0 0 0 860.8 128Z"}}]}'),Xo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:b2,name:"funnel"}),null)};Xo.displayName="funnel",Xo.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512c0 57.6 11.2 113.6 32 166.4V896c0 17.6 14.4 32 32 32h217.6C576 1019.2 836.8 908.8 928 678.4S908.8 187.2 678.4 96C625.6 75.2 569.6 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64zM500.8 721.6c-27.2 0-48-20.8-48-48s20.8-48 48-48c27.2 0 48 20.8 48 48S528 721.6 500.8 721.6zM587.2 507.2c-36.8 20.8-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8c1.6-70.4 49.6-118.4 136-118.4 80 0 132.8 44.8 132.8 110.4C648 454.4 627.2 484.8 587.2 507.2z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 128c212.8 0 384 171.2 384 384S724.8 896 512 896 128 724.8 128 512 299.2 128 512 128M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64z"}},{"type":"element","name":"path","attributes":{"d":"M548.8 673.6A48 48 0 0 1 500.8 721.6 48 48 0 0 1 452.8 673.6 48 48 0 0 1 548.8 673.6z"}},{"type":"element","name":"path","attributes":{"d":"M513.6 302.4c80 0 132.8 44.8 132.8 110.4 0 41.6-20.8 72-60.8 96-40 24-48 35.2-48 62.4v14.4H464v-16c-3.2-44.8 11.2-70.4 51.2-92.8 36.8-22.4 48-35.2 48-60.8s-20.8-44.8-52.8-44.8c-28.8-1.6-52.8 19.2-56 48 0 1.6 0 1.6 0 3.2h-76.8C377.6 352 427.2 302.4 513.6 302.4z"}}]}');const y2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M664.4363636363637 0C676.8000000000001 0 688.5818181818182 4.945454545454545 697.3090909090909 13.672727272727274L697.3090909090909 13.672727272727274 1010.3272727272728 326.6909090909091C1019.0545454545455 335.41818181818184 1024 347.3454545454546 1024 359.70909090909095L1024 359.70909090909095 1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L977.4545454545455 1303.2727272727273 46.54545454545455 1303.2727272727273C20.8 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 1256.7272727272727 0 46.54545454545455C0 20.8 20.8 0 46.54545454545455 0L46.54545454545455 0ZM637.6727272727272 744.7272727272727L474.76363636363635 954.1818181818182 358.40000000000003 814.5454545454546 195.4909090909091 1024 847.1272727272727 1024 637.6727272727272 744.7272727272727ZM465.4545454545455 558.5454545454545C414.041856 558.5454545454545 372.3636363636364 600.2236741818182 372.3636363636364 651.6363636363636 372.3636363636364 703.0490530909091 414.041856 744.7272727272727 465.4545454545455 744.7272727272727 516.8672349090909 744.7272727272727 558.5454545454545 703.0490530909091 558.5454545454545 651.6363636363636 558.5454545454545 600.2236741818182 516.8672349090909 558.5454545454545 465.4545454545455 558.5454545454545ZM642.9090909090909 107.34545454545454L642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091 642.9090909090909 107.34545454545454Z"}}]}'),qo=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:y2,name:"imageFill"}),null)};qo.displayName="imageFill",qo.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M752 512A176 176 0 1 0 928 688 176 176 0 0 0 752 512Zm0 299.2a30.88 30.88 0 1 1 30.88-30.88A30.72 30.72 0 0 1 752 811.2Zm16.96-92.32a17.12 17.12 0 0 1-33.92 0s-13.76-118.72-13.76-123.2a30.88 30.88 0 1 1 61.6 0C782.88 600.16 768.96 718.88 768.96 718.88Z"}},{"type":"element","name":"path","attributes":{"d":"M800 176H480l-44.32 89.44-23.36 89.44-70.24 85.6 30.88-85.6-46.88-89.44L336 240h0v-0.96L359.52 176H160a96 96 0 0 0-96 96V752a96 96 0 0 0 96 96H573.44A238.88 238.88 0 0 1 512 688a243.2 243.2 0 0 1 8.16-61.44L356.8 519.84a46.72 46.72 0 0 0-70.72 2.56L128 656V272a32 32 0 0 1 32-32h118.4L272 283.36l70.08 71.52L327.36 480l108.32-107.36L530.4 240H800a32 32 0 0 1 32 32V461.92A241.92 241.92 0 0 1 896 496V272A96 96 0 0 0 800 176Z"}},{"type":"element","name":"path","attributes":{"d":"M720 400A80 80 0 0 1 640 480 80 80 0 0 1 560 400 80 80 0 0 1 720 400z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M864 176H160a96 96 0 0 0-96 96V752a96 96 0 0 0 96 96H864a96 96 0 0 0 96-96V272A96 96 0 0 0 864 176ZM128 272a32 32 0 0 1 32-32H864a32 32 0 0 1 32 32V688l-144-114.72a57.76 57.76 0 0 0-56.32 0L592 672 356.8 439.84a46.72 46.72 0 0 0-70.72 2.56L128 656Z"}},{"type":"element","name":"path","attributes":{"d":"M752 400A96 96 0 0 1 656 496 96 96 0 0 1 560 400 96 96 0 0 1 752 400z"}}]}');const C2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264 64 64 264 64 512s200 448 448 448 448-200 448-448S760 64 512 64zM512 896C299.2 896 128 724.8 128 512S299.2 128 512 128s384 171.2 384 384S724.8 896 512 896z"}},{"type":"element","name":"path","attributes":{"d":"M494.4 403.2c-28.8 6.4-56 20.8-76.8 41.6-24 22.4 1.6 44.8 16 27.2 9.6-12.8 24-22.4 40-28.8 11.2-1.6 17.6 1.6 19.2 9.6 1.6 14.4 0 27.2-4.8 41.6-4.8 19.2-14.4 51.2-25.6 94.4-22.4 76.8-33.6 124.8-30.4 140.8 3.2 17.6 12.8 32 28.8 41.6 17.6 8 38.4 9.6 57.6 4.8 30.4-6.4 57.6-22.4 80-44.8 25.6-25.6-3.2-43.2-17.6-28.8-9.6 12.8-24 22.4-40 25.6-14.4 3.2-22.4-3.2-25.6-16-1.6-14.4 1.6-28.8 6.4-41.6 40-136 57.6-212.8 52.8-232-3.2-14.4-12.8-27.2-25.6-33.6C532.8 398.4 512 398.4 494.4 403.2z"}},{"type":"element","name":"path","attributes":{"d":"M608 304A48 48 0 0 1 560 352 48 48 0 0 1 512 304 48 48 0 0 1 608 304z"}}]}'),ec=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:C2,name:"infoLine"}),null)};ec.displayName="infoLine",ec.inheritAttrs=!1;const v2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64A448 448 0 1 1 64 512 448 448 0 0 1 512 64ZM493.92 402.56a156 156 0 0 0-77.12 42.24c-24.32 22.88 1.44 44 16 27.52a82.56 82.56 0 0 1 40.48-28.16c11.04-2.24 17.6 1.28 19.36 10.4A118.88 118.88 0 0 1 488.16 496q-7.2 29.76-26.4 93.92-34.72 116.32-30.08 140.8a54.72 54.72 0 0 0 28.8 40.96 88 88 0 0 0 58.4 5.12 161.76 161.76 0 0 0 80-45.44c25.76-24.96-3.52-43.04-17.28-28a76.32 76.32 0 0 1-39.36 26.08c-14.24 2.88-22.72-2.4-25.28-16A104.96 104.96 0 0 1 522.88 672Q582.24 469.12 576 439.84a46.24 46.24 0 0 0-25.6-33.6A89.6 89.6 0 0 0 493.92 402.56Zm67.84-39.84A49.92 49.92 0 1 0 512 312.96 49.76 49.76 0 0 0 561.76 362.72Z"}}]}'),Rs=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:v2,name:"info"}),null)};Rs.displayName="info",Rs.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M680.96 129.92c-14.08-3.84-30.08-1.2799999999999998-40.31999999999999 7.04l-439.03999999999996 356.48c-12.799999999999999 10.239999999999998-12.799999999999999 26.88 0 37.12l439.03999999999996 356.48c7.04 5.76 16.64 8.959999999999999 26.88 8.959999999999999 4.4799999999999995 0 8.959999999999999-0.6399999999999999 13.44-1.92 14.08-3.84 23.04-14.08 23.04-25.599999999999998v-712.96c0-11.52-8.959999999999999-21.759999999999998-23.04-25.599999999999998z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M192 512a320 320 0 1 0 76.96-208H352v64H160V176h64v82.08A384 384 0 1 1 128 512Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M886.56 841.28l-149.12-149.12a344.64 344.64 0 1 0-45.28 45.28l149.12 149.12A32 32 0 0 0 864 896a32 32 0 0 0 22.56-54.72ZM472.32 752A280.32 280.32 0 1 1 752 472.32 280.64 280.64 0 0 1 472.32 752Z"}},{"type":"element","name":"path","attributes":{"d":"M576 448H352a32 32 0 0 0 0 64H576a32 32 0 0 0 0-64Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M896 176H128a64 64 0 0 0-64 64V784a64 64 0 0 0 64 64H896a64 64 0 0 0 64-64V240A64 64 0 0 0 896 176Zm0 608H128V240H896Z"}},{"type":"element","name":"path","attributes":{"d":"M327.84 649.28h52.64V373.28H337.76A97.12 97.12 0 0 1 304 417.28a150.56 150.56 0 0 1-44.8 25.6v48a182.56 182.56 0 0 0 68.16-40Z"}},{"type":"element","name":"path","attributes":{"d":"M480.64 450.24H533.28V502.88H480.64V450.24z"}},{"type":"element","name":"path","attributes":{"d":"M480.64 596.64H533.28V649.28H480.64V596.64z"}},{"type":"element","name":"path","attributes":{"d":"M669.28 649.28h52.64V373.28H679.2a97.12 97.12 0 0 1-33.28 44 150.56 150.56 0 0 1-44.8 25.6v48a182.56 182.56 0 0 0 68.16-40Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M1010.3272727272728 326.8363636363636C1019.0545454545455 335.56363636363636 1024 347.3454545454546 1024 359.70909090909095L1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L46.54545454545455 1303.2727272727273C20.80000000000002 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 46.54545454545455C0 20.799999999999997 20.80000000000002 0 46.54545454545455 0L664.2909090909092 0C676.6545454545455 0 688.5818181818182 4.945454545454554 697.3090909090909 13.67272727272728L1010.3272727272728 326.8363636363636ZM916.6545454545455 381.0909090909091L642.9090909090909 107.34545454545456 642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091ZM688.3156340363636 833.8269090909091C666.2443659636364 833.1156340363638 642.7679976727273 834.8014545454546 616.0974568727273 838.1381818181819 580.7549114181819 816.3389114181817 556.9643659636364 786.3825454545455 540.0625477818182 742.389820509091 540.4698158545455 740.714179490909 541.3134568727273 737.2436386909092 541.6087272727273 736.0189114181819 542.2981818181819 733.1709114181818 542.8698158545455 730.7912750545455 543.4167295999999 728.4770909090909 549.661090909091 702.1061818181818 553.0385454545456 682.8654545454546 554.0349114181819 663.4661841454545 554.788361309091 648.8130932363637 553.9767249454546 635.2945477818182 551.3774545454546 622.7738205090909 546.5803636363637 595.7425477818182 527.4443636363637 579.933090909091 503.3469067636364 578.9541841454546 480.8799976727273 578.0421818181818 460.2210909090909 590.5803636363637 454.9381818181818 610.0421818181818 446.33745221818185 641.4778181818182 451.37454545454545 682.8712727272729 469.6 753.4341818181819 446.3796363636364 808.7883636363637 415.70618181818185 873.6683659636363 395.1229067636363 909.8545477818182 367.65381818181817 924.021820509091 346.2443659636364 936.9163636363637 328.28218181818187 951.2029090909091 304.5687296 970.0625454545454 289.7658181818182 989.4429090909091 285.6843636363637 1009.8298181818183 283.71345221818177 1019.2552727272729 286.69090909090914 1031.5985454545455 293.4807272727272 1041.7018181818182 301.184 1053.1621841454546 312.8 1060.597820509091 326.7243659636364 1061.6800023272726 361.85454312727273 1064.4101818181819 405.02254312727274 1028.1905477818182 452.6734522181818 946.3956386909091 457.4661818181818 944.8101841454546 462.5352704 943.1127272727273 468.71127040000005 941.0283659636364 472.09018181818186 939.8894545454546 483.9316340363637 935.8821841454546 486.0349114181819 935.1723659636364 496.9745454545455 931.4778205090909 504.9149114181818 928.8305477818183 512.7636340363636 926.2763659636363 546.7941794909092 915.2043659636364 572.5396340363636 908.1978181818182 595.9781794909092 904.221090909091 636.6661818181818 926.0000023272728 683.7105477818181 940.288 715.3934522181818 940.288 741.5447272727273 940.288 759.2130885818183 926.7330932363637 765.5970909090909 905.4007296 771.2072704000001 886.6574568727273 766.7520000000001 864.9294568727273 754.7272704 852.9149114181819 742.2763613090909 840.6821841454545 719.3818205090909 834.8290932363636 688.3156340363636 833.8269090909091L688.3156340363636 833.8269090909091ZM327.61017716363637 1020.6196363636365L327.61017716363637 1020.0960000000001 327.79345454545455 1019.6043636363636C329.6479976727273 1014.6283613090909 332.38545221818185 1009.4109090909092 335.93890909090914 1003.9563636363637 342.17018181818185 994.3912727272727 350.7359976727273 984.32 361.3527272727273 973.6072704000001 367.0545454545455 967.8545454545455 372.992 962.2618158545456 379.9563636363637 955.9781794909092 381.5170885818182 954.5687272727273 391.46181818181816 945.7105454545456 393.32217949090904 943.9781841454546L409.5781794909091 928.8407272727272 397.76727040000003 947.6538181818181C379.8385431272727 976.2181818181818 363.6436340363636 996.7883636363637 349.74836363636365 1010.2050909090909 344.64727039999997 1015.1316340363637 340.1483636363636 1018.7869090909091 336.52508858181824 1021.121452218182 335.0312727272727 1022.0843613090909 333.7381794909091 1022.7854522181817 332.72436363636365 1023.1927249454546 332.1294522181818 1023.4298181818182 331.6029067636364 1023.5825431272726 331.0807272727273 1023.6319976727274 330.5281303272728 1023.6968587636364 329.9681698909091 1023.6166516363637 329.4559976727273 1023.3992704 328.3361233454546 1022.9301666909092 327.6080779636364 1021.8337931636364 327.61017716363637 1020.6196363636365ZM510.7869090909091 703.1374568727272L507.4996363636364 708.9658181818182 505.47781818181824 702.5876340363636C500.94836363636364 688.2909090909092 497.6421841454545 666.7461818181819 496.72727272727275 647.3192727272727 495.6858181818182 625.2145431272728 497.44000000000005 611.9403659636364 504.416 611.9403659636364 514.2196363636363 611.9403659636364 518.715638690909 627.6610885818181 519.072 651.2901818181818 519.3861818181817 672.0610909090909 516.1192727272727 693.6785454545454 510.7869090909091 703.1374568727272ZM502.336 788.1760023272727L504.5672727272727 782.2850932363638 507.60436363636364 787.805090909091C524.6080000000001 818.7069114181819 546.6705454545455 844.4843659636364 570.9323636363636 862.4450932363636L576.1614522181818 866.3170932363636 569.7905431272727 867.6320023272727C546.0407296000001 872.5367296000001 523.9083659636365 879.9330909090909 493.6596340363636 892.1294568727272 496.82181585454543 890.8552750545455 462.20799999999997 905.021090909091 453.45890676363643 908.3752727272728L445.81963403636365 911.3032750545455 449.89527039999996 904.2094545454546C467.85891141818183 872.9425454545456 484.452361309091 835.3716363636364 502.3345477818182 788.1760023272727L502.336 788.1760023272727ZM731.6101818181818 899.1010909090909C720.1716363636365 903.616 695.5709067636365 899.5796340363637 652.2370932363636 881.0836340363636L641.2392727272727 876.3898181818182 653.1650885818183 875.5069067636365C687.0487272727273 872.9992704 711.0661818181818 874.8669067636364 725.0516340363637 879.9869067636363 731.0007249454545 882.165820509091 734.9774522181818 884.9149114181819 736.7418181818182 888.064 738.6472727272728 891.4618181818182 737.7745454545455 895.0603636363637 734.7607272727273 897.2421818181818 734.109090909091 897.8632704 733.0807295999999 898.5221818181819 731.6101818181818 899.1010909090909L731.6101818181818 899.1010909090909Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M827.9893333333332 482.73066666666665l-585.1306666666667-474.7093333333333c-6.229333333333333-5.418666666666667-14.421333333333333-8.746666666666666-23.381333333333334-8.789333333333332-20.223999999999997 0-36.56533333333333 16.384-36.56533333333333 36.56533333333333v950.8693333333333c0 20.18133333333333 16.384 36.56533333333333 36.56533333333333 36.56533333333333 0 0 0.042666666666666665 0 0.042666666666666665 0 8.618666666666666 0 16.512-3.0293333333333328 22.698666666666668-8.106666666666666l585.088-474.66666666666663c8.874666666666666-6.741333333333333 14.506666666666668-17.28 14.506666666666668-29.184 0-11.562666666666667-5.333333333333333-21.845333333333333-13.696-28.544z"}}]}');const w2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M736 480L544 480 544 288 480 288 480 480 288 480 288 544 480 544 480 736 544 736 544 544 736 544z"}}]}'),_s=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:w2,name:"plus"}),null)};_s.displayName="plus",_s.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1097.143","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M698.6857142857143 34.403266925714284C704.0284854857142 39.03491620571429 707.0963821714286 45.75792566857142 707.0963821714286 52.82880841142857L707.0963821714286 1069.3194752C707.0963821714286 1076.3805476571426 704.0330386285714 1083.0943561142856 698.7016923428572 1087.7242075428571 693.3703497142857 1092.3540589714285 686.2936283428571 1094.4451693714284 679.3020964571429 1093.4566180571428L66.26742857142857 1005.9290002285713C42.23585170285714 1002.5063533714285 24.380952502857145 981.9287990857142 24.380952502857145 957.6547145142856L24.380952502857145 164.4935701942857C24.380952502857145 140.21948562285712 42.23585170285714 119.64193024 66.26742857142857 116.21928448L66.31619035428571 116.21928448 679.2533321142857 28.691665554285713C686.252565942857 27.68759990857143 693.3429430857143 29.771617645714286 698.6857142857143 34.403266925714284ZM950.905903542857 122.21699876571428C977.8363611428571 122.21699876571428 999.6678107428571 144.04844726857144 999.6678107428571 170.97890340571428L999.6678107428571 951.1693787428571C999.6678107428571 978.0998363428571 977.8363611428571 999.931285942857 950.905903542857 999.931285942857L755.8582857142857 999.931285942857 755.8582857142857 902.4074751999999 902.1439999999999 902.4074751999999 902.1439999999999 219.74080841142853 755.8582857142857 219.74080841142853 755.8582857142857 122.21699876571428 950.905903542857 122.21699876571428ZM544.5566976 333.5185846857143L154.46146048 333.5185846857143 154.46146048 723.613824 251.98526976 723.613824 251.98526976 626.0900132571428 544.5566976 626.0900132571428 544.5566976 333.5185846857143ZM447.03289051428567 431.0423954285714L447.03289051428567 528.5662061714285 251.98526976 528.5662061714285 251.98526976 431.0423954285714 447.03289051428567 431.0423954285714Z"}}]}'),JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1117.090909090909","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M314.1818181818182 1117.090909090909h-30.720000000000002c-58.78690909090909-0.6516363636363637-112.73309090909092-21.038545454545456-155.5549090909091-54.87709090909091-18.01309090909091-17.31490909090909-29.55636363636364-42.216727272727276-29.55636363636364-69.86472727272727 0-1.3032727272727274 0.04654545454545455-2.6530909090909094 0.0930909090909091-3.956363636363637 0.1861818181818182-11.776 3.025454545454546-23.04 7.866181818181819-33.09381818181818-0.1861818181818182 0.32581818181818184-0.1861818181818182 0.1861818181818182-0.1861818181818182 0 0-18.478545454545458 7.168-35.281454545454544 18.897454545454547-47.75563636363636 8.424727272727273-10.100363636363637 18.10618181818182-18.897454545454547 28.811636363636364-26.205090909090906-7.866181818181819-12.008727272727274-16.19781818181818-25.506909090909094-23.691636363636366-39.47054545454545-17.268363636363638 19.78181818181818-42.123636363636365 34.443636363636365-70.42327272727273 37.05018181818182-19.642181818181818-1.349818181818182-35.70036363636364-13.870545454545454-42.170181818181824-31.045818181818184-51.75854545454546-139.96218181818182 26.43781818181818-264.9367272727273 87.17963636363636-336.1512727272728-0.32581818181818184-3.2581818181818187-0.512-7.028363636363636-0.512-10.798545454545456s0.1861818181818182-7.586909090909091 0.5585454545454546-11.310545454545455c-0.3723636363636364-2.699636363636364-0.5585454545454546-6.3767272727272735-0.5585454545454546-10.053818181818182 0-18.990545454545455 5.12-36.77090909090909 14.056727272727272-52.08436363636364 0.4189090909090909-23.505454545454548 10.705454545454547-44.96290909090909 26.903272727272725-60.22981818181819 2.0014545454545454-203.264 167.2378181818182-367.29018181818185 370.78109090909095-367.29018181818185 0.512 0 0.9774545454545456 0 1.4894545454545456 0 104.40145454545454 1.2567272727272727 198.42327272727272 44.86981818181818 265.8210909090909 114.40872727272729 65.34981818181818 65.25672727272728 106.82181818181819 154.25163636363638 110.40581818181818 252.88145454545455 22.43490909090909 28.904727272727275 36.02618181818182 65.1170909090909 36.02618181818182 104.44800000000001 0 12.706909090909091-1.3963636363636363 25.088-4.096 37.00363636363637 51.2 64.512 134.28363636363636 203.45018181818185 70.05090909090909 343.7847272727273-7.493818181818182 17.268363636363638-24.34327272727273 29.184-43.985454545454544 29.323636363636364h0c-27.694545454545455-4.654545454545455-50.87418181818182-20.945454545454545-64.69818181818181-43.566545454545455-8.424727272727273 15.63927272727273-16.57018181818182 29.137454545454545-25.46036363636364 42.030545454545454 14.382545454545454 6.935272727272727 25.925818181818183 16.942545454545453 35.51418181818182 28.57890909090909 11.450181818181818 11.86909090909091 18.71127272727273 27.46181818181818 19.735272727272726 44.73018181818182 4.654545454545455 9.774545454545455 7.493818181818182 21.038545454545456 7.680000000000001 32.954181818181816 0.04654545454545455 1.2101818181818182 0.0930909090909091 2.5134545454545454 0.0930909090909091 3.816727272727273 0 27.601454545454544-11.543272727272727 52.54981818181818-30.06836363636364 70.23709090909091-42.30981818181819 33.466181818181816-96.256 53.85309090909091-154.90327272727274 54.50472727272727-10.14690909090909 1.2101818181818182-21.736727272727276 1.8618181818181818-33.512727272727275 1.8618181818181818-66.28072727272728 0-127.44145454545455-21.643636363636364-176.91927272727273-58.32145454545454l-33.419636363636364 0.5585454545454546c-47.19709090909091 36.25890909090909-107.14763636363637 58.088727272727276-172.17163636363637 58.088727272727276-3.3047272727272725 0-6.56290909090909-0.04654545454545455-9.821090909090909-0.1861818181818182zM187.11272727272726 946.7345454545455l18.152727272727272 11.17090909090909-38.4 30.720000000000002c0.8378181818181818 8.238545454545454 3.8632727272727276 15.63927272727273 8.471272727272726 21.736727272727276 31.232000000000003 22.900363636363636 70.51636363636364 36.72436363636364 113.01236363636363 36.910545454545456 9.588363636363637 1.442909090909091 20.57309090909091 2.280727272727273 31.744000000000003 2.280727272727273 53.061818181818175 0 101.74836363636364-18.80436363636364 139.72945454545453-50.0829090909091l10.100363636363637-9.495272727272727h21.643636363636364c6.469818181818183 0.46545454545454545 14.010181818181819 0.7447272727272728 21.643636363636364 0.7447272727272728s15.173818181818183-0.2792727272727273 22.667636363636365-0.7912727272727273l14.336 0.04654545454545455 11.17090909090909 10.472727272727273c37.376000000000005 31.09236363636364 85.9229090909091 49.98981818181819 138.8450909090909 49.98981818181819 11.636363636363637 0 23.04-0.9309090909090909 34.16436363636364-2.6530909090909094-0.6516363636363637 0.1861818181818182 0 0.1861818181818182 0.6516363636363637 0.1861818181818182 42.07709090909091 0 80.94254545454547-13.637818181818181 112.45381818181818-36.67781818181818 3.6770909090909094-4.561454545454546 6.2370909090909095-11.031272727272727 6.2370909090909095-18.10618181818182 0-1.8618181818181818-0.1861818181818182-3.6770909090909094-0.512-5.445818181818182l-38.35345454545455-30.533818181818184 18.152727272727272-9.774545454545455c-10.053818181818182-7.633454545454546-21.969454545454546-13.451636363636363-34.955636363636366-16.61672727272727l-55.80800000000001-14.103272727272728 37.70181818181818-42.58909090909091c29.649454545454546-33.18690909090909 52.1309090909091-73.49527272727273 64.41890909090908-117.99272727272728l24.948363636363638-94.25454545454545 40.49454545454545 85.87636363636364c8.843636363636364 19.456 19.316363636363636 36.21236363636364 31.744000000000003 51.386181818181825 30.39418181818182-108.63709090909092-47.104-218.25163636363638-83.40945454545455-262.2370909090909l-13.265454545454544-15.360000000000001 6.9818181818181815-18.85090909090909c3.1185454545454547-9.076363636363636 4.887272727272728-19.54909090909091 4.887272727272728-30.440727272727276 0-25.134545454545457-9.541818181818181-48.034909090909096-25.227636363636368-65.25672727272728l-9.681454545454546-10.379636363636363v-13.963636363636363c-0.32581818181818184-169.70472727272727-135.40072727272727-307.75854545454547-303.9418181818182-312.78545454545457-1.349818181818182 0-2.373818181818182-0.04654545454545455-3.444363636363636-0.04654545454545455-167.7498181818182 0-303.70909090909095 135.95927272727272-303.70909090909095 303.70909090909095 0 3.6770909090909094 0.04654545454545455 7.354181818181819 0.1861818181818182 11.031272727272727l0 20.433454545454545-17.454545454545453 13.963636363636363c-5.678545454545454 3.1650909090909094-9.448727272727274 9.076363636363636-9.448727272727274 15.918545454545455 0 1.3032727272727274 0.13963636363636364 2.5134545454545454 0.3723636363636364 3.7236363636363636l4.189090909090909 27.089454545454544-16.756363636363638 7.680000000000001c-0.3723636363636364 2.7461818181818183-0.6050909090909091 5.864727272727273-0.6050909090909091 9.076363636363636s0.23272727272727273 6.330181818181819 0.6516363636363637 9.448727272727274c0.512 6.842181818181818 2.280727272727273 13.451636363636363 4.980363636363636 19.54909090909091l8.238545454545454 19.874909090909092-14.661818181818182 16.05818181818182c-59.485090909090914 55.482181818181814-96.53527272727273 134.28363636363636-96.53527272727273 221.7890909090909 0 10.891636363636364 0.5585454545454546 21.69018181818182 1.722181818181818 32.30254545454545 12.288-14.754909090909091 23.179636363636366-29.88218181818182 32.11636363636364-46.21963636363636l41.099636363636364-70.98181818181818 23.73818181818182 78.89454545454547c13.312 44.12509090909091 35.14181818181818 82.19927272727273 63.76727272727273 114.0829090909091l36.07272727272728 40.215272727272726-52.36363636363637 16.05818181818182c-12.427636363636365 2.3272727272727276-23.458909090909092 6.935272727272727-33.14036363636364 13.451636363636363zM165.4690909090909 474.76363636363635v0z"}}]}');const M2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M822.3999999999999 493.43999999999994l-439.03999999999996-356.48c-10.239999999999998-8.32-26.24-10.879999999999999-40.31999999999999-7.04s-23.04 14.08-23.04 25.599999999999998v712.96c0 11.52 8.959999999999999 21.119999999999997 23.04 25.599999999999998 4.4799999999999995 1.2799999999999998 8.959999999999999 1.92 13.44 1.92 10.239999999999998 0 19.84-3.1999999999999997 26.88-8.959999999999999l439.03999999999996-356.48c12.799999999999999-10.239999999999998 12.799999999999999-26.88 0-37.12z"}}]}'),Ws=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:M2,name:"rightShape"}),null)};Ws.displayName="rightShape",Ws.inheritAttrs=!1;const I2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M832 512a320 320 0 1 1-76.96-208H672v64H864V176H800v82.08A384 384 0 1 0 896 512Z"}}]}'),tc=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:I2,name:"rightTurnLine"}),null)};tc.displayName="rightTurnLine",tc.inheritAttrs=!1;const N2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M842.56 797.28l-151.52-151.52a336 336 0 1 0-45.28 45.28l151.52 151.52a32 32 0 0 0 45.28-45.28ZM432 704A272 272 0 1 1 704 432 272 272 0 0 1 432 704Z"}}]}'),Ha=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:N2,name:"search"}),null)};Ha.displayName="search",Ha.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"icon","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M981.333333 1024H42.666667a42.666667 42.666667 0 0 1-42.666667-42.666667V42.666667a42.666667 42.666667 0 0 1 42.666667-42.666667h341.333333a42.666667 42.666667 0 0 1 0 85.333333H85.333333v853.333334h853.333334V618.666667a42.666667 42.666667 0 0 1 85.333333 0v362.666666a42.666667 42.666667 0 0 1-42.666667 42.666667z m0-576a42.666667 42.666667 0 0 1-42.666666-42.666667V152.746667L315.306667 796.8a48 48 0 0 1-67.2 0 47.36 47.36 0 0 1 0-66.133333L871.893333 85.333333H640a42.666667 42.666667 0 0 1 0-85.333333h341.333333a42.666667 42.666667 0 0 1 42.666667 42.666667v362.666666a42.666667 42.666667 0 0 1-42.666667 42.666667z"}}]}');const L2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"lds-spin","preserveAspectRatio":"xMidYMid","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M874.3255040000001 512A55.125504 55.125504 0 0 1 819.2 567.125504 55.125504 55.125504 0 0 1 764.074496 512 55.125504 55.125504 0 0 1 874.3255040000001 512z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.9166666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.9166666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".917","d":"M826.5220089266763 693.5878203150381A55.978496 55.978496 0 0 1 750.0539613250309 714.0773719166838 55.978496 55.978496 0 0 1 729.5644097233852 637.6093243150382 55.978496 55.978496 0 0 1 826.5220089266763 693.5878203150381z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.8333333333333334s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.8333333333333334s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".833","d":"M694.0170969047495 827.2583983352753A56.83200000000001 56.83200000000001 0 0 1 616.3831411568723 806.4564425873981 56.83200000000001 56.83200000000001 0 0 1 637.1850969047495 728.8224868395207 56.83200000000001 56.83200000000001 0 0 1 694.0170969047495 827.2583983352753z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.75s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.75s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".75","d":"M512 876.8855040000001A57.685504 57.685504 0 0 1 454.314496 819.2 57.685504 57.685504 0 0 1 512 761.5144959999999 57.685504 57.685504 0 0 1 512 876.8855040000001z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.6666666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.6666666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".667","d":"M329.1269198807941 828.7408206328269A58.538495999999995 58.538495999999995 0 0 1 307.7003432454604 748.7757479974932 58.538495999999995 58.538495999999995 0 0 1 387.6654158807941 727.3491713621594 58.538495999999995 58.538495999999995 0 0 1 329.1269198807941 828.7408206328269z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.5833333333333334s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.5833333333333334s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".583","d":"M194.5170177632531 695.2980006130954A59.39199999999999 59.39199999999999 0 0 1 216.2559985448185 614.16701983153 59.39199999999999 59.39199999999999 0 0 1 297.3869793263839 635.9060006130953 59.39199999999999 59.39199999999999 0 0 1 194.5170177632531 695.2980006130954z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.5s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.5s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".5","d":"M144.55449600000003 512A60.245504000000004 60.245504000000004 0 0 1 204.80000000000004 451.754496 60.245504000000004 60.245504000000004 0 0 1 265.04550400000005 512 60.245504000000004 60.245504000000004 0 0 1 144.55449600000003 512z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.4166666666666667s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.4166666666666667s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".417","d":"M193.04947448121268 327.85151812453734A61.098496 61.098496 0 0 1 276.5115721502346 305.48791645551546 61.098496 61.098496 0 0 1 298.87517381925653 388.95001412453735 61.098496 61.098496 0 0 1 193.04947448121268 327.85151812453734z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.3333333333333333s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.3333333333333333s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".333","d":"M332.5476411431614 201.1754130120454A51.711999999999996 51.711999999999996 0 0 1 403.1875468236623 220.1033186925463 51.711999999999996 51.711999999999996 0 0 1 384.2596411431614 290.7432243730472 51.711999999999996 51.711999999999996 0 0 1 332.5476411431614 201.1754130120454z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.25s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.25s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".25","d":"M512 152.234496A52.565504000000004 52.565504000000004 0 0 1 564.565504 204.8 52.565504000000004 52.565504000000004 0 0 1 512 257.365504 52.565504000000004 52.565504000000004 0 0 1 512 152.234496z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.16666666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.16666666666666666s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".167","d":"M692.3075781671167 199.69299071449373A53.418496000000005 53.418496000000005 0 0 1 711.8601047350743 272.66401328245115 53.418496000000005 53.418496000000005 0 0 1 638.8890821671168 292.21653985040854 53.418496000000005 53.418496000000005 0 0 1 692.3075781671167 199.69299071449373z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"-0.08333333333333333s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"-0.08333333333333333s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]},{"type":"element","name":"path","attributes":{"fill-opacity":".083","d":"M825.0362880000001 331.264A54.27213621356492 54.27213621356492 0 0 1 805.1712000000001 405.401088 54.27213621356492 54.27213621356492 0 0 1 731.034112 385.536 54.27213621356492 54.27213621356492 0 0 1 825.0362880000001 331.264z"},"elements":[{"type":"element","name":"animateTransform","attributes":{"attributeName":"transform","begin":"0s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","type":"scale","values":"1.2 1.2;1 1"}},{"type":"element","name":"animate","attributes":{"attributeName":"fill-opacity","begin":"0s","dur":"1s","keyTimes":"0;1","repeatCount":"indefinite","values":"1;0"}}]}]}'),zr=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:L2,name:"spinner"}),null)};zr.displayName="spinner",zr.inheritAttrs=!1;const k2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zM485.7 670.3l-181-181L350 444l135.8 135.8L712 353.5l45.3 45.3L485.7 670.3z"}}]}'),Or=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:k2,name:"success"}),null)};Or.displayName="success",Or.inheritAttrs=!1;const T2=JSON.parse('{"type":"element","name":"svg","attributes":{"aria-hidden":"true","class":"anticon-spin","data-icon":"loading","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 0 0-94.3-139.9 437.71 437.71 0 0 0-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3 0.1 19.9-16 36-35.9 36z"}}]}'),nc=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:T2,name:"switcherLoading"}),null)};nc.displayName="switcherLoading",nc.inheritAttrs=!1;const x2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M704 64L704 64H128v896h768V256l0 0L704 64zM704 154.5L805.5 256H704V154.5zM832 896H192V128h448v192h192V896z","class":"st0"}},{"type":"element","name":"path","attributes":{"d":"M288 320H544V384H288V320z","class":"st0"}},{"type":"element","name":"path","attributes":{"d":"M288 448H736V512H288V448z","class":"st0"}},{"type":"element","name":"path","attributes":{"d":"M288 576H736V640H288V576z","class":"st0"}},{"type":"element","name":"path","attributes":{"d":"M288 704H736V768H288V704z","class":"st0"}}]}'),ic=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:x2,name:"textFile"}),null)};ic.displayName="textFile",ic.inheritAttrs=!1;const S2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M664.4363636363637 0C676.8000000000001 0 688.5818181818182 4.945454545454545 697.3090909090909 13.672727272727274L697.3090909090909 13.672727272727274 1010.3272727272728 326.6909090909091C1019.0545454545455 335.41818181818184 1024 347.3454545454546 1024 359.70909090909095L1024 359.70909090909095 1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L977.4545454545455 1303.2727272727273 46.54545454545455 1303.2727272727273C20.8 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 1256.7272727272727 0 46.54545454545455C0 20.8 20.8 0 46.54545454545455 0L46.54545454545455 0ZM721.4545454545455 930.909090909091L302.54545454545456 930.909090909091C289.6922824145455 930.909090909091 279.27272727272725 941.3286446545454 279.27272727272725 954.1818181818182L279.27272727272725 954.1818181818182 279.27272727272725 1000.7272727272727C279.27272727272725 1013.5804462545456 289.6922824145455 1024 302.54545454545456 1024L302.54545454545456 1024 721.4545454545455 1024C734.3077189818182 1024 744.7272727272727 1013.5804462545456 744.7272727272727 1000.7272727272727L744.7272727272727 1000.7272727272727 744.7272727272727 954.1818181818182C744.7272727272727 941.3286446545454 734.3077189818182 930.909090909091 721.4545454545455 930.909090909091L721.4545454545455 930.909090909091ZM628.3636363636364 744.7272727272727L302.54545454545456 744.7272727272727C289.6922824145455 744.7272727272727 279.27272727272725 755.1468264727272 279.27272727272725 768L279.27272727272725 768 279.27272727272725 814.5454545454546C279.27272727272725 827.3986280727273 289.6922824145455 837.8181818181819 302.54545454545456 837.8181818181819L302.54545454545456 837.8181818181819 628.3636363636364 837.8181818181819C641.2168098909091 837.8181818181819 651.6363636363636 827.3986280727273 651.6363636363636 814.5454545454546L651.6363636363636 814.5454545454546 651.6363636363636 768C651.6363636363636 755.1468264727272 641.2168098909091 744.7272727272727 628.3636363636364 744.7272727272727L628.3636363636364 744.7272727272727ZM442.1818181818182 558.5454545454545L302.54545454545456 558.5454545454545C289.6922824145455 558.5454545454545 279.27272727272725 568.9650082909092 279.27272727272725 581.8181818181819L279.27272727272725 581.8181818181819 279.27272727272725 628.3636363636364C279.27272727272725 641.2168098909091 289.6922824145455 651.6363636363636 302.54545454545456 651.6363636363636L302.54545454545456 651.6363636363636 442.1818181818182 651.6363636363636C455.0349903127273 651.6363636363636 465.4545454545455 641.2168098909091 465.4545454545455 628.3636363636364L465.4545454545455 628.3636363636364 465.4545454545455 581.8181818181819C465.4545454545455 568.9650082909092 455.0349903127273 558.5454545454545 442.1818181818182 558.5454545454545L442.1818181818182 558.5454545454545ZM642.9090909090909 107.34545454545454L642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091 642.9090909090909 107.34545454545454Z"}}]}'),Er=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:S2,name:"textFill"}),null)};Er.displayName="textFill",Er.inheritAttrs=!1;const D2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M832 448L618.6800000000001 224.00000000000003 617.0133344000001 368.9411776 192 368.94117760000006 192 448.00000000000006 832 448ZM832 576L192 576 405.34666560000005 800 407.01333439999996 655.0588224 832 655.0588224 832 576Z"}}]}'),ac=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:D2,name:"transfer"}),null)};ac.displayName="transfer",ac.inheritAttrs=!1;const j2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M432.64 576h156.79999999999998l-79.36-260.48-77.44 260.48z"}},{"type":"element","name":"path","attributes":{"d":"M512 0c-282.75199999999995 0-512 229.248-512 512s229.248 512 512 512c282.75199999999995 0 512-229.248 512-512s-229.248-512-512-512zM681.5999999999999 768h-9.6c-0.042666666666666665 0-0.128 0-0.21333333333333332 0-14.250666666666667 0-26.325333333333333-9.301333333333332-30.464-22.186666666666667l-32.04266666666666-105.81333333333333h-192l-33.28 105.6c-4.1386666666666665 13.994666666666667-16.896 24.02133333333333-32 24.02133333333333-18.389333333333333 0-33.32266666666666-14.933333333333332-33.32266666666666-33.32266666666666 0-3.328 0.46933333333333327-6.485333333333333 1.3653333333333333-9.514666666666667l133.07733333333334-429.82399999999996c9.813333333333333-23.552 32.64-39.808 59.263999999999996-39.808 24.917333333333332 0 46.464 14.208 57.04533333333333 34.986666666666665l134.57066666666665 434.304c1.152 3.157333333333333 1.792 6.784 1.792 10.581333333333333 0 14.890666666666664-10.197333333333333 27.434666666666665-23.97866666666667 30.976z"}}]}'),rc=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:j2,name:"treeApplicationShape"}),null)};rc.displayName="treeApplicationShape",rc.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M384 896L320 896 320 704 128 704 128 640 384 640 384 896Z"}},{"type":"element","name":"path","attributes":{"d":"M896 640L896 704 704 704 704 896 640 896 640 640 896 640Z"}},{"type":"element","name":"path","attributes":{"d":"M320 128L384 128 384 384 128 384 128 320 320 320 320 128Z"}},{"type":"element","name":"path","attributes":{"d":"M704 320L896 320 896 384 640 384 640 128 704 128 704 320Z"}}]}');const z2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M500.16 304a355.04 355.04 0 0 1 128 24.8l48-48.96a426.08 426.08 0 0 0-176-39.84v64Z"}},{"type":"element","name":"path","attributes":{"d":"M763.2 328.8l-46.08 46.08a822.24 822.24 0 0 1 160 138.88 807.52 807.52 0 0 1-86.88 85.12C723.84 654.24 620.48 720 502.56 720a331.52 331.52 0 0 1-111.04-19.52l-49.44 49.28a402.4 402.4 0 0 0 160 34.24C768 784 960 512 960 512A962.56 962.56 0 0 0 763.2 328.8Z"}},{"type":"element","name":"path","attributes":{"d":"M254.88 701.12l46.08-46.08a706.56 706.56 0 0 1-156.64-144C197.44 442.88 328.16 304 500.16 304V240h0C234.72 240 64 512 64 512A838.72 838.72 0 0 0 254.88 701.12Z"}},{"type":"element","name":"path","attributes":{"d":"M512 640a128 128 0 0 0 110.24-192.96L888 181.28A32 32 0 1 0 842.72 136L576.96 401.76a128 128 0 0 0-176 176L136 842.72a32 32 0 1 0 45.28 45.28L447.04 622.24A128 128 0 0 0 512 640Zm64-128a64 64 0 0 1-64 64 60.96 60.96 0 0 1-16-2.4L573.6 496A60.96 60.96 0 0 1 576 512Zm-64-64a60.96 60.96 0 0 1 16 2.4L450.4 528A60.96 60.96 0 0 1 448 512 64 64 0 0 1 512 448Z"}}]}'),sc=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:z2,name:"unvisible"}),null)};sc.displayName="unvisible",sc.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M896 671.3599999999999c0-2.5599999999999996-0.6399999999999999-4.4799999999999995-1.2799999999999998-7.04-0.6399999999999999-1.92-0.6399999999999999-3.84-1.2799999999999998-5.119999999999999s-1.2799999999999998-2.5599999999999996-1.92-3.1999999999999997c-1.2799999999999998-2.5599999999999996-2.5599999999999996-4.4799999999999995-4.4799999999999995-6.3999999999999995 0 0 0 0 0-0.6399999999999999l-356.48-384c-10.239999999999998-11.52-26.88-11.52-37.12 0l-356.48 384c0 0 0 0.6399999999999999 0 0.6399999999999999-1.92 1.92-2.5599999999999996 3.84-3.84 6.3999999999999995-0.6399999999999999 1.2799999999999998-1.92 2.5599999999999996-2.5599999999999996 3.84s-0.6399999999999999 3.1999999999999997-1.2799999999999998 5.119999999999999c-0.6399999999999999 1.2799999999999998-1.2799999999999998 3.84-1.2799999999999998 6.3999999999999995 0 0 0 0.6399999999999999 0 0.6399999999999999 0 1.92 0.6399999999999999 3.1999999999999997 0.6399999999999999 4.4799999999999995 0 2.5599999999999996 0.6399999999999999 4.4799999999999995 1.2799999999999998 7.04s1.92 4.4799999999999995 3.1999999999999997 6.3999999999999995c0.6399999999999999 1.2799999999999998 1.2799999999999998 2.5599999999999996 1.92 3.84 0 0 0 0 0.6399999999999999 0.6399999999999999 1.2799999999999998 1.92 3.1999999999999997 3.1999999999999997 5.119999999999999 4.4799999999999995 1.2799999999999998 0.6399999999999999 2.5599999999999996 1.92 3.84 2.5599999999999996s2.5599999999999996 0.6399999999999999 3.84 1.2799999999999998c1.92 0 3.84 1.2799999999999998 6.3999999999999995 1.2799999999999998 0 0 0.6399999999999999 0 0.6399999999999999 0h712.96c3.84 0 7.68-0.6399999999999999 10.879999999999999-2.5599999999999996 0.6399999999999999 0 0.6399999999999999-0.6399999999999999 1.2799999999999998-0.6399999999999999 3.1999999999999997-1.92 5.76-3.84 8.32-6.3999999999999995 0 0 0 0 0.6399999999999999 0 0.6399999999999999-1.2799999999999998 1.2799999999999998-2.5599999999999996 1.92-3.84 1.2799999999999998-1.92 2.5599999999999996-3.84 3.1999999999999997-6.3999999999999995 0.6399999999999999-1.92 0.6399999999999999-4.4799999999999995 1.2799999999999998-7.04 0-1.92 0.6399999999999999-3.1999999999999997 0.6399999999999999-4.4799999999999995-0.6399999999999999-0.6399999999999999-0.6399999999999999-1.2799999999999998-0.6399999999999999-1.2799999999999998z"}}]}');const O2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M897.6 422.4c-27.2-27.2-62.4-48-100.8-57.6C768 209.6 619.2 104 462.4 131.2c-120 20.8-212.8 115.2-233.6 233.6C131.2 388.8 64 475.2 64 574.4v9.6C64 704 160 800 278.4 800H320v-64h-41.6C195.2 736 128 668.8 128 585.6v-9.6c0-83.2 67.2-150.4 150.4-150.4H288c0-3.2 0-4.8 0-8l0 0c0-1.6 0-3.2 0-4.8v-1.6c0-1.6 0-3.2 0-4.8 0 0 0 0 0-1.6 0-1.6 0-3.2 0-4.8v-1.6c0-1.6 0-3.2 0-3.2 0-1.6 0-1.6 0-3.2 0 0 0-1.6 0-1.6 1.6-9.6 3.2-20.8 6.4-30.4l0 0c30.4-120 153.6-192 272-161.6 78.4 20.8 140.8 81.6 161.6 161.6l0 0c3.2 9.6 4.8 20.8 4.8 30.4 0 0 0 1.6 0 1.6 0 0 0 1.6 0 3.2 0 1.6 0 3.2 0 3.2V400c0 1.6 0 3.2 0 3.2v1.6c0 1.6 0 3.2 0 4.8v1.6c0 1.6 0 3.2 0 4.8l0 0c0 3.2 0 4.8 0 8h9.6c83.2-1.6 152 65.6 153.6 148.8 0 1.6 0 1.6 0 3.2v9.6c0 83.2-67.2 150.4-150.4 150.4l0 0H704v64h41.6C864 800 960 704 960 585.6v-9.6C960 518.4 937.6 464 897.6 422.4z"}},{"type":"element","name":"path","attributes":{"d":"M376 603.2L420.8 648 480 588.8 480 896 544 896 544 588.8 603.2 648 648 603.2 512 467.2z"}}]}'),Hs=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:O2,name:"upload"}),null)};Hs.displayName="upload",Hs.inheritAttrs=!1;const E2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1303.273","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"fill-rule":"evenodd","d":"M664.4363636363636 0C676.8 0 688.5818181818182 4.945454545454554 697.3090909090909 13.67272727272728L697.3090909090909 13.67272727272728 1010.3272727272728 326.69090909090914C1019.0545454545455 335.41818181818184 1024 347.3454545454546 1024 359.70909090909095L1024 359.70909090909095 1024 1256.7272727272727C1024 1282.4727272727273 1003.2 1303.2727272727273 977.4545454545455 1303.2727272727273L977.4545454545455 1303.2727272727273 46.54545454545455 1303.2727272727273C20.80000000000002 1303.2727272727273 0 1282.4727272727273 0 1256.7272727272727L0 1256.7272727272727 0 46.54545454545455C0 20.799999999999997 20.80000000000002 0 46.54545454545455 0L46.54545454545455 0ZM397.1878772363637 614.0514816000001L397.1878772363637 848.3380922181818C397.1878772363637 912.7669108363636 440.14042298181823 936.1955746909091 494.8073006545455 901.0525835636363L650.9983744 797.5759965090909C703.7128610909091 758.5282280727272 703.7128610909091 699.9565730909092 650.9983744 664.8135819636365L494.8073006545455 561.3369949090909C442.0928139636364 526.1940037818182 397.1878772363637 549.6226676363636 397.1878772363637 614.0514816000001ZM642.9090909090909 107.34545454545456L642.9090909090909 381.0909090909091 916.6545454545455 381.0909090909091 642.9090909090909 107.34545454545456Z"}}]}'),lc=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:E2,name:"videoFill"}),null)};lc.displayName="videoFill",lc.inheritAttrs=!1;const P2=JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","class":"bk-icon","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;","overflow":"hidden","viewBox":"0 0 1024 1024"},"elements":[{"type":"element","name":"path","attributes":{"d":"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zM544 704h-64v-64h64V704zM544 576h-64V320h64V576z"}}]}'),Pr=(e,t)=>{const n=Y(Y({},e),t.attrs);return a.createVNode(Ve,a.mergeProps(n,{data:P2,name:"warn"}),null)};Pr.displayName="warn",Pr.inheritAttrs=!1,JSON.parse('{"type":"element","name":"svg","attributes":{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 1024 1024","style":"width: 1em; height: 1em; vertical-align: middle;fill: currentColor;overflow: hidden;"},"elements":[{"type":"element","name":"path","attributes":{"d":"M603.52 348.8c0 26.496-22.357333333333333 48-49.919999999999995 48s-49.919999999999995-21.503999999999998-49.919999999999995-48c0-26.496 22.357333333333333-48 49.919999999999995-48s49.919999999999995 21.503999999999998 49.919999999999995 48z"}},{"type":"element","name":"path","attributes":{"d":"M357.11999999999995 348.8c0 26.496-22.357333333333333 48-49.919999999999995 48s-49.919999999999995-21.503999999999998-49.919999999999995-48c0-26.496 22.357333333333333-48 49.919999999999995-48s49.919999999999995 21.503999999999998 49.919999999999995 48z"}},{"type":"element","name":"path","attributes":{"d":"M693.12 604.16c0 15.914666666666665-13.184 28.8-29.439999999999998 28.8s-29.439999999999998-12.885333333333332-29.439999999999998-28.8c0-15.914666666666665 13.184-28.8 29.439999999999998-28.8s29.439999999999998 12.885333333333332 29.439999999999998 28.8z"}},{"type":"element","name":"path","attributes":{"d":"M951.68 832c43.775999999999996-42.410666666666664 71.29599999999999-101.41866666666665 72.32-166.86933333333332-4.608-109.696-77.35466666666666-201.0453333333333-176.72533333333334-233.30133333333333 5.674666666666667-12.117333333333331 10.154666666666666-26.282666666666664 10.154666666666666-41.471999999999994 0-4.522666666666666-0.38399999999999995-8.959999999999999-1.152-13.226666666666667-33.834666666666664-181.29066666666665-212.39466666666664-313.1306666666667-425.5146666666667-313.1306666666667-238.71999999999997 0-430.72 167.04-430.72 372.48 1.2799999999999998 107.56266666666666 50.56 203.30666666666664 127.40266666666668 267.05066666666664l-16.682666666666666 55.50933333333333c-2.1759999999999997 6.784-3.456 14.634666666666668-3.456 22.741333333333333 0 42.410666666666664 34.38933333333333 76.8 76.8 76.8 12.458666666666666 0 24.191999999999997-2.944 34.602666666666664-8.234666666666666l101.33333333333333-52.906666666666666c32.81066666666666 7.722666666666666 70.52799999999999 12.159999999999998 109.22666666666666 12.159999999999998 0.08533333333333333 0 0.17066666666666666 0 0.21333333333333332 0h28.16c13.098666666666666-0.7679999999999999 25.130666666666663-4.693333333333333 35.54133333333333-11.050666666666666 54.22933333333333 73.55733333333333 140.672 120.53333333333333 238.07999999999998 120.53333333333333 1.664 0 3.3706666666666667 0 5.034666666666666-0.042666666666666665 21.077333333333332-0.08533333333333333 41.855999999999995-2.1759999999999997 61.99466666666667-6.101333333333333l49.10933333333333 26.581333333333333c9.941333333333333 5.034666666666666 21.717333333333332 8.021333333333333 34.176 8.021333333333333 42.410666666666664 0 76.8-34.38933333333333 76.8-76.8 0-8.106666666666666-1.2799999999999998-15.957333333333333-3.584-23.296zM430.72 752.64c-0.17066666666666666 0-0.38399999999999995 0-0.5973333333333333 0-40.831999999999994 0-80.29866666666666-5.8453333333333335-117.58933333333331-16.72533333333333l-3.456 0.7253333333333334-131.2 67.19999999999999 35.199999999999996-113.27999999999999h-3.1999999999999997c-86.10133333333332-52.05333333333333-143.40266666666668-144.17066666666665-145.92-249.89866666666666 0-172.50133333333332 165.76-312.66133333333335 366.72-312.66133333333335 5.717333333333333-0.3413333333333333 12.415999999999999-0.512 19.157333333333334-0.512 163.32799999999997 0 300.58666666666664 111.40266666666668 340.0106666666667 262.4l-14.805333333333332 2.432c-183.04 0-327.03999999999996 112-327.03999999999996 285.44 0.512 26.709333333333333 5.1626666666666665 52.181333333333335 13.312 75.98933333333332zM872.96 812.8v0l21.759999999999998 67.84-81.28-40.959999999999994h-3.84c-21.119999999999997 6.101333333333333-45.397333333333336 9.6-70.48533333333333 9.6-0.17066666666666666 0-0.38399999999999995 0-0.5546666666666666 0-5.888 0.5973333333333333-12.757333333333332 0.9386666666666665-19.712 0.9386666666666665-107.09333333333332 0-195.2853333333333-80.93866666666666-206.71999999999997-184.95999999999998 10.367999999999999-106.96533333333333 99.072-189.1413333333333 206.976-189.1413333333333 5.973333333333334 0 11.861333333333334 0.256 17.706666666666663 0.7253333333333334 4.309333333333333-0.512 10.197333333333333-0.7253333333333334 16.170666666666666-0.7253333333333334 107.904 0 196.60799999999998 82.17599999999999 206.976 187.34933333333333-1.7066666666666666 63.82933333333333-35.79733333333333 118.44266666666665-86.18666666666667 148.90666666666667z"}},{"type":"element","name":"path","attributes":{"d":"M839.68 604.16c0 15.914666666666665-13.184 28.8-29.439999999999998 28.8s-29.439999999999998-12.885333333333332-29.439999999999998-28.8c0-15.914666666666665 13.184-28.8 29.439999999999998-28.8s29.439999999999998 12.885333333333332 29.439999999999998 28.8z"}}]}');var A2=a.defineComponent({name:"Alert",props:{theme:g.theme(["info","success","warning","error"]).def("info"),size:g.string,title:g.string,closable:g.bool.def(!1),closeText:g.string,showIcon:g.bool.def(!0)},emits:["close"],setup(e,t){const n=a.reactive({visible:!0});return{state:n,handleClose:()=>{n.visible=!1,t.emit("close")}}},render(){var i,s;if(!this.state.visible)return null;const e=Boolean(this.closeText),t=ze({"bk-alert-close":!0,"close-text":e,"bk-alert-close-icon":!e}),n=ze({"bk-alert":!0,[`bk-alert-${this.theme}`]:!0});return a.createVNode("div",{class:n},[a.createVNode("div",{class:"bk-alert-wraper"},[this.showIcon&&a.createVNode(ec,{class:"bk-alert-icon-info"},null),a.createVNode("div",{class:"bk-alert-content"},[a.createVNode("div",{class:"bk-alert-title"},[this.$slots.title?this.$slots.title():this.title]),a.createVNode("div",{class:"bk-alert-description"},[(s=(i=this.$slots).default)==null?void 0:s.call(i)])]),this.closable&&a.createVNode("span",{class:t,onClick:this.handleClose},[this.closeText?this.closeText:a.createVNode(Ps,null,null)])])])}});const Jf=He(A2);var V2=a.defineComponent({name:"AnimateNumber",props:{value:g.number.def(0),digits:g.number.def(0)},setup(e){let t=-1;const n=a.ref(0),i=a.computed(()=>Number(n.value).toFixed(e.digits)),s=(o,c)=>{if(Number.isNaN(+c))return 0;const d=Math.abs(c-o),u=c-o>0?1:-1,f=Math.ceil(d/30*10**e.digits)/10**e.digits,m=Math.ceil(d/f),p=25/m;let y=1;const b=()=>{if(y<p){t=requestAnimationFrame(b),y=y+1;return}n.value+=f*u,(u===1?n.value<c:n.value>c)?(t=requestAnimationFrame(b),y=1):n.value=c};b()};return a.watch(()=>e.value,(o,c)=>{s(c,o)}),a.onMounted(()=>{s(0,e.value)}),a.onBeforeUnmount(()=>{cancelAnimationFrame(t)}),()=>a.createVNode("span",null,[i.value])}});const Qf=He(V2),Bs=(()=>document.addEventListener?(e,t,n)=>{e&&t&&n&&e.addEventListener(t,n,!0)}:(e,t,n)=>{e&&t&&n&&e.attachEvent(`on${t}`,n)})(),oc=(()=>document.removeEventListener?(e,t,n)=>{e&&t&&e.removeEventListener(t,n,!0)}:(e,t,n)=>{e&&t&&e.detachEvent(`on${t}`,n)})();var J2=a.defineComponent({name:"Affix",props:{offsetTop:g.number.def(0),offsetBottom:g.number,target:g.string.def(""),zIndex:g.number.def(1e3)},emits:["change"],setup(e,{emit:t,slots:n}){const i=a.ref(null),s=a.ref(null),o=a.ref(),c=a.ref({}),{proxy:d}=a.getCurrentInstance(),u=a.ref(0),f=a.computed(()=>xe(Y({},c.value),{"z-index":e.zIndex}));a.onMounted(()=>{u.value=d.$el.offsetWidth,o.value=e.target?document.querySelector(e.target):window,Bs(o.value,"scroll",v),Bs(o.value,"resize",v),a.nextTick(()=>{x()})});const m=a.ref(!1),p=a.computed(()=>ze({"bk-affix":m.value})),y=a.computed(()=>e.offsetBottom>=0?"bottom":"top"),b=()=>{y.value==="top"?c.value={top:`${o.value.getBoundingClientRect().top+e.offsetTop}px`}:c.value={bottom:`${window.innerHeight-o.value.getBoundingClientRect().bottom+e.offsetBottom}px`}},v=ot.exports.throttle(()=>{x()},100),T=k=>{const I=k.value.getBoundingClientRect(),C=o.value===window?{top:0,left:0}:o.value.getBoundingClientRect(),M=o.value.clientTop||0,N=o.value.clientLeft||0;return{top:I.top-C.top-M,left:I.left-C.left-N}},x=()=>{const k=o.value===window?{top:0,left:0,bottom:window.innerHeight}:o.value.getBoundingClientRect(),I=T(s),C=o.value===window?o.value.innerHeight:o.value.clientHeight,M=i.value.offsetHeight;I.top<e.offsetTop&&y.value==="top"&&!m.value?(m.value=!0,c.value={position:"fixed",top:`${k.top+e.offsetTop}px`,left:`${k.left+I.left}px`,width:`${u.value}px`},o.value!==window&&Bs(window,"scroll",b),t("change",!0)):I.top>e.offsetTop&&y.value==="top"&&m.value&&(m.value=!1,c.value=null,t("change",!1)),I.top+e.offsetBottom+M>C&&y.value==="bottom"&&!m.value?(m.value=!0,c.value={bottom:`${window.innerHeight-k.bottom+e.offsetBottom}px`,left:`${k.left+I.left}px`,width:`${u.value}px`},o.value!==window&&Bs(window,"scroll",b),t("change",!0)):I.top+e.offsetBottom+M<C&&y.value==="bottom"&&m.value&&(m.value=!1,c.value=null,t("change",!1))};return a.onBeforeUnmount(()=>{oc(o.value,"scroll",v),oc(o.value,"resize",v),oc(window,"scroll",b)}),()=>{var k;return a.createVNode("div",{ref:s},[a.createVNode("div",{ref:i,class:p.value,style:f.value},[(k=n.default)==null?void 0:k.call(n)])])}}});const Rf=He(J2);var Q2=a.defineComponent({name:"Backtop",props:{visibilityHeight:g.number.def(200),target:g.string.def(""),right:g.number.def(40),bottom:g.number.def(40),extCls:g.string.def("")},setup(e,{slots:t}){const n=a.ref(null),i=a.ref(null),s=a.ref(!1),o=a.ref(Rn.getModalNextIndex()),c=`${e.bottom}px`,d=`${e.right}px`,u=ot.exports.throttle(()=>{s.value=i.value.scrollTop>=e.visibilityHeight},30),f=()=>{i.value.scrollTo({top:0,behavior:"smooth"})};return a.watch(()=>s,()=>{o.value=Rn.getModalNextIndex()}),a.onMounted(()=>{if(n.value=document,i.value=document.documentElement,e.target){if(i.value=document.querySelector(e.target),!i.value)throw new Error("target does not exist");n.value=i.value}n.value.addEventListener("scroll",u)}),a.onBeforeUnmount(()=>{n.value.removeEventListener("scroll",u)}),()=>a.createVNode(a.Transition,{name:"bk-fade"},{default:()=>{var m,p;return[s.value?a.createVNode("div",{class:`bk-backtop ${e.extCls}`,style:{right:d,bottom:c,zIndex:o.value},onClick:f},[(p=(m=t.default)==null?void 0:m.call(t))!=null?p:a.createVNode(Wa,{class:"bk-backtop-icon"},null)]):""]}})}});const _f=He(Q2);var R2=a.defineComponent({name:"Badge",props:{theme:g.string.def("primary"),count:g.oneOfType([String,Number]).def(1),position:g.string.def("top-right"),radius:g.string,valLength:g.number.def(3),overflowCount:g.number.def(99),dot:g.bool.def(!1),visible:g.bool.def(!1),extCls:g.string},emits:["hover","leave"],setup(e,{emit:t}){const n=a.computed(()=>{if(typeof e.count=="string"){let c=e.count;c+="";const d=[];let u=0;return c.split("").forEach(f=>{u<Number(e.valLength)&&(u+=/[\u4e00-\u9fa5]/.test(f)?2:1,d.push(f))}),d.join("")}return e.count>e.overflowCount?`${e.overflowCount}+`:e.count}),i=a.computed(()=>({borderRadius:e.radius!==void 0&&/^\d+(%|px|em|rem|vh|vw)?$/.test(e.radius)&&/^\d+$/.test(e.radius)&&`${e.radius}px`||e.radius}));return{numberCount:n,handleHover:()=>{t("hover")},handleLeave:()=>{t("leave")},radiusStyle:i}},render(){var i,s,o,c,d,u;const e=ze({"bk-badge-main":!0},this.$props.extCls),t=ze({[`bk-badge bk-${this.$props.theme}`]:!!this.$props.theme,["pinned "]:this.$slots.default,dot:this.$props.dot,[`${this.$props.position}`]:this.$slots.default,["bk-badge-icon is-icon"]:this.$slots.icon},""),n=this.$props.dot?"":a.createVNode("span",null,[this.numberCount]);return a.createVNode("div",{class:e},[(o=(s=(i=this.$slots).default)==null?void 0:s.call(i))!=null?o:"",this.$props.visible?"":a.createVNode("span",{class:t,style:this.radiusStyle,onMouseenter:this.handleHover,onMouseleave:this.handleLeave},[(u=(d=(c=this.$slots).icon)==null?void 0:d.call(c))!=null?u:n])])}});const Wf=He(R2);var _2=a.defineComponent({name:"Breadcrumb",props:{extCls:g.string,separator:g.string.def("/"),separatorClass:g.string,replace:g.bool,backRouter:g.oneOfType([g.string,g.object]).def("")},setup(e,{slots:t}){const{proxy:n,appContext:i}=a.getCurrentInstance();a.provide("breadcrumb",e),a.onMounted(()=>{const c=n.$el.querySelectorAll(".bk-breadcrumb-item");c.length&&c[c.length-1].setAttribute("aria-current","page")});const s=ze({"bk-breadcrumb":!0},`${e.extCls||""}`),o=()=>{const{backRouter:c,replace:d}=e,{$router:u}=i.config.globalProperties;!u||(d?u.replace(c):u.push(c))};return()=>{var c;return a.createVNode("div",{class:s,"aria-label":"Breadcrumb",role:"navigation"},[!t.prefix&&e.backRouter?a.createVNode("div",{class:"bk-breadcrumb-goback"},[a.createVNode(Ho,{onClick:o},null)]):"",t.prefix?a.createVNode("div",{class:"bk-breadcrumb-goback"},[t.prefix()]):"",(c=t.default)==null?void 0:c.call(t)])}}}),W2=a.defineComponent({name:"BreadcrumbItem",props:{extCls:g.string,to:g.oneOfType([g.string,g.object]).def(""),replace:g.bool},setup(e,{slots:t}){const{appContext:n}=a.getCurrentInstance(),i=a.inject("breadcrumb"),s=n.config.globalProperties.$router,o=()=>{const{to:d,replace:u}=e;!d||!s||(u?s.replace(d):s.push(d))},c=ze({"bk-breadcrumb-item":!0},`${e.extCls||""}`);return()=>{var d,u;return a.createVNode("span",{class:c},[a.createVNode("span",{ref:"link",class:`bk-breadcrumb-item-inner ${e.to?"is-link":""}`,role:"link",onClick:o},[(d=t==null?void 0:t.default)==null?void 0:d.call(t)]),t!=null&&t.separator?(u=t==null?void 0:t.separator)==null?void 0:u.call(t):i!=null&&i.separatorClass?a.createVNode("i",{class:`bk-breadcrumb-separator ${i.separatorClass}`},null):a.createVNode("span",{class:"bk-breadcrumb-separator",role:"presentation"},[i==null?void 0:i.separator])])}}});const Hf=Yt(_2,{Item:W2});let aa;(function(e){e.Default="default",e.Spin="spin"})(aa||(aa={}));let Fn;(function(e){e.Normal="",e.Mini="mini",e.Small="small",e.Large="large"})(Fn||(Fn={}));let cc;function H2(e){cc=typeof e=="function"?e:()=>a.createVNode(e,null,null)}const B2={indicator:{type:Function},loading:g.bool.def(!0),inline:g.bool.def(!0),theme:g.theme(["white","primary","warning","success","danger"]),title:g.string.def(""),size:g.commonType(Object.values(Fn)).def(Fn.Normal),mode:g.commonType(Object.values(aa)).def("default"),opacity:g.number.def(.9),color:g.string.def("white"),zIndex:g.number.def(1)};var F2=a.defineComponent({name:"Loading",props:B2,setup(e,t){const n=a.createVNode("div",{class:"bk-normal-indicator"},[[1,2,3,4].map(m=>a.createVNode("span",{class:`dot dot-${m}`},null))]),i=a.createVNode("div",{class:"bk-spin-indicator"},[[1,2,3,4,5,6,7,8].map(m=>a.createVNode("span",{class:`oval oval-${m}`},null))]),s=a.computed(()=>({zIndex:e.zIndex})),o=a.computed(()=>Y({opacity:e.opacity,backgroundColor:e.color},s.value)),c=a.computed(()=>ze({"bk-loading-wrapper":e.loading,"bk-nested-loading":!!t.slots.default})),d=a.computed(()=>ze({[`bk-loading-size-${e.size}`]:!!e.size,[`bk-loading-${e.theme}`]:!!e.theme},"bk-loading-indicator")),u=a.computed(()=>!!e.title),f=a.computed(()=>{const m=e.mode===aa.Spin;return typeof e.indicator=="function"?a.createVNode(e.indicator,null,null):typeof cc=="function"?a.createVNode(cc,null,null):m?i:n});return()=>{var m,p;return a.createVNode("div",{class:c.value},[e.loading&&[t.slots.default&&a.createVNode("div",{class:"bk-loading-mask",style:o.value},null),a.createVNode("div",{class:d.value,style:s.value},[f.value,u.value&&a.createVNode("div",{class:"bk-loading-title"},[e.title])])],(p=(m=t.slots).default)==null?void 0:p.call(m)])}}});const Di=Yt(F2,{setDefaultIndicator:H2,BkLoadingMode:aa,BkLoadingSize:Fn},!0),Bf=["","small","large"],G2={theme:g.theme().def(""),hoverTheme:g.theme(["primary","warning","success","danger"]).def(""),size:g.size(Bf).def(""),title:g.string,icon:g.string,iconRight:g.string,disabled:g.bool,loading:g.bool,loadingMode:g.commonType(Object.values(aa)),outline:g.bool,text:g.bool,selected:g.bool,nativeType:{type:String,default:"button"}};var Z2=a.defineComponent({name:"Button",props:G2,emits:["click","mouseover"],setup(e,{slots:t,emit:n}){var b;const i=a.ref(!1),s=(b=t.default)!=null?b:!1,o="bk-button",c=a.computed(()=>e.text&&!e.hoverTheme),d=a.computed(()=>{const v=e.hoverTheme?`${o}-hover-${e.hoverTheme}`:"",T=e.theme?`${o}-${e.theme}`:"",x=e.hoverTheme?"":T;return ze({"is-disabled":e.disabled,"is-outline":e.outline,"is-text":c.value,"is-loading":e.loading,"is-selected":e.selected,[`${o}-${e.size}`]:e.size&&Bf.includes(e.size),"no-slot":!s},`${x} ${o} ${v}`)}),u=a.computed(()=>e.text||e.outline||e.hoverTheme?i.value&&!e.text?"white":e.text&&e.disabled?"":e.hoverTheme||e.theme:["","default"].includes(e.theme)?"":"white"),f=a.computed(()=>c.value||e.size===Fn.Small?Fn.Mini:Fn.Small),m=v=>{e.loading||n("click",v)},p=v=>{i.value=!0,n("mouseover",v)},y=()=>{i.value=!1};return()=>{var v;return a.createVNode("button",{title:e.title,disabled:e.disabled,class:d.value,type:e.nativeType,onClick:m,onMouseover:p,onMouseleave:y},[e.loading&&a.createVNode(Di,{loading:!0,class:`${o}-loading`,mode:e.loadingMode,theme:u.value,size:f.value},null),t.default&&a.createVNode("span",{class:`${o}-text`},[(v=t.default)==null?void 0:v.call(t)])])}}}),Y2=a.defineComponent({name:"ButtonGroup",props:{size:g.size()},setup(e,t){const n=a.computed(()=>ze({[`bk-button-group-${e.size}`]:!!e.size},"bk-button-group"));return()=>{var i,s;return a.createVNode("div",{class:n.value},[(s=(i=t.slots).default)==null?void 0:s.call(i)])}}});const At=Yt(Z2,{ButtonGroup:Y2}),U2={type:g.string.def("text"),clearable:g.bool,disabled:g.bool,readonly:g.bool,placeholder:g.string.def("Enter"),prefixIcon:g.string,suffixIcon:g.string,suffix:g.string,prefix:g.string,step:g.integer,max:g.integer,min:g.integer,maxlength:g.integer,behavior:g.commonType(["simplicity","normal"]).def("normal"),showWordLimit:g.bool,showControl:g.bool.def(!0),showClearOnlyHover:g.bool.def(!1),precision:g.number.def(0).validate(e=>e>=0&&e<20),modelValue:g.oneOfType([g.string,g.number]),size:g.size(),rows:g.number,selectReadonly:g.bool.def(!1),withValidate:g.bool.def(!0)};let Ue;(function(e){e.UPDATE="update:modelValue",e.FOCUS="focus",e.BLUR="blur",e.CHANGE="change",e.CLEAR="clear",e.INPUT="input",e.KEYPRESS="keypress",e.KEYDOWN="keydown",e.KEYUP="keyup",e.ENTER="enter",e.PASTE="paste",e.COMPOSITIONSTART="compositionstart",e.COMPOSITIONUPDATE="compositionupdate",e.COMPOSITIONEND="compositionend"})(Ue||(Ue={}));function ji(e,t){return!0}function uc(e){return e}const $2={[Ue.UPDATE]:ji,[Ue.FOCUS]:e=>e,[Ue.BLUR]:e=>e,[Ue.CHANGE]:ji,[Ue.CLEAR]:()=>!0,[Ue.INPUT]:ji,[Ue.KEYPRESS]:ji,[Ue.KEYDOWN]:ji,[Ue.KEYUP]:ji,[Ue.ENTER]:ji,[Ue.PASTE]:ji,[Ue.COMPOSITIONSTART]:uc,[Ue.COMPOSITIONUPDATE]:uc,[Ue.COMPOSITIONEND]:uc};var K2=a.defineComponent({name:"Input",inheritAttrs:!1,props:U2,emits:$2,setup(e,t){const n=Dn(),i=a.ref(!1),s=a.ref(!1),o=a.computed(()=>e.type==="textarea"),c=a.computed(()=>o.value?"bk-textarea":"bk-input"),ee=t.attrs,{class:d,style:u}=ee,f=Da(ee,["class","style"]),m=a.ref(),p=a.computed(()=>ze({[`${c.value}--${e.size}`]:!!e.size,"is-focused":i.value,"is-readonly":e.readonly&&!e.selectReadonly,"is-disabled":e.disabled,"is-simplicity":e.behavior==="simplicity",[`${d}`]:!!d},c.value)),y={search:()=>a.createVNode(Ha,null,null),password:()=>a.createVNode(Uo,{onClick:A},null)},b=$("suffix-icon"),v=a.computed(()=>{const ie=y[e.type];return k.value?a.createVNode(sc,{onClick:A,class:b},null):ie?a.createVNode(ie,{class:b},null):null}),T=a.computed(()=>e.type==="number"),x=a.computed(()=>Math.floor(e.maxlength)),k=a.ref(!1),I=a.computed(()=>ze({"show-clear-only-hover":e.showClearOnlyHover,[`${c.value}--clear-icon`]:!0},b)),C=a.computed(()=>ze({"is-disabled":e.disabled||e.modelValue>=e.max})),M=a.computed(()=>ze({"is-disabled":e.disabled||e.modelValue<=e.min}));a.watch(()=>e.modelValue,()=>{var ie;e.withValidate&&((ie=n==null?void 0:n.validate)==null||ie.call(n,"change"))}),t.expose({focus(){m.value.focus()},clear:N});function N(){if(e.disabled)return;const ie=T.value?e.min:"";t.emit(Ue.UPDATE,ie),t.emit(Ue.CHANGE,ie),t.emit(Ue.CLEAR)}function L(ie){i.value=!0,t.emit(Ue.FOCUS,ie)}function j(ie){var ae;if(i.value=!1,t.emit(Ue.BLUR,ie),T.value&&(ie.target.value>e.max||ie.target.value<e.min)){const me=ie.target.value>e.max?e.max:e.min;t.emit(Ue.UPDATE,me),t.emit(Ue.CHANGE,me)}e.withValidate&&((ae=n==null?void 0:n.validate)==null||ae.call(n,"blur"))}function z(ie){return ae=>{ae.stopPropagation(),ie===Ue.KEYDOWN&&(ae.code==="Enter"||ae.key==="Enter"||ae.keyCode===13)&&t.emit(Ue.ENTER,ae.target.value,ae),!(s.value&&[Ue.INPUT,Ue.CHANGE].some(me=>ie===me))&&(ie===Ue.INPUT&&t.emit(Ue.UPDATE,T.value?+ae.target.value:ae.target.value),t.emit(ie,ae.target.value,ae))}}const[O,R,P,Z,B,ne]=[Ue.KEYUP,Ue.KEYDOWN,Ue.KEYPRESS,Ue.PASTE,Ue.CHANGE,Ue.INPUT].map(z);function ue(){s.value=!0}function Ce(ie){s.value=!1,ne(ie)}function Ne(ie,ae=!0){var re;const me=parseInt(String(ie),10),Le=Number.isInteger(e.precision)?e.precision:0,X=parseFloat(((re=e.modelValue)!=null?re:0).toString()),W=Number.isInteger(me)?me:1;let Q=X+(ae?W:-1*W);return Number.isInteger(e.max)&&(Q=Math.min(Q,e.max)),Number.isInteger(e.min)&&(Q=Math.max(Q,e.min)),+Q.toFixed(Le)}function fe(){if(e.disabled)return;const ie=Ne(e.step);t.emit(Ue.UPDATE,ie)}function he(){if(e.disabled)return;const ie=Ne(e.step,!1);t.emit(Ue.UPDATE,ie)}function $(ie){return`${c.value}--${ie}`}function A(){k.value=!k.value}const H=a.computed(()=>{const ie=typeof e.modelValue=="undefined"||e.modelValue===null?{}:{value:e.modelValue};return xe(Y({},ie),{maxlength:e.maxlength,placeholder:e.placeholder,readonly:e.readonly,disabled:e.disabled})}),F={onInput:ne,onFocus:L,onBlur:j,onPaste:Z,onChange:B,onKeypress:P,onKeydown:R,onKeyup:O,onCompositionstart:ue,onCompositionend:Ce};return()=>{var ie,ae,me,Le,X,W,Q;return a.createVNode("div",{class:p.value,style:u},[(me=(ae=(ie=t.slots)==null?void 0:ie.prefix)==null?void 0:ae.call(ie))!=null?me:e.prefix&&a.createVNode("div",{class:$("prefix-area")},[a.createVNode("span",{class:$("prefix-area--text")},[e.prefix])]),o.value?a.createVNode("textarea",a.mergeProps({ref:m,spellcheck:!1},f,F,H.value,{rows:e.rows}),null):a.createVNode("input",a.mergeProps({spellcheck:!1},f,{ref:m,class:`${c.value}--text`,type:k.value&&e.type==="password"?"text":e.type,step:e.step,max:e.max,min:e.min},F,H.value),null),!o.value&&e.clearable&&!!e.modelValue&&a.createVNode(Ut,{onClick:N,class:I.value},null),v.value,typeof e.maxlength=="number"&&(e.showWordLimit||o.value)&&a.createVNode("p",{class:$("max-length")},[((Le=e.modelValue)!=null?Le:"").toString().length,a.createTextVNode("/"),a.createVNode("span",null,[x.value])]),T.value&&e.showControl&&a.createVNode("div",{class:$("number-control")},[a.createVNode(Vs,{class:C.value,onClick:fe},null),a.createVNode(Vs,{class:M.value,onClick:he},null)]),(Q=(W=(X=t.slots)==null?void 0:X.suffix)==null?void 0:W.call(X))!=null?Q:e.suffix&&a.createVNode("div",{class:$("suffix-area")},[a.createVNode("span",{class:$("suffix-area--text")},[e.suffix])])])}}});const ra=He(K2);var X2=a.defineComponent({name:"Card",props:{title:g.string,showHeader:g.bool.def(!0),showFooter:g.bool.def(!1),collapseStatus:g.bool.def(!0),border:g.bool.def(!0),disableHeaderStyle:g.bool.def(!1),position:g.string.def("left"),isEdit:g.bool.def(!1),isCollapse:g.bool.def(!1)},emits:["update:collapseStatus","edit"],setup(e,{emit:t}){const n=a.ref(!0),i=a.ref(!1),s=a.ref(""),o=()=>{!e.isCollapse||(n.value=!n.value,t("update:collapseStatus",n.value))},c=()=>{i.value=!i.value},d=()=>{i.value=!i.value,t("edit",s)};return a.watch(()=>e.collapseStatus,u=>{e.isCollapse&&(n.value=u)},{immediate:!0}),a.watch(()=>e.title,u=>{s.value=u},{immediate:!0}),{collapseActive:n,showInput:i,renderTitle:s,handleCollapse:o,saveEdit:d,clickEdit:c}},render(){var o,c,d,u,f,m,p,y,b,v,T,x;const e="bk-card",t=ze({[`${e}`]:!0,[`${e}-border-none`]:!this.$props.border},""),n=ze({[`${e}-head`]:!0,[`${e}-head-${this.$props.position}`]:this.$props.isCollapse&&this.$props.position,["no-line-height"]:this.$props.disableHeaderStyle,collapse:!this.collapseActive},""),i=a.createVNode("div",{class:"title",title:this.renderTitle},[this.showInput?a.createVNode(ra,{class:`${e}-input`,modelValue:this.renderTitle,"onUpdate:modelValue":k=>this.renderTitle=k,onBlur:this.saveEdit},null):this.renderTitle]),s=a.createVNode("span",{class:`${e}-icon`,onClick:this.handleCollapse},[this.collapseActive?a.createVNode(zs,null,null):a.createVNode(jn,null,null)]);return a.createVNode("div",{class:t},[this.$props.showHeader?a.createVNode("div",{class:n},[this.$props.isCollapse&&((d=(c=(o=this.$slots).icon)==null?void 0:c.call(o))!=null?d:s),(m=(f=(u=this.$slots).header)==null?void 0:f.call(u))!=null?m:i,this.$props.isEdit&&!this.showInput&&a.createVNode(Yo,{class:`${e}-edit`,onClick:this.clickEdit},null)]):"",this.collapseActive?a.createVNode("div",null,[a.createVNode("div",{class:`${e}-body`},[(b=(y=(p=this.$slots).default)==null?void 0:y.call(p))!=null?b:"Content"]),this.$props.showFooter?a.createVNode("div",{class:`${e}-footer`},[(x=(T=(v=this.$slots).footer)==null?void 0:T.call(v))!=null?x:"Footer"]):""]):""])}});const Ff=He(X2),Gf=Symbol("CheckboxGroup");function q2(){const e=a.ref(!1);return[e,{blur:()=>{e.value=!1},focus:()=>{e.value=!0}}]}const em=()=>{const e=a.getCurrentInstance(),{props:t,emit:n}=e,i=a.inject(Gf,Pf),s=!Af(i),o=a.ref(t.checked),c=a.computed(()=>s&&i.props.disabled?!0:t.disabled);s?a.watch(()=>i.props.modelValue,f=>{o.value=f.includes(t.label)},{deep:!0}):a.watch(()=>t.modelValue,f=>{f!==""&&(o.value=f===t.trueLabel)},{immediate:!0});const d=(f=!0)=>{o.value=f},u=f=>{if(c.value)return;const m=f.target;o.value=m.checked;const p=o.value?t.trueLabel:t.falseLabel;n("update:modelValue",p),n("change",p),s&&i.handleChange(),a.nextTick(()=>{m.checked!==o.value&&(m.checked=o.value)})};return a.onMounted(()=>{s&&i.register(e.proxy)}),a.onBeforeUnmount(()=>{s&&i.unregister(e.proxy)}),{isChecked:o,isDisabled:c,setChecked:d,handleChange:u}},tm={modelValue:g.oneOfType([String,Number,Boolean]).def(""),label:g.oneOfType([String,Number,Boolean]),trueLabel:g.oneOfType([String,Number,Boolean]).def(!0),falseLabel:g.oneOfType([String,Number,Boolean]).def(""),disabled:g.bool.def(!1),checked:g.bool.def(!1),indeterminate:g.bool,beforeChange:g.func,size:g.size().def("large")};var nm=a.defineComponent({name:"Checkbox",props:tm,emits:["update:modelValue","change"],setup(e){const[t,{blur:n,focus:i}]=q2(),{isChecked:s,isDisabled:o,setChecked:c,handleChange:d}=em();return{isFocus:t,isChecked:s,isDisabled:o,setChecked:c,handleBlur:n,handleFocus:i,handleChange:d,size:e.size}},render(){const e=ze({"bk-checkbox":!0,"is-focused":this.isFocus,"is-checked":this.isChecked,"is-disabled":this.isDisabled,"is-indeterminated":this.indeterminate}),t=()=>!this.label&&!this.$slots.default?null:a.createVNode("span",{class:"bk-checkbox-label"},[this.$slots.default?this.$slots.default():this.label]);return a.createVNode("label",{class:e},[a.createVNode("span",{class:[Ye("checkbox-input"),this.size]},[a.createVNode("input",{role:"checkbox",type:"checkbox",class:"bk-checkbox-original",disabled:this.isDisabled,checked:this.isChecked,onChange:this.handleChange},null)]),t()])}});const im={name:g.string.def(""),modelValue:g.array,disabled:g.bool,withValidate:g.bool.def(!0)};var dc=a.defineComponent({name:"CheckboxGroup",props:im,emits:["change","update:modelValue"],setup(e,t){const n=Dn(),i=[],s=d=>{i.push(d)},o=d=>{const u=i.indexOf(d);u>-1&&i.splice(u,1)},c=()=>{const d=i.reduce((u,f)=>(f.isChecked&&u.push(f.label),u),[]);t.emit("update:modelValue",d),t.emit("change",d)};return a.provide(Gf,{name:"CheckboxGroup",props:e,register:s,unregister:o,handleChange:c}),a.watch(()=>e.modelValue,()=>{var d;e.withValidate&&((d=n==null?void 0:n.validate)==null||d.call(n,"change"))}),a.onMounted(()=>{const d=e.modelValue||[];i.forEach(u=>{d.includes(u.label)&&u.setChecked(!0)})}),{}},render(){var e;return a.createVNode("div",{class:"bk-checkbox-group"},[(e=this.$slots)==null?void 0:e.default()])}});const zi=Yt(nm,{Group:dc}),am={list:g.arrayOf(g.any).def([]),idFiled:g.string.def("$index"),titleField:g.string.def("name"),contentField:g.string.def("content"),modelValue:g.oneOfType([g.arrayOf(g.number).def([]),g.arrayOf(g.string).def([]),g.number.def(-1)]),accordion:g.bool.def(!1)},rm={itemClick:{type:Function}},sm=Y({name:g.oneOfType([g.number,g.string]).def(""),title:g.any,content:g.string,disabled:g.bool.def(!1),isFormList:g.bool.def(!1),renderDirective:g.commonType(["if","show"],"render").def("show"),modelValue:g.bool.def(!1)},rm),fc=function(e){return(e||"").split(" ").filter(t=>!!t.trim())};function Zf(e,t){if(!e||!t)return;const n=fc(t);let i=e.getAttribute("class")||"";if(e.classList){e.classList.remove(...n);return}n.forEach(o=>{i=i.replace(` ${o} `," ")});const s=fc(i).join(" ");e.setAttribute("class",s)}function Yf(e,t){if(!e)return;let n=e.getAttribute("class")||"";const i=fc(n),s=(t||"").split(" ").filter(o=>!i.includes(o)&&!!o.trim());e.classList?e.classList.add(...s):(n+=` ${s.join(" ")}`,e.setAttribute("class",n))}const lm=e=>({css:!0,onBeforeEnter:t=>{Yf(t,"collapse-transition"),t.dataset||(t.dataset={}),t.style.height="0px"},onEnter:t=>{t.dataset.oldOverflow=t.style.overflow,t.scrollHeight!==0?(t.style.height=`${t.scrollHeight}px`,t.style.maxHeight=`${t.scrollHeight}px`):t.style.height="0px",t.style.overflow="hidden"},onAfterEnter:t=>{t.style.height="",t.style.maxHeight="",t.style.overflow=t.dataset.oldOverflow,Zf(t,"collapse-transition"),e("before-enter")},onBeforeLeave:t=>{t.dataset||(t.dataset={}),t.dataset.oldOverflow=t.style.overflow,t.style.height=`${t.scrollHeight}px`,t.style.maxHeight=`${t.scrollHeight}px`,t.style.overflow="hidden"},onLeave:t=>{t.scrollHeight!==0&&(Yf(t,"collapse-transition"),t.style.transitionProperty="height",t.style.height="0px")},onAfterLeave:t=>{Zf(t,"collapse-transition"),t.style.height="",t.style.maxHeight="",t.style.overflow=t.dataset.oldOverflow,e("after-leave")}});function om(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var Uf=a.defineComponent({name:"CollapsePanel",props:sm,emits:["change","update:modelValue","after-leave","before-enter"],setup(e,{emit:t,slots:n}){const i=a.inject("localActiveItems"),s=a.inject("handleItemClick"),o=a.ref(e.modelValue);a.watch(()=>e.modelValue,p=>{o.value=p}),a.watch(()=>i,p=>{p!=null&&p.length&&(o.value=p.includes(e.name))},{immediate:!0});function c(p){const{disabled:y,name:b,itemClick:v}=p;if(y)return;const T={name:b};o.value=!o.value,t("update:modelValue",o.value),t("change",T),typeof v=="function"?v(T):typeof s=="function"&&s({name:b})}const d=a.ref(lm(t));function u(){return e.content?e.content:typeof n.content=="function"?n.content(a.h):n.content}function f(){return e.renderDirective==="if"&&!o.value?"":a.withDirectives(a.createVNode("div",{class:`bk-collapse-content ${o.value&&"active"||""}`},[u()]),[[a.vShow,o.value]])}function m(){if(n.header)return typeof n.header=="function"?n.header(a.h):n.header;let p;return n.default?typeof n.default=="function"?p=n.default(a.h):p=n.default:p=e.title,a.createVNode("div",{class:"bk-collapse-header"},[a.createVNode("span",{class:"bk-collapse-title"},[p]),a.createVNode(jn,{class:`bk-collapse-icon ${o.value&&"rotate-icon"||""}`},null)])}return()=>{let p;return a.createVNode("div",{class:`bk-collapse-item ${e.disabled?"is-disabled":""} ${o.value?"bk-collapse-item-active":""}`},[a.createVNode("div",{onClick:()=>c(e)},[m()]),a.createVNode(a.Transition,d.value,om(p=f())?p:{default:()=>[p]})])}}}),cm=a.defineComponent({name:"Collapse",props:am,emits:["item-click","update:modelValue","after-leave","before-enter"],setup(e,{emit:t,slots:n}){const i=a.ref([]);a.watch(()=>[e.modelValue],()=>{const u=e.modelValue;Array.isArray(u)?i.value=[...u]:typeof u!="undefined"?i.value=[u]:i.value=[]},{immediate:!0});const s=u=>{const{name:f}=u;if(e.accordion){const m=i.value.findIndex(p=>p===f);m>=0?i.value.splice(m,1):i.value=[f]}else{const m=i.value.findIndex(p=>p===f);m>=0?i.value.splice(m,1):i.value.push(f)}t("item-click",u),t("update:modelValue",i.value)};a.provide("localActiveItems",i.value),a.provide("handleItemClick",s);const o="bk-collapse-wrapper";if(!Array.isArray(e.list)||!e.list.length)return()=>a.createVNode("div",{class:o},[a.renderSlot(n,"default",{props:{isList:!0}})]);const c=a.computed(()=>(e.list||[]).map((u,f)=>typeof u=="string"||typeof u=="number"||typeof u=="boolean"?{$index:f,name:u}:Y({$index:f},u))),d=()=>c.value.map((u,f)=>{var y,b,v;const m=u[e.idFiled]||f;let p=u[e.titleField];return n.title&&(typeof n.title=="function"?p=n.title(u,f):p=n.title),n.default&&(p=(y=n.default)==null?void 0:y.call(n,u,f)),a.createVNode(Uf,{key:f,"item-click":s,disabled:u.disabled,name:m,isFormList:!0,title:p,content:(v=(b=n.content)==null?void 0:b.call(n,u,f))!=null?v:u[e.contentField]},null)});return()=>a.createVNode("div",{class:o},[d()])}});const $f=Yt(cm,{CollapsePanel:Uf}),hc={isShow:g.bool.def(!1),width:g.oneOfType([String,Number]).def("50%"),height:g.oneOfType([String,Number]).def("50%"),extCls:g.string||g.array,scrollable:g.bool.def(!0),showMask:g.bool.def(!0),closeIcon:g.bool.def(!0),escClose:g.bool.def(!0),fullscreen:g.bool.def(!1),size:g.commonType(["normal","small","medium","large"],"size").def(),draggable:g.bool.def(!0),quickClose:g.bool.def(!0),transfer:g.bool.def(!1),zIndex:g.oneOfType([String,Number]).def("inherit"),maxHeight:g.string,direction:g.string,title:g.string.def(""),animateType:g.string.def("slide"),renderDirective:g.commonType(["show","if"],"renderDirective").def("show"),beforeClose:g.custom(()=>!0),dialogType:g.commonType(["show","operation","confirm","process"],"dialogType").def("operation"),multiInstance:g.bool.def(!0),infoType:g.commonType(["success","warning","danger","loading"],"infoType").def()};var um=a.defineComponent({name:"Modal",props:Y({},hc),emits:["quick-close","quickClose","hidden","shown","close"],data(){return{visible:!1,closeTimer:null}},computed:{dialogWidth(){return/^\d+$/.test(`${this.width}`)?`${this.width}px`:this.width},dialogHeight(){return/^\d+$/.test(`${this.height}`)?`${this.height}px`:this.height},compStyle(){return{width:this.dialogWidth,height:this.dialogHeight,minHeigth:`${200}px`,display:this.visible?"inherit":"none",zIndex:this.zIndex||"inherit"}},fullscreenStyle(){return{width:`${100}%`,height:`${100}%`}}},watch:{isShow:{handler(e){e?(this.closeTimer&&clearTimeout(this.closeTimer),this.closeTimer=null,this.visible=e):this.closeTimer=setTimeout(()=>{this.$emit("hidden"),this.visible=e},250)},immediate:!0},visible:{handler(e){e?(Zt.onMaskClick(t=>{this.handleClickOutSide()}),this.$nextTick(()=>{const t={"background-color":"rgba(0,0,0,0)"},n=this.showMask?{}:t;Zt.show(this.$el,this.showMask,n,this.transfer,this.zIndex),this.$emit("shown")})):(Zt==null||Zt.hide(this.$el,this.transfer),Zt==null||Zt.destroy())},immediate:!0}},beforeUnmount(){this.visible&&(Zt==null||Zt.hide(this.$el),Zt==null||Zt.destroy())},methods:{handleClickOutSide(){this.quickClose&&(this.$emit("close"),this.$emit("quick-close",this.$el),this.$emit("quickClose",this.$el))}},render(){const e=this.maxHeight?{maxHeight:this.maxHeight}:{},t=`bk-modal-body ${this.animateType==="slide"?this.direction:""}`;return a.createVNode("div",{class:["bk-modal-wrapper",this.extCls,this.size,this.fullscreen?"fullscreen":""],style:[this.compStyle,this.fullscreen?this.fullscreenStyle:""]},[a.createVNode(a.Transition,{name:this.animateType},{default:()=>{var n,i,s,o,c,d,u,f,m,p,y,b;return[this.isShow?a.createVNode("div",{class:t},[a.createVNode("div",{class:"bk-modal-header"},[(s=(i=(n=this.$slots).header)==null?void 0:i.call(n))!=null?s:""]),a.createVNode("div",{class:"bk-modal-content",style:[this.dialogType==="show"?"padding-bottom: 20px":"",Y({},e)]},[(d=(c=(o=this.$slots).default)==null?void 0:c.call(o))!=null?d:""]),this.dialogType==="show"?"":a.createVNode("div",{class:"bk-modal-footer"},[(m=(f=(u=this.$slots).footer)==null?void 0:f.call(u))!=null?m:""]),a.createVNode("div",{class:["bk-modal-close",this.closeIcon?"":"close-icon"]},[(b=(y=(p=this.$slots).close)==null?void 0:y.call(p))!=null?b:""])]):""]}})])}});const sa=Yt(um,{propsMixin:hc},!0),dm=xe(Y({},hc),{width:g.oneOfType([String,Number]).def(""),height:g.oneOfType([String,Number]).def(""),confirmText:g.string.def("\u786E\u5B9A"),cancelText:g.string.def("\u53D6\u6D88"),prevText:g.string.def("\u4E0A\u4E00\u6B65"),nextText:g.string.def("\u4E0B\u4E00\u6B65"),current:g.number.def(1),totalStep:g.number,title:g.string.def("title"),headerAlign:g.commonType(["left","center","right"],"headerAlign").def("left"),footerAlign:g.commonType(["left","center","right"],"footerAlign").def("right"),theme:g.commonType(["primary","warning","success","danger"],"theme").def("primary"),dialogType:g.commonType(["show","operation","confirm","process"],"dialogType").def("operation"),isLoading:g.bool.def(!1)});function fm(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var Kf=a.defineComponent({name:"Dialog",components:{BkModal:sa,BkButton:At},props:dm,emits:["closed","update:isShow","confirm","prev","next","value-change"],setup(e,{emit:t}){const n=a.reactive({positionX:0,positionY:0,moveStyle:{top:"",left:""}}),i=a.ref(e.isShow);a.onMounted(()=>{e.escClose&&addEventListener("keydown",d)}),a.onBeforeUnmount(()=>{e.escClose&&removeEventListener("keydown",d)}),a.watch(()=>e.isShow,p=>{p?i.value=!0:setTimeout(()=>{n.moveStyle={top:"50%",left:"50%"},n.positionX=0,n.positionY=0,i.value=!1},250),t("value-change",p)});const s=()=>{t("update:isShow",!1),t("closed"),i.value=!1},o=()=>{t("update:isShow",!1),t("confirm"),i.value=!1},c=a.computed(()=>["process","operation","confirm"].includes(e.dialogType)),d=p=>{e.isShow&&e.closeIcon&&p.keyCode===27&&s()};return{data:n,handleClose:s,handleConfirm:o,escCloseHandler:d,moveHandler:p=>{if(e.fullscreen||!e.draggable)return!1;const y=p.target,b=p.currentTarget.parentNode.parentNode.offsetHeight,v=p.currentTarget.parentNode.parentNode.offsetWidth;let T,x;n.positionX!==0&&n.positionY!==0?(T=p.clientX-n.positionX,x=p.clientY-n.positionY):(T=p.clientX-y.offsetLeft,x=p.clientY-y.offsetTop),document.onmousemove=k=>{const I=window.innerWidth-v,C=window.innerHeight-b;let M=k.clientX-T,N=k.clientY-x;I/2-M<=0?M=I/2:I/2+M<=0&&(M=-I/2),C/2-N<=0?N=C/2:C/2+N<=0&&(N=-C/2),n.positionX=M,n.positionY=N,n.moveStyle.left=`calc(50% + ${M}px)`,n.moveStyle.top=`calc(50% + ${N}px)`},document.onmouseup=()=>{document.onmousemove=null,document.onmouseup=null}},handlePrevStep:()=>{t("prev")},handleNextStep:()=>{t("next")},hasFooter:c,isModalShow:i}},render(){const e=()=>({loading:a.createVNode(zr,{class:"bk-info-icon primary"},null),warning:a.createVNode(Pr,{class:"bk-info-icon warning"},null),success:a.createVNode(Or,{class:"bk-info-icon success"},null),danger:a.createVNode(Ut,{class:"bk-info-icon danger"},null)})[this.infoType],t={header:()=>{var i,s,o,c,d,u;return[a.createVNode("div",{class:["bk-dialog-tool",this.fullscreen||!this.draggable?"":"move",this.draggable?"content-dragging":""],onMousedown:this.moveHandler},[(o=(s=(i=this.$slots).tools)==null?void 0:s.call(i))!=null?o:""]),a.createVNode("div",{class:"bk-dialog-header"},[a.createVNode("div",{class:"bk-header-icon"},[this.infoType?e():a.createVNode("slot",{name:"info-icon"},null)]),a.createVNode("span",{class:"bk-dialog-title",style:`text-align: ${this.headerAlign}`},[(u=(d=(c=this.$slots).header)==null?void 0:d.call(c))!=null?u:this.title])])]},default:()=>{var i,s,o;return(o=(s=(i=this.$slots).default)==null?void 0:s.call(i))!=null?o:"default"},footer:()=>{var i,s,o,c,d,u,f,m,p;return a.createVNode("div",{class:"bk-dialog-footer",style:`text-align: ${this.footerAlign}`},[this.dialogType==="process"?(o=(s=(i=this.$slots).footer)==null?void 0:s.call(i))!=null?o:a.createVNode(a.Fragment,null,[this.current===1?"":a.createVNode(At,{class:"bk-dialog-perv",onClick:this.handlePrevStep},{default:()=>[this.prevText]}),this.current===this.totalStep?"":a.createVNode(At,{class:"bk-dialog-next",onClick:this.handleNextStep},{default:()=>[this.nextText]}),this.current===this.totalStep?a.createVNode(At,{onClick:this.handleConfirm,theme:this.theme,loading:this.isLoading},{default:()=>[this.confirmText]}):"",a.createVNode(At,{class:"bk-dialog-cancel",onClick:this.handleClose,disabled:this.isLoading},{default:()=>[this.cancelText]})]):"",this.dialogType==="operation"?(u=(d=(c=this.$slots).footer)==null?void 0:d.call(c))!=null?u:a.createVNode(a.Fragment,null,[a.createVNode(At,{onClick:this.handleConfirm,theme:this.theme,loading:this.isLoading},{default:()=>[this.confirmText]}),a.createVNode(At,{class:"bk-dialog-cancel",onClick:this.handleClose,disabled:this.isLoading},{default:()=>[this.cancelText]})]):"",this.dialogType==="confirm"?(p=(m=(f=this.$slots).footer)==null?void 0:m.call(f))!=null?p:a.createVNode(a.Fragment,null,[a.createVNode(At,{onClick:this.handleConfirm,theme:this.theme,loading:this.isLoading},{default:()=>[this.confirmText]})]):""])},close:()=>a.createVNode("span",{class:"bk-dialog-close",onClick:this.handleClose},[a.createTextVNode("+")])},n=`bk-dialog-wrapper ${this.scrollable?"scroll-able":""} ${this.multiInstance?"multi-instance":""} ${this.hasFooter?"has-footer":"no-footer"}`;return a.createVNode(sa,a.mergeProps(this.$props,{class:n,onClose:this.handleClose,isShow:this.isModalShow,style:this.data.moveStyle}),fm(t)?t:{default:()=>[t]})}});const Xf=He(Kf);var hm="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOm5vbmU7fQoJLnN0MXtmaWxsOiNDNEM2Q0M7fQoJLnN0MntmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qze2ZpbGw6dXJsKCPnn6nlvaJfNF8pO30KCS5zdDR7ZmlsbDojOTc5QkE1O30KCS5zdDV7ZmlsbDp1cmwoI1NWR0lEXzFfKTt9Cgkuc3Q2e2ZpbGw6I0Y4RjlGQTt9Cgkuc3Q3e2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfMV8pO30KCS5zdDh7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF82Xyk7fQoJLnN0OXtmaWxsOiNEQ0RFRTA7fQo8L3N0eWxlPgo8ZyBpZD0i6aG16Z2iLTEiPgoJPGcgaWQ9IkV4Y2VwdGlvbl94MkZf5byC5bi45o+Q56S6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtODcwLjAwMDAwMCwgLTIzODEuMDAwMDAwKSI+CgkJPGcgaWQ9IuaXoOadg+mZkOexuyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzU3LjAwMDAwMCwgMjI4Ny4wMDAwMDApIj4KCQkJPGcgaWQ9Iue8lue7hC0xMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDczLjAwMDAwMCkiPgoJCQkJPGcgaWQ9IuaXoOadg+mZkOexuy3mj5Llm74iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUxMy4wMDAwMDAsIDIxLjAwMDAwMCkiPgoJCQkJCTxnIGlkPSLmsqHmnInmnYPpmZAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyOC4wMDAwMDAsIDQyLjAwMDAwMCkiPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2iXzFfIiBjbGFzcz0ic3QwIiB3aWR0aD0iMjI0IiBoZWlnaHQ9IjE4MyIvPgoJCQkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaIiIGNsYXNzPSJzdDEiIGN4PSIxMzIiIGN5PSIxMSIgcj0iMSIvPgoJCQkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaJfMV8iIGNsYXNzPSJzdDEiIGN4PSIxNzMiIGN5PSI5NCIgcj0iMiIvPgoJCQkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaJfMl8iIGNsYXNzPSJzdDEiIGN4PSI1OSIgY3k9IjY2IiByPSIyIi8+CgkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0iRmlsbC0xXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjExNi4zNTg3IiB5MT0iMTI5LjQwNzUiIHgyPSIxMTkuMzMxNCIgeTI9IjE1Ny42OTA2Ij4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNGQkZDRkQiLz4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAuOTk4OCIgc3R5bGU9InN0b3AtY29sb3I6I0YyRjRGNyIvPgoJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQk8cGF0aCBpZD0iRmlsbC0xIiBjbGFzcz0ic3QyIiBkPSJNNjAuNSwxMzYuMWMxNi4yLTMuNSw0MC42LTQuNyw1Ni41LTMuOWMxNS44LDAuOCwzMy4xLDMuMSwzMy4xLDMuMXM0LjUtMS45LDQuMS0xLjIKCQkJCQkJCWMtMC4zLDAuOC0yLjQsMS45LTEsMi4zYzEuNCwwLjQsMTUuNSwxLjksMjEuNCwzLjFzOC42LDIuMyw4LjYsMi4zczMuOC02LjYsMTIuMy01LjhjMCwwLjYtMy4xLDEuNC00LjIsMy4xUzE4OCwxNDIsMTg4LDE0MgoJCQkJCQkJczEuOC0xLDQuOSwwLjVzNi4xLDIsNi4xLDIuMnMtMS40LDMuNS0xMi43LDEuMmMtNC42LTEuMi02LjksNS4xLTI5LjMsNi42cy02MC4zLDIuNy02MC4zLDIuN3MxLjcsMi4zLDUuMiwzLjEKCQkJCQkJCWMwLDAtMi40LDIuMy03LjIsMS42Yy00LjgtMC44LTEwLTQuNy0xMC00LjdzLTEyLjctMC44LTE3LjYtMS42cy0xMC4zLTIuNy0xNC4xLTMuMWMtMy44LTAuNC0yMS0yLjMtMTQuNS02LjYKCQkJCQkJCUMzOC41LDE0My45LDQ0LjMsMTM5LjYsNjAuNSwxMzYuMXoiLz4KCgkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol80XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxNTYuMTY2NyIgeTE9Ii0yLjUxNDMiIHgyPSIxNTYuMTY2NyIgeTI9Ii0xLjUxNDMiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoOTYgMCAwIDcwIC0xNDg3OSAyNTIpIj4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMkYzRjUiLz4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFNUU4RUIiLz4KCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJPHBhdGggaWQ9IuefqeW9ol8yXyIgY2xhc3M9InN0MyIgZD0iTTcwLDc2aDg2YzIuOCwwLDUsMi4yLDUsNXY2MGMwLDIuOC0yLjIsNS01LDVINzBjLTIuOCwwLTUtMi4yLTUtNVY4MQoJCQkJCQkJQzY1LDc4LjIsNjcuMiw3Niw3MCw3NnoiLz4KCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiCIgY2xhc3M9InN0MSIgZD0iTTU5LjMsMTM4djExLjdINzF2Mi4zSDU5LjNsMCwwSDU3di0xNEg1OS4zeiIvPgoJCQkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCI5aSH5Lu9LTQiIGNsYXNzPSJzdDEiIGQ9Ik0xNjYuNywxMzh2MTEuN0gxNTV2Mi4zaDExLjdsMCwwaDIuM3YtMTRIMTY2Ljd6Ii8+CgkJCQkJCTxnPgoJCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiF81XyIgY2xhc3M9InN0NCIgZD0iTTExNi41LDExNi44bDEuNiw3LjljMC4yLDAuOC0wLjQsMS42LTEuMiwxLjhjLTAuMSwwLTAuMiwwLTAuMywwaC03LjIKCQkJCQkJCQljLTAuOCwwLTEuNS0wLjctMS41LTEuNWMwLTAuMSwwLTAuMiwwLTAuM2wxLjYtNy45Yy0zLTEuMy01LTQuMS01LTcuM2MwLTQuNCwzLjgtOCw4LjUtOHM4LjUsMy42LDguNSw4CgkJCQkJCQkJQzEyMS41LDExMi43LDExOS41LDExNS41LDExNi41LDExNi44eiIvPgoKCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IlNWR0lEXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEzNi4wMjk0IiB5MT0iLTYuODAxMSIgeDI9IjEzNi4wMjk0IiB5Mj0iLTYuMjc4OSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxNyAwIDAgMjUgLTIxOTkuNSAyNzcuNSkiPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFMUUyRTYiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRUVGMEYyIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHBhdGggY2xhc3M9InN0NSIgZD0iTTExNywxMjcuNWgtNy42Yy0xLjQsMC0yLjUtMS4xLTIuNS0yLjVsMC0wLjVsMS40LTcuMWMtMy0xLjYtNC45LTQuNi00LjktNy45YzAtNSw0LjMtOSw5LjUtOQoJCQkJCQkJCXM5LjUsNCw5LjUsOWMwLDMuMy0xLjksNi4zLTQuOSw3LjlsMS40LDcuMWMwLjMsMS4yLTAuNiwyLjYtMS45LDNMMTE3LDEyNy41eiBNMTA4LjksMTI0Ljh2MC4yYzAsMC4yLDAuMywwLjUsMC41LDAuNWg3LjMKCQkJCQkJCQljMC4yLTAuMSwwLjQtMC40LDAuNC0wLjZsLTEuOC04LjdsMC43LTAuM2MyLjctMS4yLDQuNC0zLjYsNC40LTYuNGMwLTMuOS0zLjQtNy03LjUtN3MtNy41LDMuMS03LjUsN2MwLDIuOCwxLjcsNS4yLDQuNCw2LjQKCQkJCQkJCQlsMC43LDAuM0wxMDguOSwxMjQuOHoiLz4KCQkJCQkJPC9nPgoJCQkJCQk8cGF0aCBpZD0i55+p5b2iXzNfIiBjbGFzcz0ic3Q2IiBkPSJNNzAsNzZoODZjMi44LDAsNSwyLjIsNSw1bDAsMGMwLDIuOC0yLjIsNS01LDVINzBjLTIuOCwwLTUtMi4yLTUtNWwwLDAKCQkJCQkJCUM2NSw3OC4yLDY3LjIsNzYsNzAsNzZ6Ii8+CgoJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTU1LjAyNjMiIHkxPSItMi42NjY3IiB4Mj0iMTU1LjAyNjMiIHkyPSItMS42NzI3IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDc2IDAgMCA2NiAtMTE2NjkgMTkyKSI+CgkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRjNGNEY1Ii8+CgkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTZFOEVCIi8+CgkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMl8iIGNsYXNzPSJzdDciIGQ9Ik0xNDEuNSw1NC42YzAtMTYtMTIuOC0yOS0yOC41LTI5cy0yOC41LDEzLTI4LjUsMjlsMCwwdjI1LjhjMCwwLjktMi4xLDEuNi00LjgsMS42CgkJCQkJCQljLTIuNSwwLTQuNi0wLjctNC43LTEuNXYtMC4xVjU0LjZDNzUsMzMuMyw5MiwxNiwxMTMsMTZzMzgsMTcuMywzOCwzOC42bDAsMHYyNS44YzAsMC45LTIuMSwxLjYtNC44LDEuNnMtNC44LTAuNy00LjgtMS42CgkJCQkJCQlsMCwwVjU0LjZIMTQxLjV6Ii8+CgoJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfNl8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTUzLjc5MDMiIHkxPSItMy4yMzg1IiB4Mj0iMTUzLjc5MDMiIHkyPSItMi4yNTkyIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDYyIDAgMCA1NCAtOTQyMiAyMDEpIj4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFN0U5RUIiLz4KCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFN0U5RUIiLz4KCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiF8zXyIgY2xhc3M9InN0OCIgZD0iTTgyLDU0LjVDODIuMywzOC4yLDk2LDI1LDExMywyNWMxNy4xLDAsMzEsMTMuNCwzMSwzMGgtMy4xYzAtMTQuOS0xMi41LTI3LTI3LjktMjcKCQkJCQkJCVM4NS4xLDQwLjEsODUuMSw1NXYyNEg4MlY1NVY1NC41eiBNMTQ0LDU1djI0aC0zLjFWNTVIMTQ0eiIvPgoJCQkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzRfIiBjbGFzcz0ic3Q5IiBkPSJNODAsNzhjMi43LDAsNC45LTAuOCw1LTEuOVY3NnY0YzAsMS4xLTIuMiwyLTUsMmMtMi43LDAtNC45LTAuOC01LTEuOVY4MHYtNAoJCQkJCQkJQzc1LDc3LjEsNzcuMiw3OCw4MCw3OHoiLz4KCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiOWkh+S7vS0zIiBjbGFzcz0ic3Q5IiBkPSJNMTQ2LDc4YzIuNywwLDQuOS0wLjgsNS0xLjlWNzZ2NGMwLDEuMS0yLjIsMi01LDJjLTIuNywwLTQuOS0wLjgtNS0xLjlWODB2LTQKCQkJCQkJCUMxNDEsNzcuMSwxNDMuMiw3OCwxNDYsNzh6Ii8+CgkJCQkJPC9nPgoJCQkJPC9nPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=",gm="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qxe2ZpbGw6dXJsKCPnn6nlvaJfOV8pO30KCS5zdDJ7ZmlsbDp1cmwoI+efqeW9ol8xMF8pO30KCS5zdDN7ZmlsbDojRjBGMkY1O3N0cm9rZTp1cmwoI+efqeW9ol8xMV8pO30KCS5zdDR7ZmlsbDojOTc5QkE1O3N0cm9rZTp1cmwoI+efqeW9ol8xMl8pO30KCS5zdDV7ZmlsbDojOTc5QkE1O3N0cm9rZTp1cmwoI+efqeW9ouWkh+S7vS05XzFfKTt9Cgkuc3Q2e2ZpbGw6Izk3OUJBNTtzdHJva2U6dXJsKCPlvaLnirbnu5PlkIhfNl8pO30KCS5zdDd7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF84Xyk7fQoJLnN0OHtmaWxsOnVybCgj5b2i54q257uT5ZCI5aSH5Lu9LTNfMV8pO30KCS5zdDl7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF85Xyk7fQoJLnN0MTB7ZmlsbDojRTFFM0U2O30KCS5zdDExe2ZpbGw6I0YwRjJGNTt9Cgkuc3QxMntmaWxsOiNGNEY0RjQ7fQoJLnN0MTN7ZmlsbDp1cmwoI+i3r+W+hC01XzFfKTt9Cgkuc3QxNHtmaWxsOnVybCgj5b2i54q257uT5ZCIXzEwXyk7fQoJLnN0MTV7ZmlsbDp1cmwoI+W9oueKtue7k+WQiOWkh+S7vS00XzFfKTt9Cgkuc3QxNntmaWxsOiNDN0M5Q0M7fQoJLnN0MTd7ZmlsbDojRTVFN0U5O30KCS5zdDE4e2ZpbGw6I0VDRUVGMDt9Cgkuc3QxOXtmaWxsOiNDNEM2Q0M7fQoJLnN0MjB7ZmlsbDojRURFRUYzO30KCS5zdDIxe2ZpbGw6IzM0MzQzNDtmaWxsLW9wYWNpdHk6My4wMDAwMDBlLTAyO30KPC9zdHlsZT4KPGcgaWQ9IkV4Y2VwdGlvbl94MkZf5byC5bi45o+Q56S6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtODcwLjAwMDAwMCwgLTEzMzUuMDAwMDAwKSI+Cgk8ZyBpZD0iX3gzNF8wNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzU3LjAwMDAwMCwgMTIxNi4wMDAwMDApIj4KCQk8ZyBpZD0iX3gzNF8wNC3mj5Llm74iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUxMy4wMDAwMDAsIDExOS4wMDAwMDApIj4KCQkJPGcgaWQ9Iue8lue7hC0xMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMS4wMzY2NDgpIj4KCQkJCTxnIGlkPSJfeDM0XzA05Li75L2TIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5NC4zMjQwMjIsIDQyLjUzODc3MSkiPgoJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0iRmlsbC0xXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjE0MS4zOTEyIiB5MT0iNTUuNjg2OSIgeDI9IjE1Mi4zMzA3IiB5Mj0iMTE3LjcyNzciPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRjhGQ0ZEIi8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMkY0RjciLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxwYXRoIGlkPSJGaWxsLTEiIGNsYXNzPSJzdDAiIGQ9Ik00NS4zLDcyLjljMjkuMy02LjYsNzEuNS05LjYsMTAwLjItOC4xczUyLjQsNi41LDU0LjEsNS4zYzUuNy0zLjgsMTcuOS01LjUsMTcuMy00CgkJCQkJCXMtOC41LDYuMS02LDYuOGMyLjUsMC43LDI4LDMuNywzOC42LDUuOWMxMC42LDIuMiwxNy40LDQuNCwxOS43LDQuNGMyLjMsMCw1LjktMy4xLDIxLjMtMS42YzAuMywwLjYtMy40LDAuOC02LjgsMi41CgkJCQkJCXMtNS45LDEuNi01LjksMnMxLjktMC42LDUuOSwyYzQsMi41LDExLDMuNCwxMSw0cy04LjksMy42LTIzLjgtMS4xYy0zLjgtMS4yLTEyLjYsOS4yLTUzLjEsMTIuMXMtMTA5LjEsNS4yLTEwOS4xLDUuMgoJCQkJCQlzNC4xLDUuMywxMC4xLDYuOGMwLjMsMC41LTIuNCwyLjUtMTQsMC4zcy0xNy45LTcuMS0xNy45LTcuMXMtMjMuMS0xLjUtMzEuOC0yLjlzLTE4LjctNS4yLTI1LjYtNS45Uy04LjUsOTUsMy4zLDg2LjkKCQkJCQkJQzMuMyw4Ni45LDE2LDc5LjUsNDUuMyw3Mi45eiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaJfOV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMzA0Ljg0NjciIHkxPSIxMDEuMjQ5MiIgeDI9IjMwNC44NDY3IiB5Mj0iMTAwLjI1NDYiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoOTMuMzkwNyAwIDAgLTkzLjQ2MjcgLTI4MzM1Ljk0NTMgOTQ2My4wMjczKSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFQ0VFRjAiLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q3RDlEQiIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHBhdGggaWQ9IuefqeW9ol8xXyIgY2xhc3M9InN0MSIgZD0iTTg5LjIsMGg4OS40YzEuMSwwLDIsMC45LDIsMnY4OS41YzAsMS4xLTAuOSwyLTIsMkg4OS4yYy0xLjEsMC0yLTAuOS0yLTJWMgoJCQkJCQlDODcuMiwwLjksODguMSwwLDg5LjIsMHoiLz4KCgkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iXzEwXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIzMDMuODkxNSIgeTE9IjEwMS42NTMyIiB4Mj0iMzAzLjg5MTUiIHkyPSIxMDAuNjUzIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDgxLjcxNjkgMCAwIC04MS43Nzk5IC0yNDY5OS4yMjQ2IDgzMTguOTkwMikiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRjVGN0ZBIi8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFQkVERjAiLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMl8iIGNsYXNzPSJzdDIiIGQ9Ik05NCw1LjhoNzkuN2MwLjYsMCwxLDAuNCwxLDF2NzkuOGMwLDAuNi0wLjQsMS0xLDFIOTRjLTAuNiwwLTEtMC40LTEtMVY2LjgKCQkJCQkJQzkzLDYuMyw5My41LDUuOCw5NCw1Ljh6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol8xMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjk5LjQxODYiIHkxPSIxMDMuNTA1MiIgeDI9IjI5OS40MTg2IiB5Mj0iMTAyLjU1OTkiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNTEuNTMyMyAwIDAgLTUxLjU3MjggLTE1Mjk1Ljg3NyA1MzYwLjk3MzYpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UxRTJFNiIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjdGOUZDIi8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i55+p5b2iXzNfIiBjbGFzcz0ic3QzIiBkPSJNMTA5LjEsMjAuOWg0OS41YzAuNiwwLDEsMC40LDEsMXY0OS42YzAsMC42LTAuNCwxLTEsMWgtNDkuNWMtMC42LDAtMS0wLjQtMS0xVjIxLjkKCQkJCQkJQzEwOC4xLDIxLjQsMTA4LjYsMjAuOSwxMDkuMSwyMC45eiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaJfMTJfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjE5NS40ODc5IiB5MT0iMTE5LjIyMzciIHgyPSIxOTUuNDg3OSIgeTI9IjExOC4yNTY2IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDUuMzc3NyAwIDAgLTEyLjY4MjggLTkyOC4zNzU1IDE1NDYuODUxNikiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTFFMkU2Ii8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMEYyRjUiLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxyZWN0IGlkPSLnn6nlvaJfNF8iIHg9IjEyMC4yIiB5PSIzNC41IiBjbGFzcz0ic3Q0IiB3aWR0aD0iNS40IiBoZWlnaHQ9IjEyLjciLz4KCgkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2i5aSH5Lu9LTlfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTk1LjQ5MDEiIHkxPSIxMTkuMjIzNyIgeDI9IjE5NS40OTAxIiB5Mj0iMTE4LjI1NjYiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNS4zNzc3IDAgMCAtMTIuNjgyOCAtOTA2LjQ4NzEgMTU0Ni44NTE2KSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFMUUyRTYiLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0YwRjJGNSIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS05IiB4PSIxNDIuMSIgeT0iMzQuNSIgY2xhc3M9InN0NSIgd2lkdGg9IjUuNCIgaGVpZ2h0PSIxMi43Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF82XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyNDcuNTY2IiB5MT0iMTI1LjQ1MTQiIHgyPSIyNDcuNTY2IiB5Mj0iMTI0LjQ4NDQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoOS43NTU0IDAgMCAtOS43NjIxIC0yMjgxLjIwNTEgMTI3Ni45MDYpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UxRTJFNiIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjBGMkY1Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIIiBjbGFzcz0ic3Q2IiBkPSJNMTI5LDU2LjdMMTI5LDU2LjdjMC4xLTIuNiwyLjMtNC43LDQuOS00LjdjMi42LDAsNC43LDIsNC45LDQuN3YwLjJ2NC45SDEyOXYtMC41di00LjQKCQkJCQkJVjU2Ljd6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF84XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIzMDIuOTc2MSIgeTE9IjEwMS4yMzc1IiB4Mj0iMzAyLjk3NjEiIHkyPSIxMDAuMzAxNiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg3Mi45NjE1IDAgMCAtOTMuNDYyNyAtMjE4NzkuNzQ0MSA5NDYzLjAyNzMpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VCRURGMDtzdG9wLW9wYWNpdHk6MC45OTE3Ii8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFMUUzRTYiLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMV8iIGNsYXNzPSJzdDciIGQ9Ik0yNDQuOCwwaDIuOXY1OC40aDE0LjZ2MTcuNWgtMTQuNnYxNy41aC0yMC40Vjc1LjloLTM3LjlWNTguNEwyMjcuMywwSDI0NC44egoJCQkJCQkgTTIyNy4zLDI4LjJsLTE4LjgsMzAuM2gxOC44VjI4LjJ6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiOWkh+S7vS0zXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjMwMi45NzU2IiB5MT0iMTAxLjIzNzUiIHgyPSIzMDIuOTc1NiIgeTI9IjEwMC4zMDE2IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDcyLjk2MTUgMCAwIC05My40NjI3IC0yMjA2My42MDc0IDk0NjMuMDI3MykiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRUJFREYwO3N0b3Atb3BhY2l0eTowLjk5MTciLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0UxRTNFNiIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiOWkh+S7vS0zIiBjbGFzcz0ic3Q4IiBkPSJNNjAuOSwwaDIuOXY1OC40aDE0LjZ2MTcuNUg2My44djE3LjVINDMuNFY3NS45SDUuNVY1OC40TDQzLjQsMEg2MC45egoJCQkJCQkgTTQzLjQsMjguMkwyNC42LDU4LjRoMTguOFYyOC4yeiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfOV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjk5LjA0NjYiIHkxPSIxMDcuMjgyNyIgeDI9IjI5OS4wNTM1IiB5Mj0iMTA3LjAxMSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg1MC4wMDM1IDAgMCAtMjguNjA1MyAtMTQ4NTcuNzUyOSAzMjE2LjczOTUpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZCRkNGRCIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjBGMkY1Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzJfIiBjbGFzcz0ic3Q5IiBkPSJNOTkuNiwxMzcuM2MxMS43LDAsMjEuMiw1LjYsMjEuMiwxMi40YzAsNi45LTkuNSwxMi40LTIxLjIsMTIuNAoJCQkJCQljLTQuNCwwLTguNS0wLjgtMTEuOS0yLjFsLTcsNS45bC0xLjktMi4ybDYtNS4xYy0zLjktMi4zLTYuNC01LjQtNi40LTguOWMwLTAuMiwwLTAuNSwwLTAuN2wtNS44LDUuMWwtMS45LTIuMmwxNS40LTEzLjQKCQkJCQkJbDEuMSwxLjJDOTAuNywxMzguMSw5NSwxMzcuMyw5OS42LDEzNy4zeiIvPgoJCQkJCTxyZWN0IGlkPSLnn6nlvaJfNV8iIHg9IjIyNS44IiB5PSI4Ny42IiBjbGFzcz0ic3QxMCIgd2lkdGg9IjIzLjMiIGhlaWdodD0iNS44Ii8+CgkJCQkJPHJlY3QgaWQ9IuefqeW9ol82XyIgeD0iMjI3LjMiIHk9Ijg2LjIiIGNsYXNzPSJzdDExIiB3aWR0aD0iMjAuNCIgaGVpZ2h0PSIxLjUiLz4KCQkJCQk8cmVjdCBpZD0i55+p5b2iXzdfIiB4PSI0MS45IiB5PSI4Ny42IiBjbGFzcz0ic3QxMCIgd2lkdGg9IjIzLjMiIGhlaWdodD0iNS44Ii8+CgkJCQkJPHJlY3QgaWQ9IuefqeW9ol84XyIgeD0iNDMuNCIgeT0iODYuMiIgY2xhc3M9InN0MTEiIHdpZHRoPSIyMC40IiBoZWlnaHQ9IjEuNSIvPgoJCQkJCTxwYXRoIGlkPSLot6/lvoQtNCIgY2xhc3M9InN0MTEiIGQ9Ik0wLDAiLz4KCQkJCQk8cGF0aCBpZD0i6Lev5b6ELTgiIGNsYXNzPSJzdDEyIiBkPSJNMTE1LjYsMTM0LjljMi40LTIuMiw5LjctMy40LDIxLjktMy40YzYuNCwwLDExLDAuNywzOS45LDUuN2MyLjksMC41LDUuMywwLjksNy43LDEuMwoJCQkJCQljMjUuOCw0LjMsNDAuOCw1LjcsNDguNiwzLjNsLTAuNC0xLjRjLTcuNSwyLjItMjIuNSwwLjktNDgtMy40Yy0yLjMtMC40LTQuOC0wLjgtNy42LTEuM2MtMjkuMS01LjEtMzMuNi01LjgtNDAuMi01LjgKCQkJCQkJYy0xMi42LDAtMjAuMSwxLjItMjIuOSwzLjhMMTE1LjYsMTM0Ljl6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9Iui3r+W+hC01XzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjMwNy4xMTA1IiB5MT0iMTAzLjQ4MSIgeDI9IjMwNy4xMTA1IiB5Mj0iMTAyLjQ5MjIiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTQxLjI1IDAgMCAtNTIuMDk2MiAtNDMyMDEuNzIyNyA1NDgxLjM2MTMpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0RDREVFNSIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojOTc5QkE1Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i6Lev5b6ELTUiIGNsYXNzPSJzdDEzIiBkPSJNMjI1LjgsODkuOGgtMjBjLTYuOSwwLTEwLjcsMy4xLTgsNy41YzIuNyw0LjYsMTEuOSw5LjcsMjcuMSwxNC40CgkJCQkJCWMxNS41LDQuOCwyNC45LDE1LjUsMjEsMjIuNWMtNC41LDguMS0yNC40LDguOS01Ni4zLTAuOGMtNDguNC0xNC42LTc1LjgtMTYuMS04Mi42LTQuMWwxLjMsMC43YzYuMi0xMS4xLDMzLjItOS43LDgwLjksNC43CgkJCQkJCWMzMi41LDkuOCw1Myw5LjEsNTgsMC4xYzQuNS04LTUuNi0xOS41LTIxLjktMjQuNmMtMTQuOC00LjYtMjMuOC05LjYtMjYuMi0xMy43Yy0xLjgtMy4xLDAuOC01LjMsNi44LTUuM2gyMHYtMS40SDIyNS44eiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfMTBfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjI5NC4xODM1IiB5MT0iMTAxLjQ1NzgiIHgyPSIyOTQuNzA3NCIgeTI9IjEwMS40MDIyIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDM3Ljc5OTMgNy4zNDc0IDcuNjMzNyAtMzkuMjcyIC0xMTgwMy44MjUyIDE5NTkuNDUyKSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFN0U5RUI7c3RvcC1vcGFjaXR5OjAuOTM2NSIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0RDRkQxIi8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzNfIiBjbGFzcz0ic3QxNCIgZD0iTTExMS43LDEyNS4yYzQsNC45LDQuNywxMS4zLDIuNCwxMy41bC0wLjEsMC4xbC01LjUsNS42YzAuNiwyLjksMC41LDUuMy0xLjEsNi43CgkJCQkJCWwwLDBsMCwwbC04LjIsOC43bC0yMS44LTMwLjZsOC4zLTQuOHYwLjFjMS43LTAuOSw0LjEtMC42LDYuNywwLjRsNi44LTQuMmwwLjEtMC4xQzEwMiwxMTguNywxMDcuOCwxMjAuMywxMTEuNywxMjUuMnoiLz4KCgkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5b2i54q257uT5ZCI5aSH5Lu9LTRfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjk1LjQwNTQiIHkxPSI4Mi4zMTk3IiB4Mj0iMjk2LjEyODciIHkyPSI4Mi4yOTk0IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDIzLjgyNDMgMjkuNDIwNiAxNS44NjE0IC0xMi44NDQzIC04MjU1Ljg0MzggLTc1MDQuODQ1NykiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRUJFREVGIi8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNEOERBREMiLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIjlpIfku70tNCIgY2xhc3M9InN0MTUiIGQ9Ik0xMDMuMywxMzIuNGM1LjksNy4yLDcuMiwxNS40LDQsMTguOWwwLDBsLTguMSw4LjVMNzYsMTI5LjlsOS40LTUuNWwwLDAKCQkJCQkJQzg5LjUsMTIyLjEsOTcuNSwxMjUuMiwxMDMuMywxMzIuNHoiLz4KCgkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaLlpIfku70tMiIgdHJhbnNmb3JtPSJtYXRyaXgoMC43NzcxIC0wLjYyOTMgMC42MjkzIDAuNzc3MSAtNzEuNzU3MyA4Ny4zODA5KSIgY2xhc3M9InN0MTYiIGN4PSI4Ny41IiBjeT0iMTQ1IiByeD0iOS41IiByeT0iMTkiLz4KCgkJCQkJCTxnIGlkPSLnvJbnu4QtNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODUuMjg4NzA1LCAxNTUuNjk1NDY1KSByb3RhdGUoNi4wMDAwMDApIHRyYW5zbGF0ZSgtODUuMjg4NzA1LCAtMTU1LjY5NTQ2NSkgdHJhbnNsYXRlKDc5LjE0MzQ1MywgMTQ2Ljc1NjkxNykiPgoJCQkJCQk8cG9seWdvbiBpZD0i6Lev5b6ELTkiIGNsYXNzPSJzdDE3IiBwb2ludHM9IjEyLjIsMS4xIDEyLjIsNi4xIDEuMiwxNy41IDEuMiwxMi41IAkJCQkJCSIvPgoJCQkJCQk8cG9seWdvbiBpZD0i6Lev5b6ELTEwIiBjbGFzcz0ic3QxMSIgcG9pbnRzPSIxMi4yLDEuMSAxMS4zLDAgMC4zLDExLjEgMS4yLDEyLjUgCQkJCQkJIi8+CgkJCQkJCTxwb2x5Z29uIGlkPSLot6/lvoQtMTEiIGNsYXNzPSJzdDE4IiBwb2ludHM9IjAuMywxMS4xIDEuMiwxMi41IDEuMiwxNy41IDAuMywxNi4xIAkJCQkJCSIvPgoJCQkJCTwvZz4KCgkJCQkJCTxnIGlkPSLnvJbnu4QtNeWkh+S7vSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzYuODI2Mjc3LCAxNDMuODg1MTA1KSByb3RhdGUoNi4wMDAwMDApIHRyYW5zbGF0ZSgtNzYuODI2Mjc3LCAtMTQzLjg4NTEwNSkgdHJhbnNsYXRlKDcwLjY4MTAyNSwgMTM0Ljk0NjU1OCkiPgoJCQkJCQk8cG9seWdvbiBpZD0i6Lev5b6ELTlfMV8iIGNsYXNzPSJzdDE3IiBwb2ludHM9IjEyLjIsMS4xIDEyLjIsNi4xIDEuMiwxNy41IDEuMiwxMi41IAkJCQkJCSIvPgoJCQkJCQk8cG9seWdvbiBpZD0i6Lev5b6ELTEwXzFfIiBjbGFzcz0ic3QxMSIgcG9pbnRzPSIxMi4yLDEuMSAxMS4zLDAgMC4zLDExLjEgMS4yLDEyLjUgCQkJCQkJIi8+CgkJCQkJCTxwb2x5Z29uIGlkPSLot6/lvoQtMTFfMV8iIGNsYXNzPSJzdDE4IiBwb2ludHM9IjAuMywxMS4xIDEuMiwxMi41IDEuMiwxNy41IDAuMywxNi4xIAkJCQkJCSIvPgoJCQkJCTwvZz4KCgkJCQkJCTxnIGlkPSLnvJbnu4QtNV8xXyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODQuNjQzMzQ5LCAxNTYuMjAzMTgzKSByb3RhdGUoNi4wMDAwMDApIHRyYW5zbGF0ZSgtODQuNjQzMzQ5LCAtMTU2LjIwMzE4MykgdHJhbnNsYXRlKDc4LjEzNjYxMiwgMTQ2LjYyOTc5NikiPgoJCQkJCTwvZz4KCgkJCQkJCTxnIGlkPSLnvJbnu4QtNeWkh+S7vV8xXyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzYuMjU3OTg1LCAxNDQuMjkxOTQyKSByb3RhdGUoNi4wMDAwMDApIHRyYW5zbGF0ZSgtNzYuMjU3OTg1LCAtMTQ0LjI5MTk0MikgdHJhbnNsYXRlKDY5Ljc1MTI0OCwgMTM0LjcxODU1NSkiPgoJCQkJCTwvZz4KCQkJCTwvZz4KCQkJCTxjaXJjbGUgaWQ9IuakreWchuW9oiIgY2xhc3M9InN0MTkiIGN4PSIxLjciIGN5PSI4MCIgcj0iMS43Ii8+CgkJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzRfIiBjbGFzcz0ic3QyMCIgZD0iTTEyMy43LDYyLjlsLTEuMiwxLjhjLTU4LjQsMTQuNi05Ny4zLDM0LjgtOTUuMiw1MS44YzEuMiwxMCwxNi41LDE3LjYsNDEsMjIuMgoJCQkJCWM3LjktOC42LDE4LjMtMTcuOSwzMC43LTI3LjV2MS45Qzg3LjQsMTIyLjIsNzcuNiwxMzEsNzAsMTM5YzkuMiwxLjYsMTkuNywyLjksMzEuMiwzLjdjMS41LDAuNywzLjQsMS4zLDUuNSwxLjgKCQkJCQljLTE0LjEtMC44LTI2LjktMi4yLTM3LjgtNC4yQzU1LDE1NS4xLDQ5LDE2Ny41LDUzLDE3NS40YzguNiwxNi45LDYxLjIsOC44LDEyNi44LTE3LjZjMC41LDAuMywxLDAuNiwxLjYsMQoJCQkJCWMtNjYuOCwyNy0xMjAuNSwzNS4yLTEyOS42LDE3LjNjLTQuMi04LjMsMS43LTIxLjEsMTUuNC0zNi4yYy0yNC43LTQuOC00MC0xMi43LTQxLjMtMjMuMkMyMy42LDk4LjUsNjMuNyw3Ny43LDEyMy43LDYyLjl6CgkJCQkJIE0zMTMuMywxMTguNGg1LjFjLTYuOCwyLjEtMTMuOSw0LjEtMjEuNCw2Yy0xLjQtMC4yLTIuOC0wLjQtMy45LTAuNUMzMDAuMiwxMjIuMSwzMDYuOSwxMjAuMywzMTMuMywxMTguNHogTTI4My4xLDEwNS44djEuNwoJCQkJCWMtMi45LDEuOC01LjgsMy41LTguOCw1LjN2LTEuN0MyNzcuMywxMDkuMywyODAuMiwxMDcuNiwyODMuMSwxMDUuOHogTTM3OC41LDkuNmM0LjcsOS4yLTMuMSwyNC0yMC4yLDQxLjMKCQkJCQljMTguOSw0LjksMzAuNCwxMiwzMS42LDIxYzEuMywxMC40LTExLjQsMjEuNi0zMy43LDMyLjJ2LTEuNmMyMS40LTEwLjEsMzMuNC0yMC44LDMyLjMtMzAuNGMtMS4xLTguNi0xMi41LTE1LjQtMzEuMy0yMC4xCgkJCQkJbC0wLjMsMC4zYy00LjUsNC41LTkuNiw5LjEtMTUuMywxMy45di0xLjljNS00LjMsOS42LTguNCwxMy43LTEyLjRsMC4zLTAuM2MtNC4zLTEtOS0xLjktMTQtMi43di0xLjVjNS40LDAuOSwxMC41LDEuOSwxNS4xLDMKCQkJCQljMTcuMS0xNy4xLDI1LTMxLjUsMjAuNi00MC4zYy0xMC0xOS43LTc5LjktNS40LTE2MC40LDMyLjJoLTMuNEMyOTUuOSwzLjQsMzY3LjgtMTEuNSwzNzguNSw5LjZ6IE0xMzYuOSw4NC41djEuOAoJCQkJCWMtNS44LDMuNy0xMS40LDcuNC0xNi43LDExLjFsMi0zLjFDMTI3LDkwLjksMTMxLjksODcuNywxMzYuOSw4NC41eiBNMzIxLjEsODAuNHYxLjhjLTQuMiwzLTguNSw2LjEtMTMsOS4ybDItMy4xCgkJCQkJQzMxMy45LDg1LjYsMzE3LjUsODMsMzIxLjEsODAuNHogTTE4MC44LDU4Ljl2MS43Yy04LjEsNC4zLTE1LjksOC43LTIzLjQsMTMuMVY3MkMxNjQuOSw2Ny42LDE3Mi43LDYzLjIsMTgwLjgsNTguOXoKCQkJCQkgTTE4MC44LDUxLjZ2MS41Yy04LDEuMi0xNS44LDIuNi0yMy40LDR2LTEuNUMxNjUsNTQuMSwxNzIuOCw1Mi44LDE4MC44LDUxLjZ6IE0zMTkuNSw0NC45bC0wLjksMS40CgkJCQkJYy0xMy40LTEuMS0yOC4zLTEuNS00NC4zLTEuM3YtMC41YzAtMC4zLTAuMS0wLjctMC4yLTAuOUMyOTAuNSw0My4zLDMwNS44LDQzLjcsMzE5LjUsNDQuOXoiLz4KCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfNV8iIGNsYXNzPSJzdDIxIiBkPSJNMzc4LjUsOS42YzQuNyw5LjItMy4xLDI0LTIwLjIsNDEuM2MxOC45LDQuOSwzMC40LDEyLDMxLjYsMjEKCQkJCQljMi45LDI0LTY4LjYsNTIuOC0xNjIuNCw2Ni4xYy04Ni45LDQyLjktMTY0LjYsNTkuOS0xNzUuOCwzOGMtNC4yLTguMywxLjctMjEuMSwxNS40LTM2LjJjLTI0LjctNC44LTQwLTEyLjctNDEuMy0yMy4yCgkJCQkJYy0xLjctMTMuOCwyMS4xLTI5LjEsNTguNS00Mi4ybDAuMywxLjRjLTM2LjYsMTIuOC01OSwyNy42LTU3LjQsNDAuNmMxLjIsMTAsMTYuNSwxNy42LDQxLDIyLjJjNi44LTcuMywxNS40LTE1LjIsMjUuNS0yMy40CgkJCQkJbDAuMywxLjJsMC44LTAuMmMtOS44LDcuOS0xOC4yLDE1LjUtMjQuOSwyMi42YzM0LjQsNi4xLDg2LjIsNi42LDE0My4zLTAuNGM0LjctMC42LDkuMy0xLjIsMTMuOC0xLjhjMi43LTEuNCw1LjUtMi43LDguMy00LjEKCQkJCQljNTEuOC0yNi40LDk1LTU2LjEsMTE5LjktODAuNmwwLjMtMC4zYy0yLjctMC42LTUuNS0xLjItOC40LTEuOGwtMC40LTEuNWMzLjUsMC42LDYuOCwxLjQsMTAsMi4xYzE3LjEtMTcuMSwyNS0zMS41LDIwLjYtNDAuMwoJCQkJCWMtNC4yLTguMy0xOS4yLTEwLjYtNDEuMS03LjZsLTAuMy0xLjRDMzU4LjUtMS44LDM3NCwwLjcsMzc4LjUsOS42eiBNMjIyLjksMTM4LjdsLTAuNCwwLjFjLTMsMC40LTYsMC44LTksMS4yCgkJCQkJYy01Ny43LDcuMS0xMTAsNi43LTE0NC43LDAuMkM1NSwxNTUuMSw0OSwxNjcuNSw1MywxNzUuNEM2My40LDE5NS45LDEzOC40LDE3OS43LDIyMi45LDEzOC43eiBNMzU3LjEsNTJsLTAuMywwLjMKCQkJCQljLTI1LDI0LjgtNjguNSw1NC44LTEyMC44LDgxLjRjLTEuNCwwLjctMi45LDEuNS00LjMsMi4yYzkwLjYtMTMuNSwxNTkuNS00MS41LDE1Ni43LTYzLjlDMzg3LjQsNjMuNSwzNzUuOSw1Ni43LDM1Ny4xLDUyeiIvPgoJCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzFfIiBjbGFzcz0ic3QxOSIgY3g9IjEzNS4yIiBjeT0iMTQ0LjIiIHI9IjIuMiIvPgoJCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2i5aSH5Lu9LTQiIGNsYXNzPSJzdDE5IiBjeD0iMzU3IiBjeT0iNTAuOSIgcj0iMy45Ii8+CgkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaLlpIfku70iIGNsYXNzPSJzdDE5IiBjeD0iNDMuNiIgY3k9IjkzLjkiIHI9IjIuMiIvPgoJCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzJfIiBjbGFzcz0ic3QxOSIgY3g9IjM3Mi4xIiBjeT0iMy40IiByPSIyLjIiLz4KCQkJCTxjaXJjbGUgaWQ9IuakreWchuW9ol8zXyIgY2xhc3M9InN0MTkiIGN4PSI3My4yIiBjeT0iNTAuOSIgcj0iMS43Ii8+CgkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaJfNF8iIGNsYXNzPSJzdDE5IiBjeD0iMjkzLjMiIGN5PSIxNjkuNCIgcj0iMS43Ii8+CgkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaJfNV8iIGNsYXNzPSJzdDE5IiBjeD0iMzk4LjMiIGN5PSIxNS4yIiByPSIxLjciLz4KCQkJPC9nPgoJCTwvZz4KCTwvZz4KPC9nPgo8L3N2Zz4K",mm="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qxe2ZpbGw6I0M0QzZDQzt9Cgkuc3Qye2ZpbGw6dXJsKCPnn6nlvaItMl8xXyk7fQoJLnN0M3tmaWxsOnVybCgj55+p5b2iXzZfKTt9Cgkuc3Q0e2ZpbGw6I0RDREVFMDt9Cgkuc3Q1e2ZpbGw6I0QxRDNENjt9Cgkuc3Q2e2ZpbGw6dXJsKCPnn6nlvaItM18xXyk7fQoJLnN0N3tmaWxsOiNFNUU3RUM7fQoJLnN0OHtmaWxsOnVybCgj5LiJ6KeS5b2iXzFfKTt9Cgkuc3Q5e2ZpbGw6Izk3OUJBNTt9Cjwvc3R5bGU+CjxnIGlkPSLpobXpnaItMSI+Cgk8ZyBpZD0iRXhjZXB0aW9uX3gyRl/lvILluLjmj5DnpLoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04NjkuMDAwMDAwLCAtMjkxOC4wMDAwMDApIj4KCQk8ZyBpZD0i5byC5bi45aSx6LSl57G7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNTcuMDAwMDAwLCAyODIzLjAwMDAwMCkiPgoJCQk8ZyBpZD0i5byC5bi45aSx6LSl57G7LeaPkuWbviIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTEyLjAwMDAwMCwgOTUuMDAwMDAwKSI+CgkJCQk8ZyBpZD0i57yW57uELTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyMy4wMDAwMDAsIDMzLjAwMDAwMCkiPgoJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0iRmlsbC0xXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEyNi41Njk5IiB5MT0iMTM0Ljk4ODkiIHgyPSIxMzAuMTYzOCIgeTI9IjE2OS4xODI3Ij4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZCRkNGRCIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjJGNEY3Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0iRmlsbC0xIiBjbGFzcz0ic3QwIiBkPSJNNjAsMTQzYzE5LjMtNC4yLDQ4LjQtNS43LDY3LjMtNC43czM5LjQsMy44LDM5LjQsMy44czUuMy0yLjQsNC45LTEuNAoJCQkJCQljLTAuNCwwLjktMi45LDIuNC0xLjIsMi44YzEuNiwwLjUsMTguNSwyLjQsMjUuNCwzLjhjNywxLjQsMTAuMywyLjgsMTAuMywyLjhzNC42LTgsMTQuNy03LjFjMCwwLjgtMy43LDEuNy01LDMuOAoJCQkJCQljLTEuMiwyLjEtNCwzLjMtNCwzLjNzMi4yLTEuMiw1LjksMC42czcuMywyLjQsNy4zLDIuN3MtMS42LDQuMi0xNS4yLDEuNGMtNS41LTEuNC04LjIsNi4xLTM0LjksOHMtNzEuOCwzLjMtNzEuOCwzLjMKCQkJCQkJczIuMSwyLjgsNi4yLDMuOGMwLDAtMi45LDIuOC04LjYsMS45Yy01LjctMC45LTExLjktNS43LTExLjktNS43cy0xNS4yLTAuOS0yMC45LTEuOXMtMTIuMy0zLjMtMTYuOC0zLjhzLTI1LTIuOC0xNy4yLTgKCQkJCQkJQzMzLjgsMTUyLjQsNDAuNywxNDcuMyw2MCwxNDN6Ii8+CgkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiCIgY2xhc3M9InN0MSIgZD0iTTYwLjgsMTQ3djkuMkg3MHYxLjhINTl2LTExSDYwLjh6Ii8+CgkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiOWkh+S7vSIgY2xhc3M9InN0MSIgZD0iTTY2LDMxLjhoLTkuMlY0MUg1NXYtOS4ybDAsMFYzMGgxMVYzMS44eiIvPgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIjlpIfku70tMiIgY2xhc3M9InN0MSIgZD0iTTE1Ny4yLDQxdi05LjJIMTQ4VjMwaDkuMmwwLDBoMS44djExSDE1Ny4yeiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaItMl8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxNjUuNzcyNyIgeTE9Ii0xLjU1OTciIHgyPSIxNjUuNzcyNyIgeTI9Ii0wLjYyMzgiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoODggMCAwIDExMiAtMTQ0ODAgMjE0KSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFQkVERjA7c3RvcC1vcGFjaXR5OjAuOTkxNyIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTFFM0U2Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cGF0aCBpZD0i55+p5b2iLTIiIGNsYXNzPSJzdDIiIGQ9Ik02NSwzOGg4NmMwLjYsMCwxLDAuNCwxLDF2MTEwYzAsMC42LTAuNCwxLTEsMUg2NWMtMC42LDAtMS0wLjQtMS0xVjM5CgkJCQkJCUM2NCwzOC40LDY0LjQsMzgsNjUsMzh6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol82XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxNjQuODAxNCIgeTE9Ii0xLjgxNDQiIHgyPSIxNjQuODAxNCIgeTI9Ii0wLjgyNTkiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNzMgMCAwIDk3IC0xMTkyMyAyMjEpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZGRkZGRiIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjJGNEY3Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQk8cmVjdCBpZD0i55+p5b2iXzFfIiB4PSI3MSIgeT0iNDUiIGNsYXNzPSJzdDMiIHdpZHRoPSI3MyIgaGVpZ2h0PSI5NyIvPgoJCQkJCTxyZWN0IGlkPSLnn6nlvaJfMl8iIHg9Ijg2IiB5PSI0OSIgY2xhc3M9InN0NCIgd2lkdGg9IjQzIiBoZWlnaHQ9IjIiLz4KCQkJCQk8cmVjdCBpZD0i55+p5b2iXzNfIiB4PSI3MSIgeT0iMTQwIiBjbGFzcz0ic3Q1IiB3aWR0aD0iNzMiIGhlaWdodD0iMiIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaItM18xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxNjAuODI1NiIgeTE9Ii0xMS43MzMzIiB4Mj0iMTYwLjgyNTYiIHkyPSItMTAuNzQxMiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg0MyAwIDAgMTUgLTY4MDggMjEwKSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFREVGRjIiLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U4RUFFRCIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHJlY3QgaWQ9IuefqeW9oi0zIiB4PSI4NiIgeT0iMzQiIGNsYXNzPSJzdDYiIHdpZHRoPSI0MyIgaGVpZ2h0PSIxNSIvPgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMV8iIGNsYXNzPSJzdDUiIGQ9Ik0xNTIsMTA1djQ0YzAsMC42LTAuNCwxLTEsMWgtMjQuNkwxNTIsMTA1eiIvPgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMl8iIGNsYXNzPSJzdDciIGQ9Ik0xNDQsMTE5LjJWMTQwaC0xMkwxNDQsMTE5LjJ6Ii8+CgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuS4ieinkuW9ol8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxNjMuOTE0MyIgeTE9Ii0zLjA4MTIiIHgyPSIxNjMuOTE0MyIgeTI9Ii0yLjE0NTMiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNjMuMTc5OSAwIDAgNTYuOTAzMyAtMTAxOTguMTcxOSAyNzcuMDk0NSkiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTZFOEVCO3N0b3Atb3BhY2l0eTowLjk5MTciLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q0RDZEOSIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHBhdGggaWQ9IuS4ieinkuW9oiIgY2xhc3M9InN0OCIgZD0iTTE1OS43LDEwMi4xbDEuNSwyLjZsMCwwbDI4LjEsNTAuM2MwLjUsMSwwLjIsMi4yLTAuOCwyLjdjLTAuMywwLjItMC42LDAuMy0xLDAuM2gtNTkuMgoJCQkJCQljLTEuMSwwLTItMC45LTItMmMwLTAuMywwLjEtMC43LDAuMy0xbDI5LjYtNTIuOWMwLjUtMSwxLjgtMS4zLDIuNy0wLjhDMTU5LjMsMTAxLjUsMTU5LjYsMTAxLjgsMTU5LjcsMTAyLjF6Ii8+CgkJCQkJPHBhdGggaWQ9Il94MjFfIiBjbGFzcz0ic3Q5IiBkPSJNMTYwLjcsMTI0bC0wLjYsMTYuNGgtNC4ybC0wLjYtMTYuNEMxNTUuMywxMjQsMTYwLjcsMTI0LDE2MC43LDEyNHogTTE1NSwxNDUuOAoJCQkJCQljMC0wLjksMC4zLTEuNiwwLjktMi4yczEuMy0wLjgsMi4xLTAuOGMwLjksMCwxLjYsMC4zLDIuMSwwLjhjMC42LDAuNiwwLjgsMS4zLDAuOCwyLjFzLTAuMywxLjYtMC44LDIuMQoJCQkJCQljLTAuNiwwLjYtMS4yLDAuOS0yLDAuOWMtMSwwLTEuNy0wLjMtMi4zLTAuOUMxNTUuMywxNDcuMywxNTUsMTQ2LjYsMTU1LDE0NS44eiIvPgoJCQkJCTxnIGlkPSLnvJbnu4QtMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAxLjAwMDAwMCwgNzQuMDAwMDAwKSI+CgkJCQkJCTxyZWN0IGlkPSLnn6nlvaJfNF8iIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9IiB4PSI3LjYiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTIiIHg9IjE1LjEiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTMiIHg9IjIyLjciIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTQiIHg9IjMwLjIiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMSIvPgoJCQkJCTwvZz4KCQkJCQk8ZyBpZD0i57yW57uELTNfMV8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyNC4wMDAwMDAsIDkxLjAwMDAwMCkiPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2iXzVfIiB4PSI3LjgiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjkiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTUiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjkiIGhlaWdodD0iMSIvPgoJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9XzFfIiB4PSIxNS42IiBjbGFzcz0ic3QxIiB3aWR0aD0iMy45IiBoZWlnaHQ9IjEiLz4KCQkJCQkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS0yXzFfIiB4PSIyMy41IiBjbGFzcz0ic3QxIiB3aWR0aD0iMy45IiBoZWlnaHQ9IjEiLz4KCQkJCQkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS0zXzFfIiB4PSIzMS4zIiBjbGFzcz0ic3QxIiB3aWR0aD0iMy45IiBoZWlnaHQ9IjEiLz4KCQkJCQkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS00XzFfIiB4PSIzOS4xIiBjbGFzcz0ic3QxIiB3aWR0aD0iMy45IiBoZWlnaHQ9IjEiLz4KCQkJCQk8L2c+CgkJCQk8L2c+CgkJCTwvZz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==",pm="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qxe2ZpbGw6dXJsKCPmpK3lnIblvaLlpIfku70tNV8yXyk7fQoJLnN0MntmaWxsOnVybCgj55+p5b2iXzE5Xyk7fQoJLnN0M3tmaWxsOnVybCgj55+p5b2i5aSH5Lu9LTIxXzFfKTt9Cgkuc3Q0e2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfNl8pO30KCS5zdDV7ZmlsbDojRUFFQ0VGO30KCS5zdDZ7ZmlsbDp1cmwoI+efqeW9ol8yMF8pO30KCS5zdDd7ZmlsbDojRjRGNEY1O30KCS5zdDh7ZmlsbDojRjlGOUZBO30KCS5zdDl7ZmlsbDojOTc5Nzk3O30KCS5zdDEwe2ZpbGw6I0U4RUFFQzt9Cgkuc3QxMXtmaWxsOiNGN0Y4RkE7fQoJLnN0MTJ7ZmlsbDp1cmwoI+efqeW9ol8yMV8pO30KCS5zdDEze2ZpbGw6dXJsKCPnn6nlvaLlpIfku70tMjJfMV8pO30KCS5zdDE0e2ZpbGw6dXJsKCPot6/lvoQtMjNfMV8pO30KCS5zdDE1e2ZpbGw6dXJsKCPnn6nlvaJfMjJfKTt9Cgkuc3QxNntmaWxsOiNEQ0RERTA7fQoJLnN0MTd7ZmlsbDp1cmwoI+i3r+W+hC0xOV8xXyk7fQoJLnN0MTh7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF85Xyk7fQoJLnN0MTl7ZmlsbDojQ0RDRUQxO30KCS5zdDIwe2ZpbGw6bm9uZTtzdHJva2U6dXJsKCPot6/lvoQtMjFfMV8pO30KCS5zdDIxe2ZpbGw6I0M2QzdDQjt9Cgkuc3QyMntmaWxsOiNEMUQyRDY7c3Ryb2tlOiNFQUVERjA7c3Ryb2tlLXdpZHRoOjI7fQoJLnN0MjN7ZmlsbDojRjlGQUZDO30KCS5zdDI0e2ZpbGw6dXJsKCPnn6nlvaJfMjNfKTt9Cgkuc3QyNXtmaWxsOiNGMUYzRjU7fQoJLnN0MjZ7ZmlsbDojRTZFOEVCO30KCS5zdDI3e2ZpbGw6I0QxRDJENjt9Cgkuc3QyOHtmaWxsOnVybCgj5qSt5ZyG5b2i5aSH5Lu9LThfMV8pO30KCS5zdDI5e2ZpbGw6I0VFRUZGMzt9Cgkuc3QzMHtmaWxsOiNENEQ2REE7fQoJLnN0MzF7ZmlsbDojRThFQUVEO3N0cm9rZTojRDlEQkRFO30KCS5zdDMye2ZpbGw6I0Q4RDhEODtzdHJva2U6I0NGRDBEMzt9Cgkuc3QzM3tmaWxsOiNERERFRTA7fQoJLnN0MzR7ZmlsbDojRUVGMEYyO30KCS5zdDM1e2ZpbGw6bm9uZTtzdHJva2U6dXJsKCPnn6nlvaJfMjRfKTtzdHJva2Utd2lkdGg6Mjt9Cgkuc3QzNntmaWxsOm5vbmU7c3Ryb2tlOnVybCgj55+p5b2iXzI1Xyk7c3Ryb2tlLXdpZHRoOjAuNzt9Cgkuc3QzN3tmaWxsOnVybCgj55+p5b2iXzI2Xyk7fQoJLnN0Mzh7ZmlsbDp1cmwoI+efqeW9ol8yN18pO30KCS5zdDM5e2ZpbGw6dXJsKCPnn6nlvaJfMjhfKTt9Cgkuc3Q0MHtmaWxsOiM5NTk2OTk7ZmlsbC1vcGFjaXR5OjAuMTI7fQoJLnN0NDF7ZmlsbDojQzRDNkNDO30KPC9zdHlsZT4KPGcgaWQ9Iumhtemdoi0xIj4KCTxnIGlkPSJFeGNlcHRpb25feDJGX+W8guW4uOaPkOekuiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTg3MC4wMDAwMDAsIC0xODgyLjAwMDAwMCkiPgoJCTxnIGlkPSLlip/og73lu7rorr7nsbsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM1Ny4wMDAwMDAsIDE3NTEuMDAwMDAwKSI+CgkJCTxnIGlkPSLnvJbnu4QtMTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCA3My4wMDAwMDApIj4KCQkJCTxnIGlkPSLlip/og73lu7rorr7nsbst5o+S5Zu+IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1MTMuMDAwMDAwLCA1OC4wMDAwMDApIj4KCQkJCQk8ZyBpZD0i5Zu+5qGIIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1OC4wMDAwMDAsIDE3LjAwMDAwMCkiPgoJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IkZpbGwtMV8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyMDYuMzkyNyIgeTE9IjE1OC41MjkiIHgyPSIyMDkuODg5IiB5Mj0iMTkxLjc5NDgiPgoJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZCRkNGRCIvPgoJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0YyRjRGNyIvPgoJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQk8cGF0aCBpZD0iRmlsbC0xIiBjbGFzcz0ic3QwIiBkPSJNMTQzLjQsMTY2LjRjMTguNi00LjIsNDUuNS02LjEsNjMuNy01LjFjMTguMiwwLjksMzMuMyw0LjEsMzQuNCwzLjQKCQkJCQkJCWMzLjYtMi40LDExLjQtMy41LDExLTIuNnMtNS40LDMuOS0zLjgsNC4zczE3LjgsMi4zLDI0LjYsMy43YzYuNywxLjQsMTEuMSwyLjgsMTIuNSwyLjhjMS41LDAsMy44LTIsMTMuNS0xCgkJCQkJCQljMC4yLDAuNC0yLjIsMC41LTQuMywxLjZjLTIuMiwxLjEtMy43LDEtMy43LDEuM3MxLjItMC40LDMuNywxLjNjMi41LDEuNiw3LDIuMSw3LDIuNmMwLDAuNC01LjcsMi4zLTE1LjEtMC43CgkJCQkJCQljLTIuNC0wLjgtOCw1LjgtMzMuOCw3LjdzLTY5LjQsMy4zLTY5LjQsMy4zczIuNiwzLjQsNi40LDQuM2MwLjIsMC4zLTEuNSwxLjYtOC45LDAuMmMtNy40LTEuNC0xMS40LTQuNS0xMS40LTQuNQoJCQkJCQkJcy0xNC43LTAuOS0yMC4yLTEuOWMtNS42LTAuOS0xMS45LTMuMy0xNi4zLTMuN3MtMjQuMi0yLjgtMTYuNy04QzExNi43LDE3NS4zLDEyNC43LDE3MC42LDE0My40LDE2Ni40eiIvPgoJCQkJCQk8ZyBpZD0i57yW57uELTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3LjAwMDAwMCwgMC4wMDAwMDApIj4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLmpK3lnIblvaLlpIfku70tNV8yXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxOTcuNDMyOCIgeTE9Ii05Ljk3MjYiIHgyPSIxOTcuNDMyOCIgeTI9Ii04Ljk3MjYiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTQuMzExNCAwIDAgMTcuNjQ4NSAtMjgxMi4yOTAzIDI1OC43NTkxKSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VBRUNFRSIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNDRENGRDEiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8cGF0aCBpZD0i5qSt5ZyG5b2i5aSH5Lu9LTUiIGNsYXNzPSJzdDEiIGQ9Ik0xMy4yLDEwMC40YzMuMSwwLDcuMi02LjUsNy4yLTEwLjVzLTMuMi03LjItNy4yLTcuMlM2LjEsODYsNi4xLDg5LjkKCQkJCQkJCQlDNi4xLDkzLjksMTAuMSwxMDAuNCwxMy4yLDEwMC40eiIvPgoKCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol8xOV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTE1MS4zNjY0IiB5MT0iLTIuMjE1NiIgeDI9Ii0xNTEuMzY2NCIgeTI9Ii0xLjIxNTgiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMS4xMDA5IDAgMCA3OS40MTgyIDE3Ny42ODkzIDE4NS45NTkzKSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0RDREVFNSIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNCMkI1QkUiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8cmVjdCBpZD0i55+p5b2iXzFfIiB4PSIxMC41IiB5PSIxMCIgY2xhc3M9InN0MiIgd2lkdGg9IjEuMSIgaGVpZ2h0PSI3OS40Ii8+CgoJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2i5aSH5Lu9LTIxXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9Ii0xNTEuMzY4OSIgeTE9Ii0yLjIxNTYiIHgyPSItMTUxLjM2ODkiIHkyPSItMS4yMTU4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEuMTAwOSAwIDAgNzkuNDE4MiAxODAuOTkyIDE4NS45NTkzKSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0RDREVFNSIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNCMkI1QkUiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTIxIiB4PSIxMy44IiB5PSIxMCIgY2xhc3M9InN0MyIgd2lkdGg9IjEuMSIgaGVpZ2h0PSI3OS40Ii8+CgoJCQkJCQkJCTxnIGlkPSLnvJbnu4QtMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjIuOTQxNzI1LCA3My44NDE3OTMpIHJvdGF0ZSgtMzkuMDAwMDAwKSB0cmFuc2xhdGUoLTYyLjk0MTcyNSwgLTczLjg0MTc5MykgdHJhbnNsYXRlKDUwLjQ0MTcyNSwgLTEwLjY1ODIwNykiPgoJCQkJCQkJCTxnIGlkPSLnvJbnu4QtMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDM4LjUxMzU0OCkiPgoKCQkJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5b2i54q257uT5ZCIXzZfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjkzLjY5OTEiIHkxPSIzMy4xMTMzIiB4Mj0iOTMuNjk5MSIgeTI9IjM0LjA5MjQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMjQuNTE2MyAtNy41NzQ3MzJlLTA1IDcuMjY0MTQ3ZS0wNSAxMjkuNTQ1NiAtMjI3OC45OTU4IC00MjYzLjUyMzkpIj4KCQkJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFNEU2RTkiLz4KCQkJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNDQkNFRDYiLz4KCQkJCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiCIgY2xhc3M9InN0NCIgZD0iTTI0LjUsMGwwLDEwMi43bDAsMTRsMCwxMi44SDBMMCwwTDI0LjUsMHogTTEyLjMsMTIzLjFsLTEwLDUuM2gyMC4xTDEyLjMsMTIzLjF6CgkJCQkJCQkJCQkgTTIzLjMsMTE3LjNsLTkuOCw1LjFsOS44LDUuMUwyMy4zLDExNy4zeiBNMS4yLDExNy4zbDAsMTAuM2w5LjgtNS4xTDEuMiwxMTcuM3ogTTIyLDExNi43SDIuNWw5LjcsNS4xTDIyLDExNi43egoJCQkJCQkJCQkJIE0xMi4zLDExMC40bC05LjcsNS4xSDIyTDEyLjMsMTEwLjR6IE0xLjIsMTA0LjZsMCwxMC4zbDkuOC01LjFMMS4yLDEwNC42eiBNMjMuMywxMDQuNmwtOS44LDUuMWw5LjgsNS4xTDIzLjMsMTA0LjZ6CgkJCQkJCQkJCQkgTTIyLjMsMTAzLjlsLTIwLjEsMGwxMCw1LjNMMjIuMywxMDMuOXogTTEyLjMsOTcuNWwtMTAsNS4zbDIwLjEsMEwxMi4zLDk3LjV6IE0xLjIsOTEuNmwwLDEwLjNsOS44LTUuMUwxLjIsOTEuNnoKCQkJCQkJCQkJCSBNMjMuMyw5MS42bC05LjgsNS4xbDkuOCw1LjFMMjMuMyw5MS42eiBNMjIsOTFMMi41LDkxbDkuNyw1LjFMMjIsOTF6IE0xMi4zLDg0LjhsLTkuNyw1LjFsMTkuNSwwTDEyLjMsODQuOHogTTEuMiw3OQoJCQkJCQkJCQkJbDAsMTAuM2w5LjgtNS4xTDEuMiw3OXogTTIzLjMsNzlsLTkuOCw1LjFsOS44LDUuMUwyMy4zLDc5eiBNMjIuMyw3OC4ySDIuMmwxMCw1LjNMMjIuMyw3OC4yeiBNMTIuMyw3MS44TDIuMiw3N2wyMC4xLDAKCQkJCQkJCQkJCUwxMi4zLDcxLjh6IE0xLjIsNjZsMCwxMC4zbDkuOC01LjFMMS4yLDY2eiBNMjMuMyw2NmwtOS44LDUuMWw5LjgsNS4xTDIzLjMsNjZ6IE0yMiw2NS40bC0xOS41LDBsOS43LDUuMUwyMiw2NS40egoJCQkJCQkJCQkJIE0xMi4zLDU5LjFsLTkuNyw1LjFsMTkuNSwwTDEyLjMsNTkuMXogTTEuMiw1My4zbDAsMTAuM2w5LjgtNS4xTDEuMiw1My4zeiBNMjMuMyw1My4zbC05LjgsNS4xbDkuOCw1LjFMMjMuMyw1My4zegoJCQkJCQkJCQkJIE0yMi4zLDUyLjVsLTIwLjEsMGwxMCw1LjNMMjIuMyw1Mi41eiBNMTIuMyw0Ni4xbC0xMCw1LjNsMjAuMSwwTDEyLjMsNDYuMXogTTIzLjMsNDAuM2wtOS44LDUuMWw5LjgsNS4xTDIzLjMsNDAuM3oKCQkJCQkJCQkJCSBNMS4yLDQwLjNsMCwxMC4zbDkuOC01LjFMMS4yLDQwLjN6IE0yMiwzOS43bC0xOS41LDBsOS43LDUuMUwyMiwzOS43eiBNMTIuMywzMy40bC05LjcsNS4xbDE5LjUsMEwxMi4zLDMzLjR6IE0xLjIsMjcuNgoJCQkJCQkJCQkJbDAsMTAuM2w5LjgtNS4xTDEuMiwyNy42eiBNMjMuMywyNy42bC05LjgsNS4xbDkuOCw1LjFMMjMuMywyNy42eiBNMjIuMywyNi44bC0yMC4xLDBsMTAsNS4zTDIyLjMsMjYuOHogTTEyLjMsMjAuNAoJCQkJCQkJCQkJbC0xMCw1LjNsMjAuMSwwTDEyLjMsMjAuNHogTTEuMiwxNC42bDAsMTAuM2w5LjgtNS4xTDEuMiwxNC42eiBNMjMuMywxNC42bC05LjgsNS4xbDkuOCw1LjFMMjMuMywxNC42eiBNMjIsMTRMMi41LDE0CgkJCQkJCQkJCQlsOS43LDUuMUwyMiwxNHogTTEyLjMsNy43bC05LjcsNS4xbDE5LjUsMEwxMi4zLDcuN3ogTTEuMiwxLjlsMCwxMC4zTDExLDcuMUwxLjIsMS45eiBNMjMuMywxLjlMMTMuNSw3bDkuOCw1LjFMMjMuMywxLjl6CgkJCQkJCQkJCQkgTTIyLjMsMS4ybC0yMC4xLDBsMTAsNS4zTDIyLjMsMS4yeiIvPgoJCQkJCQkJCTwvZz4KCgkJCQkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaIiIHRyYW5zZm9ybT0ibWF0cml4KC0wLjc3NzEgLTAuNjI5MyAwLjYyOTMgLTAuNzc3MSAxOS4xNDkxIDE0LjkyMDEpIiBjbGFzcz0ic3Q1IiBjeD0iMTIuMiIgY3k9IjQuMSIgcng9IjQuMSIgcnk9IjQuMSIvPgoKCQkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaJfMjBfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjExNS45NzExIiB5MT0iMzIuMTc3NCIgeDI9IjExNS45NzExIiB5Mj0iMzMuMTc3NCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxOS44NDY1IDMuNjY3NjMxZS0wNSAtOC42NDUwMzZlLTA2IDMxLjUxMTEgLTIyODMuMTA0NyAtMTAwMC4wNzA5KSI+CgkJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFQkVERjAiLz4KCQkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U0RTZFOSIvPgoJCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQkJPHBvbHlnb24gaWQ9IuefqeW9ol8yXyIgY2xhc3M9InN0NiIgcG9pbnRzPSI3LDUuOCAxNy41LDUuOCAyMi4yLDM3LjMgMi4zLDM3LjMgCQkJCQkJCQkiLz4KCQkJCQkJCQk8cG9seWdvbiBpZD0i6Lev5b6ELTE3IiBjbGFzcz0ic3Q3IiBwb2ludHM9IjAsMzguNSAyLjMsMzcuMyAyMi4yLDM3LjMgMjQuNSwzOC41IAkJCQkJCQkJIi8+CgkJCQkJCQkJPHBvbHlnb24gaWQ9Iui3r+W+hC0xOCIgY2xhc3M9InN0OCIgcG9pbnRzPSI4LjIsNS44IDguMiw0LjYgMTYuMyw0LjYgMTYuMyw1LjggCQkJCQkJCQkiLz4KCQkJCQkJCTwvZz4KCQkJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMV8iIGNsYXNzPSJzdDkiIGQ9Ik0xMi43LDk5LjN2Ny4ydjAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4xYy0xLjUsMC0yLjgsMS4zLTIuOCwzczEuMiwzLDIuOCwzCgkJCQkJCQkJYzEuMywwLDIuNS0xLDIuNy0yLjRoMS4xYy0wLjMsMi0xLjksMy42LTMuOCwzLjZjLTIuMSwwLTMuOS0xLjktMy45LTQuMmMwLTIuMSwxLjQtMy44LDMuMy00LjF2LTZMMTIuNyw5OS4zTDEyLjcsOTkuM3oiLz4KCQkJCQkJCTxwYXRoIGlkPSLmpK3lnIblvaJfMV8iIGNsYXNzPSJzdDEwIiBkPSJNMTIuMSwxMDAuNGMzLjEsMCw3LjItNi41LDcuMi0xMC41cy0zLjItNy4yLTcuMi03LjJTNSw4Niw1LDg5LjkKCQkJCQkJCQlDNSw5My45LDksMTAwLjQsMTIuMSwxMDAuNHoiLz4KCQkJCQkJCTxyZWN0IGlkPSLnn6nlvaJfM18iIHg9IjEyMi44IiB5PSIxMjEuNCIgY2xhc3M9InN0MTEiIHdpZHRoPSIxMDIuNCIgaGVpZ2h0PSIyLjIiLz4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaJfMjFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMC4wMTg3IiB5MT0iLTEuMTk2NiIgeDI9IjEwMC4wMTg3IiB5Mj0iLTAuMjE2NiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgzLjQzMDEgMC43MjkxIC0xNC42NDAzIDY4Ljg3NzQgLTE2Ny45MTYxIDY1LjM3MjIpIj4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRUFFREYwIi8+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U3RTdFQiIvPgoJCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfNF8iIGNsYXNzPSJzdDEyIiBkPSJNMTkxLjMsNTQuMWwzLjQsMC43bC0xNC42LDY4LjVjLTAuNywwLjEtMS4zLDAuMS0xLjksMGMtMC41LTAuMS0xLjEtMC40LTEuNS0wLjcKCQkJCQkJCQlMMTkxLjMsNTQuMXoiLz4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaLlpIfku70tMjJfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTI2LjUyOTciIHkxPSI1Ljk2NiIgeDI9IjEyNi41Mjk3IiB5Mj0iNi45NDYyIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEuNjQ2NyAzLjA5NzEgLTQyLjI3MjQgMjIuNDc2NiAyODEuMjI3MSAtNDIzLjY4NzkpIj4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRUZGMkY1Ii8+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U3RTdFQiIvPgoJCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaLlpIfku70tMjIiIGNsYXNzPSJzdDEzIiBkPSJNMjM3LjQsMTAwLjNsMS42LDMuMWwtMzkuNSwyMC43Yy0wLjQsMC0xLjItMC4xLTIuNC0wLjNjLTEuMi0wLjItMS45LTAuNi0yLTEKCQkJCQkJCQlMMjM3LjQsMTAwLjN6Ii8+CgoJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i6Lev5b6ELTIzXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMC41MTkxIiB5MT0iLTUzLjE4NjciIHgyPSIxMDAuNTE5MSIgeTI9Ii01Mi4xODY3IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDMuMzAyNiAwIDAgMy4zMDkxIC05OC42MjQzIDI3OC42MTQ2KSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0U3RThFQiIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNDQUNERDEiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8cGF0aCBpZD0i6Lev5b6ELTIzIiBjbGFzcz0ic3QxNCIgZD0iTTIzMy40LDEwMi42bC0xLjcsMC43YzAsMC40LDAuMiwwLjksMC42LDEuNWMwLjQsMC41LDAuOCwwLjksMS4zLDEuMWwxLjQtMC42CgkJCQkJCQkJTDIzMy40LDEwMi42eiIvPgoKCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol8yMl8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjIxLjUyODEiIHkxPSItOC44NjUzIiB4Mj0iMjIxLjUyODEiIHkyPSItNy44NjUzIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDgzLjY2NjcgMCAwIDE5Ljg1NDUgLTE4MzUxLjE3NTggMzEyLjgxNjEpIj4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTNFNUU4Ii8+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMC45NzEzIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0RDRUQxIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9ol81XyIgeD0iMTQxLjUiIHk9IjEzNi44IiBjbGFzcz0ic3QxNSIgd2lkdGg9IjgzLjciIGhlaWdodD0iMTkuOSIvPgoJCQkJCQkJPHBhdGggaWQ9Iui3r+W+hC0yMCIgY2xhc3M9InN0MTYiIGQ9Ik0xNDAuNCwxNTYuN2gxMC4yYy0wLjEtMy4xLDItNS4yLDYuNC02LjNzMjcuMS0zLjcsNjguMi03Ljl2LTMuMXYtOS4yaC04NC44CgkJCQkJCQkJTDE0MC40LDE1Ni43TDE0MC40LDE1Ni43eiIvPgoKCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9Iui3r+W+hC0xOV8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyMjMuMDY1NCIgeTE9Ii01LjMxNzkiIHgyPSIyMjMuMDY1NCIgeTI9Ii00LjMyNjQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTIxLjA5NjUgMCAwIDMzLjA5MDkgLTI2ODQ3Ljc0MjIgMjk5LjU3NTEpIj4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxLjE4NzcxMWUtMDIiIHN0eWxlPSJzdG9wLWNvbG9yOiNGM0YzRjUiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTFFM0U2Ii8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHBhdGggaWQ9Iui3r+W+hC0xOSIgY2xhc3M9InN0MTciIGQ9Ik0yMjUuMiwxMjMuNkgxMDQuMXYzMy4xSDE0NGMxLTQuMSwyLjgtNi42LDUuNC03LjVjMi42LTAuOSwyNy45LTMuMiw3NS45LTYuOQoJCQkJCQkJCUwyMjUuMiwxMjMuNkwyMjUuMiwxMjMuNnoiLz4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfOV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjE2LjI4NzQiIHkxPSItNS4zMDUyIiB4Mj0iMjE2LjI4NzQiIHkyPSItNC4zMjU1IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDQwLjczMTYgMCAwIDMzLjA5MDkgLTg2ODUuMjgxMiAyOTkuNTc1MSkiPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFNEU3RUIiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRDhEQURDIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiF8yXyIgY2xhc3M9InN0MTgiIGQ9Ik0xNDQuOCwxMjMuNnYyNS42YzAsMS0wLjcsMS44LTEuNiwybC0zMC41LDUuNWgtOC42di0zMy4xSDE0NC44eiIvPgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9ol82XyIgeD0iMTI5LjQiIHk9IjE1Ni43IiBjbGFzcz0ic3QxOSIgd2lkdGg9IjM3LjQiIGhlaWdodD0iMi4yIi8+CgoJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i6Lev5b6ELTIxXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjIyNC4yODg2IiB5MT0iLTEuNjQxOSIgeDI9IjIyNS4wNzM4IiB5Mj0iLTEuNDcwMiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgyMTkuMDc0NiAwIDAgODkuMzQ1NSAtNDkwNzYuNjYwMiAxODguMTYxNikiPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNENUQ4REYiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojQjVCOEMxIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHBvbHlsaW5lIGlkPSLot6/lvoQtMjEiIGNsYXNzPSJzdDIwIiBwb2ludHM9IjE4LjIsMTIuMiAxOTIuOSw1My43IDIzNy4zLDEwMS41IAkJCQkJCQkiLz4KCQkJCQkJCTxwYXRoIGlkPSLot6/lvoQtMjIiIGNsYXNzPSJzdDIxIiBkPSJNMTg5LjksNTkuOWMwLjQsMC4zLDAuOSwwLjUsMS40LDAuN3MxLDAuMiwxLjYsMC4xbDAuMy0xLjRsLTMtMC44TDE4OS45LDU5Ljl6Ii8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2iXzJfIiBjbGFzcz0ic3QyMiIgY3g9IjE5My4yIiBjeT0iNTQuMSIgcng9IjQuNSIgcnk9IjQuNSIvPgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9oi00IiB4PSIxMjIuOCIgeT0iMTIzLjYiIGNsYXNzPSJzdDIzIiB3aWR0aD0iMTAyLjQiIGhlaWdodD0iMS4xIi8+CgoJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iXzIzXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyMTAuNDAzNSIgeTE9Ii0zLjY5ODIiIHgyPSIyMTEuMTExMSIgeTI9Ii0zLjY5ODIiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMjYuNDIxMSAwIDAgNDEuOTE1MSAtNTMzMS4xMDMgMjkyLjk2MikiPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFRkYwRjIiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwLjQ3MjQiIHN0eWxlPSJzdG9wLWNvbG9yOiNGNEY1RjciLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRUVGMEYyIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9ol83XyIgeD0iMjI0LjEiIHk9IjExNyIgY2xhc3M9InN0MjQiIHdpZHRoPSIyNi40IiBoZWlnaHQ9IjQxLjkiLz4KCQkJCQkJCTxyZWN0IGlkPSLnn6nlvaJfOF8iIHg9IjIyMyIgeT0iMTIxLjQiIGNsYXNzPSJzdDI1IiB3aWR0aD0iMS4xIiBoZWlnaHQ9IjMuMyIvPgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS0yMyIgeD0iMjIzIiB5PSIxMjQuNyIgY2xhc3M9InN0MjYiIHdpZHRoPSIxLjEiIGhlaWdodD0iMTcuNiIvPgoJCQkJCQkJPHJlY3QgaWQ9IuefqeW9ol85XyIgeD0iMjIzIiB5PSIxNDIuMyIgY2xhc3M9InN0MjciIHdpZHRoPSIxLjEiIGhlaWdodD0iMTQuMyIvPgoJCQkJCQkJPGVsbGlwc2UgaWQ9IuakreWchuW9ol8zXyIgY2xhc3M9InN0MjMiIGN4PSIyMzcuMyIgY3k9IjExNyIgcng9IjEzLjIiIHJ5PSIyLjIiLz4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLmpK3lnIblvaLlpIfku70tOF8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyMTAuNDAzNSIgeTE9Ii0zOS4zODQzIiB4Mj0iMjExLjExMTEiIHkyPSItMzkuMzg0MyIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgyNi40MjExIDAgMCA0LjQxMjEgLTUzMzEuMTAzIDMzMi42Njc0KSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VGRjBGMiIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAuNDcyNCIgc3R5bGU9InN0b3AtY29sb3I6I0Y0RjVGNyIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFRUYwRjIiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2i5aSH5Lu9LTgiIGNsYXNzPSJzdDI4IiBjeD0iMjM3LjMiIGN5PSIxNTguOSIgcng9IjEzLjIiIHJ5PSIyLjIiLz4KCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMTBfIiBjbGFzcz0ic3QyOSIgZD0iTTIzNi4yLDEwNS45aDMuM3YxMC41Yy0wLjYsMC4zLTEuMSwwLjUtMS43LDAuNXMtMS4xLTAuMi0xLjctMC41TDIzNi4yLDEwNS45CgkJCQkJCQkJTDIzNi4yLDEwNS45eiIvPgoJCQkJCQkJPHBhdGggaWQ9Iui3r+W+hC0yNCIgY2xhc3M9InN0MzAiIGQ9Ik0yMzYuMiwxMDZ2MS43YzAuNCwwLjMsMSwwLjQsMS43LDAuNHMxLjItMC4xLDEuNy0wLjR2LTEuOEwyMzYuMiwxMDZ6Ii8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2i5aSH5Lu9LTkiIGNsYXNzPSJzdDIyIiBjeD0iMjM3LjMiIGN5PSIxMDIuNiIgcng9IjQuNSIgcnk9IjQuNSIvPgoJCQkJCQkJPGcgaWQ9Iue8lue7hC02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2OS45Mzc1MTYsIDE1OC44NzA1OTQpIj4KCQkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2iXzRfIiBjbGFzcz0ic3QzMSIgY3g9IjExLjEiIGN5PSIxMSIgcng9IjguOCIgcnk9IjguNyIvPgoJCQkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaLlpIfku70tMTAiIGNsYXNzPSJzdDMxIiBjeD0iMTQxLjkiIGN5PSIxMSIgcng9IjguOCIgcnk9IjguNyIvPgoJCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMTFfIiBjbGFzcz0ic3QzMiIgZD0iTTExLjEsMTAuOWg3YzAuNywwLDEuMiwwLjYsMS4yLDEuMmwwLDBjMCwwLjctMC42LDEuMi0xLjIsMS4yaC03CgkJCQkJCQkJCWMtMC43LDAtMS4yLTAuNi0xLjItMS4ybDAsMEM5LjgsMTEuNSwxMC40LDEwLjksMTEuMSwxMC45eiIvPgoJCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMTJfIiBjbGFzcz0ic3QzMiIgZD0iTTEzNC45LDEwLjloN2MwLjcsMCwxLjIsMC42LDEuMiwxLjJsMCwwYzAsMC43LTAuNiwxLjItMS4yLDEuMmgtNwoJCQkJCQkJCQljLTAuNywwLTEuMi0wLjYtMS4yLTEuMmwwLDBDMTMzLjcsMTEuNSwxMzQuMywxMC45LDEzNC45LDEwLjl6Ii8+CgkJCQkJCQkJPHBhdGggaWQ9IuefqeW9ol8xM18iIGNsYXNzPSJzdDMzIiBkPSJNMTAuOSw5LjhoMTMxLjNjMC44LDAsMS41LDAuNywxLjUsMS41djAuNWMwLDAuOC0wLjcsMS41LTEuNSwxLjVIMTAuOQoJCQkJCQkJCQljLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtMC41QzkuNCwxMC41LDEwLjEsOS44LDEwLjksOS44eiIvPgoJCQkJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfM18iIGNsYXNzPSJzdDM0IiBkPSJNMTQyLjIsOS44YzAuNywwLDEuMywwLjUsMS41LDEuMkg5LjRjMC4yLTAuNywwLjctMS4yLDEuNS0xLjJIMTQyLjJ6Ii8+CgoJCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol8yNF8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iODMuODcwMyIgeTE9Ii04Ljc1ODciIHgyPSI4My44NzAzIiB5Mj0iLTcuNzczNCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxNTEuMDIxOSAwIDAgMjAuMDYwNiAtMTI1ODkuNzU3OCAxNzYuOTk5OSkiPgoJCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRDdEOERCIi8+CgkJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNEMEQzRDYiLz4KCQkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMTRfIiBjbGFzcz0ic3QzNSIgZD0iTTEwLjUsMWgxMzJjNS4yLDAsOS41LDQuMyw5LjUsOS41djEuMWMwLDUuMi00LjMsOS41LTkuNSw5LjVoLTEzMgoJCQkJCQkJCQljLTUuMiwwLTkuNS00LjMtOS41LTkuNXYtMS4xQzEsNS4zLDUuMywxLDEwLjUsMXoiLz4KCgkJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iXzI1XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI4My44MTI5IiB5MT0iLTEwLjM4NDQiIHgyPSI4My44MTI5IiB5Mj0iLTkuNDI0MiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxNDcuOTE4NCAwIDAgMTYuOTQ4NSAtMTIzMjAuOTE3IDE3OC41NTY0KSI+CgkJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNDRENFRDEiLz4KCQkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0VFRUZGMSIvPgoJCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQkJPHBhdGggaWQ9IuefqeW9ol8xNV8iIGNsYXNzPSJzdDM2IiBkPSJNMTAuMSwyLjZIMTQzYzQuMSwwLDcuNSwzLjQsNy41LDcuNVYxMmMwLDQuMS0zLjQsNy41LTcuNSw3LjVIMTAuMQoJCQkJCQkJCQljLTQuMSwwLTcuNS0zLjQtNy41LTcuNXYtMS45QzIuNiw1LjksNS45LDIuNiwxMC4xLDIuNnoiLz4KCQkJCQkJCTwvZz4KCgkJCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLnn6nlvaJfMjZfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjIxNi41NTc1IiB5MT0iLTQuMzU0IiB4Mj0iMjE2LjU1NzUiIHkyPSItMy4zNTQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNDEuODMzMyAwIDAgNDAuNDIyNyAtODkzNi40NjY4IDI5MS44NDkyKSI+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0YwRjFGMiIvPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFNkU4RUIiLz4KCQkJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJCQk8cGF0aCBpZD0i55+p5b2iXzE2XyIgY2xhc3M9InN0MzciIGQ9Ik0xMTUuOSwxMTUuOWgyNS44YzEuMSwwLDIsMC45LDIsMnYyOS43YzAsMS0wLjcsMS44LTEuNiwybC0zNy44LDYuOAoJCQkJCQkJCWMtMS4xLDAuMi0yLjEtMC41LTIuMy0xLjZjMC0wLjEsMC0wLjIsMC0wLjRWMTMwQzEwMS45LDEyMi4xLDEwOC4xLDExNS45LDExNS45LDExNS45eiIvPgoKCQkJCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9ol8yN18iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMjA0LjI3MzIiIHkxPSItNy45NzgiIHgyPSIyMDQuMjczMiIgeTI9Ii02Ljk3OCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxOC43MTQ5IDAgMCAyMi4wNjA2IC0zNzA4LjQwMzEgMjk1LjE2MTUpIj4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTZFOEVCIi8+CgkJCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q3RDlEQyIvPgoJCQkJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCQkJCTxwYXRoIGlkPSLnn6nlvaJfMTdfIiBjbGFzcz0ic3QzOCIgZD0iTTExNS4yLDExOS4yaDguN2wwLDB2MjAuOWwtMTguNywxLjJ2LTEyLjFDMTA1LjIsMTIzLjYsMTA5LjYsMTE5LjIsMTE1LjIsMTE5LjJ6Ii8+CgoJCQkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iXzI4XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxOTcuNDMzMiIgeTE9Ii04LjM5OCIgeDI9IjE5Ny40MzMyIiB5Mj0iLTcuMzk4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDE0LjMxMTQgMCAwIDIwLjk1NzYgLTI2OTIuMjk1MiAyOTUuMTU3OSkiPgoJCQkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFNkU4RUIiLz4KCQkJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRDdEOURDIi8+CgkJCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCQkJPHBhdGggaWQ9IuefqeW9ol8xOF8iIGNsYXNzPSJzdDM5IiBkPSJNMTI2LjEsMTE5LjJoMTMuM2MwLjYsMCwxLDAuNCwxLDFWMTM5bDAsMGwtMTQuMywxLjIKCQkJCQkJCQlDMTI2LjEsMTQwLjIsMTI2LjEsMTE5LjIsMTI2LjEsMTE5LjJ6Ii8+CgkJCQkJCTwvZz4KCQkJCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiF80XyIgY2xhc3M9InN0NDAiIGQ9Ik0xOTIuMiwxNjkuOGM4Ny41LTcuNywxNTYuOC0zMywxNTQuNy01Ni43Yy0yLjEtMjMuNi03NC43LTM2LjYtMTYyLjItMjkKCQkJCQkJCVMyOCwxMTcuMiwzMCwxNDAuOVMxMDQuNywxNzcuNSwxOTIuMiwxNjkuOHogTTE5Mi4yLDE2OC44Yy04Ni45LDcuNi0xNTkuMS01LjMtMTYxLjEtMjhzNjYuOS00OCwxNTMuOC01NS42CgkJCQkJCQlzMTU5LjEsNS4zLDE2MS4xLDI4QzM0Ny45LDEzNiwyNzksMTYxLjIsMTkyLjIsMTY4Ljh6Ii8+CgkJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfNV8iIGNsYXNzPSJzdDQwIiBkPSJNMjM1LjMsNTEuOWM0NS4xLTE3LjMsNzkuOS0yMS4yLDg4LTcuM2MxMiwyMC44LTQwLjIsNzMuNC0xMTYuNSwxMTcuNQoJCQkJCQkJcy0xNDgsNjMtMTYwLDQyLjFTODcsMTMwLjgsMTYzLjMsODYuN0MxODQuNiw3NC41LDIwNS42LDY0LjEsMjI1LDU2YzAuMSwwLjMsMC4zLDAuNiwwLjQsMC45QzIwNiw2NSwxODUsNzUuMywxNjMuNyw4Ny42CgkJCQkJCQlDODcuOSwxMzEuNSwzNiwxODMuOCw0Ny42LDIwMy44czgyLjgsMS4zLDE1OC43LTQyLjVTMzM0LDY1LjIsMzIyLjQsNDUuMmMtNy43LTEzLjQtNDIuMi05LjQtODYuOCw3LjgKCQkJCQkJCUMyMzUuNSw1Mi42LDIzNS40LDUyLjMsMjM1LjMsNTEuOUwyMzUuMyw1MS45eiIvPgoJCQkJCQk8ZyBpZD0i57yW57uELTkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCAzOC4wMDAwMDApIj4KCQkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaJfNV8iIGNsYXNzPSJzdDQxIiBjeD0iMzAzLjEiIGN5PSI1MC4yIiByeD0iMi44IiByeT0iMi44Ii8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2iXzZfIiBjbGFzcz0ic3Q0MSIgY3g9IjMxNi4zIiBjeT0iMS43IiByeD0iMS43IiByeT0iMS43Ii8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2iXzdfIiBjbGFzcz0ic3Q0MSIgY3g9IjEyMS42IiBjeT0iMTM2LjIiIHJ4PSIyLjgiIHJ5PSIyLjgiLz4KCQkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaJfOF8iIGNsYXNzPSJzdDQxIiBjeD0iMzMiIGN5PSI5MC40IiByeD0iMS4xIiByeT0iMS4xIi8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2iXzlfIiBjbGFzcz0ic3Q0MSIgY3g9IjI5MC41IiBjeT0iMTE0LjciIHJ4PSIxLjEiIHJ5PSIxLjEiLz4KCQkJCQkJCTxlbGxpcHNlIGlkPSLmpK3lnIblvaJfMTBfIiBjbGFzcz0ic3Q0MSIgY3g9IjcwLjQiIGN5PSIzNS4zIiByeD0iMi4yIiByeT0iMi4yIi8+CgkJCQkJCQk8ZWxsaXBzZSBpZD0i5qSt5ZyG5b2i5aSH5Lu9LTYiIGNsYXNzPSJzdDQxIiBjeD0iMS43IiBjeT0iNjguOSIgcng9IjEuNyIgcnk9IjEuNyIvPgoJCQkJCQkJPGVsbGlwc2UgaWQ9IuakreWchuW9ouWkh+S7vS01XzFfIiBjbGFzcz0ic3Q0MSIgY3g9IjIzMy44IiBjeT0iMTU5LjMiIHJ4PSIxLjciIHJ5PSIxLjciLz4KCQkJCQkJPC9nPgoJCQkJCTwvZz4KCQkJCTwvZz4KCQkJPC9nPgoJCTwvZz4KCTwvZz4KPC9nPgo8L3N2Zz4K",qf="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qxe2ZpbGw6dXJsKCPot6/lvoQtM18xXyk7fQoJLnN0MntmaWxsOnVybCgj5b2i54q257uT5ZCIXzJfKTt9Cgkuc3Qze2ZpbGw6I0M0QzZDQzt9Cjwvc3R5bGU+CjxsaW5lYXJHcmFkaWVudCBpZD0iRmlsbC0xXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjI0MS40NDI3IiB5MT0iODQuOTYwMSIgeDI9IjI0Ny41MTg0IiB5Mj0iNTAuNTAyOCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDI0MCkiPgoJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZCRkNGRCIvPgoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0YwRjJGNSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8cGF0aCBpZD0iRmlsbC0xIiBjbGFzcz0ic3QwIiBkPSJNMTg4LDE2NC43YzE2LjMtMy43LDM5LjctNS4zLDU1LjYtNC41czI5LjEsMy42LDMwLDIuOWMzLjItMi4xLDEwLTMsOS42LTIuMgoJYy0wLjMsMC44LTQuNywzLjQtMy4zLDMuOGMxLjQsMC40LDE1LjYsMiwyMS41LDMuM2M1LjksMS4yLDkuNywyLjQsMTEsMi40czMuMy0xLjcsMTEuOC0wLjljMC4yLDAuMy0xLjksMC40LTMuOCwxLjQKCXMtMy4zLDAuOS0zLjMsMS4xczEuMS0wLjMsMy4zLDEuMWMyLjIsMS40LDYuMSwxLjksNi4xLDIuMnMtNC45LDItMTMuMi0wLjZjLTIuMS0wLjctNyw1LjEtMjkuNSw2LjdzLTYwLjUsMi45LTYwLjUsMi45CglzMi4zLDIuOSw1LjYsMy44YzAuMiwwLjMtMS4zLDEuNC03LjgsMC4ycy05LjktMy45LTkuOS0zLjlzLTEyLjgtMC44LTE3LjYtMS42cy0xMC40LTIuOS0xNC4yLTMuM2MtMy44LTAuNC0yMS4xLTIuNC0xNC41LTYuOQoJQzE2NC43LDE3Mi41LDE3MS43LDE2OC40LDE4OCwxNjQuN3oiLz4KPGxpbmVhckdyYWRpZW50IGlkPSLot6/lvoQtM18xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI0MTIuNTYwNiIgeTE9Ii0zLjExMzMiIHgyPSI0MTIuNTYwNiIgeTI9Ii0yLjE3NzMiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTA1LjYgMCAwIDU2LjMyIC00MzMyNi40MDIzIDI3OC40MDAxKSI+Cgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTZFOEVCO3N0b3Atb3BhY2l0eTowLjk5MTciLz4KCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNENEQ2RDkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHBvbHlnb24gaWQ9Iui3r+W+hC0zIiBjbGFzcz0ic3QxIiBwb2ludHM9IjE4Ny4yLDEzNy42IDIxMC43LDEwMi40IDI2OS4zLDEwMi40IDI5Mi44LDEzNy42IDI5Mi44LDE1OC43IDE4Ny4yLDE1OC43ICIvPgo8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF8yXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI0MTIuNTYwNiIgeTE9Ii01IiB4Mj0iNDEyLjU2MDYiIHkyPSItNC4wMDc5IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEwNS42IDAgMCAzNS4yIC00MzMyNi40MDIzIDMxMy42MDA0KSI+Cgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRURFRkYyIi8+Cgk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRThFQUVEIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxwYXRoIGlkPSLlvaLnirbnu5PlkIgiIGNsYXNzPSJzdDIiIGQ9Ik0yMTIuNiwxNzIuOGgtMjMuNGMtMS4xLDAtMi0wLjktMi0ydi0zMy4yaDIzLjRjMS4xLDAsMiwwLjksMiwydjcuNGMwLDEuMSwwLjgsMS45LDEuOSwyCgloMC4xaDUwLjhjMS4xLDAsMS45LTAuOCwyLTEuOVYxNDd2LTcuNGMwLTEuMSwwLjktMiwyLTJoMjMuNHYzMy4yYzAsMS4xLTAuOSwyLTIsMmgtMjMuNEgyMTIuNnoiLz4KPHBhdGggaWQ9IuW9oueKtue7k+WQiF8xXyIgY2xhc3M9InN0MyIgZD0iTTE4Mi40LDE2OS42djhoOHYxLjZoLTkuNnYtOS42SDE4Mi40eiIvPgo8cGF0aCBpZD0i5b2i54q257uT5ZCI5aSH5Lu9IiBjbGFzcz0ic3QzIiBkPSJNMjg5LjYsMTc3LjZoOHYtOGgxLjZ2OS42aC05LjZWMTc3LjZ6Ii8+CjxnIGlkPSLnvJbnu4QtNCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTEuNjg4ODkwLCAxMS44NzQ5MzYpIHJvdGF0ZSgyMS4wMDAwMDApIHRyYW5zbGF0ZSgtOTEuNjg4ODkwLCAtMTEuODc0OTM2KSB0cmFuc2xhdGUoOTAuODg4ODkwLCAwLjY3NDkzNikiPgoKCQk8cmVjdCBpZD0i55+p5b2iXzFfIiB4PSIxODMuMSIgeT0iMjQuNSIgdHJhbnNmb3JtPSJtYXRyaXgoNS40NDk4OTllLTA2IDEgLTEgNS40NDk4OTllLTA2IDIwOS45Mzc5IC0xNTkuMzkzOCkiIGNsYXNzPSJzdDMiIHdpZHRoPSIzLjIiIGhlaWdodD0iMS42Ii8+CgoJCTxyZWN0IGlkPSLnn6nlvaLlpIfku70tNiIgeD0iMTgzLjEiIHk9IjMwLjkiIHRyYW5zZm9ybT0ibWF0cml4KDUuNDQ5ODk4ZS0wNiAxIC0xIDUuNDQ5ODk4ZS0wNiAyMTYuMzM3OCAtMTUyLjk5MzkpIiBjbGFzcz0ic3QzIiB3aWR0aD0iMy4yIiBoZWlnaHQ9IjEuNiIvPgoKCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTciIHg9IjE4My4xIiB5PSIzNy4zIiB0cmFuc2Zvcm09Im1hdHJpeCg1LjQ0OTg5OGUtMDYgMSAtMSA1LjQ0OTg5OGUtMDYgMjIyLjczNzkgLTE0Ni41OTM5KSIgY2xhc3M9InN0MyIgd2lkdGg9IjMuMiIgaGVpZ2h0PSIxLjYiLz4KCgkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS04IiB4PSIxODMuMSIgeT0iNDMuNyIgdHJhbnNmb3JtPSJtYXRyaXgoNS40NDk4OTllLTA2IDEgLTEgNS40NDk4OTllLTA2IDIyOS4xMzc5IC0xNDAuMTkzOSkiIGNsYXNzPSJzdDMiIHdpZHRoPSIzLjIiIGhlaWdodD0iMS42Ii8+CjwvZz4KPGcgaWQ9Iue8lue7hC0zIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNi4wMDAwMDAsIDI3LjIwMDAwMCkgcm90YXRlKC0zMi4wMDAwMDApIHRyYW5zbGF0ZSgtMzYuMDAwMDAwLCAtMjcuMjAwMDAwKSB0cmFuc2xhdGUoMzUuMjAwMDAwLCAxMi44MDAwMDApIj4KCgkJPHJlY3QgaWQ9IuefqeW9ol8yXyIgeD0iOTEuNyIgeT0iMTYxLjEiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDUuNDI2MzM3ZS0wNiAtNS40MjYzMzdlLTA2IC0xIDE4NS4wNzUzIDMyNS40NDM4KSIgY2xhc3M9InN0MyIgd2lkdGg9IjEuNiIgaGVpZ2h0PSIzLjIiLz4KCgkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS0yIiB4PSI5MS43IiB5PSIxNjcuNSIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgNS40MjYzMzZlLTA2IC01LjQyNjMzNmUtMDYgLTEgMTg1LjA3NTUgMzM4LjI0MzgpIiBjbGFzcz0ic3QzIiB3aWR0aD0iMS42IiBoZWlnaHQ9IjMuMiIvPgoKCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTMiIHg9IjkxLjciIHk9IjE3My45IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSA1LjQyNjMzNmUtMDYgLTUuNDI2MzM2ZS0wNiAtMSAxODUuMDc1NSAzNTEuMDQzOSkiIGNsYXNzPSJzdDMiIHdpZHRoPSIxLjYiIGhlaWdodD0iMy4yIi8+CgoJCTxyZWN0IGlkPSLnn6nlvaLlpIfku70tNCIgeD0iOTEuNyIgeT0iMTgwLjMiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDUuNDI2MzM2ZS0wNiAtNS40MjYzMzZlLTA2IC0xIDE4NS4wNzU1IDM2My44NDM4KSIgY2xhc3M9InN0MyIgd2lkdGg9IjEuNiIgaGVpZ2h0PSIzLjIiLz4KCgkJPHJlY3QgaWQ9IuefqeW9ouWkh+S7vS01IiB4PSI5MS43IiB5PSIxODYuNyIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgNS40MjYzMzdlLTA2IC01LjQyNjMzN2UtMDYgLTEgMTg1LjA3NTUgMzc2LjY0MzgpIiBjbGFzcz0ic3QzIiB3aWR0aD0iMS42IiBoZWlnaHQ9IjMuMiIvPgo8L2c+CjxjaXJjbGUgaWQ9IuakreWchuW9oiIgY2xhc3M9InN0MyIgY3g9IjI2OC44IiBjeT0iOTQuNCIgcj0iMS42Ii8+CjxjaXJjbGUgaWQ9IuakreWchuW9ouWkh+S7vSIgY2xhc3M9InN0MyIgY3g9IjIyNy4yIiBjeT0iMTIwIiByPSIxLjYiLz4KPC9zdmc+Cg==",bm="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8yXzFfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgj5b2i54q257uT5ZCIXzNfKTt9Cgkuc3Qxe2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfN18pO30KCS5zdDJ7ZmlsbDojQzRDNkNDO30KCS5zdDN7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF85Xyk7fQoJLnN0NHtmaWxsOnVybCgj5b2i54q257uT5ZCIXzEwXyk7ZmlsbC1vcGFjaXR5OjAuNjt9Cgkuc3Q1e2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfMTFfKTt9Cgkuc3Q2e2ZpbGw6dXJsKCPot6/lvoQtM18xXyk7fQoJLnN0N3tmaWxsOnVybCgj5b2i54q257uT5ZCIXzEyXyk7fQoJLnN0OHtmaWxsOnVybCgj6Lev5b6ELTNfNF8pO30KCS5zdDl7ZmlsbDp1cmwoI+W9oueKtue7k+WQiF8xM18pO30KCS5zdDEwe2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfMTVfKTt9Cgkuc3QxMXtmaWxsOiM5NzlCQTU7fQoJLnN0MTJ7ZmlsbDp1cmwoI1NWR0lEXzFfKTt9Cgkuc3QxM3tmaWxsOnVybCgjU1ZHSURfMl8pO30KCS5zdDE0e2ZpbGw6dXJsKCPlvaLnirbnu5PlkIhfMTZfKTt9Cgkuc3QxNXtmaWxsOnVybCgj5b2i54q257uT5ZCI5aSH5Lu9LTJfMl8pO30KCS5zdDE2e2ZpbGw6IzM0MzQzNDtmaWxsLW9wYWNpdHk6MC4xO30KPC9zdHlsZT4KPGcgaWQ9Iumhtemdoi0xIj4KCTxnIGlkPSJFeGNlcHRpb25feDJGX+W8guW4uOaPkOekul94MkZf54Gw55m95a+55q+UIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOTI0LjAwMDAwMCwgLTcwNy4wMDAwMDApIj4KCQk8ZyBpZD0i6ZyA6KaB55m75b2VIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg5MjQuMDAwMDAwLCA3MDcuMDAwMDAwKSI+CgoJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfM18iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTAxOS45MDA2IiB5MT0iLTguMzM1NCIgeDI9IjEwMTkuOTAwNiIgeTI9Ii03LjMzNjciIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMjAwLjAyNTcgMCAwIDU4LjMwNDcgLTIwMzc1OS41NDY5IDY2My45OTQ0KSI+CgkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRjVGNkY3Ii8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjdGOUZDIi8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMzBfIiBjbGFzcz0ic3QwIiBkPSJNMjQ5LjYsMTc4djguN2MwLDIuNSwyLjEsNC42LDQuNiw0LjZzNC41LDEuOSw0LjYsNC40djAuMnYwLjkKCQkJCWMxLjEtMC41LDIuMy0wLjgsMy41LTAuOGM0LjMsMCw3LjgsMy4yLDguNCw3LjNjMS0wLjgsMi4yLTEuMywzLjYtMS4zYzEuMiwwLDIuMywwLjQsMy4yLDFjMi4zLTQuMiw2LjctNywxMS44LTcKCQkJCWM3LjIsMCwxMyw1LjYsMTMuNSwxMi43YzQuOSwwLjcsMTAuMSwxLjUsMTMuMywyLjFjNy4yLDEuNSwxMS44LDMsMTMuNCwzczQtMi4xLDE0LjUtMS4xYzAuMiwwLjQtMi4zLDAuNS00LjcsMS43cy00LDEuMS00LDEuNAoJCQkJczEuMy0wLjQsNCwxLjNzNy41LDIuMyw3LjUsMi44cy02LjEsMi40LTE2LjItMC44Yy0yLjYtMC44LTguNiw2LjItMzYuMSw4LjJjLTI3LjYsMi03NC4yLDMuNS03NC4yLDMuNXMyLjgsMy42LDYuOSw0LjYKCQkJCWMwLjIsMC40LTEuNiwxLjctOS42LDAuMmMtNy45LTEuNS0xMi4yLTQuOC0xMi4yLTQuOHMtMTUuNy0xLTIxLjYtMmMtNS45LTEtMTIuNy0zLjUtMTcuNC00cy0yNS45LTMtMTcuOC04LjUKCQkJCWMwLDAsNy4yLTQuMiwyMy42LTguM2MyLTMuNSw1LjctNS45LDEwLjEtNS45YzIuNywwLDUuMiwwLjksNy4xLDIuNWMxLjQtMC4yLDIuOS0wLjQsNC40LTAuNmMxLjItMS4xLDIuOC0xLjgsNC41LTEuOAoJCQkJYzEuMiwwLDIuMywwLjMsMy4yLDAuOWwwLjUtMC4xYzEtMy45LDQuNS02LjgsOC43LTYuOGMyLjgsMCw1LjQsMS4zLDcsMy4zdi0yLjhjMC0yLjksMi40LTUuMyw1LjMtNS4zYzIuOCwwLDUuMi0yLjIsNS4zLTUuMQoJCQkJdi0wLjJ2LThMMjQ5LjYsMTc4TDI0OS42LDE3OHoiLz4KCgkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF83XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxMDAzLjIzODQiIHkxPSItNDMuNjgxOCIgeDI9IjEwMDMuOTQ2MSIgeTI9Ii00My42ODE4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDQ0IDAgMCAxMSAtNDM5MTkuMTk5MiA2NTUuNSkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UyRTNFNiIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMC40NTQzIiBzdHlsZT0ic3RvcC1jb2xvcjojRUNFRUYwIi8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTJFNEU2Ii8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMjlfIiBjbGFzcz0ic3QxIiBkPSJNMjE2LjgsMTY5LjVoNDR2NmMwLDIuOC05LjgsNS0yMiw1cy0yMi0yLjItMjItNWwwLDBMMjE2LjgsMTY5LjVMMjE2LjgsMTY5LjV6Ii8+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIjlpIfku71fMV8iIGNsYXNzPSJzdDIiIGQ9Ik0yMTYuOCwxNjVoNDR2NmMwLDIuOC05LjgsNS0yMiw1cy0yMi0yLjItMjItNWwwLDBMMjE2LjgsMTY1TDIxNi44LDE2NXoiLz4KCgkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF85XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI5NDcuNDg4OCIgeTE9Ii04LjM4NDgiIHgyPSI5NDguMTg2MyIgeTI9Ii04LjM4NDgiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTIgMCAwIDU0LjcgLTExMTc3LjIwMDIgNTgxLjI5OTEpIj4KCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMUYzRjUiLz4KCQkJCTxzdG9wICBvZmZzZXQ9IjAuNDU3NiIgc3R5bGU9InN0b3AtY29sb3I6I0Y0RjVGNyIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0VDRUVGMCIvPgoJCQk8L2xpbmVhckdyYWRpZW50PgoJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzI4XyIgY2xhc3M9InN0MyIgZD0iTTE5Ni44LDk1LjNjMS44LDAsNiw4LjMsNiwxMS43bDAsMHY0M2gtMTJ2LTQzdi0wLjJDMTkwLjksMTAzLjQsMTk1LDk1LjMsMTk2LjgsOTUuMwoJCQkJeiIvPgoKCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5b2i54q257uT5ZCIXzEwXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI5NDcuODQ2NCIgeTE9Ii0xOS44MjgyIiB4Mj0iOTQ3LjgyNyIgeTI9Ii0xOS42NDE4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEyIDAgMCAyNC4yIC0xMTA5My4yMDAyIDYwMi45OTkzKSI+CgkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0REMEQyO3N0b3Atb3BhY2l0eTowIi8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojQ0REMEQyIi8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwb2x5Z29uIGlkPSLlvaLnirbnu5PlkIhfMjZfIiBjbGFzcz0ic3Q0IiBwb2ludHM9IjI3NC44LDExNyAyNzQuOCwxMzIuNiAyNzkuNywxNDEuMiAyODYuOCwxMzUuNCAyODYuOCwxMjYgCQkJIi8+CgoJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLlvaLnirbnu5PlkIhfMTFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9Ijk0OC4xNzE2IiB5MT0iLTguMzg0OCIgeDI9Ijk0Ny40NzQxIiB5Mj0iLTguMzg0OCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxMiAwIDAgNTQuNyAtMTEwOTMuMjAwMiA1ODEuMjk5MSkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0YxRjNGNSIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMC40NTc2IiBzdHlsZT0ic3RvcC1jb2xvcjojRjRGNUY3Ii8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRUNFRUYwIi8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMjVfIiBjbGFzcz0ic3Q1IiBkPSJNMjgwLjgsOTUuM2MtMS44LDAtNiw4LjMtNiwxMS43bDAsMHY0M2gxMnYtNDN2LTAuMgoJCQkJQzI4Ni42LDEwMy40LDI4Mi41LDk1LjMsMjgwLjgsOTUuM3oiLz4KCQkJPGcgaWQ9Iue8lue7hF8zXyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODAuNzYwNDk5LCA3Ny4wMDAwMDApIj4KCgkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLot6/lvoQtM18xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI1MTQuMzE0MSIgeTE9Ii02Ljg5MDUiIHgyPSI1MTQuMzk0MyIgeTI9Ii02LjUyMDQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMzYgMCAwIDY2IC0xODM5NS43MzI0IDUwNikiPgoJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNFOEU5RUIiLz4KCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRDdEOERCIi8+CgkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJPHBhdGggaWQ9Iui3r+W+hC0zXzNfIiBjbGFzcz0ic3Q2IiBkPSJNMTM1LDIwYy0xLjQsNy00LjUsMTMuMy05LjQsMTkuMWMtNy4zLDguNy0xNS4yLDEzLjYtMTguNCwyMy44CgkJCQkJYy0yLjEsNi44LTMuMiwxMi45LTMuMiwxOC4zbDMyLjEsNC44bDMuOS00LjhMMTM1LDIweiIvPgoKCQkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF8xMl8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iNDY5LjEyNSIgeTE9Ii02Ljk4IiB4Mj0iNDY5LjEyNjMiIHkyPSItNi45NjgxIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEzIDAgMCA2NC41IC01OTY1LjY4MTYgNTA3LjUpIj4KCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRUJFREVGO3N0b3Atb3BhY2l0eTowIi8+CgkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0M4Q0FDQyIvPgoJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMjRfIiBjbGFzcz0ic3Q3IiBkPSJNMTM1LjIsMjEuNWw0LjgsNTkuN2wtMy45LDQuOGwtOS4xLTEuNGwzLjMtNTIuMmMyLTMuNSwzLjQtNy4xLDQuNC0xMC45CgkJCQkJQzEzNC43LDIxLjUsMTM1LjIsMjEuNSwxMzUuMiwyMS41eiIvPgoJCQk8L2c+CgoJCQkJPGcgaWQ9Iue8lue7hF8yXyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTcxLjAwMDAwMCwgMTEwLjAwMDAwMCkgc2NhbGUoLTEsIDEpIHRyYW5zbGF0ZSgtMTcxLjAwMDAwMCwgLTExMC4wMDAwMDApIHRyYW5zbGF0ZSgxNTMuMDAwMDAwLCA3Ny4wMDAwMDApIj4KCgkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLot6/lvoQtM180XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIyNi4xMTk1IiB5MT0iLTYuNzUwNiIgeDI9IjI2LjE5OTgiIHkyPSItNi4zODA1IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDM2IDAgMCA2NiAtMTAyNCA1MDYpIj4KCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRThFOUVCIi8+CgkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0Q3RDhEQiIvPgoJCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJCTxwYXRoIGlkPSLot6/lvoQtM18yXyIgY2xhc3M9InN0OCIgZD0iTS03MywyMGMtMS40LDctNC41LDEzLjMtOS40LDE5LjFjLTcuMyw4LjctMTUuMiwxMy42LTE4LjQsMjMuOAoJCQkJCWMtMi4xLDYuOC0zLjIsMTIuOS0zLjIsMTguM2wzMi4xLDQuOGwzLjktNC44TC03MywyMHoiLz4KCQkJPC9nPgoKCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5b2i54q257uT5ZCIXzEzXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI2NTkuNjQ1MyIgeTE9Ii02Ljk4IiB4Mj0iNjU5LjY0NjUiIHkyPSItNi45NjgiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoLTEzIDAgMCA2NC41IDg4MzkuMjE0OCA1ODQuNSkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VCRURFRjtzdG9wLW9wYWNpdHk6MCIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0M4Q0FDQyIvPgoJCQk8L2xpbmVhckdyYWRpZW50PgoJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzJfIiBjbGFzcz0ic3Q5IiBkPSJNMjYxLjYsOTguNWwtNC44LDU5LjdsMy45LDQuOGw5LjEtMS40bC0zLjMtNTIuMmMtMi0zLjUtMy40LTcuMS00LjQtMTAuOQoJCQkJQzI2Mi4xLDk4LjUsMjYxLjYsOTguNSwyNjEuNiw5OC41eiIvPgoKCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5b2i54q257uT5ZCIXzE1XyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIxMDA0Ljk4MTEiIHkxPSItMi42NTU4IiB4Mj0iMTAwNS42ODg3IiB5Mj0iLTIuNjU1OCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg0OCAwIDAgMTU0IC00ODAxNy4xOTkyIDUwNikiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VBRUJFRCIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMC40NTQzIiBzdHlsZT0ic3RvcC1jb2xvcjojRjRGNUY3Ii8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRUVGMEYyIi8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMThfIiBjbGFzcz0ic3QxMCIgZD0iTTIzOC44LDIwYzcsMCwyNCwyNy43LDI0LDQxbDAsMHYxMDZjMCwwLjEsMCwwLjIsMCwwLjNzMCwwLjIsMCwwLjIKCQkJCWMwLDMuNi0xMC43LDYuNS0yNCw2LjVzLTI0LTIuOS0yNC02LjVjMC0wLjEsMC0wLjIsMC0wLjJjMC0wLjEsMC0wLjIsMC0wLjNWNjF2LTAuNEMyMTUuMSw0Ny4yLDIzMS44LDIwLDIzOC44LDIweiIvPgoJCQk8Zz4KCQkJCTxjaXJjbGUgaWQ9IuakreWchuW9ol83XyIgY2xhc3M9InN0MTEiIGN4PSIyMzguOCIgY3k9IjcxIiByPSI5LjUiLz4KCgkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8xXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSI5NzYuMDc5IiB5MT0iLTI1LjMzMzQiIHgyPSI5NzYuMDc5IiB5Mj0iLTI0LjgyNDQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMTkgMCAwIDE5IC0xODMwNi42OTkyIDU0Ny41KSI+CgkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UxRTJFNiIvPgoJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMEYyRjUiLz4KCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQk8cGF0aCBjbGFzcz0ic3QxMiIgZD0iTTIzOC44LDgxYy01LjUsMC0xMC00LjUtMTAtMTBzNC41LTEwLDEwLTEwczEwLDQuNSwxMCwxMFMyNDQuMyw4MSwyMzguOCw4MXogTTIzOC44LDYyYy01LDAtOSw0LTksOQoJCQkJCXM0LDksOSw5czktNCw5LTlTMjQzLjgsNjIsMjM4LjgsNjJ6Ii8+CgkJCTwvZz4KCQkJPGc+CgkJCQk8Y2lyY2xlIGlkPSLmpK3lnIblvaLlpIfku70tMTFfMV8iIGNsYXNzPSJzdDExIiBjeD0iMjM4LjgiIGN5PSI4OSIgcj0iMy41Ii8+CgoJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0iU1ZHSURfMl8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iODkzLjA3MTUiIHkxPSItNjkuMjA0OCIgeDI9Ijg5My4wNzE1IiB5Mj0iLTY4LjY1MjIiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNyAwIDAgNyAtNjAxMi43MDAyIDU3MS41KSI+CgkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UxRTJFNiIvPgoJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMEYyRjUiLz4KCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQk8cGF0aCBjbGFzcz0ic3QxMyIgZD0iTTIzOC44LDkzYy0yLjIsMC00LTEuOC00LTRzMS44LTQsNC00czQsMS44LDQsNFMyNDEsOTMsMjM4LjgsOTN6IE0yMzguOCw4NmMtMS43LDAtMywxLjMtMywzczEuMywzLDMsMwoJCQkJCXMzLTEuMywzLTNTMjQwLjUsODYsMjM4LjgsODZ6Ii8+CgkJCTwvZz4KCgkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiF8xNl8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMTAwNC45ODExIiB5MT0iLTcwLjk3MDYiIHgyPSIxMDA1LjY4NTQiIHkyPSItNzAuOTcwNiIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg0OCAwIDAgNi44IC00ODAxNy4xOTkyIDYyNC4wMDA0KSI+CgkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRTJFM0U2Ii8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIwLjQ3NjYiIHN0eWxlPSJzdG9wLWNvbG9yOiNGQkZERkYiLz4KCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNFMkU0RTYiLz4KCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiF8xNF8iIGNsYXNzPSJzdDE0IiBkPSJNMjYyLjgsMTM4djIuNWMtMy45LDIuNS0xMy4yLDQuMy0yNCw0LjNzLTIwLjEtMS44LTI0LTQuM1YxMzhsMCwwCgkJCQljMC42LDIuOCwxMS4xLDUuNSwyNCw1LjVTMjYyLjIsMTQwLjgsMjYyLjgsMTM4TDI2Mi44LDEzOHoiLz4KCgkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuW9oueKtue7k+WQiOWkh+S7vS0yXzJfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjEwMDQuOTgxMSIgeTE9Ii03MC45NzA2IiB4Mj0iMTAwNS42ODU0IiB5Mj0iLTcwLjk3MDYiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoNDggMCAwIDYuOCAtNDgwMTcuMTk5MiA2MjkuMDAwNCkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0UyRTNFNiIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMC40NzY2IiBzdHlsZT0ic3RvcC1jb2xvcjojRkJGREZGIi8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTJFNEU2Ii8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIjlpIfku70tMl8xXyIgY2xhc3M9InN0MTUiIGQ9Ik0yNjIuOCwxNDN2Mi41Yy0zLjksMi41LTEzLjIsNC4zLTI0LDQuM3MtMjAuMS0xLjgtMjQtNC4zVjE0M2wwLDAKCQkJCWMwLjYsMi44LDExLjEsNS41LDI0LDUuNVMyNjIuMiwxNDUuOCwyNjIuOCwxNDNMMjYyLjgsMTQzeiIvPgoJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCIXzhfIiBjbGFzcz0ic3QxNiIgZD0iTTI2Mi44LDczYzQzLjItOC42LDc3LjEtNi4zLDgwLjksNi43YzQuNiwxNS45LTM3LjQsNDEuOS05My42LDU4LjEKCQkJCXMtMTA1LjYsMTYuMy0xMTAuMiwwLjRjLTQtMTQuMSwyOC40LTM2LjEsNzQuOS01Mi4xdjEuMWMtNDUuOCwxNS45LTc3LjcsMzcuNS03My45LDUwLjhjNC4zLDE1LjEsNTMuMiwxNC45LDEwOC45LTEuMQoJCQkJczk3LjMtNDEuNyw5Mi45LTU2LjhjLTMuNS0xMi40LTM3LjItMTQuNS03OS45LTZWNzNMMjYyLjgsNzN6Ii8+CgkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMV8iIGNsYXNzPSJzdDE2IiBkPSJNMTA1LjIsNzZjMy44LTE0LDUwLjctMTQsMTA5LjUtMS4xdjFjLTU4LjMtMTIuOC0xMDUtMTIuOS0xMDguNiwwLjMKCQkJCWMtNCwxNS4xLDQ5LjEsNDMuMiwxMTguNSw2MS44czEyOS41LDIwLjksMTMzLjYsNS44YzMuNi0xMy40LTM3LjctMzctOTUuNi01NS4xdi0xLjFjNTguNiwxOC4zLDEwMC4zLDQyLjIsOTYuNSw1Ni40CgkJCQljLTQuMywxNi02NC42LDEzLjctMTM0LjgtNS4xUzEwMSw5MiwxMDUuMiw3NnoiLz4KCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzZfIiBjbGFzcz0ic3QyIiBjeD0iMzE3LjgiIGN5PSIxMDkiIHI9IjIiLz4KCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzVfIiBjbGFzcz0ic3QyIiBjeD0iMTE3LjMiIGN5PSIxMjEuNSIgcj0iMS41Ii8+CgkJCTxjaXJjbGUgaWQ9IuakreWchuW9ol80XyIgY2xhc3M9InN0MiIgY3g9IjI4MS44IiBjeT0iNTgiIHI9IjEiLz4KCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzNfIiBjbGFzcz0ic3QyIiBjeD0iMTkxLjgiIGN5PSIxNjQiIHI9IjEiLz4KCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iXzFfIiBjbGFzcz0ic3QyIiBjeD0iMzUxLjgiIGN5PSIxNTAiIHI9IjIiLz4KCQk8L2c+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==",ym="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuWbvuWxgl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgNDgwIDI0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDgwIDI0MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjRmlsbC0xXzFfKTt9Cgkuc3Qxe2ZpbGw6I0M0QzZDQzt9Cgkuc3Qye2ZpbGw6dXJsKCPnn6nlvaItMl8xXyk7fQoJLnN0M3tmaWxsOnVybCgj55+p5b2iXzZfKTt9Cgkuc3Q0e2ZpbGw6I0RDREVFMDt9Cgkuc3Q1e2ZpbGw6I0QxRDNENjt9Cgkuc3Q2e2ZpbGw6dXJsKCPnn6nlvaItM18xXyk7fQoJLnN0N3tmaWxsOiNFNUU3RUM7fQoJLnN0OHtmaWxsOiNEQ0RERTA7fQoJLnN0OXtmaWxsOnVybCgj6Lev5b6ELTEzXzFfKTt9Cgkuc3QxMHtmaWxsOnVybCgj5qSt5ZyG5b2iXzNfKTtzdHJva2U6dXJsKCPmpK3lnIblvaJfNF8pO30KCS5zdDExe2ZpbGw6dXJsKCPmpK3lnIblvaJfNV8pO3N0cm9rZTp1cmwoI+akreWchuW9ol82Xyk7fQoJLnN0MTJ7ZmlsbDojRkZGRkZGO30KPC9zdHlsZT4KPGcgaWQ9Iumhtemdoi0xIj4KCTxnIGlkPSJFeGNlcHRpb25feDJGX+W8guW4uOaPkOekuiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTg2OS4wMDAwMDAsIC0yOTE4LjAwMDAwMCkiPgoJCTxnIGlkPSLmkJzntKLkuLrnqboiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg2OS4wMDAwMDAsIDI5MTguMDAwMDAwKSI+CgkJCTxsaW5lYXJHcmFkaWVudCBpZD0iRmlsbC0xXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjI0My4wNDY0IiB5MT0iMTY3Ljk3OTMiIHgyPSIyNDUuODA3MSIgeTI9IjE5NC4yNDU2Ij4KCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNGQkZDRkQiLz4KCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMkY0RjciLz4KCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJPHBhdGggaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgZD0iTTE5My4xLDE3NC4yYzE0LjgtMy4zLDM2LTQuOCw1MC41LTQuMWMxNC40LDAuNywyNi40LDMuMywyNy4zLDIuN2MyLjktMS45LDktMi44LDguNy0yCgkJCQljLTAuMywwLjctNC4zLDMuMS0zLDMuNGMxLjMsMC40LDE0LjEsMS45LDE5LjUsM2M1LjMsMS4xLDguOCwyLjIsOS45LDIuMmMxLjIsMCwzLTEuNiwxMC43LTAuOGMwLjEsMC4zLTEuNywwLjQtMy40LDEuMwoJCQkJYy0xLjcsMC45LTMsMC44LTMsMXMxLTAuMywzLDFzNS41LDEuNyw1LjUsMnMtNC41LDEuOC0xMi0wLjZjLTEuOS0wLjYtNi4zLDQuNi0yNi44LDYuMXMtNTUsMi42LTU1LDIuNnMyLjEsMi43LDUuMSwzLjQKCQkJCWMwLjIsMC4zLTEuMiwxLjMtNy4xLDAuMmMtNS45LTEuMS05LTMuNi05LTMuNnMtMTEuNi0wLjctMTYtMS41Yy00LjQtMC43LTkuNC0yLjYtMTIuOS0zcy0xOS4yLTIuMi0xMy4yLTYuMwoJCQkJQzE3MiwxODEuMiwxNzguMywxNzcuNSwxOTMuMSwxNzQuMnoiLz4KCQkJPHBhdGggaWQ9IuW9oueKtue7k+WQiCIgY2xhc3M9InN0MSIgZD0iTTE5My4xLDE3Ny40djkuNGg5LjR2MS45aC0xMS4ydi0xMS4yTDE5My4xLDE3Ny40TDE5My4xLDE3Ny40eiIvPgoJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCI5aSH5Lu9IiBjbGFzcz0ic3QxIiBkPSJNMjAwLjYsNjQuOWgtOS40djkuNGgtMS45di05LjRsMCwwVjYzaDExLjJMMjAwLjYsNjQuOUwyMDAuNiw2NC45eiIvPgoJCQk8cGF0aCBpZD0i5b2i54q257uT5ZCI5aSH5Lu9LTIiIGNsYXNzPSJzdDEiIGQ9Ik0yODguOCw3NC4ydi05LjRoLTkuNFY2M2g5LjRsMCwwaDEuOXYxMS4ySDI4OC44eiIvPgoKCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iLTJfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iNDExLjY3NjgiIHkxPSItMS42MDY2IiB4Mj0iNDExLjY3NjgiIHkyPSItMC42NzA3IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDg2LjI1IDAgMCAxMDguNzUgLTM1MjY3LjEyNSAyNDYuNSkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VCRURGMDtzdG9wLW9wYWNpdHk6MC45OTE3Ii8+CgkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRTFFM0U2Ii8+CgkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCTxwYXRoIGlkPSLnn6nlvaItMiIgY2xhc3M9InN0MiIgZD0iTTE5Ny45LDcwLjVoODQuMmMwLjYsMCwxLDAuNCwxLDF2MTA2LjhjMCwwLjYtMC40LDEtMSwxaC04NC4yYy0wLjYsMC0xLTAuNC0xLTFWNzEuNQoJCQkJQzE5Ni45LDcwLjksMTk3LjMsNzAuNSwxOTcuOSw3MC41eiIvPgoKCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i55+p5b2iXzZfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjQxMC42NjE0IiB5MT0iLTEuODc3MyIgeDI9IjQxMC42NjE0IiB5Mj0iLTAuODg4OCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg3MS4yNSAwIDAgOTMuNzUgLTI5MDE5LjYyNSAyNTQpIj4KCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNGRkZGRkYiLz4KCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGMkY0RjciLz4KCQkJPC9saW5lYXJHcmFkaWVudD4KCQkJPHJlY3QgaWQ9IuefqeW9ol8xXyIgeD0iMjA0LjQiIHk9Ijc4IiBjbGFzcz0ic3QzIiB3aWR0aD0iNzEuMiIgaGVpZ2h0PSI5My44Ii8+CgkJCTxyZWN0IGlkPSLnn6nlvaJfMl8iIHg9IjIxOS40IiB5PSI4MS44IiBjbGFzcz0ic3Q0IiB3aWR0aD0iNDEuMiIgaGVpZ2h0PSIxLjkiLz4KCQkJPHJlY3QgaWQ9IuefqeW9ol8zXyIgeD0iMjA0LjQiIHk9IjE3MS44IiBjbGFzcz0ic3Q1IiB3aWR0aD0iNzEuMiIgaGVpZ2h0PSIxLjkiLz4KCgkJCQk8bGluZWFyR3JhZGllbnQgaWQ9IuefqeW9oi0zXzFfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjQwNi40MTUyIiB5MT0iLTExLjczMzQiIHgyPSI0MDYuNDE1MiIgeTI9Ii0xMC43NDEzIiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDQxLjI1IDAgMCAxNSAtMTY1MjQuNjI1IDI0Mi43NSkiPgoJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0VERUZGMiIvPgoJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0U4RUFFRCIvPgoJCQk8L2xpbmVhckdyYWRpZW50PgoJCQk8cmVjdCBpZD0i55+p5b2iLTMiIHg9IjIxOS40IiB5PSI2Ni44IiBjbGFzcz0ic3Q2IiB3aWR0aD0iNDEuMiIgaGVpZ2h0PSIxNSIvPgoJCQk8ZyBpZD0i57yW57uELTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyMy4xMjUwMDAsIDk4LjYyNTAwMCkiPgoJCQkJPHJlY3QgaWQ9IuefqeW9ol80XyIgY2xhc3M9InN0MSIgd2lkdGg9IjMuOCIgaGVpZ2h0PSIxLjkiLz4KCQkJCTxyZWN0IGlkPSLnn6nlvaLlpIfku70iIHg9IjcuNSIgY2xhc3M9InN0MSIgd2lkdGg9IjMuOCIgaGVpZ2h0PSIxLjkiLz4KCQkJCTxyZWN0IGlkPSLnn6nlvaLlpIfku70tMiIgeD0iMTUiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMS45Ii8+CgkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTMiIHg9IjIyLjUiIGNsYXNzPSJzdDEiIHdpZHRoPSIzLjgiIGhlaWdodD0iMS45Ii8+CgkJCQk8cmVjdCBpZD0i55+p5b2i5aSH5Lu9LTQiIHg9IjMwIiBjbGFzcz0ic3QxIiB3aWR0aD0iMy44IiBoZWlnaHQ9IjEuOSIvPgoJCQk8L2c+CgkJCTxnIGlkPSLnvJbnu4QtNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjI4Ljc1MDAwMCwgMTEzLjYyNTAwMCkiPgoJCQkJPGNpcmNsZSBpZD0i5qSt5ZyG5b2iIiBjbGFzcz0ic3Q3IiBjeD0iMjQuNCIgY3k9IjI2LjIiIHI9IjI0LjQiLz4KCQkJCTxwYXRoIGlkPSLot6/lvoQtMTIiIGNsYXNzPSJzdDciIGQ9Ik0zOSw0NWwzLjEsMy4yYy0wLjYsMC44LTAuNiwxLjUsMCwyLjJzMi4yLDIuNSw0LjcsNS4zdi03LjVsLTYuMS01TDM5LDQ1eiIvPgoKCQkJCQk8ZyBpZD0i57yW57uELTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUwLjIyNjMxNywgNTEuNzA5MDc3KSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC01MC4yMjYzMTcsIC01MS43MDkwNzcpIHRyYW5zbGF0ZSg0NC42MDEzMTcsIDM2LjcwOTA3NykiPgoKCQkJCQkJPHJlY3QgaWQ9IuefqeW9ol81XyIgeD0iMy44IiB5PSIwIiB0cmFuc2Zvcm09Im1hdHJpeCgtMSA1LjA3MDM2M2UtMDYgLTUuMDcwMzYzZS0wNiAtMSAxMS40IDkuMzUpIiBjbGFzcz0ic3Q4IiB3aWR0aD0iMy43IiBoZWlnaHQ9IjkuNCIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLot6/lvoQtMTNfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTEwOS4zOTE1IiB5MT0iLTU1LjkzODMiIHgyPSItMTA5LjU1NzgiIHkyPSItNTUuODkwNSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCg5LjIxMjkgMCAwIDIyLjUgMTAxMy45Mjg1IDEyNzcuMjgxKSI+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNEN0Q4REIiLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6I0JFQkZDMiIvPgoJCQkJCTwvbGluZWFyR3JhZGllbnQ+CgkJCQkJPHBhdGggaWQ9Iui3r+W+hC0xMyIgY2xhc3M9InN0OSIgZD0iTTMuNyw1LjdoNGMwLjUsMCwxLDAuNCwxLDAuOWwxLjUsMjAuNWMwLDAuNi0wLjQsMS0wLjksMS4xYzAsMCwwLDAtMC4xLDBIMgoJCQkJCQljLTAuNiwwLTEtMC40LTEtMXYtMC4xTDIuNyw2LjZDMi43LDYuMSwzLjIsNS43LDMuNyw1Ljd6Ii8+CgkJCQk8L2c+CgkJCQk8ZyBpZD0i57yW57uELTUiPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLmpK3lnIblvaJfM18iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTQ5LjcxMTUiIHkxPSItMy42ODU5IiB4Mj0iLTQ5LjcxMTUiIHkyPSItMi42ODU5IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDQ3Ljc1IDAgMCA0Ny43NSAyMzk4LjEyNSAxNzYuNSkiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxLjUzMDgyOGUtMDMiIHN0eWxlPSJzdG9wLWNvbG9yOiNERERFRTAiLz4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMC45OTgiIHN0eWxlPSJzdG9wLWNvbG9yOiNDM0M1QzciLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLmpK3lnIblvaJfNF8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTQ5LjcxMTUiIHkxPSItMy42ODU4IiB4Mj0iLTQ5LjcxMTUiIHkyPSItMi43MDU0IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDQ3Ljc1IDAgMCA0Ny43NSAyMzk4LjEyNSAxNzYuNSkiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRERERUUwIi8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNCRUMwQzIiLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxjaXJjbGUgaWQ9IuakreWchuW9ol8xXyIgY2xhc3M9InN0MTAiIGN4PSIyNC40IiBjeT0iMjQuNCIgcj0iMjMuOSIvPgoKCQkJCQkJPGxpbmVhckdyYWRpZW50IGlkPSLmpK3lnIblvaJfNV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTUyLjM5NjYiIHkxPSItNC44MjIiIHgyPSItNTIuMzk2NiIgeTI9Ii0zLjgzOCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgzNi41IDAgMCAzNi41IDE5MzYuODc1IDE4Mi4xMjUpIj4KCQkJCQkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0ZFRkVGRSIvPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojRjJGNEY3Ii8+CgkJCQkJPC9saW5lYXJHcmFkaWVudD4KCgkJCQkJCTxsaW5lYXJHcmFkaWVudCBpZD0i5qSt5ZyG5b2iXzZfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9Ii01Mi4zOTY2IiB5MT0iLTQuODIyIiB4Mj0iLTUyLjM5NjYiIHkyPSItMy44Mzk4IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDM2LjUgMCAwIDM2LjUgMTkzNi44NzUgMTgyLjEyNSkiPgoJCQkJCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojRjNGNEY1Ii8+CgkJCQkJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiNGM0Y1RjciLz4KCQkJCQk8L2xpbmVhckdyYWRpZW50PgoJCQkJCTxjaXJjbGUgaWQ9IuakreWchuW9ol8yXyIgY2xhc3M9InN0MTEiIGN4PSIyNC40IiBjeT0iMjQuNCIgcj0iMTguMiIvPgoJCQkJCTxwYXRoIGlkPSLlvaLnirbnu5PlkIhfMV8iIGNsYXNzPSJzdDEyIiBkPSJNMjMuNSwxMi4zYzUuOCwwLDEwLjksMy4zLDEzLjQsOC4yYy0yLjUtMS42LTUuNS0yLjYtOC43LTIuNmMtNCwwLTcuNywxLjUtMTAuNSw0CgkJCQkJCUwxNCwxNS43QzE2LjYsMTMuNiwxOS45LDEyLjMsMjMuNSwxMi4zeiIvPgoJCQkJPC9nPgoJCQkJPHBvbHlnb24gaWQ9Iui3r+W+hC0xNCIgY2xhc3M9InN0NSIgcG9pbnRzPSI0Ni45LDUzLjQgNDYuOSw1NS42IDU0LjQsNjQuNCA1NC40LDYyLjMgCQkJCSIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=",Cm=a.defineComponent({name:"Exception",props:{type:g.commonType(["404","403","500","building","empty","search-empty","login"],"type").def("404"),scene:g.commonType(["page","part"],"scene").def("page"),title:g.string,description:g.string},setup(e,{slots:t}){const n={403:hm,404:gm,500:mm,building:pm,empty:qf,"search-empty":ym,login:bm},i=()=>{const d=n[e.type]?n[e.type]:qf;return a.createVNode("div",{class:"bk-exception-img"},[a.createVNode("img",{class:"exception-image",src:d,alt:"type"},null)])},s=()=>Lr.isFunction(t.title)?a.createVNode("div",{class:"bk-exception-title"},[t.title()]):e.title?a.createVNode("div",{class:"bk-exception-title"},[e.title]):null,o=()=>Lr.isFunction(t.description)?a.createVNode("div",{class:"bk-exception-description"},[t.description()]):e.description?a.createVNode("div",{class:"bk-exception-description"},[e.description]):null,c=()=>Lr.isFunction(t.default)?a.createVNode("div",{class:"bk-exception-footer"},[t.default()]):null;return()=>{const d=ze({"bk-exception":!0,[`bk-exception-${e.scene}`]:!0});return a.createVNode("div",{class:d},[i(),s(),o(),c()])}}});const Fs=He(Cm);var vm=a.defineComponent({name:"FixedNavbar",props:{navItems:g.array.def([]),extCls:g.string.def(""),position:g.oneOf(["middle","top","bottom"]).def("middle"),modelValue:g.bool.def(!0)},emits:["update:modelValue","click"],setup(e,{emit:t}){const n=e.navItems.map(o=>Object.assign({tooltip:{disabled:!0},action:()=>{},icon:"",text:""},o)),i=Rn.getModalNextIndex(),s=o=>{t("click",o),o.action()};return()=>e.modelValue&&a.createVNode("div",{class:`bk-fixed-navbar ${e.extCls} ${e.position}`,style:{zIndex:i}},[n.map(o=>a.createVNode("div",{class:"fixed-navbar-item",onClick:s.bind(this,o)},[o.icon?a.createVNode("i",{class:`${o.icon} icon`},null):"",o.text?a.createVNode("span",{class:"text"},[o.text]):""]))])}});const e0=He(vm);var wm=a.defineComponent({name:"Link",props:{theme:g.theme(["danger","success","primary","warning","default"]).def("default"),href:g.string.def(""),disabled:g.bool.def(!1),underline:g.bool.def(!1),target:g.string.def("_self")},setup(e,{emit:t}){return{handleClick:i=>{if(e.disabled)return i.preventDefault(),!1;t("click",i)}}},render(){var t,n;const e=ze({"is-disabled":this.disabled,"has-underline":this.underline},`${this.theme} bk-link`);return a.createVNode("a",{href:this.href,target:this.target,class:e,onClick:this.handleClick},[a.createVNode("span",null,[(n=(t=this.$slots).default)==null?void 0:n.call(t)])])}});const t0=He(wm);var n0=!1,la,gc,mc,Gs,Zs,i0,Ys,pc,bc,yc,a0,Cc,vc,r0,s0;function $t(){if(!n0){n0=!0;var e=navigator.userAgent,t=/(?:MSIE.(\d+\.\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\d+\.\d+))|(?:Opera(?:.+Version.|.)(\d+\.\d+))|(?:AppleWebKit.(\d+(?:\.\d+)?))|(?:Trident\/\d+\.\d+.*rv:(\d+\.\d+))/.exec(e),n=/(Mac OS X)|(Windows)|(Linux)/.exec(e);if(Cc=/\b(iPhone|iP[ao]d)/.exec(e),vc=/\b(iP[ao]d)/.exec(e),yc=/Android/i.exec(e),r0=/FBAN\/\w+;/i.exec(e),s0=/Mobile/i.exec(e),a0=!!/Win64/.exec(e),t){la=t[1]?parseFloat(t[1]):t[5]?parseFloat(t[5]):NaN,la&&document&&document.documentMode&&(la=document.documentMode);var i=/(?:Trident\/(\d+.\d+))/.exec(e);i0=i?parseFloat(i[1])+4:la,gc=t[2]?parseFloat(t[2]):NaN,mc=t[3]?parseFloat(t[3]):NaN,Gs=t[4]?parseFloat(t[4]):NaN,Gs?(t=/(?:Chrome\/(\d+\.\d+))/.exec(e),Zs=t&&t[1]?parseFloat(t[1]):NaN):Zs=NaN}else la=gc=mc=Zs=Gs=NaN;if(n){if(n[1]){var s=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(e);Ys=s?parseFloat(s[1].replace("_",".")):!0}else Ys=!1;pc=!!n[2],bc=!!n[3]}else Ys=pc=bc=!1}}var wc={ie:function(){return $t()||la},ieCompatibilityMode:function(){return $t()||i0>la},ie64:function(){return wc.ie()&&a0},firefox:function(){return $t()||gc},opera:function(){return $t()||mc},webkit:function(){return $t()||Gs},safari:function(){return wc.webkit()},chrome:function(){return $t()||Zs},windows:function(){return $t()||pc},osx:function(){return $t()||Ys},linux:function(){return $t()||bc},iphone:function(){return $t()||Cc},mobile:function(){return $t()||Cc||vc||yc||s0},nativeApp:function(){return $t()||r0},android:function(){return $t()||yc},ipad:function(){return $t()||vc}},Mm=wc,Us=!!(typeof window!="undefined"&&window.document&&window.document.createElement),Im={canUseDOM:Us,canUseWorkers:typeof Worker!="undefined",canUseEventListeners:Us&&!!(window.addEventListener||window.attachEvent),canUseViewport:Us&&!!window.screen,isInWorker:!Us},Nm=Im,l0=Nm,o0;l0.canUseDOM&&(o0=document.implementation&&document.implementation.hasFeature&&document.implementation.hasFeature("","")!==!0);/**
40
+ * Checks if an event is supported in the current execution environment.
41
+ *
42
+ * NOTE: This will not work correctly for non-generic events such as `change`,
43
+ * `reset`, `load`, `error`, and `select`.
44
+ *
45
+ * Borrows from Modernizr.
46
+ *
47
+ * @param {string} eventNameSuffix Event name, e.g. "click".
48
+ * @param {?boolean} capture Check if the capture phase is supported.
49
+ * @return {boolean} True if the event is supported.
50
+ * @internal
51
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
52
+ */function Lm(e,t){if(!l0.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,i=n in document;if(!i){var s=document.createElement("div");s.setAttribute(n,"return;"),i=typeof s[n]=="function"}return!i&&o0&&e==="wheel"&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}var km=Lm,Tm=Mm,xm=km,c0=10,u0=40,d0=800;function f0(e){var t=0,n=0,i=0,s=0;return"detail"in e&&(n=e.detail),"wheelDelta"in e&&(n=-e.wheelDelta/120),"wheelDeltaY"in e&&(n=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=n,n=0),i=t*c0,s=n*c0,"deltaY"in e&&(s=e.deltaY),"deltaX"in e&&(i=e.deltaX),(i||s)&&e.deltaMode&&(e.deltaMode==1?(i*=u0,s*=u0):(i*=d0,s*=d0)),i&&!t&&(t=i<1?-1:1),s&&!n&&(n=s<1?-1:1),{spinX:t,spinY:n,pixelX:i,pixelY:s}}f0.getEventType=function(){return Tm.firefox()?"DOMMouseScroll":xm("wheel")?"wheel":"mousewheel"};var Sm=f0,Dm=Sm;const jm=typeof navigator!="undefined"&&navigator.userAgent.toLowerCase().indexOf("firefox")>-1,zm=function(e,t){e!=null&&e.addEventListener&&e.addEventListener(jm?"DOMMouseScroll":"mousewheel",function(n){const i=Dm(n);t==null||t.apply(this,[n,i])})},Om={beforeMount(e,t){console.error(e,t),zm(e,t.value)}},Em=e=>typeof Element=="undefined"?!1:e instanceof Element,Oi=new Map;let h0;document.addEventListener("mousedown",e=>h0=e),document.addEventListener("mouseup",e=>{for(const t of Oi.values())for(const{documentHandler:n}of t)n(e,h0)});function g0(e,t){let n=[];return Array.isArray(t.arg)?n=t.arg:Em(t.arg)&&n.push(t.arg),function(i,s){const{popperRef:o}=t.instance,c=i.target,d=s==null?void 0:s.target,u=!t||!t.instance,f=!c||!d,m=e.contains(c)||e.contains(d),p=e===c,y=n.length&&n.some(v=>v==null?void 0:v.contains(c))||n.length&&n.includes(d),b=o&&(o.contains(c)||o.contains(d));u||f||m||p||y||b||t.value(i,s)}}const zn={beforeMount(e,t){Oi.has(e)||Oi.set(e,[]),Oi.get(e).push({documentHandler:g0(e,t),bindingFn:t.value})},updated(e,t){Oi.has(e)||Oi.set(e,[]);const n=Oi.get(e),i=n.findIndex(o=>o.bindingFn===t.oldValue),s={documentHandler:g0(e,t),bindingFn:t.value};i>=0?n.splice(i,1,s):n.push(s)},unmounted(e){Oi.delete(e)}};zn.install=e=>{e.directive("bkTooltips",zn)};const Ei=new Map,Mc={beforeMount(e,t){const n=m0(t),{trigger:i}=n,s=Am(n);if(i==="hover"){let o=null;e.addEventListener("mouseenter",()=>{Ic(e),clearTimeout(o)}),s.addEventListener("mouseenter",()=>{clearTimeout(o)}),e.addEventListener("mouseleave",()=>{o=setTimeout(()=>{Ar(e)},100)}),e.addEventListener("click",()=>{Ar(e)}),s.addEventListener("mouseleave",()=>{o=setTimeout(()=>{Ar(e)},100)})}else i==="click"&&document.body.addEventListener("click",o=>{e.contains(o.target)&&!s.hasAttribute("data-show")?Ic(e):s.hasAttribute("data-show")&&Ar(e)});Ei.set(e,{opts:n,popper:s,popperInstance:null})},updated(e,t){Ei.get(e).opts=m0(t)},unmounted(e){Ar(e),Ei.delete(e)}};function Pm(){return{arrow:!0,disabled:!1,trigger:"hover",theme:"dark",content:"",showOnInit:!1,placement:"top",distance:8,extCls:"",onShow:()=>{},onHide:()=>{}}}function m0(e){const t=Pm();return typeof e.value=="object"?Object.assign(t,e.value):t.content=e.value,t}function Am(e){const{content:t,arrow:n,theme:i,extCls:s}=e,o=i==="light",c=Rn.getPopperIndex(),d=document.createElement("div");if(d.className=`bk-popper ${o?"light":"dark"} ${s}`,d.innerText=t,d.style.zIndex=String(c),n){const u=p0();d.appendChild(u)}return d}function p0(){const e=document.createElement("div");return e.className="bk-popper-arrow",e.setAttribute("data-popper-arrow",""),e}function Vm(e,t){const{opts:n}=Ei.get(e),{placement:i,distance:s,showOnInit:o}=n,c=bf(e,t,{placement:i,modifiers:[{name:"offset",options:{offset:[0,s]}}]});return o&&Ic(e),c}function Ic(e){const{popper:t,opts:n}=Ei.get(e),{disabled:i,content:s,arrow:o,onShow:c}=n;if(i)return;if(t.innerText=s,o){const u=p0();t.appendChild(u)}document.body.appendChild(t);const d=Vm(e,t);c(),t.setAttribute("data-show",""),d.setOptions(u=>xe(Y({},u),{modifiers:[...u.modifiers,{name:"eventListeners",enabled:!0}]})),d.forceUpdate(),Ei.get(e).popperInstance=d}function Ar(e){if(!Ei.get(e))return;const{popper:t,popperInstance:n,opts:i}=Ei.get(e),{onHide:s}=i;t&&document.body.contains(t)&&(t.removeAttribute("data-show"),n==null||n.destroy(),document.body.removeChild(t),s())}const Nc={},Lc=e=>document.querySelector(e)instanceof HTMLElement,Jm=()=>(Nc.fullscreenReferId||(Nc.fullscreenReferId=`id_${ki.v4()}`),Nc.fullscreenReferId);function kc(e){let t=null,n=null,i=null;const s=xe(Y({boundary:"body",placement:"top",autoVisibility:!1},e),{trigger:"manual"}),o=y=>y instanceof Element||y instanceof HTMLDocument,c={name:"$popover",setup(y,{expose:b}){const v=a.ref(s),T=a.ref(),x=a.ref({position:"absolute",pointerEvents:"none",left:0,top:0,width:"auto",height:"auto",transform:""}),k=O=>{if(o(O)){const{x:Z,y:B,width:ne,height:ue}=O.getBoundingClientRect();Object.assign(x.value,{width:`${ne}px`,height:`${ue}px`,transform:`translate3d(${Z}px,${B}px,0)`});return}const{clientX:R,clientY:P}=O;Object.assign(x.value,{transform:`translate3d(${R}px,${P}px,0)`,width:"10px",height:"10px"})};k(v.value.target);const I=()=>{setTimeout(()=>{var O,R;(R=(O=T.value)==null?void 0:O.show)==null||R.call(O)})},C=()=>{var O,R;(R=(O=T.value)==null?void 0:O.hide)==null||R.call(O)},M=()=>{var O,R;(R=(O=T.value)==null?void 0:O.stopHide)==null||R.call(O)},N=a.computed(()=>{const O=["target"];return Object.keys(v.value).filter(R=>!O.includes(R)).reduce((R,P)=>xe(Y({},R),{[P]:v.value[P]}),{})}),L=O=>{var R,P;v.value.target=O,k(O),(P=(R=T.value)==null?void 0:R.updatePopover)==null||P.call(R),a.nextTick(()=>{var Z,B;(B=(Z=T.value)==null?void 0:Z.updatePopover)==null||B.call(Z)})},j=()=>{var O;(O=s.onContentMouseenter)==null||O.call(s)},z=()=>{var O;(O=s.onContentMouseleave)==null||O.call(s)};return b({show:I,hide:C,updateTarget:L,stopHide:M}),()=>a.createVNode(Q0,a.mergeProps(N.value,{ref:T,onContentMouseenter:j,onContentMouseleave:z}),{default:()=>[a.createVNode("span",{style:x.value},null)]})}};function d(y){return/^body$/i.test(y)?document.body:/^parent$/i.test(y)?o(s.target)?s.target.parentNode:s.target.target.parentNode:typeof y=="string"&&Lc(y)?document.querySelector(y):document.body}t===null&&(i=document.createElement("div"),d(s.boundary).append(i),setTimeout(()=>{t=a.createApp(c),n=t.mount(i)}));function u(){t&&(t.unmount(),n=null,t=null,i.remove())}function f(){n==null||n.show()}function m(y){n==null||n.updateTarget(y)}function p(){n==null||n.hide()}return{close:u,show:f,hide:p,update:m,get vm(){return n},get $el(){return n.$el}}}const b0=(e,t)=>{const n={content:"",target:e};return typeof t.value=="object"?Object.assign(n,t.value):n.content=t.value,n},Tc=(e,t)=>{let n=null,i=null,s=null;const o=b0(e,t),{disabled:c}=o;if(c||n)return;const d=()=>{s&&clearTimeout(s),s=null},u=()=>{i&&clearTimeout(i),n==null||n.hide(),n==null||n.close(),n=null},f=()=>{i&&clearTimeout(i),i=setTimeout(()=>{const y=b0(e,t);y.content=y.content||e.innerHTML,Object.assign(y,{onContentMouseenter:d,onContentMouseleave:u}),n=kc(y),setTimeout(()=>{n.show()})},100)},m=()=>{s=setTimeout(()=>{i&&clearTimeout(i),n==null||n.hide(),n==null||n.close(),n=null},120)};return e.addEventListener("mouseenter",f),e.addEventListener("mouseleave",m),Object.assign(t,{__cached:{handleMouseEnter:f,handleMouseLeave:m}}),{destroyInstance:y=>{var b,v;m(),(b=y!=null?y:e)==null||b.removeEventListener("mouseenter",f),(v=y!=null?y:e)==null||v.removeEventListener("mouseleave",m)},instance:n}},Qm={mounted(e,t){Tc(e,t)},beforeUnmount(e,t){if(t.__cached){const{handleMouseEnter:n,handleMouseLeave:i}=t.__cached;e.removeEventListener("mouseenter",n),e.removeEventListener("mouseleave",i),t.__cached=null}}};var y0=a.defineComponent({name:"PopArrow",render(){const e=Ye("pop2-arrow");return a.createVNode("div",{class:e},null)}});const Ba=(...e)=>!0;let On;(function(e){e.SHOW="show",e.HIDE="hide",e.CLICK_OUTSIDE="clickoutside",e.CONTENT_MOUSEENTER="contentMouseenter",e.CONTENT_MOUSELEAVE="contentMouseleave",e.STOP_HIDE="stopHide"})(On||(On={}));const Rm={[On.SHOW]:Ba,[On.HIDE]:Ba,[On.CLICK_OUTSIDE]:Ba,[On.CONTENT_MOUSEENTER]:Ba,[On.CONTENT_MOUSELEAVE]:Ba,[On.STOP_HIDE]:Ba};var C0=a.defineComponent({name:"PopContent",props:{width:g.oneOfType([g.string,g.number]).def("auto"),height:g.oneOfType([g.string,g.number]).def("auto")},setup(e){const t=i=>/^\d+\.?\d*$/.test(`${i}`)?`${i}px`:i;return{style:a.computed(()=>({width:t(e.width),height:t(e.height)}))}},render(){var t,n,i,s,o,c;const e=[Ye("popover"),Ye("pop2-content")];return a.createVNode("div",{class:e,tabindex:"-1",style:this.style},[(i=(n=(t=this.$slots).arrow)==null?void 0:n.call(t))!=null?i:"",(c=(o=(s=this.$slots).default)==null?void 0:o.call(s))!=null?c:""])}});const _m=["auto","auto-start","auto-end","top","top-start","top-end","bottom","bottom-start","bottom-end","right","right-start","right-end","left","left-start","left-end"],Wm={onAfterHidden:Function,onAfterShow:Function},Hm=Y({isShow:g.bool.def(!1),always:g.bool.def(!1),disabled:g.bool.def(!1),width:g.oneOfType([g.string,g.number]).def("auto"),height:g.oneOfType([g.string,g.number]).def("auto"),content:g.oneOfType([g.string,g.number]).def(""),placement:g.placement(_m).def("top"),theme:g.string.def("dark"),trigger:g.string.def("hover"),arrow:g.bool.def(!0),padding:g.number.def(5),offset:g.number.def(6),boundary:g.oneOfType([g.string.def("parent"),g.instanceOf(HTMLElement)]),zIndex:g.number.def(void 0),disableTeleport:g.bool.def(!1),autoPlacement:g.bool.def(!1),autoVisibility:g.bool.def(!0),disableOutsideClick:g.bool.def(!1),disableTransform:g.bool.def(!1),reference:g.any.def(null),modifiers:g.array.def([])},Wm);var Bm=a.defineComponent({name:"PopReference",render(){var e,t,n;return(n=(t=(e=this.$slots).default)==null?void 0:t.call(e))!=null?n:""}}),v0=a.defineComponent({props:{class:g.string.def("")},render(){var e,t;return a.createVNode(a.Fragment,null,[(t=(e=this.$slots).default)==null?void 0:t.call(e)])}});function ri(e){return e.split("-")[0]}function oa(e){return e.split("-")[1]}function Fa(e){return["top","bottom"].includes(ri(e))?"x":"y"}function xc(e){return e==="y"?"height":"width"}function w0(e,t,n){let{reference:i,floating:s}=e;const o=i.x+i.width/2-s.width/2,c=i.y+i.height/2-s.height/2,d=Fa(t),u=xc(d),f=i[u]/2-s[u]/2,m=ri(t),p=d==="x";let y;switch(m){case"top":y={x:o,y:i.y-s.height};break;case"bottom":y={x:o,y:i.y+i.height};break;case"right":y={x:i.x+i.width,y:c};break;case"left":y={x:i.x-s.width,y:c};break;default:y={x:i.x,y:i.y}}switch(oa(t)){case"start":y[d]-=f*(n&&p?-1:1);break;case"end":y[d]+=f*(n&&p?-1:1);break}return y}const Fm=async(e,t,n)=>{const{placement:i="bottom",strategy:s="absolute",middleware:o=[],platform:c}=n,d=await(c.isRTL==null?void 0:c.isRTL(t));let u=await c.getElementRects({reference:e,floating:t,strategy:s}),{x:f,y:m}=w0(u,i,d),p=i,y={};for(let b=0;b<o.length;b++){const{name:v,fn:T}=o[b],{x,y:k,data:I,reset:C}=await T({x:f,y:m,initialPlacement:i,placement:p,strategy:s,middlewareData:y,rects:u,platform:c,elements:{reference:e,floating:t}});if(f=x!=null?x:f,m=k!=null?k:m,y=xe(Y({},y),{[v]:Y(Y({},y[v]),I)}),C){typeof C=="object"&&(C.placement&&(p=C.placement),C.rects&&(u=C.rects===!0?await c.getElementRects({reference:e,floating:t,strategy:s}):C.rects),{x:f,y:m}=w0(u,p,d)),b=-1;continue}}return{x:f,y:m,placement:p,strategy:s,middlewareData:y}};function Gm(e){return Y({top:0,right:0,bottom:0,left:0},e)}function Sc(e){return typeof e!="number"?Gm(e):{top:e,right:e,bottom:e,left:e}}function Vr(e){return xe(Y({},e),{top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height})}async function Jr(e,t){var n;t===void 0&&(t={});const{x:i,y:s,platform:o,rects:c,elements:d,strategy:u}=e,{boundary:f="clippingAncestors",rootBoundary:m="viewport",elementContext:p="floating",altBoundary:y=!1,padding:b=0}=t,v=Sc(b),x=d[y?p==="floating"?"reference":"floating":p],k=Vr(await o.getClippingRect({element:(n=await(o.isElement==null?void 0:o.isElement(x)))==null||n?x:x.contextElement||await(o.getDocumentElement==null?void 0:o.getDocumentElement(d.floating)),boundary:f,rootBoundary:m,strategy:u})),I=Vr(o.convertOffsetParentRelativeRectToViewportRelativeRect?await o.convertOffsetParentRelativeRectToViewportRelativeRect({rect:p==="floating"?xe(Y({},c.floating),{x:i,y:s}):c.reference,offsetParent:await(o.getOffsetParent==null?void 0:o.getOffsetParent(d.floating)),strategy:u}):c[p]);return{top:k.top-I.top+v.top,bottom:I.bottom-k.bottom+v.bottom,left:k.left-I.left+v.left,right:I.right-k.right+v.right}}const M0=Math.min,I0=Math.max;function Dc(e,t,n){return I0(e,M0(t,n))}const Zm=e=>({name:"arrow",options:e,async fn(t){const{element:n,padding:i=0}=e!=null?e:{},{x:s,y:o,placement:c,rects:d,platform:u}=t;if(n==null)return{};const f=Sc(i),m={x:s,y:o},p=Fa(c),y=oa(c),b=xc(p),v=await u.getDimensions(n),T=p==="y"?"top":"left",x=p==="y"?"bottom":"right",k=d.reference[b]+d.reference[p]-m[p]-d.floating[b],I=m[p]-d.reference[p],C=await(u.getOffsetParent==null?void 0:u.getOffsetParent(n));let M=C?p==="y"?C.clientHeight||0:C.clientWidth||0:0;M===0&&(M=d.floating[b]);const N=k/2-I/2,L=f[T],j=M-v[b]-f[x],z=M/2-v[b]/2+N,O=Dc(L,z,j),Z=(y==="start"?f[T]:f[x])>0&&z!==O&&d.reference[b]<=d.floating[b]?z<L?L-z:j-z:0;return{[p]:m[p]-Z,data:{[p]:O,centerOffset:z-O}}}}),Ym={left:"right",right:"left",bottom:"top",top:"bottom"};function $s(e){return e.replace(/left|right|bottom|top/g,t=>Ym[t])}function N0(e,t,n){n===void 0&&(n=!1);const i=oa(e),s=Fa(e),o=xc(s);let c=s==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(c=$s(c)),{main:c,cross:$s(c)}}const Um={start:"end",end:"start"};function jc(e){return e.replace(/start|end/g,t=>Um[t])}const L0=["top","right","bottom","left"],$m=L0.reduce((e,t)=>e.concat(t,t+"-start",t+"-end"),[]);function Km(e,t,n){return(e?[...n.filter(s=>oa(s)===e),...n.filter(s=>oa(s)!==e)]:n.filter(s=>ri(s)===s)).filter(s=>e?oa(s)===e||(t?jc(s)!==s:!1):!0)}const Xm=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(t){var n,i,s,o,c;const{x:d,y:u,rects:f,middlewareData:m,placement:p,platform:y,elements:b}=t,ne=e,{alignment:v=null,allowedPlacements:T=$m,autoAlignment:x=!0}=ne,k=Da(ne,["alignment","allowedPlacements","autoAlignment"]),I=Km(v,x,T),C=await Jr(t,k),M=(n=(i=m.autoPlacement)==null?void 0:i.index)!=null?n:0,N=I[M];if(N==null)return{};const{main:L,cross:j}=N0(N,f,await(y.isRTL==null?void 0:y.isRTL(b.floating)));if(p!==N)return{x:d,y:u,reset:{placement:I[0]}};const z=[C[ri(N)],C[L],C[j]],O=[...(s=(o=m.autoPlacement)==null?void 0:o.overflows)!=null?s:[],{placement:N,overflows:z}],R=I[M+1];if(R)return{data:{index:M+1,overflows:O},reset:{placement:R}};const P=O.slice().sort((ue,Ce)=>ue.overflows[0]-Ce.overflows[0]),Z=(c=P.find(ue=>{let{overflows:Ce}=ue;return Ce.every(Ne=>Ne<=0)}))==null?void 0:c.placement,B=Z!=null?Z:P[0].placement;return B!==p?{data:{index:M+1,overflows:O},reset:{placement:B}}:{}}}};function qm(e){const t=$s(e);return[jc(e),t,jc(t)]}const ep=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n;const{placement:i,middlewareData:s,rects:o,initialPlacement:c,platform:d,elements:u}=t,O=e,{mainAxis:f=!0,crossAxis:m=!0,fallbackPlacements:p,fallbackStrategy:y="bestFit",flipAlignment:b=!0}=O,v=Da(O,["mainAxis","crossAxis","fallbackPlacements","fallbackStrategy","flipAlignment"]),T=ri(i),k=p||(T===c||!b?[$s(c)]:qm(c)),I=[c,...k],C=await Jr(t,v),M=[];let N=((n=s.flip)==null?void 0:n.overflows)||[];if(f&&M.push(C[T]),m){const{main:R,cross:P}=N0(i,o,await(d.isRTL==null?void 0:d.isRTL(u.floating)));M.push(C[R],C[P])}if(N=[...N,{placement:i,overflows:M}],!M.every(R=>R<=0)){var L,j;const R=((L=(j=s.flip)==null?void 0:j.index)!=null?L:0)+1,P=I[R];if(P)return{data:{index:R,overflows:N},reset:{placement:P}};let Z="bottom";switch(y){case"bestFit":{var z;const B=(z=N.map(ne=>[ne,ne.overflows.filter(ue=>ue>0).reduce((ue,Ce)=>ue+Ce,0)]).sort((ne,ue)=>ne[1]-ue[1])[0])==null?void 0:z[0].placement;B&&(Z=B);break}case"initialPlacement":Z=c;break}if(i!==Z)return{reset:{placement:Z}}}return{}}}};function k0(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function T0(e){return L0.some(t=>e[t]>=0)}const tp=function(e){let i=e===void 0?{}:e,{strategy:t="referenceHidden"}=i,n=Da(i,["strategy"]);return{name:"hide",async fn(s){const{rects:o}=s;switch(t){case"referenceHidden":{const c=await Jr(s,xe(Y({},n),{elementContext:"reference"})),d=k0(c,o.reference);return{data:{referenceHiddenOffsets:d,referenceHidden:T0(d)}}}case"escaped":{const c=await Jr(s,xe(Y({},n),{altBoundary:!0})),d=k0(c,o.floating);return{data:{escapedOffsets:d,escaped:T0(d)}}}default:return{}}}}};async function np(e,t){const{placement:n,platform:i,elements:s}=e,o=await(i.isRTL==null?void 0:i.isRTL(s.floating)),c=ri(n),d=oa(n),u=Fa(n)==="x",f=["left","top"].includes(c)?-1:1,m=o&&u?-1:1,p=typeof t=="function"?t(e):t;let{mainAxis:y,crossAxis:b,alignmentAxis:v}=typeof p=="number"?{mainAxis:p,crossAxis:0,alignmentAxis:null}:Y({mainAxis:0,crossAxis:0,alignmentAxis:null},p);return d&&typeof v=="number"&&(b=d==="end"?v*-1:v),u?{x:b*m,y:y*f}:{x:y*f,y:b*m}}const ip=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){const{x:n,y:i}=t,s=await np(t,e);return{x:n+s.x,y:i+s.y,data:s}}}};function ap(e){return e==="x"?"y":"x"}const rp=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:i,placement:s}=t,x=e,{mainAxis:o=!0,crossAxis:c=!1,limiter:d={fn:k=>{let{x:I,y:C}=k;return{x:I,y:C}}}}=x,u=Da(x,["mainAxis","crossAxis","limiter"]),f={x:n,y:i},m=await Jr(t,u),p=Fa(ri(s)),y=ap(p);let b=f[p],v=f[y];if(o){const k=p==="y"?"top":"left",I=p==="y"?"bottom":"right",C=b+m[k],M=b-m[I];b=Dc(C,b,M)}if(c){const k=y==="y"?"top":"left",I=y==="y"?"bottom":"right",C=v+m[k],M=v-m[I];v=Dc(C,v,M)}const T=d.fn(xe(Y({},t),{[p]:b,[y]:v}));return xe(Y({},T),{data:{x:T.x-n,y:T.y-i}})}}},sp=function(e){return e===void 0&&(e={}),{name:"inline",options:e,async fn(t){var n;const{placement:i,elements:s,rects:o,platform:c,strategy:d}=t,{padding:u=2,x:f,y:m}=e,p=Vr(c.convertOffsetParentRelativeRectToViewportRelativeRect?await c.convertOffsetParentRelativeRectToViewportRelativeRect({rect:o.reference,offsetParent:await(c.getOffsetParent==null?void 0:c.getOffsetParent(s.floating)),strategy:d}):o.reference),y=(n=await(c.getClientRects==null?void 0:c.getClientRects(s.reference)))!=null?n:[],b=Sc(u);function v(){if(y.length===2&&y[0].left>y[1].right&&f!=null&&m!=null){var x;return(x=y.find(k=>f>k.left-b.left&&f<k.right+b.right&&m>k.top-b.top&&m<k.bottom+b.bottom))!=null?x:p}if(y.length>=2){if(Fa(i)==="x"){const P=y[0],Z=y[y.length-1],B=ri(i)==="top",ne=P.top,ue=Z.bottom,Ce=B?P.left:Z.left,Ne=B?P.right:Z.right,fe=Ne-Ce,he=ue-ne;return{top:ne,bottom:ue,left:Ce,right:Ne,width:fe,height:he,x:Ce,y:ne}}const k=ri(i)==="left",I=I0(...y.map(P=>P.right)),C=M0(...y.map(P=>P.left)),M=y.filter(P=>k?P.left===C:P.right===I),N=M[0].top,L=M[M.length-1].bottom,j=C,z=I,O=z-j,R=L-N;return{top:N,bottom:L,left:j,right:z,width:O,height:R,x:j,y:N}}return p}const T=await c.getElementRects({reference:{getBoundingClientRect:v},floating:s.floating,strategy:d});return o.reference.x!==T.reference.x||o.reference.y!==T.reference.y||o.reference.width!==T.reference.width||o.reference.height!==T.reference.height?{reset:{rects:T}}:{}}}};function x0(e){return e&&e.document&&e.location&&e.alert&&e.setInterval}function si(e){if(e==null)return window;if(!x0(e)){const t=e.ownerDocument;return t&&t.defaultView||window}return e}function Qr(e){return si(e).getComputedStyle(e)}function li(e){return x0(e)?"":e?(e.nodeName||"").toLowerCase():""}function S0(){const e=navigator.userAgentData;return e!=null&&e.brands?e.brands.map(t=>t.brand+"/"+t.version).join(" "):navigator.userAgent}function Gn(e){return e instanceof si(e).HTMLElement}function Pi(e){return e instanceof si(e).Element}function lp(e){return e instanceof si(e).Node}function zc(e){if(typeof ShadowRoot=="undefined")return!1;const t=si(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function Ks(e){const{overflow:t,overflowX:n,overflowY:i}=Qr(e);return/auto|scroll|overlay|hidden/.test(t+i+n)}function op(e){return["table","td","th"].includes(li(e))}function D0(e){const t=/firefox/i.test(S0()),n=Qr(e);return n.transform!=="none"||n.perspective!=="none"||n.contain==="paint"||["transform","perspective"].includes(n.willChange)||t&&n.willChange==="filter"||t&&(n.filter?n.filter!=="none":!1)}function j0(){return!/^((?!chrome|android).)*safari/i.test(S0())}const z0=Math.min,Rr=Math.max,Xs=Math.round;function oi(e,t,n){var i,s,o,c;t===void 0&&(t=!1),n===void 0&&(n=!1);const d=e.getBoundingClientRect();let u=1,f=1;t&&Gn(e)&&(u=e.offsetWidth>0&&Xs(d.width)/e.offsetWidth||1,f=e.offsetHeight>0&&Xs(d.height)/e.offsetHeight||1);const m=Pi(e)?si(e):window,p=!j0()&&n,y=(d.left+(p&&(i=(s=m.visualViewport)==null?void 0:s.offsetLeft)!=null?i:0))/u,b=(d.top+(p&&(o=(c=m.visualViewport)==null?void 0:c.offsetTop)!=null?o:0))/f,v=d.width/u,T=d.height/f;return{width:v,height:T,top:b,right:y+v,bottom:b+T,left:y,x:y,y:b}}function Ai(e){return((lp(e)?e.ownerDocument:e.document)||window.document).documentElement}function qs(e){return Pi(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function O0(e){return oi(Ai(e)).left+qs(e).scrollLeft}function cp(e){const t=oi(e);return Xs(t.width)!==e.offsetWidth||Xs(t.height)!==e.offsetHeight}function up(e,t,n){const i=Gn(t),s=Ai(t),o=oi(e,i&&cp(t),n==="fixed");let c={scrollLeft:0,scrollTop:0};const d={x:0,y:0};if(i||!i&&n!=="fixed")if((li(t)!=="body"||Ks(s))&&(c=qs(t)),Gn(t)){const u=oi(t,!0);d.x=u.x+t.clientLeft,d.y=u.y+t.clientTop}else s&&(d.x=O0(s));return{x:o.left+c.scrollLeft-d.x,y:o.top+c.scrollTop-d.y,width:o.width,height:o.height}}function E0(e){return li(e)==="html"?e:e.assignedSlot||e.parentNode||(zc(e)?e.host:null)||Ai(e)}function P0(e){return!Gn(e)||getComputedStyle(e).position==="fixed"?null:e.offsetParent}function dp(e){let t=E0(e);for(zc(t)&&(t=t.host);Gn(t)&&!["html","body"].includes(li(t));){if(D0(t))return t;t=t.parentNode}return null}function Oc(e){const t=si(e);let n=P0(e);for(;n&&op(n)&&getComputedStyle(n).position==="static";)n=P0(n);return n&&(li(n)==="html"||li(n)==="body"&&getComputedStyle(n).position==="static"&&!D0(n))?t:n||dp(e)||t}function A0(e){if(Gn(e))return{width:e.offsetWidth,height:e.offsetHeight};const t=oi(e);return{width:t.width,height:t.height}}function fp(e){let{rect:t,offsetParent:n,strategy:i}=e;const s=Gn(n),o=Ai(n);if(n===o)return t;let c={scrollLeft:0,scrollTop:0};const d={x:0,y:0};if((s||!s&&i!=="fixed")&&((li(n)!=="body"||Ks(o))&&(c=qs(n)),Gn(n))){const u=oi(n,!0);d.x=u.x+n.clientLeft,d.y=u.y+n.clientTop}return xe(Y({},t),{x:t.x-c.scrollLeft+d.x,y:t.y-c.scrollTop+d.y})}function hp(e,t){const n=si(e),i=Ai(e),s=n.visualViewport;let o=i.clientWidth,c=i.clientHeight,d=0,u=0;if(s){o=s.width,c=s.height;const f=j0();(f||!f&&t==="fixed")&&(d=s.offsetLeft,u=s.offsetTop)}return{width:o,height:c,x:d,y:u}}function gp(e){var t;const n=Ai(e),i=qs(e),s=(t=e.ownerDocument)==null?void 0:t.body,o=Rr(n.scrollWidth,n.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),c=Rr(n.scrollHeight,n.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0);let d=-i.scrollLeft+O0(e);const u=-i.scrollTop;return Qr(s||n).direction==="rtl"&&(d+=Rr(n.clientWidth,s?s.clientWidth:0)-o),{width:o,height:c,x:d,y:u}}function V0(e){const t=E0(e);return["html","body","#document"].includes(li(t))?e.ownerDocument.body:Gn(t)&&Ks(t)?t:V0(t)}function el(e,t){var n;t===void 0&&(t=[]);const i=V0(e),s=i===((n=e.ownerDocument)==null?void 0:n.body),o=si(i),c=s?[o].concat(o.visualViewport||[],Ks(i)?i:[]):i,d=t.concat(c);return s?d:d.concat(el(c))}function mp(e,t){const n=t.getRootNode==null?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&zc(n)){let i=t;do{if(i&&e===i)return!0;i=i.parentNode||i.host}while(i)}return!1}function pp(e,t){const n=oi(e,!1,t==="fixed"),i=n.top+e.clientTop,s=n.left+e.clientLeft;return{top:i,left:s,x:s,y:i,right:s+e.clientWidth,bottom:i+e.clientHeight,width:e.clientWidth,height:e.clientHeight}}function J0(e,t,n){return t==="viewport"?Vr(hp(e,n)):Pi(t)?pp(t,n):Vr(gp(Ai(e)))}function bp(e){const t=el(e),i=["absolute","fixed"].includes(Qr(e).position)&&Gn(e)?Oc(e):e;return Pi(i)?t.filter(s=>Pi(s)&&mp(s,i)&&li(s)!=="body"):[]}function yp(e){let{element:t,boundary:n,rootBoundary:i,strategy:s}=e;const c=[...n==="clippingAncestors"?bp(t):[].concat(n),i],d=c[0],u=c.reduce((f,m)=>{const p=J0(t,m,s);return f.top=Rr(p.top,f.top),f.right=z0(p.right,f.right),f.bottom=z0(p.bottom,f.bottom),f.left=Rr(p.left,f.left),f},J0(t,d,s));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}const Cp={getClippingRect:yp,convertOffsetParentRelativeRectToViewportRelativeRect:fp,isElement:Pi,getDimensions:A0,getOffsetParent:Oc,getDocumentElement:Ai,getElementRects:e=>{let{reference:t,floating:n,strategy:i}=e;return{reference:up(t,Oc(n),i),floating:xe(Y({},A0(n)),{x:0,y:0})}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>Qr(e).direction==="rtl"};function vp(e,t,n,i){i===void 0&&(i={});const{ancestorScroll:s=!0,ancestorResize:o=!0,elementResize:c=!0,animationFrame:d=!1}=i,u=s&&!d,f=o&&!d,m=u||f?[...Pi(e)?el(e):[],...el(t)]:[];m.forEach(T=>{u&&T.addEventListener("scroll",n,{passive:!0}),f&&T.addEventListener("resize",n)});let p=null;c&&(p=new ResizeObserver(n),Pi(e)&&!d&&p.observe(e),p.observe(t));let y,b=d?oi(e):null;d&&v();function v(){const T=oi(e);b&&(T.x!==b.x||T.y!==b.y||T.width!==b.width||T.height!==b.height)&&n(),b=T,y=requestAnimationFrame(v)}return c||n(),()=>{var T;m.forEach(x=>{u&&x.removeEventListener("scroll",n),f&&x.removeEventListener("resize",n)}),(T=p)==null||T.disconnect(),p=null,d&&cancelAnimationFrame(y)}}const wp=(e,t,n)=>Fm(e,t,Y({platform:Cp},n));var Mp=e=>({getElementRects:({reference:s,floating:o})=>{const c=s.getBoundingClientRect(),d=o.getBoundingClientRect();return{reference:{width:c.width,height:c.height,x:c.x,y:c.y},floating:{width:d.width,height:d.height,x:d.x,y:d.y}}},getDimensions:s=>{const{width:o,height:c}=s.getBoundingClientRect();return{width:o,height:c}},getClippingRect:({})=>{var c;const{width:s=0,height:o=0}=(c=e==null?void 0:e.getBoundingClientRect())!=null?c:{};return{width:s,height:o,x:0,y:0}}}),Ip=(e,t,{refReference:n,refContent:i,refArrow:s,refRoot:o})=>{const c=a.ref(!1),d=a.ref(),u=()=>{var me,Le,X;const ae=k((me=n.value)==null?void 0:me.$el);return(Le=document.fullscreenElement)!=null&&Le.shadowRoot?document.fullscreenElement.shadowRoot.contains(ae):(X=document.fullscreenElement)==null?void 0:X.contains(ae)},f=ae=>u()?document.fullscreenElement.shadowRoot?document.fullscreenElement.shadowRoot.querySelector(ae):document.fullscreenElement.querySelector(ae):document.body,m=["dark","light"],p=a.computed(()=>{var X,W;const ae=(W=(X=e.theme)==null?void 0:X.split(/\s+/))!=null?W:[];ae.sort((Q,re)=>Number(m.includes(re))-Number(m.includes(Q)));const me=ae,Le=ae.filter(Q=>!m.includes(Q));return{systemThemes:me,customThemes:Le}}),y=()=>e.autoVisibility,b=()=>e.autoPlacement,v=()=>{var W,Q,re,D;const ae=k((W=n.value)==null?void 0:W.$el),me=k((Q=i.value)==null?void 0:Q.$el),Le=e.arrow?k((re=s.value)==null?void 0:re.$el):null,X=k((D=o.value)==null?void 0:D.$el);return{elReference:ae,elContent:me,elArrow:Le,root:X}},T=()=>{const ae={};return Array.isArray(e.modifiers)&&e.modifiers.forEach(me=>{var X,W,Q,re;let Le=0;me.name==="offset"&&(typeof((X=me.options)==null?void 0:X.offset)=="number"&&(Le=(W=me.options)==null?void 0:W.offset),Array.isArray((Q=me.options)==null?void 0:Q.offset)&&(Le=(re=me.options)==null?void 0:re.offset.reduce((D,_)=>D+_,0)),Object.assign(ae,{offset:Le}))}),ae},x=(ae,me)=>{var Q;const Le=T(),X=[ip(Le.offset||me.offset),rp({padding:me.padding})],W={placement:me.placement,middleware:X};if(me.arrow&&X.push(Zm({element:ae})),b()?X.push(Xm()):(X.unshift(sp()),X.push(ep())),y()&&W.middleware.push(tp()),u()||me.isVirtualEl){const{getElementRects:re,getDimensions:D,getClippingRect:_}=Mp(d.value);Object.assign(W,{platform:xe(Y({},(Q=me==null?void 0:me.platform)!=null?Q:{}),{getElementRects:re,getDimensions:D,getClippingRect:_})})}return W},k=ae=>ae instanceof HTMLElement?ae:ae instanceof Text?k(ae.nextElementSibling):typeof(ae==null?void 0:ae.getBoundingClientRect)=="function"?ae:null,I=p.value.customThemes.join(" "),C=p.value.customThemes.reduce((ae,me)=>Y({[`data-${me}-theme`]:!0},ae),{}),M=`${I}`;let N=null;const L=ae=>{const me=window.devicePixelRatio||1;return Math.round(ae*me)/me||0},j=(ae,me,Le,X)=>{var Q;e.disableTransform?Object.assign(ae.style,{left:`${L(me)}px`,top:`${L(Le)}px`}):Object.assign(ae.style,{left:"0",top:"0",transform:`translate3d(${L(me)}px,${L(Le)}px,0)`});const W=y()?(Q=X.hide)==null?void 0:Q.referenceHidden:!1;Object.assign(ae.style,{visibility:W?"hidden":"visible"})},z=(ae,me,Le)=>{var X;if(e.arrow){const{x:W,y:Q}=(X=Le.arrow)!=null?X:{};ae.setAttribute("data-arrow",me);const re={left:"",top:"",bottom:"",right:""};Object.assign(ae.style,re);const D={top:"bottom",right:"left",bottom:"top",left:"right"}[me];Object.assign(ae.style,{left:W!==null?`${W}px`:"",top:Q!==null?`${Q}px`:"",[D]:"-4px"})}},O=()=>{const{elReference:ae,elContent:me}=v();N=vp(ae,me,()=>{R(null,e)})},R=(ae=null,me={})=>{const{elReference:Le,elContent:X,elArrow:W}=v(),Q=ae||Le;if(!Q||!X)return;const re=x(W,me);wp(Q,X,re).then(({x:D,y:_,placement:J,middlewareData:se})=>{const ce=X.className;X.className=`${ce.replace(M,"")} ${M}`.replace(/\s+/mg," ").replace(/^\s+|\s+$/g,""),Object.keys(C).forEach(te=>{X.setAttribute(te,C[te])});const pe=J.split("-")[0];let ke=pe;["left","right","top","bottom"].includes(pe)||(ke="top"),j(X,D,_,se),z(W,ke,se)})};let P,Z=!1;const B=()=>{setTimeout(()=>{!e.disabled&&(c.value=!0)},100)},ne=()=>{P=setTimeout(()=>{c.value=!1},100)},ue=()=>{var me;const ae=k((me=i.value)==null?void 0:me.$el);ae.style.setProperty("display","block"),ae.style.setProperty("z-index",`${e.zIndex?e.zIndex:Rn.getModalNextIndex()}`),R(),t.emit("afterShow",{isShow:!0})},Ce=()=>{var me;k((me=i.value)==null?void 0:me.$el).style.setProperty("display","none"),t.emit("afterHidden",{isShow:!1})},Ne=()=>{c.value?ne():B()},fe=()=>{Ne()},he=()=>{e.trigger==="hover"&&(P&&(Z=!0,clearTimeout(P),P=void 0),A())},$=()=>{Z&&(ne(),Z=!1,H())},A=()=>{t.emit(On.CONTENT_MOUSEENTER)},H=()=>{t.emit(On.CONTENT_MOUSELEAVE)},F=()=>{var me;return(me={hover:{content:[["mouseenter",he],["mouseleave",$]],reference:[["mouseenter",B],["mouseleave",ne],["focus",B],["blur",ne]]},click:[["click",fe]],manual:{content:[["mouseenter",A],["mouseleave",H]],reference:[[]]}}[e.trigger])!=null?me:[]},ee=ae=>{d.value=ae};return a.watch(c,ae=>{ae?ue():Ce()}),{showPopover:B,hidePopover:ne,resolveTriggerEvents:F,updatePopover:R,triggerPopover:Ne,resolvePopElements:v,isElementFullScreen:u,resolveTargetElement:k,createPopInstance:O,updateFullscreenTarget:ee,getFullscreenRoot:f,stopHide:()=>{P&&(Z=!0,clearTimeout(P),P=void 0)},localIsShow:c,cleanup:N}};let Vi=null,tl=null;var Np=(e,t="#")=>{const n=i=>{let s=null;const o=u=>{s===null&&u()},c=()=>{if(/^parent$/i.test(e.boundary)){s=`${t}${Vi}`;const{parentNode:u}=i||{};u!=null&&u.parentNode&&(u.parentNode.setAttribute("data-pnode-id",tl),s=`[data-pnode-id=${tl}]`)}},d=()=>{if(!/^body$/i.test(e.boundary)&&typeof e.boundary=="string"){if(!Lc(e.boundary)){console.error("props.boundary is not available selector"),s="body";return}s=e.boundary}};return o(c),o(d),o(()=>{s=typeof e.boundary=="string"?e.boundary:`${t}${Vi}`}),s};if(Vi===null||!Lc(`#${Vi}`)){Vi=`id_${ki.v4()}`;const i=document.createElement("div");i.setAttribute("id",Vi),i.setAttribute("data-popper-id",Vi),document.body.append(i)}return tl===null&&(tl=`id_${ki.v4()}`),{popContainerId:Vi,prefixId:n(),getPrefixId:n}},Lp=(e,t,{refReference:n,refContent:i,refArrow:s,refRoot:o})=>{let c=null;const d=a.ref(!1),u=Jm(),f=a.ref(),{localIsShow:m,showPopover:p,hidePopover:y,updatePopover:b,resolveTriggerEvents:v,resolvePopElements:T,isElementFullScreen:x,updateFullscreenTarget:k,createPopInstance:I,getFullscreenRoot:C,stopHide:M}=Ip(e,t,{refReference:n,refContent:i,refArrow:s,refRoot:o}),N=()=>{p()},L=()=>{y()},j=()=>{I(),e.always?p():z()},z=()=>{const{elReference:H,elContent:F}=T();if(c=v(),Array.isArray(c))O(H,c);else{const{content:ee,reference:ie}=c;O(H,ie),O(F,ee)}},O=(H,F)=>{F.forEach(([ee,ie])=>{ee&&typeof ie=="function"&&H.addEventListener(ee,ie)})},R=()=>{if(c!=null&&c.length){const{elReference:H}=T();H&&c.forEach(([F,ee])=>{F&&typeof ee=="function"&&H.removeEventListener(F,ee)}),c=null}},P=()=>{const{elReference:H,root:F}=T();if(d.value){ue.value=f==null?void 0:f.value;return}ue.value=Z(F||H)},{getPrefixId:Z}=Np(e,"#"),B=()=>{var H;(H=f==null?void 0:f.value)==null||H.setAttribute("data-fllsrn-id",u)},ne=()=>{var F,ee;const H=`[data-fllsrn-id=${u}]`;((ee=(F=f==null?void 0:f.value)==null?void 0:F.querySelectorAll(H))!=null?ee:[]).forEach(ie=>{ie==null||ie.removeAttribute("data-fllsrn-id")})},ue=a.ref(),Ce=()=>{R()},Ne=H=>{f.value=H,k(H),d.value=x(),B()},fe=H=>{document.fullscreenElement||ne(),Ne(H.target),P(),b(null,e)};return{onMountedFn:()=>{if(!e.disabled){if(j(),x()){const H=`[data-fllsrn-id=${u}]`,F=C(H);Ne(F)}P(),document.body.addEventListener("fullscreenchange",fe)}},onUnmountedFn:()=>{Ce(),document.body.removeEventListener("fullscreenchange",fe)},handleClickOutside:H=>{t.emit(On.CLICK_OUTSIDE,{isShow:m.value,event:H}),!(e.disableOutsideClick||e.always||e.disabled||e.trigger==="manual")&&m.value&&L()},beforeInstanceUnmount:Ce,updateBoundary:P,initPopInstance:j,updatePopover:b,showPopover:p,hidePopover:y,showFn:N,hideFn:L,stopHide:M,isFullscreen:d,boundary:ue}},Q0=a.defineComponent({name:"Popover",components:{Content:C0,Arrow:y0,Root:v0},directives:{clickoutside:zn},props:Hm,emits:Rm,setup(e,t){const{content:n,theme:i,disableTeleport:s}=e,{reference:o}=a.toRefs(e),c=a.ref(),d=a.ref(),u=a.ref(),f=a.ref(),m=a.computed(()=>o.value||c.value),{onMountedFn:p,onUnmountedFn:y,handleClickOutside:b,beforeInstanceUnmount:v,updateBoundary:T,initPopInstance:x,showFn:k,hideFn:I,showPopover:C,hidePopover:M,updatePopover:N,stopHide:L,boundary:j}=Lp(e,t,{refReference:m,refContent:d,refArrow:u,refRoot:f});!e.always&&!e.disabled&&a.watch(()=>e.isShow,()=>{e.isShow?C():M()},{immediate:!0}),a.watch(()=>[e.disabled],P=>{P[0]?v():x()}),T(),a.onMounted(p),a.onBeforeUnmount(y);const z=a.computed(()=>!s),O=()=>{k()},R=()=>{I()};return{boundary:j,arrow:e.arrow,refDefaultReference:c,refContent:d,refArrow:u,content:n,theme:i,transBoundary:z,handleClickOutside:b,updatePopover:N,hide:R,show:O,stopHide:L}},render(){return a.createVNode(v0,{ref:"refRoot"},{default:()=>[a.createVNode(Bm,{ref:"refDefaultReference"},{default:()=>{var e,t,n;return[(n=(t=(e=this.$slots).default)==null?void 0:t.call(e))!=null?n:a.createVNode("span",null,null)]}}),a.createVNode(a.Teleport,{to:this.boundary,disabled:!this.transBoundary},{default:()=>[a.withDirectives(a.createVNode(C0,{ref:"refContent","data-theme":this.theme,width:this.width,height:this.height},{default:()=>{var e,t,n;return[(n=(t=(e=this.$slots).content)==null?void 0:t.call(e))!=null?n:this.content]},arrow:()=>this.arrow?a.createVNode(y0,{ref:"refArrow"},{default:()=>{var e,t;return[(t=(e=this.$slots).arrow)==null?void 0:t.call(e)]}}):""}),[[a.resolveDirective("clickoutside"),this.handleClickOutside]])]})]})}});const pn=He(Q0);var kp=a.defineComponent({name:"Popover2",setup(){return()=>a.createVNode("code",null,["<bk-popover2></bk-popover2>\u5DF2\u7ECF\u5408\u5E76\u4E3A<bk-popover></bk-popover>\uFF0C\u8BF7\u66FF\u6362\u4E3A<bk-popover></bk-popover>"])}});const R0=He(kp),Tp=(e,{attrs:t,slots:n})=>{const{width:i,percent:s,strokeWidth:o,color:c,strokeLinecap:d,theme:u,type:f,bgColor:m,titleStyle:p}=t,y=o||6,b=i||126,v={width:typeof b=="number"?`${b}px`:b,height:typeof b=="number"?`${b}px`:b,fontSize:`${b*.15+6}px`},T=50-y/2,x=f==="dashboard",k=Math.PI*2*T,I=x&&.75||1,C=`${-1*k*(1-I)/2}px`,M="stroke-dasharray 0.6s ease 0s, stroke 0.6s ease",N={strokeDasharray:`${k*I}px, ${k}px`,strokeDashoffset:C},L={strokeDasharray:`${k*I*(s/100)}px, ${k}px`,strokeDashoffset:C,transition:M},j=`
53
+ M 50 50
54
+ m 0 ${x?"":"-"}${T}
55
+ a ${T} ${T} 0 1 1 0 ${x?"-":""}${T*2}
56
+ a ${T} ${T} 0 1 1 0 ${x?"":"-"}${T*2}
57
+ `,z={d:j,stroke:m||"#f5f5f5","stroke-linecap":d,"stroke-width":y,"fill-opacity":"0",class:"process-circle-trail",style:N},O={d:j,stroke:c||"#13ce66","stroke-linecap":d,"stroke-width":s>0&&y||0,"fill-opacity":"0",class:`process-circle-path bk-${u}-circle-trail`,style:L};return a.createVNode("div",{class:"progress-outer-circle",style:v},[a.createVNode("svg",{viewBox:"0 0 100 100"},[a.createVNode("path",z,null),a.createVNode("path",O,null)]),a.createVNode("span",{class:"progress-circle-text",style:p},[n==null?void 0:n.default()])])},xp=(e,{attrs:t,slots:n})=>{const{percent:i,strokeWidth:s,size:o,color:c,titleStyle:d,showText:u,textInside:f,theme:m}=t,p={height:`${s}px`,lineHeight:`${s}px`},y={width:`${i}%`,background:c,animationDuration:"3s"},b=(v=!0)=>(u||n.default)&&(v&&f||!v&&!f)?n==null?void 0:n.default():null;return a.createVNode("div",{class:"progress-outer"},[a.createVNode("div",{class:`bk-progress-${o||"normal"} progress-bar`,style:p},[a.createVNode("div",{style:y,class:{"progress-inner":!0,[`bk-${m}`]:!0}},[a.createVNode("div",{class:"inner-text",style:d},[b()])])]),b(!1)])};function _0(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var Sp=a.defineComponent({name:"Progress",props:{extCls:g.string,type:g.string.validate(e=>["line","circle","dashboard"].includes(e)).def("line"),percent:g.number.def(0),theme:g.theme().def("primary"),size:g.size(),width:g.number.def(126),strokeWidth:g.number,strokeLinecap:g.string.def("round"),textInside:g.bool.def(!1),showText:g.bool.def(!0),color:g.string,bgColor:g.string,fixed:g.number.validate(e=>e>=0&&e<=20).def(0),format:g.func.def(e=>`${e}%`),titleStyle:g.object.def({fontSize:"16px",verticalAlign:"middle"})},setup(){return{}},methods:{validPercent(e){return!e||e<0?0:e>100?100:e},renderProcessInfo(){var d;const{showText:e,format:t,percent:n,textInside:i,titleStyle:s,fixed:o}=this.$props,c=t((d=this.validPercent(n))==null?void 0:d.toFixed(o));return(e||this.$slots.default)&&i?this.$slots.default?this.$slots.default():a.createVNode("span",null,[c]):!e||i?null:a.createVNode("span",{class:"progress-text",style:typeof c=="string"?s:void 0},[this.$slots.default?this.$slots.default():c])}},render(){const e=this.renderProcessInfo(),t=xe(Y({},this.$props),{percent:this.validPercent(this.percent)});let n=a.createVNode(xp,t,_0(e)?e:{default:()=>[e]});(this.type==="circle"||this.type==="dashboard")&&(n=a.createVNode(Tp,t,_0(e)?e:{default:()=>[e]}));const i={class:ze({extCls:!!this.extCls},`bk-progress bk-progress-${this.type}`)};return a.createVNode("div",i,[n])}});const _r=He(Sp),W0=Symbol("RadioGroup");function H0(){const e=a.ref(!1);return[e,{blur:()=>{e.value=!1},focus:()=>{e.value=!0}}]}const B0=()=>{const e=a.getCurrentInstance(),{props:t,emit:n}=e,i=a.inject(W0,Pf),s=!Af(i),o=a.ref(!1),c=a.computed(()=>s&&i.props.disabled?!0:t.disabled);s?a.watch(()=>i.props.modelValue,f=>{o.value=f===t.label},{immediate:!0}):a.watch(()=>t.modelValue,f=>{f!==""&&(o.value=f===t.label)},{immediate:!0});const d=(f=!0)=>{o.value=f},u=f=>{if(c.value)return;const m=f.target;o.value=m.checked;const p=o.value?t.label:"";n("update:modelValue",p),n("change",p),s&&i.handleChange(e.proxy),a.nextTick(()=>{m.checked!==o.value&&(m.checked=o.value)})};return a.onMounted(()=>{s&&i.register(e.proxy)}),a.onBeforeUnmount(()=>{s&&i.unregister(e.proxy)}),{isChecked:o,isDisabled:c,setChecked:d,handleChange:u}},Dp={name:g.string.def(""),label:g.oneOfType([String,Number,Boolean]).isRequired,modelValue:g.oneOfType([String,Number,Boolean]).def(""),checked:g.bool.def(!1),disabled:g.bool.def(!1)};var jp=a.defineComponent({name:"Radio",props:Dp,emits:["change","update:modelValue"],setup(){const[e,{blur:t,focus:n}]=H0(),{isChecked:i,isDisabled:s,setChecked:o,handleChange:c}=B0();return{isFocused:e,isChecked:i,isDisabled:s,setChecked:o,handleBlur:t,handleFocus:n,handleChange:c}},render(){const e=ze({"bk-radio":!0,"is-focused":this.isFocused,"is-disabled":this.isDisabled,"is-checked":this.isChecked}),t=()=>!this.label&&!this.$slots.default?null:a.createVNode("span",{class:"bk-radio-label"},[this.$slots.default?this.$slots.default():this.label]);return a.createVNode("label",{class:e,tabindex:"0"},[a.createVNode("input",{class:"bk-radio-input",type:"radio",tabindex:"0",value:this.label,checked:this.isChecked,disabled:this.isDisabled,onFocus:this.handleFocus,onBlur:this.handleBlur,onChange:this.handleChange},null),t()])}});const zp={name:g.string.def(""),label:g.oneOfType([String,Number,Boolean]).isRequired,modelValue:g.oneOfType([String,Number,Boolean]).def(""),checked:g.bool.def(!1),disabled:g.bool.def(!1),size:g.size()};var Op=a.defineComponent({name:"RadioButton",props:zp,emits:["change","update:modelValue"],setup(){const[e,{blur:t,focus:n}]=H0(),{isChecked:i,isDisabled:s,setChecked:o,handleChange:c}=B0();return{isFocused:e,isChecked:i,isDisabled:s,setChecked:o,handleBlur:t,handleFocus:n,handleChange:c}},render(){const e=ze({"bk-radio-button":!0,"is-focused":this.isFocused,"is-disabled":this.isDisabled,"is-checked":this.isChecked}),t=()=>!this.label&&!this.$slots.default?null:a.createVNode("div",{class:"bk-radio-button-label"},[this.$slots.default?this.$slots.default():this.label]);return a.createVNode("label",{class:e,tabindex:"0"},[a.createVNode("input",{class:"bk-radio-button-input",type:"radio",tabindex:"0",value:this.label,checked:this.isChecked,disabled:this.isDisabled,onFocus:this.handleFocus,onBlur:this.handleBlur,onChange:this.handleChange},null),t()])}});const Ep={name:g.string.def(""),modelValue:g.oneOfType([String,Number,Boolean]),disabled:g.bool,withValidate:g.bool.def(!0)};var Pp=a.defineComponent({name:"RadioGroup",props:Ep,emits:["change","update:modelValue"],setup(e,t){const n=Dn(),i=[],s=d=>{i.push(d)},o=d=>{const u=i.indexOf(d);u>-1&&i.splice(u,1)},c=d=>{const u=d.label;i.forEach(f=>{f!==d&&f.setChecked(!1)}),t.emit("update:modelValue",u),t.emit("change",u)};return a.provide(W0,{props:e,register:s,unregister:o,handleChange:c}),a.watch(()=>e.modelValue,()=>{var d;e.withValidate&&((d=n==null?void 0:n.validate)==null||d.call(n,"change"))}),a.onMounted(()=>{e.modelValue!==""&&i.forEach(d=>{d.setChecked(d.label===e.modelValue)})}),{}},render(){var e;return a.createVNode("div",{class:"bk-radio-group"},[(e=this.$slots)==null?void 0:e.default()])}});const F0=Yt(jp,{Group:Pp,Button:Op});var nl=a.defineComponent({name:"Star",props:{rate:g.number.def(0),width:g.number.def(15),height:g.number.def(16),editable:g.bool.def(!0),hoverRate:g.number.def(0),max:g.number.def(5)},emits:["chooseRate","changeHover"],setup(e,{emit:t}){const n=d=>{if(!e.editable)return;const u=d+1;t("chooseRate",u)},i=d=>{if(!e.editable)return;const u=d+1;t("changeHover",u)},s=d=>ze({"bk-is-select":d<Math.floor(o.value),"bk-is-edit":e.editable,"bk-rate-star":!0}),o=a.computed(()=>e.hoverRate||e.rate),c={width:`${e.width}px`,height:`${e.height}px`,minWidth:`${e.width}px`};return()=>a.createVNode("p",{class:"bk-rate-stars"},[Array(e.max).fill(1).map((d,u)=>a.createVNode("svg",{class:s(u),style:c,x:"0px",y:"0px",viewBox:"0 0 64 64",onClick:()=>n(u),onMouseenter:()=>i(u)},[a.createVNode("g",{transform:"translate(-143.000000, -635.000000)"},[a.createVNode("g",{transform:"translate(83.000000, 114.000000)"},[a.createVNode("g",{transform:"translate(15.000000, 384.000000)"},[a.createVNode("g",{transform:"translate(29.000000, 137.000000)"},[a.createVNode("polygon",{class:"st1",points:"48,53 28.2,63.9 32,40.8 16,24.4 38.1,21 48,-0.1 57.8,21 79.9,24.4 63.9,40.8 67.7,63.9"},null)])])])])]))])}}),Ap=a.defineComponent({name:"Rate",components:{star:nl},props:{modelValue:g.number.def(0),size:g.size(),editable:g.bool.def(!0),withValidate:g.bool.def(!0)},emits:["change","update:modelValue"],setup(e,{emit:t}){const n=Dn(),i=a.ref(0),s=p=>{!e.editable||(t("update:modelValue",p),t("change",p))},o=p=>{i.value=p},c=ze({"bk-rate":!0}),u={small:{width:12,height:12},large:{width:18,height:18}}[e.size]||{width:15,height:16},f=a.computed(()=>{const p=Math.floor(e.modelValue),y=(u.width+3)*p,b=u.width*(e.modelValue-p);return{width:`${y+b}px`}}),m={width:u.width,height:u.height};return a.watch(()=>e.modelValue,()=>{var p;e.withValidate&&((p=n==null?void 0:n.validate)==null||p.call(n,"change"))}),()=>a.createVNode("p",{class:c},[e.editable?a.createVNode(nl,a.mergeProps({rate:e.modelValue,"hover-rate":i.value,onChooseRate:s,onChangeHover:o,onMouseleave:()=>o(0)},m),null):[a.createVNode(nl,a.mergeProps({rate:5,style:f.value,class:"bk-score-real",editable:!1},m),null),a.createVNode(nl,a.mergeProps({rate:0,editable:!1},m),null)]])}});const G0=He(Ap);var Vp=a.defineComponent({name:"Swiper",props:{isLoop:g.bool.def(!0),loopTime:g.number.def(8e3),pics:g.array.def([]),list:g.array.def([]),height:g.number,width:g.number},emits:["index-change"],setup(e,{emit:t,slots:n}){const{isLoop:i,loopTime:s,pics:o,list:c,height:d,width:u}=a.toRefs(e),f=a.ref(),m=a.ref(0),p=a.ref(0),y=a.ref(0),b=a.ref(0);let v;const T=a.computed(()=>{var B;return((B=c.value)==null?void 0:B.length)>0?c.value:o.value}),x=a.computed(()=>({width:`${p.value*T.value.length}px`,transform:`translateX(-${p.value*m.value}px)`})),k=a.computed(()=>({width:`${p.value}px`,height:`${y.value}px`})),I=B=>{let ne=B;B>=T.value.length&&(ne=0),B<0&&(ne=T.value.length-1),m.value=ne,t("index-change",ne)},C=B=>{!B||window.open(B,"_blank")},M=B=>["bk-swiper-img",{"bk-swiper-link":B.link},B.class],N=B=>({"background-image":`url(${B.url})`,"background-color":B.color}),L=B=>({"bk-current-index":m.value===B}),j=()=>{i.value&&(b.value=window.setTimeout(()=>{I(m.value+1),j()},s.value))},z=()=>{window.clearTimeout(b.value)},O=()=>{var ne;const B=(ne=f.value)==null?void 0:ne.parentElement;!B||!window.ResizeObserver||(v=new ResizeObserver(()=>{Z()}),v.observe(B))},R=()=>{var B;(B=v.disconnect)==null||B.call(v)},P=B=>{if(B===void 0)return{height:0,width:0};const ne=getComputedStyle(B),ue=B.clientWidth-parseFloat(ne.paddingTop)-parseFloat(ne.paddingBottom);return{height:B.clientHeight-parseFloat(ne.paddingLeft)-parseFloat(ne.paddingRight),width:ue}},Z=()=>{var ne;const B=P((ne=f.value)==null?void 0:ne.parentElement);p.value=+u.value>0?u.value:B.width,y.value=+d.value>0?d.value:B.height};return a.watch([d,u],Z),a.onMounted(()=>{Z(),j(),O()}),a.onBeforeUnmount(()=>{z(),R()}),()=>a.createVNode("section",{class:"bk-swiper-home",ref:f,style:k.value},[a.createVNode("hgroup",{style:x.value,class:"bk-transition bk-swiper-main"},[T.value.map(B=>{var ne,ue;return a.createVNode("h3",{class:"bk-swiper-card",style:k.value},[(ue=(ne=n.default)==null?void 0:ne.call(n,B))!=null?ue:a.createVNode("span",{class:M(B),style:N(B),onClick:()=>C(B.link)},null)])})]),a.createVNode("ul",{class:"bk-swiper-index"},[T.value.map((B,ne)=>a.createVNode("li",{class:L(ne),onMouseover:()=>I(ne)},null))]),a.createVNode("span",{class:"bk-swiper-nav bk-nav-prev",onClick:()=>I(m.value-1)},[a.createVNode("i",{class:"bk-swiper-nav-icon"},null)]),a.createVNode("span",{class:"bk-swiper-nav bk-nav-next",onClick:()=>I(m.value+1)},[a.createVNode("i",{class:"bk-swiper-nav-icon"},null)])])}});const Z0=He(Vp),il=Symbol("BkSelect"),Y0=Symbol("BkOptionGroup");function U0(){const e=a.ref(!1);return{isHover:e,setHover:()=>{e.value=!0},cancelHover:()=>{e.value=!1}}}function Ec(e){return{register:(i,s)=>{if(!!s){if(e.value.has(i)){console.warn(`repeat ${i}`,s);return}return e.value.set(i,s)}},unregister:i=>{e.value.delete(i)}}}function Jp(e,t=200){let n,i=e;return a.customRef((s,o)=>({get(){return s(),i},set(c){clearTimeout(n),c===void 0||c===""?(i=c,o()):n=setTimeout(()=>{i=c,o()},t)}}))}function Qp(e,t){const{popoverMinWidth:n}=e;let i=null;const s=a.ref("auto"),o=a.ref(!1),c=()=>{o.value=!o.value},d=()=>{o.value=!1},u=()=>{o.value=!0},f=()=>{var m;s.value=Math.max((m=t.value)==null?void 0:m.offsetWidth,n)};return a.onMounted(()=>{!t.value||(i=p4(t.value,f,60,!0),i.start())}),a.onBeforeUnmount(()=>{i==null||i.stop(),i=null}),{isPopoverShow:o,popperWidth:s,togglePopover:c,hidePopover:d,showPopover:u}}function Rp(e,t){const n=Jp(""),i=a.ref(!1);return a.watch(n,async()=>{try{i.value=!0,await e(n.value),i.value=!1}catch(s){console.error(s)}finally{t==null||t()}}),{searchKey:n,searchLoading:i}}function Ga(e=""){return e&&String(e).trim().toLowerCase()}var al=a.defineComponent({name:"Option",props:{value:g.any,label:g.string.def(""),disabled:g.bool.def(!1)},setup(e){const{proxy:t}=a.getCurrentInstance(),n=a.reactive({visible:!0}),{disabled:i,value:s}=a.toRefs(e),o=a.inject(il,null),c=a.inject(Y0,null),d=a.computed(()=>{var b;return(b=o==null?void 0:o.selected)==null?void 0:b.some(v=>v.value===s.value)}),u=a.computed(()=>o==null?void 0:o.multiple),f=a.computed(()=>(o==null?void 0:o.activeOptionValue)===s.value),m=a.computed(()=>o==null?void 0:o.showSelectedIcon),p=()=>{i.value||o==null||o.handleOptionSelected(t)},y=()=>{o.activeOptionValue=s.value};return a.onBeforeMount(()=>{o==null||o.register(s.value,t),c==null||c.register(s.value,t)}),a.onBeforeUnmount(()=>{o==null||o.unregister(s.value),c==null||c.unregister(s.value)}),xe(Y({},a.toRefs(n)),{selected:d,multiple:u,isHover:f,showSelectedIcon:m,handleOptionClick:p,handleMouseEnter:y})},render(){var t,n,i;const e=ze({"is-selected":this.selected,"is-disabled":this.disabled,"is-multiple":this.multiple,"is-hover":this.isHover,"bk-select-option":!0});return a.withDirectives(a.createVNode("li",{class:e,onClick:this.handleOptionClick,onMouseenter:this.handleMouseEnter},[(i=(n=(t=this.$slots).default)==null?void 0:n.call(t))!=null?i:a.createVNode("span",{class:"bk-select-option-item",title:this.label},[this.label]),this.multiple&&this.selected&&this.showSelectedIcon&&a.createVNode(ia,{class:"bk-select-selected-icon",width:22,height:22},null)]),[[a.vShow,this.visible]])}}),_p=a.defineComponent({name:"Group",props:{label:g.string.def(""),disabled:g.bool.def(!1),collapsible:g.bool.def(!1),collapse:g.bool.def(!1)},setup(e,{emit:t}){const n=a.getCurrentInstance(),{proxy:i}=n,s=a.inject(il,null),o=a.reactive({groupCollapse:e.collapse,visible:!0}),c=a.ref(new Map),{register:d,unregister:u}=Ec(c),f=a.computed(()=>`${e.label} (${[...c.value.values()].filter(p=>p.visible).length})`),m=()=>{!e.collapsible||e.disabled||(o.groupCollapse=!o.groupCollapse,t("update:collapse",o.groupCollapse))};return a.provide(Y0,a.reactive(xe(Y({},a.toRefs(e)),{register:d,unregister:u,groupCollapse:a.toRef(o,"groupCollapse")}))),a.onBeforeMount(()=>{s==null||s.registerGroup(n.uid,i)}),a.onBeforeUnmount(()=>{s==null||s.unregisterGroup(n.uid)}),xe(Y({},a.toRefs(o)),{groupLabel:f,handleToggleCollapse:m})},render(){var i,s;const e=ze({"bk-option-group":!0,collapsible:this.collapsible,disabled:this.disabled}),t=ze({"bk-option-group-label":!0,collapsible:this.collapsible}),n=ze({"default-group-label-icon":!0,collapse:this.groupCollapse});return a.withDirectives(a.createVNode("ul",{class:e},[a.createVNode("li",{class:t,onClick:this.handleToggleCollapse},[this.$slots.label?this.$slots.label():a.createVNode("span",{class:"default-group-label"},[this.collapsible&&a.createVNode(Os,{class:n},null),a.createVNode("span",{class:"default-group-label-title"},[this.groupLabel])])]),a.withDirectives(a.createVNode("ul",{class:"bk-option-group-content"},[(s=(i=this.$slots).default)==null?void 0:s.call(i)]),[[a.vShow,!this.groupCollapse]])]),[[a.vShow,this.visible]])}});const Wp={onContentScroll:Function},Hp=Y({list:g.array.def([]),enabled:g.bool.def(!0),scrollEvent:g.bool.def(!1),lineHeight:g.oneOfType([g.number,g.func]).def(30),minHeight:g.number.def(30),height:g.oneOfType([g.string.def("100%"),g.number]).def("100%"),width:g.oneOfType([g.string.def("100%"),g.number]).def("100%"),className:g.oneOfType([g.arrayOf(g.string),g.object,g.arrayOf(g.object),g.string]).def(""),contentClassName:g.oneOfType([g.arrayOf(g.string),g.object,g.arrayOf(g.object),g.string]).def(""),contentStyle:g.object.def({}),scrollXName:g.string.def(Ye("F-scroll-x")),scrollYName:g.string.def(Ye("F-scroll-y")),groupItemCount:g.number.def(1),preloadItemCount:g.number.def(1),renderAs:g.string.def("div"),contentAs:g.string.def("div"),scrollOffsetTop:g.number.def(0),scrollPosition:g.string.def("content"),abosuteHeight:g.oneOfType([g.string.def("auto"),g.number]).def("auto"),throttleDelay:g.number.def(60)},Wp);var Bp=(e,t)=>{const{renderAs:n,contentAs:i}=e,s=(d,u,f,m,p,y,b)=>{t.emit("content-scroll",[d,{translateY:p,translateX:y,pos:b}])},o=a.resolveDirective("bkVirtualRender"),c={lineHeight:e.lineHeight,handleScrollCallback:s,pagination:{},throttleDelay:e.throttleDelay,onlyScroll:e.scrollEvent};return{rendAsTag:()=>{var d,u,f,m,p,y,b,v,T,x,k,I;return a.h(n,{class:e.className},[(f=(u=(d=t.slots).beforeContent)==null?void 0:u.call(d))!=null?f:"",a.withDirectives(a.h(i,{class:e.contentClassName,style:e.contentStyle},[(y=(p=(m=t.slots).default)==null?void 0:p.call(m,{data:e.list}))!=null?y:""]),[[o,c]]),(T=(v=(b=t.slots).afterContent)==null?void 0:v.call(b))!=null?T:"",(I=(k=(x=t.slots).afterSection)==null?void 0:k.call(x))!=null?I:""])}}};function $0(e,t,n,i){let s=0,o=0,c=0,d=0;for(;s<e;s++){if(d=i(s,[s*n,(s+1)*n,"virtual"]),o+d>t){c=t-o;break}o+=d}return{startIndex:s,height:o,diffHeight:c}}function K0(e,t,n,i,s){if(!i)return;const o=i.scrollTop,c=i.scrollLeft,{scrollTop:d,count:u,groupItemCount:f,startIndex:m,endIndex:p}=n,{offsetHeight:y}=i;let b=0,v=0,T=0;if(typeof e=="number"&&(b=Math.floor(o/e),v=Math.ceil(y/e)+b,T=o%e),typeof e=="function"){const x=$0(u,o,f,e);b=x.startIndex>0?x.startIndex:0,T=x.diffHeight,v=$0(u,y,f,e).startIndex+b+1}if(o!==d||b!==m||v!==p){const x=i.scrollHeight-i.offsetHeight-i.scrollTop;typeof t=="function"&&t(s,b,v,o,T,c,{bottom:x>=0?x:0})}}function Fp(e,t,n){const{lineHeight:i=30,handleScrollCallback:s,pagination:o={},onlyScroll:c}=n.value;if(c){const y=t.scrollTop,b=t.scrollLeft,v=t.scrollHeight-t.offsetHeight-t.scrollTop;s(e,null,null,y,y,b,{bottom:v>=0?v:0});return}const{startIndex:d,endIndex:u,groupItemCount:f,count:m,scrollTop:p}=o;K0(i,s,{scrollTop:p,startIndex:d,endIndex:u,groupItemCount:f,count:m},t,e)}const X0=(e=60)=>ot.exports.throttle((t,n,i)=>Fp(t,n,i),e),Gp=(e,t,n,i=60)=>{Reflect.apply(X0(i),globalThis,[e,t,n])};var Zp={mounted(e,t){const n=e.parentNode,{throttleDelay:i}=t.value;n.addEventListener("scroll",s=>{Gp(s,n,t,i)})},unbind(e){if(e){const t=e.parentNode;if(!t)return;t.removeEventListener("scroll",X0)}}},Yp=a.defineComponent({name:"VirtualRender",directives:{bkVirtualRender:Zp},props:Hp,emits:["content-scroll"],setup(e,t){const{renderAs:n,contentAs:i}=e,s=j=>typeof j=="string"?[j]:typeof j=="object"&&!Array.isArray(j)?[j]:j;if(!e.enabled){const{rendAsTag:j}=Bp(e,t);return j}const o=a.ref(null),c=a.reactive({startIndex:0,endIndex:0,scrollTop:1,translateY:0,translateX:0,count:0,pos:{},groupItemCount:e.groupItemCount}),d=(j,z,O,R,P,Z,B)=>{c.startIndex=z,c.endIndex=O,c.scrollTop=R,c.translateY=P,c.translateX=Z,c.pos=B,t.emit("content-scroll",[j,c])};a.onMounted(()=>{a.nextTick(()=>{p(e.list),y()})}),a.watch(()=>e.list,()=>{u(),y()},{deep:!0}),a.watch(()=>e.lineHeight,()=>{u(),y()});const u=()=>{p(e.list)},f=a.ref(0),m=a.ref(0),p=j=>{if(f.value=Math.ceil((j||[]).length/e.groupItemCount),c.count=f.value,c.startIndex=0,c.endIndex=0,c.translateY=0,c.scrollTop=0,typeof e.abosuteHeight=="string"&&e.abosuteHeight==="auto")if(typeof e.lineHeight=="function"){m.value=0;let O=0;for(let R=0;R<f.value;R++){const P=e.lineHeight.call(this,R,j.slice(R*e.groupItemCount,e.groupItemCount));O+=typeof P=="number"?P:0}m.value=O}else m.value=e.lineHeight*f.value;else m.value=e.abosuteHeight},y=(j=!0)=>{var O;const z=(O=o.value)==null?void 0:O.parentNode;K0(e.lineHeight,d,c,z,null),j&&o.value&&o.value.scrollTo(0,0)},b=a.computed(()=>(e.list||[]).map((j,z)=>xe(Y({},j),{$index:z}))),v=a.computed(()=>b.value.slice(c.startIndex*e.groupItemCount,(c.endIndex+e.preloadItemCount)*e.groupItemCount)),T=a.computed(()=>e.scrollPosition==="content"?{top:`${c.scrollTop+e.scrollOffsetTop}px`,transform:`translateY(-${c.translateY}px)`}:{}),x=a.computed(()=>Y({height:typeof e.height=="number"?`${e.height}px`:e.height,width:typeof e.width=="number"?`${e.width}px`:e.width,display:"inline-block"},e.scrollPosition==="container"?T.value:{})),k=a.computed(()=>{const j=typeof e.abosuteHeight=="number"&&e.abosuteHeight===0;return{height:`${m.value<e.minHeight?e.minHeight:m.value}px`,display:j?"none":"block"}}),I=a.computed(()=>[Ye("virtual-render"),e.scrollXName,e.scrollYName,...s(e.className),e.scrollPosition==="container"?Ye("virtual-content"):""]),C=a.computed(()=>[e.scrollPosition==="content"?Ye("virtual-content"):"",...s(e.contentClassName)]),M=a.resolveDirective("bkVirtualRender"),N={lineHeight:e.lineHeight,handleScrollCallback:d,pagination:c,throttleDelay:e.throttleDelay},L=()=>{u(),y()};return t.expose({reset:L}),()=>{var j,z,O,R,P,Z,B,ne,ue,Ce,Ne,fe;return a.h(n||"div",{ref:o,class:I.value,style:x.value},[(O=(z=(j=t.slots).beforeContent)==null?void 0:z.call(j))!=null?O:"",a.withDirectives(a.h(i||"div",{class:C.value,style:Y(Y({},T.value),e.contentStyle)},[(Z=(P=(R=t.slots).default)==null?void 0:P.call(R,{data:v.value}))!=null?Z:""]),[[M,N]]),(ue=(ne=(B=t.slots).afterContent)==null?void 0:ne.call(B))!=null?ue:"",a.h("div",{class:[Ye("virtual-section")],style:k.value}),(fe=(Ne=(Ce=t.slots).afterSection)==null?void 0:Ne.call(Ce))!=null?fe:""])}}});const Wr=He(Yp);var Up=a.defineComponent({name:"Tag",props:{theme:g.theme(["success","info","warning","danger"]).def(""),closable:g.bool.def(!1),type:g.commonType(["","filled","stroke"]).def(""),checkable:g.bool.def(!1),checked:g.bool.def(!1),radius:g.string.def("2px"),extCls:g.string.def("")},emits:["change","close"],slots:["icon"],setup(e,{emit:t}){const n=a.computed(()=>ze({"bk-tag-closable":e.closable,"bk-tag-checkable":e.checkable,"bk-tag-check":e.checked,[`bk-tag-${e.type}`]:e.type,[`bk-tag-${e.theme}`]:e.theme,[e.extCls]:!!e.extCls},"bk-tag")),i=a.computed(()=>({borderRadius:e.radius}));return{wrapperCls:n,wrapperStyle:i,handleClose:c=>{c.preventDefault(),c.stopPropagation(),t("close",c)},handleClick:c=>{c.preventDefault(),c.stopPropagation(),e.checkable&&t("change",!e.checked)}}},render(){var e,t;return a.createVNode("div",{class:this.wrapperCls,style:this.wrapperStyle,onClick:this.handleClick},[this.$slots.icon?a.createVNode("span",{class:"bk-tag-icon"},[this.$slots.icon()]):"",a.createVNode("span",{class:"bk-tag-text"},[(t=(e=this.$slots).default)==null?void 0:t.call(e)]),this.closable?a.createVNode(Bn,{class:"bk-tag-close",onClick:this.handleClose},null):""])}});const rl=He(Up);var $p=a.defineComponent({name:"SelectTagInput",props:{selected:{type:Array,default:()=>[]},tagTheme:g.theme(["success","info","warning","danger"]).def(""),placeholder:g.string.def(""),filterable:g.bool.def(!1),allowCreate:g.bool.def(!1),disabled:g.bool.def(!1),modelValue:g.any,collapseTags:g.bool.def(!1)},emits:["update:modelValue","remove","enter"],setup(e,{emit:t}){const{proxy:n}=a.getCurrentInstance(),i=a.inject(il,null),{modelValue:s,collapseTags:o,selected:c}=a.toRefs(e),d=a.ref(s.value),u=a.ref(),f=a.ref(null);a.watch(s,()=>{d.value=s.value}),a.watch([c,o],()=>{T()},{flush:"post"});const m=x=>{t("remove",x)},p=()=>{var x;(x=u.value)==null||x.focus()},y=x=>{t("update:modelValue",x.target.value)},b=x=>{switch(x.code){case"Enter":{t("enter",x.target.value,x);break}}},v=x=>{const k=[...n.$el.querySelectorAll(".bk-tag")];return typeof x=="number"?k[x]:k},T=()=>{!o.value||(f.value=null,setTimeout(()=>{const x=v(),k=x.findIndex((I,C)=>C?x[C-1].offsetTop!==I.offsetTop:!1);f.value=k>0?k:null}))};return{select:i,overflowTagIndex:f,value:d,inputRef:u,handleRemoveTag:m,focus:p,handleInput:y,handleKeydown:b}},render(){var i,s,o,c,d,u,f;const e=ze({"bk-select-tag":!0,"bk-select-tag--default":!0,"is-disabled":this.disabled,"collapse-tag":this.collapseTags}),t=ze({"bk-select-tag-wrapper":!0}),n={display:this.selected.length&&!this.filterable?"none":""};return a.createVNode("div",{class:e},[(s=(i=this.$slots)==null?void 0:i.prefix)==null?void 0:s.call(i),a.createVNode("span",{class:t},[(d=(c=(o=this.$slots).default)==null?void 0:c.call(o))!=null?d:this.selected.map((m,p)=>a.createVNode(rl,{closable:!0,theme:this.tagTheme,style:{display:this.collapseTags&&this.overflowTagIndex&&p>=this.overflowTagIndex?"none":""},onClose:()=>this.handleRemoveTag(m.value)},{default:()=>{var y;return[(y=this.select)==null?void 0:y.handleGetLabelByValue(m.value)]}})),!!this.overflowTagIndex&&this.collapseTags&&a.createVNode(rl,{class:"bk-select-overflow-tag"},{default:()=>[a.createTextVNode("+"),this.selected.length-this.overflowTagIndex]})]),a.createVNode("input",{class:"bk-select-tag-input",ref:"inputRef",type:"text",style:n,placeholder:this.selected.length?"":this.placeholder,readonly:!this.filterable,disabled:this.disabled,value:this.filterable?this.value:"",onInput:this.handleInput,onKeydown:this.handleKeydown},null),(f=(u=this.$slots)==null?void 0:u.suffix)==null?void 0:f.call(u)])}}),Kp=a.defineComponent({name:"Select",directives:{clickoutside:zn},props:{modelValue:g.any,multiple:g.bool.def(!1),disabled:g.bool.def(!1),size:g.size().def("default"),clearable:g.bool.def(!0),loading:g.bool.def(!1),filterable:g.bool.def(!1),remoteMethod:g.func,scrollHeight:g.number.def(200),showSelectAll:g.bool.def(!1),popoverMinWidth:g.number.def(0),showOnInit:g.bool.def(!1),multipleMode:g.oneOf(["default","tag"]).def("default"),tagTheme:g.theme(["success","info","warning","danger"]).def(""),behavior:g.oneOf(["normal","simplicity"]).def("normal"),collapseTags:g.bool.def(!1),autoHeight:g.bool.def(!0),noDataText:g.string.def("\u65E0\u6570\u636E"),noMatchText:g.string.def("\u65E0\u5339\u914D\u6570\u636E"),loadingText:g.string.def("\u52A0\u8F7D\u4E2D..."),placeholder:g.string.def("\u8BF7\u9009\u62E9"),searchPlaceholder:g.string.def("\u8BF7\u8F93\u5165\u5173\u952E\u5B57"),selectAllText:g.string.def("\u5168\u90E8"),scrollLoading:g.bool.def(!1),allowCreate:g.bool.def(!1),popoverOptions:g.object.def({}),customContent:g.bool.def(!1),list:g.array.def([]),idKey:g.string.def("value"),displayKey:g.string.def("label"),withValidate:g.bool.def(!0),showSelectedIcon:g.bool.def(!0),inputSearch:g.bool.def(!0),enableVirtualRender:g.bool.def(!1),allowEmptyValues:g.array.def([]),autoFocus:g.bool.def(!1)},emits:["update:modelValue","change","toggle","clear","scroll-end","focus","blur"],setup(e,{emit:t}){const{modelValue:n,disabled:i,filterable:s,multiple:o,remoteMethod:c,loading:d,loadingText:u,noDataText:f,noMatchText:m,popoverMinWidth:p,showOnInit:y,multipleMode:b,allowCreate:v,customContent:T,showSelectedIcon:x,inputSearch:k,enableVirtualRender:I,showSelectAll:C,scrollHeight:M,list:N,displayKey:L,collapseTags:j,autoHeight:z,popoverOptions:O,allowEmptyValues:R,autoFocus:P}=a.toRefs(e),Z=Dn(),B=a.ref(),ne=a.ref(),ue=a.ref(),Ce=a.ref(),Ne=a.ref(),fe=a.ref(),he=a.ref(),$=a.ref(new Map),A=a.computed(()=>[...$.value.values()]),H=a.ref(new Map),F=a.ref([]),ee=a.computed(()=>F.value.reduce((Ie,Oe)=>(Ie[Oe.value]=Oe.label,Ie),{})),ie=a.ref();a.watch(n,()=>{var Ie;El(),e.withValidate&&((Ie=Z==null?void 0:Z.validate)==null||Ie.call(Z,"blur"))},{deep:!0}),a.watch(F,()=>{var Ie;(Ie=he.value)==null||Ie.updatePopover(null,ke.value)});const ae=a.computed(()=>D.value?N.value:N.value.filter(Ie=>{var Oe;return(Oe=Ga(String(Ie[L.value])))==null?void 0:Oe.includes(Ga(pi.value))})),me=a.computed(()=>i.value||d.value),Le=a.computed(()=>F.value.map(Ie=>{var Oe,Je;return((Je=(Oe=$.value)==null?void 0:Oe.get(Ie.value))==null?void 0:Je.label)||Ie.label})),X=a.computed(()=>{const Ie=A.value.reduce((Oe,Je)=>(Je.disabled||Oe.push(Je.value),Oe),[]);return Ie.length<=F.value.length&&Ie.every(Oe=>F.value.some(Je=>Je.value===Oe))}),W=a.computed(()=>!!H.value.size),Q=a.computed(()=>!A.value.length),re=a.computed(()=>A.value.length&&A.value.every(Ie=>!Ie.visible)),D=a.computed(()=>s.value&&typeof c.value=="function"),_=a.computed(()=>!(as.value||Q.value||re.value)||T.value),J=a.computed(()=>o.value&&C.value&&(!pi.value||!s.value)),se=a.computed(()=>M.value-12-(J.value?32:0)),ce=a.computed(()=>as.value?u.value:Q.value?f.value:re.value?m.value:""),pe=a.computed(()=>z.value?j.value&&!et.value:j.value),ke=a.computed(()=>ot.exports.merge({theme:"light bk-select-popover",trigger:"manual",width:vn.value,arrow:!1,placement:"bottom-start",isShow:et.value,reference:Ne.value,offset:6},O.value)),{register:te,unregister:le}=Ec($),{register:we,unregister:je}=Ec(H),{isHover:Qe,setHover:Xe,cancelHover:st}=U0(),yt=a.ref(!1),at=()=>{yt.value||(yt.value=!0,t("focus"))},ft=()=>{!yt.value||(yt.value=!1,t("blur"))},{popperWidth:vn,isPopoverShow:et,hidePopover:mt,showPopover:Ge,togglePopover:_t}=Qp({popoverMinWidth:p.value},ne);a.watch(et,()=>{t("toggle",et.value)});const ba=a.computed(()=>(s.value&&k.value||v.value)&&et.value);a.watch(et,Ie=>{Ie?(ya(),er()):pi.value=""});const er=()=>{var Je;const Ie=F.value[0],Oe=$.value.get(Ie==null?void 0:Ie.value);Oe&&!Oe.disabled&&Oe.visible?ie.value=Ie==null?void 0:Ie.value:ie.value=(Je=A.value.find(ei=>!ei.disabled&&ei.visible))==null?void 0:Je.value},is=Ie=>{!s.value||A.value.forEach(Oe=>{var Je;Oe.visible=(Je=Ga(String(Oe.label)))==null?void 0:Je.includes(Ga(Ie))})},{searchKey:pi,searchLoading:as}=Rp(D.value?c.value:is,er),qn=Ie=>{Ie!==n.value&&(t("update:modelValue",Ie,n.value),t("change",Ie,n.value))},jl=()=>{me.value||(at(),_t())},zl=Ie=>{!s.value||(pi.value=Ie)},xu=(Ie,Oe)=>{const Je=String(Ie);!v.value||!Je||s.value&&A.value.find(Bi=>Ga(String(Bi.label))===Ga(Je))||$.value.get(Je)||(Oe.stopPropagation(),o.value?(F.value.push({value:Je,label:Je}),qn(F.value.map(Bi=>Bi.value))):(F.value=[{value:Je,label:Je}],qn(Je),mt()),pi.value="")},rs=Ie=>{if(!(me.value||!Ie)){if(o.value){const Oe=F.value.findIndex(Je=>Je.value===Ie.value);Oe>-1?F.value.splice(Oe,1):F.value.push({value:Ie.value,label:Ie.label||Ie.value}),qn(F.value.map(Je=>Je.value))}else F.value=[{label:Ie.label||Ie.value,value:Ie.value}],qn(Ie.value),mt();ya()}},ya=()=>{setTimeout(()=>{var Ie,Oe,Je;!k.value&&!v.value?(Ie=Ce.value)==null||Ie.focus():b.value==="tag"?(Oe=Ne.value)==null||Oe.focus():(Je=B.value)==null||Je.focus()},0)},Su=Ie=>{Ie.stopPropagation(),F.value=[],qn(o.value?[]:""),t("clear",o.value?[]:""),mt()},Ol=()=>{ie.value=""},Du=()=>{X.value?F.value=[]:A.value.forEach(Ie=>{Ie.disabled||F.value.find(Oe=>Oe.value===Ie.value)||F.value.push({value:Ie.value,label:Ie.label||Ie.value})}),qn(F.value.map(Ie=>Ie.value)),ya()},ju=Ie=>{const{scrollTop:Oe,clientHeight:Je,scrollHeight:ei}=Ie.target;Oe+Je===ei&&t("scroll-end")},zu=Ie=>{if(me.value)return;const Oe=F.value.findIndex(Je=>Je.value===Ie);Oe>-1&&(F.value.splice(Oe,1),qn(F.value.map(Je=>Je.value)))},Ca=Ie=>{var Oe,Je;return((Je=(Oe=$.value)==null?void 0:Oe.get(Ie))==null?void 0:Je.label)||ee.value[Ie]||Ie},El=()=>{Array.isArray(n.value)?F.value=[...n.value.map(Ie=>({value:Ie,label:Ca(Ie)}))]:!!n.value||R.value.includes(n.value)?F.value=[{value:n.value,label:Ca(n.value)}]:F.value=[]},va=Ie=>{var ei,Bi,Pl,ss;if(!((ei=ne.value)!=null&&ei.contains(Ie.target))&&!((Bi=ue.value)!=null&&Bi.contains(Ie.target))&&!T.value)return;const Oe=A.value.filter(en=>!en.disabled&&en.visible),Je=Oe.findIndex(en=>en.value===ie.value);if(!(!Oe.length||Je===-1))switch(Ie.code){case"ArrowDown":{Ie.preventDefault();const en=Je>=Oe.length-1?0:Je+1;ie.value=(Pl=Oe[en])==null?void 0:Pl.value;break}case"ArrowUp":{Ie.preventDefault();const en=Je===0?Oe.length-1:Je-1;ie.value=(ss=Oe[en])==null?void 0:ss.value;break}case"Backspace":{if(!o.value||!F.value.length||pi.value.length||Ie.target===Ce.value)return;F.value.pop(),qn(F.value.map(en=>en.value));break}case"Enter":{if(!et.value)et.value=!0;else{const en=$.value.get(ie.value);rs(en)}break}}},Ou=({event:Ie})=>{var Je;const{target:Oe}=Ie;((Je=ne.value)==null?void 0:Je.contains(Oe))||ne.value===Oe||(mt(),ft())},Eu=()=>{setTimeout(()=>{var Ie,Oe;I.value&&((Oe=(Ie=fe.value)==null?void 0:Ie.reset)==null||Oe.call(Ie))})};return a.provide(il,a.reactive({multiple:o,selected:F,activeOptionValue:ie,showSelectedIcon:x,register:te,unregister:le,registerGroup:we,unregisterGroup:je,handleOptionSelected:rs,handleGetLabelByValue:Ca})),a.onMounted(()=>{El(),setTimeout(()=>{y.value&&Ge(),P.value&&ya()}),R4(document,"keydown",va)}),a.onBeforeMount(()=>{_4(document,"keydown",va)}),{selected:F,isInput:ba,options:A,isDisabled:me,selectedLabel:Le,isPopoverShow:et,isHover:Qe,popperWidth:vn,inputRef:B,triggerRef:ne,contentRef:ue,searchRef:Ce,selectTagInputRef:Ne,virtualRenderRef:fe,popoverRef:he,searchLoading:as,isOptionsEmpty:Q,isSearchEmpty:re,isFocus:yt,isShowSelectContent:_,curContentText:ce,isGroup:W,searchKey:pi,isShowSelectAll:J,virtualHeight:se,filterList:ae,isCollapseTags:pe,popoverConfig:ke,focusInput:ya,setHover:Xe,cancelHover:st,handleFocus:at,handleBlur:ft,handleTogglePopover:jl,handleClear:Su,hidePopover:mt,showPopover:Ge,handleToggleAll:Du,handleOptionSelected:rs,handleClickOutside:Ou,handleScroll:ju,handleDeleteTag:zu,handleInputChange:zl,handleInputEnter:xu,handleKeydown:va,handleSelectedAllOptionMouseEnter:Ol,handlePopoverShow:Eu}},render(){const e=ze({"bk-select":!0,"popover-show":this.isPopoverShow,"is-disabled":this.isDisabled,"is-focus":this.isFocus,"is-filterable":this.filterable,[this.size]:!0,[this.behavior]:!0}),t=()=>this.loading?a.createVNode(Di,{loading:!0,theme:"primary",class:"spinner",mode:"spin",size:"mini"},null):this.clearable&&this.isHover&&this.selected.length&&!this.isDisabled?a.createVNode(Ut,{class:"clear-icon",onClick:this.handleClear},null):a.createVNode(Wa,{class:"angle-up"},null),n=()=>this.multipleMode==="tag"?a.createVNode($p,{ref:"selectTagInputRef",modelValue:this.searchKey,"onUpdate:modelValue":o=>this.searchKey=o,selected:this.selected,tagTheme:this.tagTheme,placeholder:this.placeholder,filterable:this.isInput,disabled:this.isDisabled,onRemove:this.handleDeleteTag,collapseTags:this.isCollapseTags,onEnter:this.handleInputEnter},{prefix:()=>{var o,c;return(c=(o=this.$slots).prefix)==null?void 0:c.call(o)},default:this.$slots.tag&&(()=>this.$slots.tag({selected:this.selected})),suffix:()=>t()}):a.createVNode(ra,{ref:"inputRef",type:"text",modelValue:this.isInput?this.searchKey:this.selectedLabel.join(","),placeholder:this.isInput?this.selectedLabel.join(",")||this.placeholder:this.placeholder,readonly:!this.isInput,selectReadonly:!0,disabled:this.isDisabled,behavior:this.behavior,size:this.size,withValidate:!1,onInput:this.handleInputChange,onEnter:this.handleInputEnter},{prefix:()=>{var o,c;return(c=(o=this.$slots).prefix)==null?void 0:c.call(o)},suffix:()=>t()}),i=()=>a.createVNode("div",{class:"bk-select-trigger",style:{height:this.autoHeight&&this.collapseTags?"32px":""},ref:"triggerRef",onClick:this.handleTogglePopover,onMouseenter:this.setHover,onMouseleave:this.cancelHover},[n()]),s=()=>{var o,c;return a.createVNode("div",{class:"bk-select-content-wrapper",ref:"contentRef"},[this.filterable&&!this.inputSearch&&a.createVNode("div",{class:"bk-select-search-wrapper"},[a.createVNode(Ha,{class:"icon-search",width:16,height:16},null),a.withDirectives(a.createVNode("input",{ref:"searchRef",class:"bk-select-search-input",placeholder:this.searchPlaceholder,"onUpdate:modelValue":d=>this.searchKey=d},null),[[a.vModelText,this.searchKey]])]),!this.isShowSelectContent&&a.createVNode("div",{class:"bk-select-empty"},[this.searchLoading&&a.createVNode(Di,{class:"mr5",theme:"primary",loading:!0,mode:"spin",size:"mini"},null),a.createVNode("span",null,[this.curContentText])]),a.createVNode("div",{class:"bk-select-content"},[a.createVNode("div",{class:"bk-select-dropdown",style:{maxHeight:`${this.scrollHeight}px`},onScroll:this.handleScroll},[a.withDirectives(a.createVNode("ul",{class:"bk-select-options"},[this.isShowSelectAll&&a.createVNode("li",{class:"bk-select-option",onMouseenter:this.handleSelectedAllOptionMouseEnter,onClick:this.handleToggleAll},[this.selectAllText]),this.enableVirtualRender?a.createVNode(Wr,{list:this.filterList,height:this.virtualHeight,lineHeight:32,ref:"virtualRenderRef"},{default:({data:d})=>d.map(u=>a.createVNode(al,{key:u[this.idKey],value:u[this.idKey],label:u[this.displayKey]},null))}):this.filterList.map(d=>a.createVNode(al,{value:d[this.idKey],label:d[this.displayKey]},null)),(c=(o=this.$slots).default)==null?void 0:c.call(o),this.scrollLoading&&a.createVNode("li",{class:"bk-select-options-loading"},[a.createVNode(Di,{class:"spinner mr5",theme:"primary",loading:!0,mode:"spin",size:"mini"},null),a.createVNode("span",null,[this.loadingText])])]),[[a.vShow,this.isShowSelectContent]])]),this.$slots.extension&&a.createVNode("div",{class:"bk-select-extension"},[this.$slots.extension()])])])};return a.createVNode("div",{class:e},[a.createVNode(pn,a.mergeProps(this.popoverConfig,{onClickoutside:this.handleClickOutside,onAfterShow:this.handlePopoverShow,ref:"popoverRef"}),{default:()=>i(),content:()=>s()})])}});const Pc=Yt(Kp,{Option:al,Group:_p});function Xp(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}const{propsMixin:qp}=sa,Ac=Object.assign({},qp);Ac.width.default="400",Ac.height.default="100%";var e5=a.defineComponent({name:"Sideslider",components:{BkModal:sa,BkButton:At},props:xe(Y({},Ac),{direction:{type:String,default:"right",validator:e=>{const t=["left","right"];return t.indexOf(e)<0?(console.error(`direction property is not valid: '${e}',\u3010${t.join(" | ")}\u3011`),!1):!0}}}),emits:["closed","update:isShow","shown","hidden","animation-end"],setup(e,{slots:t,emit:n}){const i=async()=>{let c=!0;typeof e.beforeClose=="function"&&(c=await e.beforeClose()),c&&(n("update:isShow",!1),n("closed"),setTimeout(()=>{n("animation-end")},250))},s=()=>{setTimeout(()=>{n("shown")},200)},o=()=>{setTimeout(()=>{n("hidden")},200)};return()=>{const c={header:()=>{var f,m;return a.createVNode(a.Fragment,null,[a.createVNode("div",{class:"bk-sideslider-header"},[a.createVNode("div",{class:`bk-sideslider-close ${e.direction}`,onClick:()=>{i()}},null),a.createVNode("div",{class:`bk-sideslider-title ${e.direction}`},[(m=(f=t.header)==null?void 0:f.call(t))!=null?m:e.title])])])},default:()=>{var f,m;return(m=(f=t.default)==null?void 0:f.call(t))!=null?m:"Content"},footer:()=>t.footer?a.createVNode("div",{class:"bk-sideslider-footer"},[t.footer()]):null},d=`bk-sideslider-wrapper ${e.scrollable?"scroll-able":""} ${e.extCls}`,u=t.footer?"calc(100vh - 106px)":"calc(100vh - 52px)";return a.createVNode(sa,a.mergeProps(e,{maxHeight:u,class:d,style:`${e.direction}: 0;`,onHidden:o,onShown:s,onClose:i}),Xp(c)?c:{default:()=>[c]})}}});const q0=He(e5),eh={theme:g.theme().def("primary"),size:g.size(),curStep:g.number.def(1),controllable:g.bool.def(!1),direction:g.commonType(["horizontal","vertical"],"direction").def("horizontal"),status:g.commonType(["","error","loading"],"status").def(""),lineType:g.commonType(["dashed","solid"],"lineType").def("dashed"),text:g.bool,extCls:g.string,steps:g.array.def([]),beforeChange:g.func};var t5=a.defineComponent({name:"Steps",props:eh,emits:["update:curStep","click"],setup(e,{emit:t}){const n=a.ref([]),i=d=>{const u=[];d.forEach(f=>{var m;typeof f=="string"?u.push(f):u.push({title:f.title,icon:f.icon,description:f.description,status:f.status,border:(m=f.border)!=null?m:!0})}),n.value.splice(0,n.value.length,...u)},s=d=>{eh.curStep=d},o=()=>{var d;n.value.splice(0,n.value.length,{title:"\u6B65\u9AA41",icon:1},{title:"\u6B65\u9AA42",icon:2},{title:"\u6B65\u9AA43",icon:3}),(d=e.steps)!=null&&d.length&&i(e.steps)},c=async d=>{try{e.controllable&&d!==e.curStep&&(typeof e.beforeChange=="function"&&await new Promise(async(u,f)=>{const m=await e.beforeChange(d);m?u(m):f(m)}),t("update:curStep",d),t("click",d))}catch(u){console.warn(u)}};return a.onMounted(o),a.watch(()=>e.steps,()=>{i(e.steps)},{deep:!0}),a.watch(()=>e.curStep,()=>{s(e.curStep)},{deep:!0}),{defaultSteps:n,jumpTo:c}},render(){const e="bk-steps",t=this.theme?`${e}-${this.theme}`:"",n=this.size?`${e}-${this.size}`:"",i=ze({[`${this.extCls}`]:!!this.extCls,[`bk-steps-${this.direction}`]:this.direction,[`bk-steps-${this.lineType}`]:this.lineType},`${t} ${e} ${n}`),s=p=>this.curStep>p+1||this.defaultSteps[p].status==="done",o=p=>this.curStep===p+1,c=p=>{const{icon:y}=p;return y?Object.prototype.toString.call(y)==="[object Object]":typeof p=="string"},d=(p,y)=>(y.icon||(y.icon=p),!isNaN(y.icon)),u=p=>p.status==="loading",f=p=>p.status==="error",m=(p,y)=>o(p)&&this.status==="loading"||u(y)?a.createVNode(Es,{class:"bk-icon bk-steps-icon icon-loading"},null):o(p)&&this.status==="error"||f(y)?a.createVNode(Bn,{class:"bk-steps-icon"},null):s(p)?a.createVNode(ia,{class:"bk-steps-icon"},null):a.createVNode("span",null,[d(p,y)?p+1:a.createVNode(y.icon,null,null)]);return a.createVNode("div",{class:i},[this.defaultSteps.map((p,y)=>{var b,v,T;return a.createVNode("div",{class:["bk-step",p.title?"":"bk-step-no-content",s(y)?"done":"",o(y)?"current":"",o(y)&&this.status==="error"?"isError":"",p.status&&o(y)?[`bk-step-${p.status}`]:""]},[a.createVNode("span",{class:["bk-step-indicator",`bk-step-${c(p)?"icon":"number"}`,`bk-step-icon${p.status}`],style:{cursor:this.controllable?"pointer":""},onClick:()=>{this.jumpTo(y+1)}},[(T=(v=(b=this.$slots)[y+1])==null?void 0:v.call(b))!=null?T:m(y,p)]),p.title?a.createVNode("div",{class:"bk-step-content"},[a.createVNode("div",{class:"bk-step-title",style:{cursor:this.controllable?"pointer":""},onClick:()=>{this.jumpTo(y+1)}},[p.title]),p.description&&a.createVNode("div",{class:"bk-step-description",title:p.description},[p.description])]):""])})])}});const th=He(t5);var n5=a.defineComponent({name:"Switcher",props:{theme:g.theme().def(""),size:g.size(),disabled:g.bool,showText:g.bool,isOutline:g.bool,onText:g.string.def("ON"),offText:g.string.def("OFF"),isSquare:g.bool,extCls:g.string,beforeChange:g.func.def(void 0),trueValue:g.oneOfType([g.string,g.number,g.bool]).def(!0),falseValue:g.oneOfType([g.string,g.number,g.bool]).def(!1),value:g.oneOfType([g.string,g.number,g.bool]).def(!1),modelValue:g.oneOfType([g.string,g.number,g.bool]).def(!1),withValidate:g.bool.def(!0)},emits:["update:modelValue","change"],setup(e,{emit:t}){const n=Dn(),i=a.ref(!1),s=a.computed(()=>e.trueValue===c.value),o=a.ref(e.modelValue!==!1),c=a.computed(()=>o.value?e.modelValue:e.value),d=a.computed(()=>{const m={[e.extCls]:!!e.extCls,"bk-switcher":!0,"bk-switcher-outline":e.isOutline,"bk-switcher-square":e.isSquare,"show-label":e.showText,"is-disabled":e.disabled,"is-checked":s.value,"is-unchecked":!s.value,"is-loading":i.value,"bk-primary":e.theme==="primary"};if(e.size&&!e.showText){const p=`bk-switcher-${e.size}`;m[p]=!0}return m});a.watch(()=>e.modelValue,()=>{var m;o.value=!0,e.withValidate&&((m=n==null?void 0:n.validate)==null||m.call(n,"change"))}),a.watch(()=>e.value,()=>{o.value=!1});const u=m=>{if(m.stopPropagation(),m.preventDefault(),e.disabled||i.value)return;const p=s.value?e.falseValue:e.trueValue,y=!s.value,b=()=>{t("update:modelValue",p),t("change",y)};let v=!0;if(typeof e.beforeChange=="function"&&(v=e.beforeChange(p),typeof v.then=="function"))return i.value=!0,v.then(()=>{b()}).finally(()=>{i.value=!1});v&&b()},f=m=>{(m.code==="Enter"||m.key==="Enter"||m.keyCode===13)&&u(m)};return()=>a.createVNode("div",{class:d.value,onClick:u,tabindex:"0",onKeydown:f},[i.value?a.createVNode(nc,{class:"bk-switcher-loading"},null):"",e.showText?a.createVNode("span",{class:"switcher-text"},[s.value?e.onText:e.offText]):""])}});const nh=He(n5);var sl=(e=>(e.NONE="none",e.ROW="row",e.COL="col",e.OUTER="outer",e.HORIZONTAL="horizontal",e))(sl||{}),ih=(e=>(e.HIGHLIGHT="highlight",e.AUTO="auto",e))(ih||{});const i5=["auto","highlight"],ah=["none","row","col","outer","horizontal"];var bn=(e=>(e.ON_SORT_BY_CLICK="onSortByClick",e.ON_FILTER_CLICK="onFilterClick",e.ON_SETTING_CHANGE="onSettingChange",e.ON_ROW_EXPAND_CLICK="onRowExpandClick",e.ON_ROW_CHECK="onRowCheck",e))(bn||{}),Vt=(e=>(e.COLUMN_PICK="columnPick",e.COLUMN_SORT="columnSort",e.COLUMN_FILTER="columnFilter",e.COLUMN_FILTER_SAVE="colFilterSave",e.ROW_CLICK="rowClick",e.ROW_DBL_CLICK="rowDblclick",e.ROW_EXPAND_CLICK="rowExpand",e.PAGE_LIMIT_CHANGE="pageLimitChange",e.PAGE_VALUE_CHANGE="pageValueChange",e.SETTING_CHANGE="settingChange",e.SCROLL_BOTTOM="scrollBottom",e.ROW_SELECT="select",e.ROW_SELECT_ALL="selectAll",e.ROW_SELECT_CHANGE="selectionChange",e))(Vt||{});const Kt=(...e)=>!0,a5={columnPick:Kt,columnFilter:Kt,columnSort:Kt,colFilterSave:Kt,rowClick:Kt,rowDblclick:Kt,rowExpand:Kt,select:Kt,selectAll:Kt,selectionChange:Kt,pageLimitChange:Kt,pageValueChange:Kt,settingChange:Kt,scrollBottom:Kt},Re={ROW_INDEX:"__$table_row_index",ROW_UID:"__$uuid",ROW_EXPAND:"__row_expand",ROW_SELECTION:"__row_selection",ROW_SELECTION_ALL:"__row_selection_all",ROW_SELECTION_INDETERMINATE:"__row_selection_indeterminate",ROW_SOURCE_DATA:"__row_source_data",ROW_SKIP_CFG:"__row_skip_config"},ci={COL_UID:"__col_$uuid",COL_SOURCE_DATA:"__col_source_data"},Vc=6,ui=42,ll={large:78,medium:60,small:42},r5=[{value:"small",label:"\u5C0F",height:ll.small},{value:"medium",label:"\u4E2D",height:ll.medium},{value:"large",label:"\u5927",height:ll.large}],rh="InitColumns";var xt=(e=>(e.ASC="asc",e.DESC="desc",e.NULL="null",e.CUSTOM="custom",e))(xt||{});const s5=["asc","desc","null","custom"],sh=20;var ol=(e=>(e.CURRENT="current",e.ALL="all",e))(ol||{});const lh={label:g.oneOfType([g.func.def(()=>""),g.string.def("")]),field:g.oneOfType([g.func.def(()=>""),g.string.def("")]),render:g.oneOfType([g.func.def(()=>""),g.string.def("")]),width:g.oneOfType([g.number.def(void 0),g.string.def("auto")]),minWidth:g.oneOfType([g.number.def(void 0),g.string.def("auto")]).def(),columnKey:g.string.def(""),showOverflowTooltip:g.oneOfType([g.bool,g.shape({content:g.string.def(""),disabled:g.bool.def(!1),watchCellResize:g.bool.def(!0),mode:g.commonType(["static","auto"],"showOverflowTooltipMode").def("auto")})]).def(void 0),type:g.commonType(["selection","index","expand","none"],"columnType").def("none"),resizable:g.bool.def(!0),fixed:g.oneOfType([g.bool,g.commonType(["left","right"],"fixed")]).def(!1),sort:g.oneOfType([g.shape({sortFn:g.func.def(void 0),sortScope:g.commonType(Object.values(ol)).def("current"),value:g.string.def(xt.NULL)}),g.bool,g.string]).def(!1),filter:g.oneOfType([g.shape({list:g.arrayOf(g.any).def([]),filterFn:g.func.def(void 0),match:g.commonType(["full","fuzzy"],"full"),filterScope:g.commonType(Object.values(ol)).def("current"),btnSave:g.oneOfType([g.bool,g.string]).def("\u786E\u5B9A"),btnReset:g.oneOfType([g.bool,g.string]).def("\u91CD\u7F6E")}),g.bool,g.string]).def(!1),colspan:g.oneOfType([g.func.def(()=>1),g.number.def(1)]),rowspan:g.oneOfType([g.func.def(()=>1),g.number.def(1)])},l5={data:g.arrayOf(g.any).def([]),columns:g.arrayOf(g.shape(lh)).def([]),activeColumn:g.oneOfType([g.number.def(-1),g.arrayOf(g.number.def(-1))]),columnPick:g.commonType(["multi","single","disabled"],"columnPick").def("disabled"),height:g.oneOfType([g.number,g.string]).def("auto"),minHeight:g.oneOfType([g.number,g.string]).def(ui*2),maxHeight:g.oneOfType([g.number,g.string]).def("auto"),rowHeight:g.oneOfType([g.number,g.func]).def(ui),headHeight:g.number.def(ui),showHead:g.bool.def(!0),thead:g.shape({height:g.number.def(ui),isShow:g.bool.def(!0),cellFn:g.func.def(void 0)}),virtualEnabled:g.bool.def(!1),border:g.oneOfType([g.arrayOf(g.commonType(ah,"border")),g.string]).def([sl.ROW]),pagination:g.oneOfType([g.bool.def(!1),g.object.def({})]).def(!1),remotePagination:g.bool.def(!1),emptyText:g.string.def("\u6682\u65E0\u6570\u636E"),settings:g.oneOfType([g.shape({fields:g.arrayOf(g.shape({label:g.string,field:g.string,disabled:g.bool})),checked:g.arrayOf(g.string),limit:g.number.def(0),size:g.size(["small","medium","large"]).def("small"),sizeList:g.shape([]),showLineHeight:g.bool.def(!0)}),g.bool]).def(!1),rowClass:g.oneOfType([g.string,g.object,g.func]).def({}),rowStyle:g.oneOfType([g.string,g.object,g.func]).def({}),cellStyle:g.oneOfType([g.string,g.object,g.func]).def({}),cellClass:g.oneOfType([g.string,g.object,g.func]).def({}),scrollLoading:g.oneOfType([g.object,g.bool]).def(void 0),reserveExpand:g.bool.def(!1),selectionKey:g.string.def(""),isSelectedFn:g.func.def(void 0),rowKey:g.oneOfType([g.string,g.func]).def(Re.ROW_INDEX),showOverflowTooltip:g.oneOfType([g.bool,g.shape({content:g.string.def(""),disabled:g.bool.def(!1),watchCellResize:g.bool.def(!0),mode:g.commonType(["static","auto"],"showOverflowTooltipMode").def("auto")})]).def(!1),asyncData:g.bool.def(!1),rowHover:g.oneOf(i5).def(ih.HIGHLIGHT),defaultSort:g.shape({}).def({}),isRowSelectEnable:g.oneOfType([g.func.def(()=>!0),g.bool.def(!0)]).def(!0)};var oh=a.defineComponent({name:"TableColumn",props:xe(Y({},lh),{prop:g.oneOfType([g.func.def(()=>""),g.string.def("")])}),setup(e,{slots:t}){const n=a.inject(rh,i=>{},!1);return a.onMounted(()=>{const i=a.reactive(xe(Y({},e),{field:e.prop||e.field}));n(i),i.render=t.default?s=>{var o;return(o=t.default)==null?void 0:o.call(t,s)}:void 0}),()=>{var i;return a.createVNode(a.Fragment,null,[(i=t.default)==null?void 0:i.call(t,{data:""})])}}});const ch=(e,t)=>{if(e){if(typeof e=="object"){let n=Object.prototype.hasOwnProperty.call(e,"current")?e.current:e.value;return/\d+/.test(n)||(n=1),xe(Y(Y({},t),e),{current:n})}return t}return{}};var o5=(e,t)=>{const n=a.ref(0),i=a.ref(0);let s=a.reactive({count:0,limit:10,current:1,align:"right",layout:["total","limit","list"]});s=ch(e.pagination,s);const o=a.ref(null),c=()=>{if(!e.pagination||e.remotePagination){n.value=0,i.value=e.data.length;return}n.value=(s.current-1)*s.limit,i.value=s.current*s.limit},d=a.reactive([]),u=(b,v)=>{typeof v=="function"&&b.sort(v)},f=(b,v)=>{if(typeof v=="function"){const T=b.filter((x,k)=>v(x,k,e.data));b.splice(0,b.length,...T)}},m=(b,v,T)=>{var I;const x=t.slice(),{sortScope:k}=(I=T==null?void 0:T.sort)!=null?I:{};k===ol.ALL&&u(x,v),d.splice(0,d.length,...x.slice(n.value,i.value)),f(d,b),u(d,v)},p=(b,v,T)=>{s=ch(e.pagination,s),y(),c(),m(b,v,T)},y=()=>{!e.pagination||(o.value=e.remotePagination?s:xe(Y({},s),{count:e.data.length}))};return{pageData:d,localPagination:o,resolvePageData:m,watchEffectFn:p}},c5=(e,t)=>{const n=a.toRef(e,"scrollLoading"),i=()=>typeof n.value=="boolean"?{loading:!!n.value,inline:!0,title:"",size:Fn.Normal,mode:aa.Default,indicator:null}:n.value,s=a.computed(()=>n.value!==null&&(typeof n.value=="boolean"&&n.value||typeof n.value=="object"));return{renderScrollLoading:()=>{var c,d,u;if(s.value){const{loading:f,size:m,mode:p,title:y,inline:b,indicator:v}=i();return(u=(d=(c=t.slots).fixedBottom)==null?void 0:d.call(c))!=null?u:a.createVNode(Di,{loading:f,size:m,mode:p,title:y,inline:b,indicator:v},null)}}}};function u5(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var d5=()=>{const{proxy:e}=a.getCurrentInstance(),t=a.ref(e.limit);a.watch(()=>e.limit,s=>{t.value=s}),a.watch(()=>e.limitList,s=>{a.nextTick(()=>{s.includes(t.value)||([t.value]=s)})},{immediate:!0});const n=s=>{t.value=s};return{limit:t,render:({isFirst:s,isLast:o})=>{let c;return e.showLimit?a.createVNode("div",a.mergeProps({class:{"bk-pagination-limit":!0,"is-first":s,"is-last":o}},{disabled:e.disabled}),[a.createVNode("div",null,[a.createTextVNode("\u6BCF\u9875")]),a.createVNode(Pc,{class:"bk-pagination-limit-select",clearable:!1,size:"small",withValidate:!1,modelValue:t.value,onChange:n,disabled:e.disabled},u5(c=e.limitList.map((d,u)=>a.createVNode(al,{value:d,label:`${d}`,key:`${u}_${d}`},null)))?c:{default:()=>[c]}),a.createVNode("div",null,[a.createTextVNode("\u6761")])]):null}}};const ca=5;var f5=()=>{const{proxy:e}=a.getCurrentInstance(),t=a.ref(1),n=a.computed(()=>t.value===1),i=a.computed(()=>t.value===e.totalPageNum),s=a.ref(!1),o=a.ref(!1),c=a.computed(()=>{s.value=!1,o.value=!1;const b=[];if(e.totalPageNum<=ca+2){for(let x=2;x<=e.totalPageNum-1;x++)b.push(x);return b}const v=Math.floor(ca/2);e.totalPageNum>ca&&(s.value=t.value-v>2,o.value=t.value+v<e.totalPageNum-1);const T=Math.min(e.totalPageNum-ca,Math.max(2,t.value-v));for(let x=T;x<T+ca;x++)b.push(x);return b});a.watch(()=>e.modelValue,b=>{a.nextTick(()=>{b>=1&&b<=e.totalPageNum?t.value=b:b<1?t.value=1:t.value=e.totalPageNum})},{immediate:!0}),a.nextTick(()=>{a.watch(()=>e.totalPageNum,b=>{t.value>b&&(t.value=b)})});const d=()=>{n.value||(t.value=t.value-1)},u=()=>{i.value||(t.value=t.value+1)},f=b=>{b!==t.value&&(t.value=b)},m=()=>{t.value=Math.max(1,t.value-ca)},p=()=>{t.value=Math.min(e.totalPageNum,t.value+ca)};return{current:t,render:({isFirst:b,isLast:v})=>a.createVNode("div",{class:{"bk-pagination-list":!0,"is-first":b,"is-last":v}},[a.createVNode("div",{class:{"bk-pagination-list-pre":!0,"is-disabled":n.value},onClick:d},[e.prevText||a.createVNode(Si,null,null)]),a.createVNode("div",{class:{"bk-pagination-list-item":!0,"is-active":t.value===1},key:"1",onClick:()=>f(1)},[a.createTextVNode("1")]),s.value&&a.createVNode("div",{key:"pre-batch",class:"bk-pagination-list-pre-batch",onClick:m},[a.createVNode(Js,null,null)]),c.value.map(T=>a.createVNode("div",{class:{"bk-pagination-list-item":!0,"is-active":t.value===T},key:T,onClick:()=>f(T)},[T])),o.value&&a.createVNode("div",{key:"next-batch",class:"bk-pagination-list-next-batch",onClick:p},[a.createVNode(Js,null,null)]),e.totalPageNum>1&&a.createVNode("div",{class:{"bk-pagination-list-item":!0,"is-active":t.value===e.totalPageNum},key:"last",onClick:()=>f(e.totalPageNum)},[e.totalPageNum]),a.createVNode("div",{class:{"bk-pagination-list-pre":!0,"is-disabled":i.value},onClick:u},[e.nextText||a.createVNode(jn,null,null)])])}},h5=()=>{const{proxy:e}=a.getCurrentInstance(),t=a.ref(null),n=a.ref(!1),i=a.ref(1),s=a.computed(()=>i.value===1),o=a.computed(()=>i.value===e.totalPageNum);let c=0;const d=a.computed(()=>{const x=[];for(let k=1;k<=e.totalPageNum;k++)x.push(k);return x});a.watch(()=>e.modelValue,x=>{a.nextTick(()=>{x>=1&&x<=e.totalPageNum?i.value=x:x<1?i.value=1:i.value=e.totalPageNum,c=i.value})},{immediate:!0}),a.nextTick(()=>{a.watch(()=>e.totalPageNum,x=>{i.value>x&&(i.value=x)})});const u=()=>{s.value||(i.value=i.value-1)},f=()=>{o.value||(i.value=i.value+1)},m=()=>{n.value=!0},p=()=>{n.value=!1,t.value.textContent=`${c}`,c!==i.value&&(i.value=c)},y=x=>{const k=x.target,I=Number(k.textContent);!I||I<1||I>e.totalPageNum||I===i.value||(c=I)},b=x=>{["Enter","NumpadEnter"].includes(x.code)&&(x.preventDefault(),p())},v=x=>{c=x,p()};return{current:i,render:()=>a.createVNode("div",{class:"bk-pagination-small-list"},[a.createVNode("div",{class:{"bk-pagination-btn-pre":!0,"is-disabled":s.value},onClick:u},[a.createVNode(Si,null,null)]),a.createVNode(pn,{theme:"light",trigger:"click",arrow:!1,width:56,boundary:"body",placement:"bottom"},{default:()=>a.createVNode("div",{class:{"bk-pagination-picker":!0,"is-focused":n.value}},[a.createVNode("span",{ref:t,class:"bk-pagination-editor",contenteditable:!0,spellcheck:"false",onFocus:m,onBlur:p,onInput:y,onKeydown:b},[i.value]),a.createVNode("span",null,[a.createTextVNode("/")]),a.createVNode("span",{class:"bk-pagination-small-list-total"},[e.totalPageNum])]),content:()=>a.createVNode("div",{class:"bk-pagination-picker-list"},[d.value.map(x=>a.createVNode("div",{class:{item:!0,"is-actived":x===i.value},key:x,onClick:()=>v(x)},[x]))])}),a.createVNode("div",{class:{"bk-pagination-btn-next":!0,"is-disabled":o.value},onClick:f},[a.createVNode(jn,null,null)])])}},g5=()=>({isFirst:e,isLast:t})=>{const{props:n}=a.getCurrentInstance();return n.showTotalCount?a.createVNode("div",a.mergeProps({class:{"bk-pagination-total":!0,"is-first":e,"is-last":t}},{disabled:n.disabled}),[a.createTextVNode("\u5171\u8BA1"),a.createVNode("div",{class:"bk-pagination-total-num"},[n.count]),a.createTextVNode("\u6761")]):null};const m5={modelValue:g.number.def(1),count:g.number.def(0).isRequired,limit:g.number.def(10),limitList:g.arrayOf(Number).def([10,20,50,100]),showLimit:g.bool.def(!0),type:g.oneOf(["default","compact"]).def("default"),location:g.oneOf(["left","right"]).def("right"),align:g.oneOf(["left","center","right"]).def("left"),size:g.size(),small:g.bool.def(!1),showTotalCount:g.bool.def(!0),prevText:g.string,nextText:g.string,disabled:g.bool.def(!1),beforeChange:g.func,layout:g.custom(e=>{const t={total:!0,list:!0,limit:!0};return e.some(n=>t[n])},"layout \u7684\u503C\u53EA\u652F\u6301 * total\u3001list\u3001limit *").def(["total","list","limit"])};var p5=a.defineComponent({name:"Pagination",props:m5,emits:["update:modelValue","change","update:limit","limitChange"],setup(e,t){const n=a.ref(0),{count:i,limit:s}=a.toRefs(e),o=g5(),{current:c,render:d}=f5(),{current:u,render:f}=h5(),{limit:m,render:p}=d5();return a.watch([i,m,s],([y,b])=>{const v=Math.ceil(y/b);n.value=v<1?1:v},{immediate:!0}),a.watch(c,y=>{t.emit("update:modelValue",y),t.emit("change",y)}),a.watch(u,y=>{!e.small||(t.emit("update:modelValue",y),t.emit("change",y))}),a.watch(m,y=>{t.emit("limitChange",y)}),{totalPageNum:n,renderTotal:o,renderList:d,renderLimit:p,renderSmallList:f}},render(){const e=ze({"bk-pagination":!0,[`bk-pagination--${this.size}`]:!0,[`is-align-${this.align}`]:!0}),t={total:this.renderTotal,list:this.small?this.renderSmallList:this.renderList,limit:this.renderLimit};return a.createVNode("div",{class:e},[this.layout.map((n,i)=>t[n]({isFirst:i===0,isLast:i===this.layout.length-1}))])}});const Jc=He(p5),Dt=(e,t,n)=>{if(typeof t=="string")return Object.prototype.hasOwnProperty.call(e,t)?typeof e[t]=="function"?e[t].call(globalThis,...n):e[t]:void 0;if(Array.isArray(t))return t.map(i=>Dt(e,i,n)).filter(i=>i!==void 0).at(0)},Qc=e=>/^\d+$/.test(`${e}`)?[parseInt(`${e}`,10)]:[],b5=e=>uh(e,"auto"),uh=(e,t="100%",n=null)=>{let i="";return/^auto|null|undefined$/ig.test(`${e}`)?i=t:i=/^\d+\.?\d+$/.test(`${e}`)?`${e}px`:e,n&&(i=`calc(${i} - ${n})`),i},y5=e=>{const t=["row"];return typeof e=="string"&&t.push(e),Array.isArray(e)&&t.push(...e.filter(n=>ah.includes(n))),[...new Set(t)].map(n=>`bordered-${n}`).join(" ")},Hr=(e,t=["resizeWidth","calcWidth","width"])=>{var n,i;return(i=(n=e[t[0]])!=null?n:e[t[1]])!=null?i:e[t[2]]},Rc=(e,t,n=sh,i=0)=>{const{width:s}=e.getBoundingClientRect()||{},o=s-i;let c=o;const d=[],u=(m,p)=>{const{minWidth:y=void 0}=m;if(y===void 0)return p;let b=p;return/^\d+\.?\d*$/.test(`${y}`)&&(b=Number(y)),/^\d+\.?\d*%$/.test(`${y}`)&&(b=Number(y)*o/100),/^\d+\.?\d*px$/i.test(`${y}`)&&(b=Number(`${y}`.replace(/px/i,""))),b},f=(m,p,y=!0)=>{const b=u(m,p),v=p<b?b:p;Object.assign(m,{calcWidth:v}),y&&(c=c-v,c<0&&(c=0))};if(t.forEach((m,p)=>{if(!m.isHidden){const b=String(Hr(m,["resizeWidth","width"]));let v=!0;if(/^\d+\.?\d*(px)?$/.test(b)){const T=Number(b.replace("px",""));f(m,T),v=!1}if(/^\d+\.?\d*%$/.test(b)){let T=n;if(c>0){const x=Number(b.replace("%",""));T=c*x/100}f(m,T),v=!1}v&&d.push(p)}}),d.length>0){let m=n;c>0&&d.forEach((p,y)=>{m=c/(d.length-y),f(t[p],m,!1);const{calcWidth:b}=t[p];c=c-b})}},dh=(e,t,n=60,i=!1)=>{const s=ot.exports.throttle(()=>{typeof t=="function"&&t()},n),o=new ResizeObserver(()=>{s()});return i&&typeof t=="function"&&t(),{start:()=>{o.observe(e)},stop:()=>{o.disconnect(),o.unobserve(e)}}},_c=e=>{const{showHead:t,headHeight:n,thead:i={}}=e;return Object.assign({},{isShow:t,height:n},Y({},i))},cl=(e,t,n)=>n.type==="index"?e[Re.ROW_INDEX]+1:ot.exports.get(e,t),Br=(e,t)=>Array.isArray(e)?e:typeof e=="string"||typeof e=="object"?[e]:typeof e=="function"?Br(Reflect.apply(e,globalThis,t),t):[],C5=(e,t,n)=>typeof t.rowKey=="string"?t.rowKey===Re.ROW_INDEX?`__ROW_INDEX_${n}`:ot.exports.get(e,t.rowKey):typeof t.rowKey=="function"?Reflect.apply(t.rowKey,globalThis,[e]):ki.v4(),v5=(e,t,n=0)=>{if(e){const i=e.querySelector(t);if(i)return i.offsetHeight>e.offsetHeight-n}return!1},w5=(e,t)=>{function n(o,c){const u=(n.canvas||(n.canvas=document.createElement("canvas"))).getContext("2d");return u.font=c,u.measureText(o).width}function i(o,c){return window.getComputedStyle(o,null).getPropertyValue(c)}function s(o=document.body){const c=i(o,"font-weight")||"normal",d=i(o,"font-size")||"16px",u=i(o,"font-family")||"Times New Roman";return`${c} ${d} ${u}`}return n(t||(e==null?void 0:e.innerHTML),s(e))},fh=(e,t,n)=>(s=>e.some(o=>o.field===Dt(s,["field","type"],[s])))(t)&&n.length&&!n.includes(Dt(t,["field","type"],[t])),hh=(e,t,n,i,s)=>typeof e[s]=="function"?Reflect.apply(e[s],globalThis,[{column:e,colIndex:t,row:n,rowIndex:i}]):typeof e[s]=="number"?e[s]:1,gh=(e,t,n,i)=>{const s=hh(e,t,n,i,"colspan"),o=hh(e,t,n,i,"rowspan");return{colspan:s,rowspan:o}},mh=(e,t)=>{var c,d;const n=e.field,i=u=>cl(u,n,e),s=(u,f)=>{const m=i(u),p=i(f);return typeof m=="number"&&typeof p=="number"?m-p:String.prototype.localeCompare.call(m,p)},o=typeof((c=e.sort)==null?void 0:c.sortFn)=="function"?(d=e.sort)==null?void 0:d.sortFn:s;return t===xt.NULL?()=>!0:(u,f)=>o(u,f)*(t===xt.DESC?-1:1)},ph=e=>{const t={[xt.NULL]:0,[xt.ASC]:1,[xt.DESC]:2};return e===void 0?xt.NULL:Object.keys(t)[(t[e]+1)%3]},bh=e=>{if(typeof e=="string")return{value:e};if(typeof e=="boolean"&&e)return{value:xt.NULL};if(typeof e=="object"&&e!==null){return e.sortFn,Y({value:"custom"},e);return e}return null},M5=(e,{row:t,index:n,isCheckAll:i})=>typeof e.isRowSelectEnable=="boolean"?e.isRowSelectEnable:typeof e.isRowSelectEnable=="function"?e.isRowSelectEnable({row:t,index:n,isCheckAll:i}):!0;var yh=a.defineComponent({name:"TableCell",props:{column:g.any.def({}),row:g.any.def({}),parentSetting:g.oneOfType([g.bool,g.shape({content:g.string.def(""),disabled:g.bool.def(!1),watchCellResize:g.bool.def(!0),mode:g.string.def("auto")})]).def(void 0),title:g.string.def(void 0)},setup(e,{slots:t}){const n=a.ref(),i=a.ref(!1),s=()=>/boolean|object/.test(typeof e.column.showOverflowTooltip)&&e.column.showOverflowTooltip!==null?e.column:{showOverflowTooltip:e.parentSetting},{showOverflowTooltip:o=!1}=s();let c=null,d=null;const u=()=>{let m=!0,p=n.value.innerText,y="auto";return typeof o=="boolean"&&(m=!o),typeof o=="object"&&(m=o.disabled,typeof o.content=="function"&&(p=o.content(e.column,e.row)),p=o.content||n.value.innerText,y=o.mode||"auto"),{disabled:m,content:p,mode:y}},f=()=>{if(!n.value||/selection|index|expand/.test(e.column.type)||!Aa(n.value))return;const{content:m,mode:p}=u();if(p==="auto"){const y=w5(n.value,m),b=n.value.clientWidth,v=window.getComputedStyle(n.value),T=["padding-left","padding-right"].reduce((k,I)=>k+Number(v.getPropertyValue(I).replace("px","")),0),x=b-T;i.value=y>x}if(p==="static"&&(i.value=!0),i.value){const y=a.ref(u());d===null&&(d=Tc(n.value,y))}else d==null||d.destroyInstance(n.value),d=null};return a.onMounted(()=>{var p;const{disabled:m}=u();m||(f(),((p=e.column.showOverflowTooltip)==null?void 0:p.watchCellResize)!==!1&&(c=dh(n.value,()=>{f()},60,!0),c.start()))}),a.onBeforeUnmount(()=>{c==null||c.stop(),d==null||d.destroyInstance(n.value)}),()=>{var m;return a.createVNode("div",{class:"cell",ref:n,title:e.title},[(m=t.default)==null?void 0:m.call(t)])}}}),Wc=a.defineComponent({name:"TableRow",render(){var e,t;return a.createVNode(a.Fragment,null,[(t=(e=this.$slots).default)==null?void 0:t.call(e)])}}),I5=a.defineComponent({name:"BodyEmpty",props:{list:g.array.def([]),filterList:g.array.def([]),emptyText:g.string.def("\u6682\u65E0\u6570\u636E")},emits:["change"],setup(e){const t=a.computed(()=>e.list.length===0?"empty":"search-empty");return()=>a.createVNode(Fs,{scene:"part",type:t.value,description:e.emptyText},null)}});function N5(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var L5=a.defineComponent({name:"HeadFilter",props:{column:g.any.def({}),height:g.number.def(ui)},emits:["change","filterSave"],setup(e,{emit:t}){const{column:n}=e,i=a.reactive({isOpen:!1,checked:[]}),s=a.computed(()=>ze({[Ye("table-head-action")]:!0,"column-filter":!0,"--row-height":`${e.height}px`,active:i.checked.length,opened:i.isOpen})),o=ze({[Ye("table-head-filter")]:!0}),c=M=>{i.isOpen=M},d=`light ${Ye("table-head-filter")}`,u=a.computed(()=>{const{list:M=[]}=n.filter;return M.map(N=>xe(Y({},N),{checked:i.checked.includes(N.value)}))}),f=(M,N="ig")=>new RegExp(`${M}`.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),N),m=(M,N)=>{const{match:L}=n.filter,j=cl(N,Dt(n,"field",[n,N]),n);return L==="full"&&M.includes(j),M.some(z=>f(z,"img").test(j))},p=typeof n.filter.filterFn=="function"?(M,N,L,j)=>n.filter.filterFn(M,N,e.column,L,j):(M,N)=>M.length?m(M,N):!0,y=()=>{b(!0),t("filterSave",[...i.checked]),i.isOpen=!1},b=(M=!1)=>{const{disabled:N}=T(x,"\u786E\u5B9A");if(N||M){if(e.column.filter==="custom"){t("change",[...i.checked],null),i.isOpen=!1;return}t("change",[...i.checked],p)}},v=()=>{i.checked.length&&(i.checked.splice(0,i.checked.length),i.isOpen=!1,a.nextTick(()=>t("change",i.checked,p)))},T=(M,N)=>({disabled:M==="disabled"||M===!1,text:typeof M=="string"?M:N}),{btnSave:x,btnReset:k}=n.filter,I=()=>{const{disabled:M,text:N}=T(x,"\u786E\u5B9A");return M?a.createVNode("span",{class:"btn-filter-save disabled"},[N]):a.createVNode("span",{class:"btn-filter-save",onClick:y},[N])},C=()=>{const{disabled:M,text:N}=T(k,"\u91CD\u7F6E");return M?"":a.createVNode("span",{class:["btn-filter-reset",i.checked.length?"":"disable"],onClick:v},[N])};return()=>a.createVNode(pn,a.mergeProps({trigger:"click",isShow:i.isOpen,placement:"bottom-start",arrow:!1,offset:0},{theme:d},{onAfterShow:()=>c(!0),onAfterHidden:()=>c(!1)}),{default:()=>a.createVNode(Xo,{class:s.value},null),content:()=>{let M;return a.createVNode("div",{class:o},[a.createVNode(dc,{class:"content-list",modelValue:i.checked,"onUpdate:modelValue":N=>i.checked=N,onChange:()=>b(!1)},N5(M=u.value.map(N=>a.createVNode("div",{class:"list-item"},[a.createVNode(zi,{label:N.value},{default:()=>[N.text]})])))?M:{default:()=>[M]}),a.createVNode("div",{class:"content-footer"},[I(),a.createVNode("span",{class:"btn-filter-split"},null),C()])])}})}}),k5=a.defineComponent({name:"HeadSort",props:{column:g.any.def({}),defaultSort:g.oneOf(s5).def(xt.NULL)},emits:["change"],setup(e,{emit:t}){var o,c;const n=((c=(o=e.column)==null?void 0:o.sort)==null?void 0:c.value)||e.defaultSort||xt.NULL,i=a.ref(n);a.watch(()=>[e.defaultSort],([d])=>{i.value=d});const s=(d,u)=>{d.stopImmediatePropagation(),d.stopPropagation(),d.preventDefault();let f=u;u===xt.NULL&&(f=ph(u)),i.value===u&&(f=xt.NULL);const m=bh(e.column.sort);if((m==null?void 0:m.value)==="custom"){t("change",m==null?void 0:m.sortFn,f);return}const p=mh(e.column,f);t("change",p,f)};return()=>a.createVNode("span",{class:Ye("head-cell-sort"),onClick:d=>s(d,xt.NULL)},[a.createVNode(_o,{class:["sort-action","sort-asc",i.value===xt.ASC?"active":""],onClick:d=>s(d,xt.ASC)},null),a.createVNode(Os,{class:["sort-action","sort-desc",i.value===xt.DESC?"active":""],onClick:d=>s(d,xt.DESC)},null)])}});class T5{constructor(t,n){mr(this,"props",null);mr(this,"ctx",null);this.props=t,this.ctx=n}}function Ch(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var x5=a.defineComponent({name:"Settings",props:{settings:g.oneOfType([g.shape({fields:g.arrayOf(g.shape({label:g.string,field:g.string,disabled:g.bool})),checked:g.arrayOf(g.string),limit:g.number.def(0),size:g.size(["small","medium","large"]).def("small"),sizeList:g.shape([]),showLineHeight:g.bool.def(!0)}),g.bool]).def(!1),columns:g.array.def([]),rowHeight:g.number.def(ui)},emits:["change"],setup(e,{emit:t}){const n=r5,i=(Z,B)=>Dt(Z,["field","type"],[Z,B]),s=a.ref(!1),o=a.ref(!1),c=typeof e.settings=="boolean"?a.ref({fields:e.columns.map(Z=>xe(Y({},Z),{field:Z.field||Z.type})),checked:[],limit:0,size:"small",sizeList:n,showLineHeight:!0}):a.ref(e.settings),d=a.ref(c.value.size||"small"),u=a.ref(e.rowHeight),f=a.ref(c.value.checked||[]),p=`light ${Ye("table-settings")}`,y={checkAll:s.value,activeSize:d.value,activeHeight:u.value,checkedFields:c.value.checked||[]},b=()=>{Object.assign(y,{checkAll:s.value,activeSize:d.value,activeHeight:u.value,checkedFields:f.value}),t("change",{checked:f.value,size:d.value,height:u.value}),o.value=!1},v=()=>{s.value=y.checkAll,d.value=y.activeSize,u.value=y.activeHeight,f.value=y.checkedFields,o.value=!1},T=()=>{o.value=!0},x=Z=>{Z.stopImmediatePropagation(),Z.stopPropagation(),Z.preventDefault(),s.value=!s.value;const B=c.value.fields||e.columns||[],ne=B.filter((ue,Ce)=>ue.disabled&&f.value.includes(i(ue,Ce))).map((ue,Ce)=>i(ue,Ce));if(s.value){const ue=B.filter(Ce=>!Ce.disabled).map((Ce,Ne)=>i(Ce,Ne));f.value.splice(0,f.value.length,...ue,...ne)}else f.value.splice(0,f.value.length,...ne)},k=a.computed(()=>{var Z;return((Z=c.value.limit)!=null?Z:0)>0}),I=c.value.sizeList||n,C=a.computed(()=>k.value&&(c.value.limit?c.value.limit:0)<=f.value.length),M=(Z,B)=>Z.disabled||C.value&&!f.value.includes(i(Z,B)),N=Z=>{d.value=Z.value,u.value=Z.height},L=Z=>({"line-size":!0,"is-medium":d.value==="medium",active:Z.value===d.value}),j={marginRight:"12px"},z=()=>I.map(Z=>a.createVNode("span",{class:L(Z),onClick:()=>N(Z)},[Z.label])),O=a.computed(()=>c.value.fields||e.columns||[]),R=a.computed(()=>f.value.length>0&&!O.value.every((Z,B)=>f.value.includes(Dt(Z,"field",[Z,B])))),P=a.computed(()=>typeof c.value.showLineHeight=="boolean"?c.value.showLineHeight:!0);return a.watch(()=>[f.value],()=>{f.value.length||(s.value=!1),f.value.length&&O.value.every((Z,B)=>f.value.includes(i(Z,B)))&&(s.value=!0)},{immediate:!0,deep:!0}),a.watch(()=>[e.settings.checked],()=>{f.value.splice(0,f.value.length,...c.value.checked)},{immediate:!0,deep:!0}),()=>e.settings?a.createVNode(pn,a.mergeProps({trigger:"manual",isShow:o.value,placement:"bottom-end",arrow:!0},{theme:p}),{default:()=>a.createVNode("span",{class:"table-head-settings",onClick:T},[a.createVNode(Go,{style:"color: #c4c6cc;"},null)]),content:()=>{let Z;return a.createVNode("div",{class:"setting-content"},[a.createVNode("div",{class:"setting-head"},[a.createVNode("span",{class:"head-title"},[a.createTextVNode("\u8868\u683C\u8BBE\u7F6E")]),a.createVNode(Ps,{class:"icon-close-action",onClick:v},null)]),a.createVNode("div",{class:"setting-body"},[a.createVNode("div",{class:"setting-body-title"},[a.createVNode("div",null,[a.createVNode("span",{class:"field-setting-label"},[a.createTextVNode("\u5B57\u6BB5\u663E\u793A\u8BBE\u7F6E")]),k.value?a.createVNode("span",{class:"limit"},[a.createTextVNode("\uFF08\u6700\u591A"),c.value.limit,a.createTextVNode("\u9879\uFF09")]):""]),k.value?"":a.createVNode("span",{class:"check-all",onClick:x},[a.createVNode(zi,{label:"\u5168\u9009",indeterminate:Boolean(R.value),modelValue:f.value.length>0},{default:()=>[a.createTextVNode("\u5168\u9009")]})])]),a.createVNode(dc,{class:"setting-body-fields",modelValue:f.value,"onUpdate:modelValue":B=>f.value=B},Ch(Z=O.value.map((B,ne)=>{let ue;return a.createVNode("div",{class:"field-item"},[a.createVNode(zi,{checked:f.value.includes(i(B,ne)),label:i(B,ne),disabled:M(B,ne)},Ch(ue=Dt(B,"label",[B,ne]))?ue:{default:()=>[ue]})])}))?Z:{default:()=>[Z]}),P.value?a.createVNode("div",{class:"setting-body-line-height"},[a.createTextVNode("\u8868\u683C\u884C\u9AD8\uFF1A"),z()]):""]),a.createVNode("div",{class:"setting-footer"},[a.createVNode(At,{theme:"primary",style:j,onClick:b},{default:()=>[a.createTextVNode("\u786E\u5B9A")]}),a.createVNode(At,{style:j,onClick:v},{default:()=>[a.createTextVNode("\u53D6\u6D88")]})])])}}):""}}),Hc=(e,t,n)=>{const i=a.computed(()=>e.pagination&&e.data.length?ui:0),s=(v,T,x)=>({column_fixed:!!v.fixed,column_fixed_left:v.fixed!=="right",column_fixed_right:v.fixed==="right",shadow:v.fixed==="right"?T<x:T>0}),o=v=>v.fixed==="right"?"right":"left",c={left:(v=!0)=>t.filter(T=>T.fixed&&T.fixed!=="right").reduce((T,x,k)=>v&&k===0?T:T+Hr(x),0),right:(v=!0)=>t.filter(T=>T.fixed==="right").reduce((T,x,k)=>v&&k===0?T:T+Hr(x),n?Vc:0)},d=(v,T)=>{const x=T[ci.COL_UID],k=v==="right"?-1:1,{length:I}=t;let C=v==="right"?I*k:1,M=0;for(C;;){C=C+-1*k;const N=Math.abs(C),L=t[N],j=o(L),z=L[ci.COL_UID];if(j===v&&x!==z&&(M+=Hr(L)),C===0||x===z)break}return M},u=v=>{if(!v.fixed)return{};const T={left:0,right:0},x=o(v);return T[x]=d(x,v),{[x]:`${T[x]}px`}},f=v=>({width:`${c[v](!1)}px`,bottom:`${i.value}px`}),m={left:!1,right:!1},p=a.computed(()=>t.filter(v=>!v.isHidden&&v.fixed).map(v=>{const T=o(v),x=m[T];return m[T]=!0,{isExist:x,colPos:T,column:v}})),y=(v,T)=>p.value.map(({isExist:x,colPos:k,column:I})=>x?"":a.createVNode("div",{class:s(I,v,T),style:f(k)},null)),b=Ye("table-fixed");return{renderFixedColumns:y,fixedWrapperClass:b,resolveFixedColumnStyle:u}};function vh(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}class S5{constructor(t,n,i,s){mr(this,"getRowHeight",(t,n)=>{const{size:i,height:s}=this.setting;return s!=null?Dt(this.setting,"height",["tbody",t,n,i]):Dt(this.props,"rowHeight",["tbody",t,n])});mr(this,"getColumnClass",(t,n)=>({[`${this.uuid}-column-${n}`]:!0,column_fixed:!!t.fixed,column_fixed_left:!!t.fixed,column_fixed_right:t.fixed==="right"}));mr(this,"getHeadColumnClass",(t,n)=>xe(Y({},this.getColumnClass(t,n)),{active:this.isColActive(n)}));this.props=t,this.context=n,this.reactiveProp=i,this.colgroups=s,this.plugins=new T5(t,n),this.uuid=ki.v4(),this.events=new Map}get propActiveCols(){return this.reactiveProp.activeColumns}renderTableHeadSchema(){const{isShow:t=!0}=_c(this.props);if(!t)return null;const n=i=>{var u;const{checked:s=[],size:o,height:c}=i;this.reactiveProp.setting.size=o,this.reactiveProp.setting.height=c;const d=((u=this.props.settings)==null?void 0:u.fields)||[];s.length&&this.colgroups.forEach(f=>{f.isHidden=fh(d,f,s)}),this.emitEvent(bn.ON_SETTING_CHANGE,[i])};return[this.props.settings?a.createVNode(x5,{class:"table-head-settings",settings:this.reactiveProp.settings,columns:this.colgroups,rowHeight:this.props.rowHeight,onChange:n},null):"",a.createVNode("table",{cellpadding:0,cellspacing:0},[this.renderColGroup(),this.renderHeader()])]}renderTableBodySchema(t){var n,i,s;return t.length?a.createVNode("table",{cellpadding:0,cellspacing:0,"data-table-uuid":this.uuid},[this.renderColGroup(),this.renderTBody(t)]):(s=(i=(n=this.context.slots).empty)==null?void 0:i.call(n))!=null?s:a.createVNode(I5,{filterList:t,list:this.props.data,emptyText:this.props.emptyText},null)}renderTableFooter(t){return a.createVNode(Jc,a.mergeProps(t,{modelValue:t.current,onLimitChange:n=>this.handlePageLimitChange(n),onChange:n=>this.handlePageChange(n)}),null)}on(t,n){return this.events.has(t)||this.events.set(t,[]),this.events.get(t).push(n),this}destroy(){this.events.clear(),this.events=null}emitEvent(t,n){this.events.has(t)&&this.events.get(t).forEach(i=>{typeof i=="function"&&Reflect.apply(i,this,n)})}handlePageLimitChange(t){Object.assign(this.props.pagination,{limit:t}),this.context.emit(Vt.PAGE_LIMIT_CHANGE,t)}handlePageChange(t){Object.assign(this.props.pagination,{current:t,value:t}),this.context.emit(Vt.PAGE_VALUE_CHANGE,t)}setColumnActive(t,n=!1){const i=this.propActiveCols.find(s=>s.index===t);Object.assign(i,{active:!i.active}),n&&this.propActiveCols.filter(s=>s.index!==t&&s.active).forEach(s=>{Object.assign(s,{active:!1})})}handleColumnHeadClick(t,n){if(this.props.columnPick!=="disabled"&&(this.setColumnActive(t,this.props.columnPick==="single"),this.context.emit(Vt.COLUMN_PICK,this.propActiveCols)),n.sort&&!n.filter){const i=Dt(n,["field","type"],[n,t]),s=ph(this.reactiveProp.defaultSort[i]);Object.assign(this.reactiveProp.defaultSort,{[i]:s});const o=mh(n,s);this.emitEvent(bn.ON_SORT_BY_CLICK,[{sortFn:o,column:n,index:t,type:s}])}}getSortCell(t,n){const i=Dt(t,["field","type"],[t,n]),s=(c,d)=>{Object.assign(this.reactiveProp.defaultSort,{[i]:d}),this.emitEvent(bn.ON_SORT_BY_CLICK,[{sortFn:c,column:t,index:n,type:d}])},o=this.reactiveProp.defaultSort[i];return a.createVNode(k5,{column:t,defaultSort:o,onChange:s},null)}getFilterCell(t,n){const i=(o,c)=>{const d=(u,f)=>c(o,u,f);this.emitEvent(bn.ON_FILTER_CLICK,[{filterFn:d,checked:o,column:t,index:n}])},s=o=>{this.context.emit(Vt.COLUMN_FILTER_SAVE,{column:t,values:o})};return a.createVNode(L5,{column:t,height:this.props.headHeight,onChange:i,onFilterSave:s},null)}renderHeader(){const t=_c(this.props),{cellFn:n}=t,i={"--row-height":`${Dt(t,"height",["thead"])}px`},s=(u,f)=>typeof n=="function"?n(u,f):Dt(u,"label",[u,f]),o=(u,f)=>{if(u.type==="selection"){const b=this.reactiveProp.rowActions.get(Re.ROW_SELECTION_ALL);return this.renderCheckboxColumn({[Re.ROW_SELECTION]:!!b},0,!0)}const m=[];u.sort&&m.push(this.getSortCell(u,f)),u.filter&&m.push(this.getFilterCell(u,f));const p=s(u,f);m.unshift(p);const y=typeof p=="string"?p:void 0;return a.createVNode(yh,{title:y},vh(m)?m:{default:()=>[m]})},c=u=>Array.from(u.listeners.keys()).reduce((f,m)=>{const p=m.split("_").slice(-1)[0];return Object.assign(f,{[p]:y=>{u.listeners.get(m).forEach(b=>Reflect.apply(b,this,[y,u,this]))}})},{}),{resolveFixedColumnStyle:d}=Hc(this.props,this.colgroups);return a.createVNode("thead",{style:i},[a.createVNode(Wc,null,{default:()=>[a.createVNode("tr",null,[this.filterColgroups.map((u,f)=>a.createVNode("th",a.mergeProps({colspan:1,rowspan:1,class:this.getHeadColumnClass(u,f),style:d(u),onClick:()=>this.handleColumnHeadClick(f,u)},c(u)),[o(u,f)]))])]})])}renderTBody(t){const{resolveFixedColumnStyle:n}=Hc(this.props,this.colgroups),i=t.length;return a.createVNode("tbody",null,[t.map((s,o)=>{const c=[...Br(this.props.rowStyle,[s,o,this]),{"--row-height":`${this.getRowHeight(s,o)}px`}],d=[...Br(this.props.rowClass,[s,o,this]),`hover-${this.props.rowHover}`],u=s[Re.ROW_UID];return[a.createVNode(Wc,{key:u},{default:()=>[a.createVNode("tr",{style:c,class:d,onClick:f=>this.handleRowClick(f,s,o,t),onDblclick:f=>this.handleRowDblClick(f,s,o,t)},[this.filterColgroups.map((f,m)=>{var M,N;const p=[n(f),...Br(this.props.cellStyle,[f,m,s,o,this])],y={cell:!0,"expand-cell":f.type==="expand"},b=`__CELL_${o}_${m}`,{colspan:v,rowspan:T}=gh(f,m,s,o),x=Re.ROW_SKIP_CFG,k=f[ci.COL_UID],{skipRow:I=!1,skipCol:C=!1}=(N=(M=s[x])==null?void 0:M[k])!=null?N:{};if(!I&&!C){let L;const j=[this.getColumnClass(f,m),...Br(this.props.cellClass,[f,m,s,o,this]),{"expand-row":s[Re.ROW_EXPAND],"is-last":o+T>=i}];return a.createVNode("td",{class:j,style:p,key:b,colspan:v,rowspan:T},[a.createVNode(yh,{class:y,column:f,row:s,parentSetting:this.props.showOverflowTooltip},vh(L=this.renderCell(s,f,o,t))?L:{default:()=>[L]})])}return null})])]}),this.renderExpandRow(s,d)]})])}renderExpandRow(t,n){if(!!t[Re.ROW_EXPAND]){const s=[...n,{row_expend:!0}],o=`${t[Re.ROW_UID]}_expand`;return a.createVNode(Wc,{key:o},{default:()=>{var c,d,u;return[a.createVNode("tr",{class:s},[a.createVNode("td",{colspan:this.filterColgroups.length,rowspan:1},[(u=(d=(c=this.context.slots).expandRow)==null?void 0:d.call(c,t[Re.ROW_SOURCE_DATA]))!=null?u:a.createVNode("div",{class:"expand-cell-ctx"},[a.createTextVNode("Expand Row")])])])]}})}}handleRowClick(t,n,i,s){this.context.emit(Vt.ROW_CLICK,t,n,i,s,this)}handleRowDblClick(t,n,i,s){this.context.emit(Vt.ROW_DBL_CLICK,t,n,i,s,this)}getExpandCell(t){return!!t[Re.ROW_EXPAND]?a.createVNode(As,null,null):a.createVNode(Ws,null,null)}handleRowExpandClick(t,n,i,s,o){this.emitEvent(bn.ON_ROW_EXPAND_CLICK,[{row:t,column:n,index:i,rows:s,e:o}])}renderCellCallbackFn(t,n,i,s){const o=cl(t,Dt(n,"field",[n,t]),n),c=this.props.data[t[Re.ROW_INDEX]];return n.render({cell:o,data:c,row:t,column:n,index:i,rows:s})}renderCheckboxColumn(t,n,i=!1){const s=d=>{this.emitEvent(bn.ON_ROW_CHECK,[{row:t,index:n,isAll:i,value:d}])},o=i&&!!this.reactiveProp.rowActions.get(Re.ROW_SELECTION_INDETERMINATE),c=M5(this.props,{row:t,index:n,isCheckAll:i});return a.createVNode(zi,{onChange:s,disabled:!c,modelValue:t[Re.ROW_SELECTION],indeterminate:o},null)}renderExpandColumn(t,n,i,s){const o=()=>{var c,d,u;return typeof n.render=="function"?this.renderCellCallbackFn(t,n,i,s):(u=(d=(c=this.context.slots).expandCell)==null?void 0:d.call(c,{row:t,column:n,index:i,rows:s}))!=null?u:this.getExpandCell(t)};return a.createVNode("span",{class:"expand-btn-action",onClick:c=>this.handleRowExpandClick(t,n,i,s,c)},[o()])}renderCell(t,n,i,s){var d,u;const o=()=>{const f=cl(t,Dt(n,"field",[n,t]),n);return typeof n.render=="function"?this.renderCellCallbackFn(t,n,i,s):f},c={expand:(f,m,p,y)=>this.renderExpandColumn(f,m,p,y),selection:(f,m,p,y)=>this.renderCheckboxColumn(f,p)};return(u=(d=c[n.type])==null?void 0:d.call(c,t,n,i,s))!=null?u:o()}isColActive(t){return this.props.columnPick!=="disabled"&&this.propActiveCols.some(n=>n.index===t&&n.active)}renderColGroup(){return a.createVNode("colgroup",null,[(this.filterColgroups||[]).map((t,n)=>{const i=ze({active:this.isColActive(n)}),s=`${b5(Hr(t))}`.replace(/px$/i,"");return a.createVNode("col",{class:i,width:s},null)})])}get filterColgroups(){return this.colgroups.filter(t=>!t.isHidden)}get setting(){return this.reactiveProp.setting}}var ul=(e,t)=>({initColumns:s=>{let o=[];Array.isArray(s)?o=s:o=[s],o.forEach(c=>{if(!t.find(u=>u.label===c.label&&u.field===c.field)){const u=a.unref(c);t.push(u)}})},getColumns:()=>{var s;return t!=null&&t.length?t:(s=e.columns)!=null&&s.length?e.columns:[]}});const wh=e=>e.columnPick!=="disabled"?e.columnPick==="multi"?Array.isArray(e.activeColumn)?e.activeColumn:Qc(e.activeColumn):Array.isArray(e.activeColumn)?Qc(e.activeColumn[0]):Qc(e.activeColumn):[];var D5=(e,t)=>{let n=a.reactive([]);const{getColumns:i}=ul(e,t);if(e.columnPick==="disabled")return{activeColumns:n};const s=a.reactive(wh(e)),o=()=>i().map((c,d)=>({index:d,active:s.some(u=>u===d),_column:c}));return a.watchEffect(()=>{n=o();const c=wh(e);n.forEach((d,u)=>{Object.assign(d,{active:c.some(f=>f===u)})})}),{activeColumns:n}},j5=(e,t=!0)=>{const n="HeadColumnResize";let i;(function(C){C.MOUSE_MOVE="onMousemove",C.MOUSE_OUT="onMouseout",C.MOUSE_DOWN="onMousedown"})(i||(i={}));let s=!1,o=!1,c=!1,d=0,u=null,f=0;const m=a.ref(-1e3),p=C=>{var O;o=!1,c=!1;const M=document.body.style;M.cursor="";const N=C.clientX-d,L=((O=u.resizeWidth)!=null?O:u.calcWidth)+N,j=Number(u.minWidth);u.resizeWidth=L>j?L:j,document.removeEventListener("mouseup",p),document.removeEventListener("mousemove",b),d=0,m.value=-1e3,u=null,C.target.closest("table").querySelectorAll("th").forEach(R=>R.style.setProperty("user-select","inherit"))},y=C=>ot.exports.throttle(()=>{var j;const M=C.clientX-d,N=((j=u.resizeWidth)!=null?j:u.calcWidth)+M;Number(u.minWidth)<N&&(m.value=C.clientX-d+f)},60),b=C=>{document.body.style.setProperty("cursor",""),y(C)()},v={[i.MOUSE_DOWN]:(C,M)=>{if(!s)return;o=!0,document.body.style.setProperty("cursor","col-resize"),u=M,d=C.clientX;const L=C.target.closest("table");f=d-L.getBoundingClientRect().left,document.addEventListener("mouseup",p),document.addEventListener("mousemove",b)},[i.MOUSE_MOVE]:(C,M)=>{o&&!c&&(c=!0);const N=C.target.closest("th");if(c&&N.style.setProperty("user-select","none"),!c){if(!N)return;const L=N.getBoundingClientRect();L.width>12&&L.right-C.pageX<8?(s=!0,N.style.setProperty("cursor","col-resize")):(N.style.setProperty("cursor",""),s=!1)}},[i.MOUSE_OUT]:(C,M)=>{const N=C.target;c||N.style.setProperty("cursor","")}},T=C=>`${n}_${C}`,x=()=>{e.forEach(C=>{C.resizable!==!1&&Object.keys(v).forEach(M=>{const N=T(M);C.listeners.has(N)||C.listeners.set(N,[]),C.listeners.get(N).push(v[M])})})},k=()=>{e.forEach(C=>{Object.keys(v).forEach(M=>{const N=T(M);if(C.listeners.has(N)){const L=C.listeners.get(N);L.splice(0,L.length)}})})};t&&x();const I=a.computed(()=>({position:"absolute",top:0,bottom:0,left:0,width:"1px","background-color":"#ebeef5"}));return{registerResizeEvent:x,resetResizeEvents:k,dragOffsetX:m,dragOffsetXStyle:I}};const z5=(e,t,n,i,s)=>{const{getColumns:o}=ul(e,t),c=a.ref(200),d=a.ref(void 0),u=a.computed(()=>e.pagination&&e.data.length),f=a.computed(()=>ze({[Ye("table")]:!0,"has-footer":u.value,"has-scroll-y":d.value||e.virtualEnabled},y5(e.border))),m=ze({[Ye("table-head")]:!0,"has-settings":!!e.settings}),p=_c(e),y=a.computed(()=>({"--row-height":`${Dt(p,"height",["thead"])}px`,"--scroll-head-left":`-${i.scrollTranslateX}px`,"--scroll-left":`${i.scrollTranslateX}px`})),b={[Ye("table-body")]:!0},v=a.computed(()=>ze({[Ye("table-footer")]:!0,["is-hidden"]:!e.pagination||!e.data.length})),T=()=>{const z=o();if(z.every(O=>/^\d+\.?\d*(px)?$/ig.test(`${O.width}`))){const O=z.reduce((P,Z)=>P+Number(`${Z.width}`.replace(/px/ig,"")),0),R=d.value?Vc:0;return`${O+R}px`}return"100%"},x=a.computed(()=>({minHeight:uh(e.minHeight,"auto"),width:T(),maxWidth:"100%"})),k=(z,O)=>{const R=String(z);if(/^\d+\.?\d*$/.test(R))return Number(R);if(/^\d+\.?\d*px$/ig.test(R))return Number(R.replace("px",""));if(/^\d+\.?\d*%$/ig.test(R)&&typeof O=="number"){const P=Number(R.replace("%",""));return O*P/100}return O},I=a.reactive({display:"","min-height":"",height:"",maxHeight:""}),C=()=>e.showHead?k(e.headHeight,ui):0,M=()=>{const z=k(e.height,c.value),O=C(),R=k(e.minHeight,c.value),P=e.pagination&&e.data.length?ui:0,Z=z-O-P,B=e.height!=="auto"?`${Z}px`:!1,ne=R-O-P,ue=k(e.maxHeight,void 0),Ce=typeof ue=="number"?`${ue-O-P}px`:!1;Object.assign(I,{display:s!=null&&s.length?"block":!1,"min-height":`${ne}px`,height:B,maxHeight:Ce})};a.onMounted(()=>{N(n==null?void 0:n.value)});const N=z=>{if(z){const{height:O}=z.parentElement.getBoundingClientRect();c.value=O,M(),L(z)}},L=z=>{const O=e.virtualEnabled?`.${Ye("virtual-section")}`:`.${Ye("table-body-content")}`,R=z.querySelector(".bk-table-body");d.value=v5(R,O,0)};return{tableClass:f,headClass:m,contentClass:b,footerClass:v,wrapperStyle:x,contentStyle:I,headStyle:y,resetTableHeight:N,updateBorderClass:L,getColumnsWidthOffsetWidth:()=>{let z=0;return d.value&&(z=z+Vc),e.border.includes(sl.OUTER)&&!e.border.includes(sl.NONE)&&(z=z+2),z},hasFooter:u,hasScrollY:d}},O5=(e,t)=>{var he,$;const n=a.reactive([]),{getColumns:i}=ul(e,t),s=A=>{if(/^\d+/.test(`${A.minWidth}`))return A.minWidth;let H=sh;return A.sort&&(H=H+18),A.filter&&(H=H+28),H},o=()=>{var F,ee;const A=((F=e.settings)==null?void 0:F.checked)||[],H=((ee=e.settings)==null?void 0:ee.fields)||[];n.splice(0,n.length,...i().map(ie=>xe(Y({},ie),{calcWidth:null,resizeWidth:null,minWidth:s(ie),listeners:new Map,isHidden:fh(H,ie,A),[ci.COL_UID]:ki.v4(),[ci.COL_SOURCE_DATA]:ie})))},{dragOffsetXStyle:c,dragOffsetX:d,resetResizeEvents:u,registerResizeEvent:f}=j5(n,!0),{activeColumns:m}=D5(e,t);a.watch(()=>[e.settings],()=>{var A;(((A=e.settings)==null?void 0:A.checked)||[]).length&&o()}),a.watch(()=>[e.columns,t],()=>{o(),u(),f()},{immediate:!0,deep:!0});const p=e.columns.reduce((A,H,F)=>{const ee=Dt(H,["field","type"],[H,F]),ie=bh(H.sort);return ie?xe(Y({},A||{}),{[ee]:ie==null?void 0:ie.value}):A},null),y=a.reactive({rowActions:new Map,scrollTranslateY:0,scrollTranslateX:0,pos:{bottom:1},activeColumns:m,settings:e.settings,setting:{size:(he=e.settings)==null?void 0:he.size,height:ll[($=e.settings)==null?void 0:$.size]},defaultSort:p||e.defaultSort}),b=A=>{var H;return y.rowActions.has(A)?(H=y.rowActions.get(A))==null?void 0:H.isExpand:!1},v=()=>{Array.isArray(y.defaultSort)&&y.defaultSort.splice(0),y.defaultSort=p||e.defaultSort},T=(A,H=void 0)=>{var ie;const F=A[Re.ROW_UID],ee=typeof H=="boolean"?H:!b(F);y.rowActions.set(F,Object.assign({},(ie=y.rowActions.get(F))!=null?ie:{},{isExpand:ee})),B()},x=()=>y.rowActions.has(Re.ROW_SELECTION_ALL)?y.rowActions.get(Re.ROW_SELECTION_ALL):e.selectionKey?R.every(A=>z(A)):!1,k=A=>{const H=A[Re.ROW_UID],{isSelected:F=!1}=y.rowActions.get(H)||{};return F},I=(A=k)=>{let H=!1,F=!1;R.forEach(ee=>{const ie=A(ee);!H&&!ie&&(H=!0),!F&&ie&&(F=!0)}),y.rowActions.set(Re.ROW_SELECTION_ALL,F&&!H),y.rowActions.set(Re.ROW_SELECTION_INDETERMINATE,F&&H)},C=()=>e.columns.some(A=>A.type==="selection"),M=()=>{C()&&I(A=>z(A))},N=(A=void 0)=>{const H=typeof A=="boolean"?A:!x();y.rowActions.set(Re.ROW_SELECTION_ALL,H),y.rowActions.set(Re.ROW_SELECTION_INDETERMINATE,!1),R.forEach(F=>{var ae;const ee=F[Re.ROW_UID],ie=Object.assign({},(ae=y.rowActions.get(ee))!=null?ae:{},{isSelected:H});y.rowActions.set(ee,ie)}),B(H),ue(null,A,!0)},L=()=>{N(!1)},j=(A,H)=>{var ee;const F=A[Re.ROW_UID];if(F){const ie=typeof H=="boolean"?H:!O(A,F),ae=Object.assign({},(ee=y.rowActions.get(F))!=null?ee:{},{isSelected:ie});y.rowActions.set(F,ae),H||y.rowActions.set(Re.ROW_SELECTION_ALL,!1),I(),B(),ue(A,H,!1)}},z=(A,H=F=>k(F))=>typeof e.isSelectedFn=="function"?Reflect.apply(e.isSelectedFn,globalThis,[{row:A,data:e.data}]):typeof e.selectionKey=="string"&&e.selectionKey.length?ot.exports.get(A,e.selectionKey):H(A),O=(A,H)=>z(A,()=>{var ee;const F=H===void 0?A[Re.ROW_UID]:H;return x()?!0:y.rowActions.has(F)?(ee=y.rowActions.get(F))==null?void 0:ee.isSelected:!1}),R=a.reactive([]),P=a.computed(()=>n.some(A=>typeof A.rowspan=="function"||/^\d$/.test(`${A.rowspan}`)||typeof A.colspan=="function"||/^\d$/.test(`${A.colspan}`))),Z=(A=!1)=>{let H=null;const F={};R.splice(0,R.length,...e.data.map((ee,ie)=>{const ae=C5(ee,e,ie),me=P.value?ne(ee,ae,ie,F,H):{};return H=ae,xe(Y({},ee),{[Re.ROW_INDEX]:ie,[Re.ROW_UID]:ae,[Re.ROW_EXPAND]:A?b(ae):!1,[Re.ROW_SELECTION]:O(ee,ae),[Re.ROW_SOURCE_DATA]:Y({},ee),[Re.ROW_SKIP_CFG]:me})})),M()},B=A=>{let H=null;const F={};R.forEach((ee,ie)=>{const ae=ee[Re.ROW_UID],me=P.value?ne(ee,ae,ie,F,H):{};Object.assign(ee,{[Re.ROW_EXPAND]:b(ee[Re.ROW_UID]),[Re.ROW_SELECTION]:typeof A=="boolean"?A:O(ee,ee[Re.ROW_UID]),[Re.ROW_SKIP_CFG]:me}),H=ee[Re.ROW_UID]}),typeof A!="boolean"&&M()},ne=(A,H,F,ee,ie)=>{var Le;let ae=0;const me=(Le=ee[ie])!=null?Le:{};return ee[H]||(ee[H]={}),n.forEach((X,W)=>{var se,ce;const{colspan:Q,rowspan:re}=gh(X,W,A,F),D=X[ci.COL_UID],_=(ce=(se=me[D])==null?void 0:se.skipRowLen)!=null?ce:0,J={[D]:{skipRowLen:0,skipRow:!1,skipCol:!1,skipColLen:0}};ae>0&&(J[D].skipColLen=ae,J[D].skipCol=!0,ae=ae-1),_>1?(J[D].skipRowLen=_-1,J[D].skipRow=!0):re>1&&(J[D].skipRowLen=re,J[D].skipRow=!1),Q>1&&(J[D].skipColLen=Q,ae=Q-1),Object.assign(ee[H],Y({},J))}),ee[H]},ue=(A,H,F=!1)=>{if(e.asyncData&&e.rowKey){if(F)e.data.forEach(ee=>{ot.exports.has(ee,e.selectionKey)&&ot.exports.set(ee,e.selectionKey,!!H)});else if(ot.exports.has(A,e.selectionKey)){const ee=e.data.find(ie=>ot.exports.get(ie,e.rowKey)===ot.exports.get(A,e.rowKey));ot.exports.set(ee,e.selectionKey,!!H)}}},{renderFixedColumns:Ce,fixedWrapperClass:Ne}=Hc(e,n,!1);return{colgroups:n,dragOffsetXStyle:c,dragOffsetX:d,reactiveSchema:y,indexData:R,fixedWrapperClass:Ne,initIndexData:Z,updateIndexData:B,renderFixedColumns:Ce,setRowExpand:T,updateColGroups:o,clearSelection:L,toggleAllSelection:N,toggleRowSelection:j,getSelection:()=>R.filter(A=>O(A)),clearSort:v}};var E5=a.defineComponent({name:"Table",props:l5,emits:a5,setup(e,t){let n=null,i=null,s=null,o=null;const c=a.reactive([]),{initColumns:d}=ul(e,c);a.provide(rh,d);const u=a.ref(),f=a.ref(),m=a.ref(0),{colgroups:p,dragOffsetXStyle:y,dragOffsetX:b,reactiveSchema:v,indexData:T,renderFixedColumns:x,setRowExpand:k,initIndexData:I,fixedWrapperClass:C,clearSelection:M,toggleAllSelection:N,toggleRowSelection:L,getSelection:j,clearSort:z}=O5(e,c),{pageData:O,localPagination:R,resolvePageData:P,watchEffectFn:Z}=o5(e,T),{tableClass:B,headClass:ne,contentClass:ue,footerClass:Ce,wrapperStyle:Ne,contentStyle:fe,headStyle:he,updateBorderClass:$,resetTableHeight:A,getColumnsWidthOffsetWidth:H,hasFooter:F}=z5(e,c,u,v,O),ee=new S5(e,t,v,p),ie=()=>{const se=u.value.querySelector(".bk-table-body-content"),ce=se.querySelector("table");if(ce){const pe=ce.scrollWidth,ke=se.clientWidth;m.value=pe-ke}};a.watch(()=>[e.data,e.pagination,e.height,e.maxHeight,e.minHeight],()=>{I(e.reserveExpand),Z(s,n,i),a.nextTick(()=>{A(u.value),$(u.value)})},{immediate:!0,deep:!0}),a.watchEffect(()=>{if((u==null?void 0:u.value)instanceof HTMLElement){const se=H();Rc(u.value,p,20,se),ie()}}),ee.on(bn.ON_SORT_BY_CLICK,se=>{var le,we;const{sortFn:ce,column:pe,index:ke,type:te}=se;typeof ce=="function"&&(n=ce,i=pe,P(s,n,i),(we=(le=f.value)==null?void 0:le.reset)==null||we.call(le)),t.emit(Vt.COLUMN_SORT,{column:a.unref(pe[ci.COL_SOURCE_DATA]),index:ke,type:te})}).on(bn.ON_FILTER_CLICK,se=>{var le,we;const{filterFn:ce,checked:pe,column:ke,index:te}=se;typeof ce=="function"&&(s=ce,P(s,n,i),(we=(le=f.value)==null?void 0:le.reset)==null||we.call(le)),t.emit(Vt.COLUMN_FILTER,{checked:pe,column:a.unref(ke[ci.COL_SOURCE_DATA]),index:te})}).on(bn.ON_SETTING_CHANGE,se=>{const{checked:ce=[],size:pe,height:ke}=se;a.nextTick(()=>{var le,we;$(u.value);const te=H();ce.length&&Rc(u.value,p,20,te),(we=(le=f.value)==null?void 0:le.reset)==null||we.call(le),t.emit(Vt.SETTING_CHANGE,{checked:ce,size:pe,height:ke})})}).on(bn.ON_ROW_EXPAND_CLICK,se=>{const{row:ce,column:pe,index:ke,rows:te,e:le}=se;t.emit(Vt.ROW_EXPAND_CLICK,{row:a.unref(ce[Re.ROW_SOURCE_DATA]),column:a.unref(pe[ci.COL_SOURCE_DATA]),index:ke,rows:te,e:le}),k(ce,!ce[Re.ROW_EXPAND])}).on(bn.ON_ROW_CHECK,({row:se,isAll:ce,index:pe,value:ke})=>{ce?(N(ke),t.emit(Vt.ROW_SELECT_ALL,{checked:ke,data:e.data})):(L(se,ke),t.emit(Vt.ROW_SELECT,{row:a.unref(se[Re.ROW_SOURCE_DATA]),index:pe,checked:ke,data:e.data})),t.emit(Vt.ROW_SELECT_CHANGE,{row:a.unref(se[Re.ROW_SOURCE_DATA]),isAll:ce,index:pe,checked:ke,data:e.data})});const ae=se=>{var je;const ce=(je=v.pos.bottom)!=null?je:0,pe=se[1],{translateX:ke,translateY:te,pos:le={}}=pe;v.scrollTranslateY=te,v.scrollTranslateX=ke,v.pos=le;const{bottom:we}=le;we<=2&&ce>we&&js(60,()=>{t.emit(Vt.SCROLL_BOTTOM,xe(Y({},le),{translateX:ke,translateY:te}))},!0)(),ie()};a.onMounted(()=>{o=dh(u.value,()=>{(e.height==="100%"||e.height==="auto")&&A(u.value),$(u.value);const se=H();Rc(u.value,p,20,se)},60,!0),o.start()}),a.onBeforeUnmount(()=>{o.stop(),o=null,ee.destroy()}),t.expose({setRowExpand:k,clearSelection:M,toggleAllSelection:N,toggleRowSelection:L,getSelection:j,clearSort:z});const me=a.computed(()=>xe(Y({},ue),{"__is-empty":!O.length})),Le=a.computed(()=>({[Ye("table-body-content")]:!0,"with-virtual-render":e.virtualEnabled})),X={column_drag_line:!0,"offset-x":!0},W=a.computed(()=>xe(Y({},y.value),{left:`${b.value-v.scrollTranslateX}px`})),Q={"scroll-loading":!0,_bottom:!0},re=a.computed(()=>({[Ye("fixed-bottom-border")]:!0,"_is-empty":!e.data.length})),D={zIndex:-1,width:0,height:0,display:"none"},{renderScrollLoading:_}=c5(e,t),J=a.computed(()=>e.virtualEnabled?{}:{scrollXName:"",scrollYName:""});return()=>{var se,ce;return a.createVNode("div",{class:B.value,style:Ne.value,ref:u},[a.createVNode("div",{class:ne,style:he.value},[ee.renderTableHeadSchema()]),a.createVNode(Wr,a.mergeProps({ref:f,lineHeight:ee.getRowHeight,class:me.value,style:fe,list:O},J.value,{contentClassName:Le.value,onContentScroll:ae,throttleDelay:0,scrollEvent:!0,enabled:e.virtualEnabled}),{default:pe=>ee.renderTableBodySchema(pe.data||e.data),afterSection:()=>a.createVNode("div",{class:re.value},null)}),a.createVNode("div",{class:C},[x(v.scrollTranslateX,m.value),a.createVNode("div",{class:X,style:W.value},null),a.createVNode("div",{class:Q},[_()])]),a.createVNode("div",{class:Ce.value},[F.value&&ee.renderTableFooter(R.value)]),a.createVNode("div",{style:D},[(ce=(se=t.slots).default)==null?void 0:ce.call(se)])])}}});const Mh=He(E5);He(oh);const Ih=He(oh),Za=12;function P5(e){const t=a.reactive({curPage:1,totalSize:0,totalPage:0,pageSize:e,isPageLoading:!1,curPageList:[],renderListPaged:[]});return{pageState:t,initPage:(s=[])=>{t.curPage=1,t.totalSize=s.length,t.totalPage=Math.ceil(t.totalSize/t.pageSize)||1;const o=[];if(t.pageSize>0)for(let c=0;c<t.totalSize;c+=t.pageSize)o.push(s.slice(c,c+t.pageSize));t.renderListPaged.splice(0,t.renderListPaged.length,...o),t.curPageList.splice(0,t.curPageList.length,...t.renderListPaged[t.curPage-1]||[])},pageChange:s=>{t.curPage=s,t.curPageList.splice(t.curPageList.length,0,...t.renderListPaged[t.curPage-1]||[]),t.isPageLoading=!1}}}function A5(e){const{useGroup:t,saveKey:n,displayKey:i,list:s}=a.toRefs(e),o=a.ref([]),c=a.ref({});return a.watch([t,n,i,s],()=>{o.value=[];let d=a.markRaw(s.value);t.value&&(d=d.reduce((u,f)=>{let m=[];return f.children&&(m=f.children.map(p=>Y({group:{groupId:f[n.value],groupName:f[i.value]}},p))),u.concat(m)},[])),o.value=d,c.value=d.reduce((u,f)=>(u[f[n.value]]=f,u),{})},{immediate:!0}),{flatList:o,saveKeyMap:c}}const Nh=e=>{const t=e.length;let n=0;for(let i=0;i<t;i++)(e.charCodeAt(i)&65280)!==0&&(n+=1),n+=1;return n},V5=(e,t,n)=>{a.watch([n,t],()=>{s()},{flush:"post"});const i=a.ref(null),s=()=>{!t.value||(i.value=null,setTimeout(()=>{const o=Array.from(e.value.querySelectorAll(".tag-item")),c=o.findIndex((d,u)=>u?o[u-1].offsetTop!==d.offsetTop:!1);i.value=c>0?c-1:null}))};return{overflowTagIndex:i}};var Lh=a.defineComponent({name:"ListTagRender",props:{node:g.object,searchKey:g.oneOfType([g.string,g.arrayOf(g.string)]),displayKey:g.string,searchKeyword:g.string,tpl:{type:Function}},render(){const e=n=>{if(this.searchKeyword){const i=new RegExp(`(${this.searchKeyword})`,"i");return n.replace(i,'<strong class="highlight-text">$1</strong>')}return n};if(this.tpl)return this.tpl(this.node,e,a.h,this);const t=this.node[this.displayKey];return a.createVNode("div",{class:"bk-selector-node"},[a.createVNode("span",{class:"text",innerHTML:e(t)},[t])])}});const J5=()=>({modelValue:g.arrayOf(g.string).def([]),placeholder:g.string.def("\u8BF7\u8F93\u5165\u5E76\u6309 Enter \u7ED3\u675F"),list:g.arrayOf(g.object).def([]),disabled:g.bool.def(!1),tooltipKey:g.string.def(""),saveKey:g.string.def("id"),displayKey:g.string.def("name"),hasDeleteIcon:g.bool.def(!1),clearable:g.bool.def(!0),trigger:g.commonType(["focus","search"]).def("search"),searchKey:g.oneOfType([g.string,g.arrayOf(g.string)]).def("name"),useGroup:g.bool.def(!1),allowCreate:g.bool.def(!1),maxData:g.number.def(-1),maxResult:g.number.def(10),contentMaxHeight:g.number.def(300),contentWidth:g.number.def(190),separator:g.string.def(""),allowNextFocus:g.bool.def(!0),allowAutoMatch:g.bool.def(!1),showClearOnlyHover:g.bool.def(!1),leftSpace:g.number.def(0),createTagValidator:{type:Function},filterCallback:{type:Function},tagTpl:{type:Function},tpl:{type:Function},pasteFn:{type:Function},withValidate:{type:Boolean,default:!0},popoverProps:{type:Object,default:()=>({})},collapseTags:{type:Boolean,default:!1}});var Q5=a.defineComponent({name:"TagRender",props:{node:g.object,displayKey:g.string,tpl:{type:Function}},render(){return this.tpl?this.tpl(this.node,a.h,this):a.createVNode("div",{class:"tag"},[a.createVNode("span",{class:"text"},[this.node[this.displayKey]])])}}),R5=a.defineComponent({name:"TagInput",directives:{bkTooltips:Mc},props:J5(),emits:["update:modelValue","change","select","focus","blur","remove","removeAll"],setup(e,{emit:t}){const n=Dn(),i=a.reactive({isEdit:!1,isHover:!1,focusItemIndex:e.allowCreate?-1:0}),s=a.reactive(Y({isShow:!1,width:190,modifiers:[{name:"offset",options:{offset:[0,4]}}]},e.popoverProps)),{maxResult:o}=a.toRefs(e),{pageState:c,initPage:d,pageChange:u}=P5(o),f=a.ref(""),m=a.ref(null),p=a.ref(null),y=a.ref(null),b=a.ref(null),v=a.ref(null),T=a.ref(null),x=a.ref(null),k=a.computed(()=>!e.disabled&&e.hasDeleteIcon),I=a.computed(()=>e.maxData===1),C=a.computed(()=>L.selectedTagList.length===0&&f.value===""&&!i.isEdit),M=a.computed(()=>e.clearable&&!e.disabled&&L.selectedTagList.length!==0&&(e.showClearOnlyHover?i.isHover:!0)),N=a.computed(()=>({"bk-tag-input-trigger":!0,active:i.isEdit,disabled:e.disabled})),L=a.reactive({localList:[],tagListCache:[],selectedTagList:[],selectedTagListCache:[]}),j=a.computed(()=>L.selectedTagList.map(te=>te[e.saveKey])),{flatList:z,saveKeyMap:O}=A5(e),R=a.computed(()=>{if(e.useGroup){const te={};return c.curPageList.forEach((le,we)=>{le.__index__=we,te[le.group.groupId]||(te[le.group.groupId]={id:le.group.groupId,name:le.group.groupName,children:[]}),te[le.group.groupId].children.push(le)}),Object.keys(te).map(le=>te[le])}return c.curPageList});a.watch([()=>z.value],()=>{a.nextTick(()=>{ue()})}),a.watch(()=>e.modelValue,te=>{var le;fe(j.value,te)||(a.nextTick(()=>{ue()}),e.withValidate&&((le=n==null?void 0:n.validate)==null||le.call(n,"change")))}),a.watch(f,ot.exports.debounce(()=>{const te=c.curPageList.length!==0,{value:le}=f;le!==""&&te||le===""&&e.trigger==="focus"&&te?s.isShow=!0:(e.trigger!=="focus"||!te)&&(s.isShow=!1)},150)),a.watch(()=>s.isShow,te=>{P(),te&&v.value&&(a.nextTick(()=>{v.value.scrollTop=0}),v.value.removeEventListener("scroll",Z),v.value.addEventListener("scroll",Z))}),a.onMounted(()=>{ue()});const P=()=>{var le,we;const te=I.value?0:(le=b.value)==null?void 0:le.offsetLeft;s.modifiers=[{name:"offset",options:{offset:[te,4]}}],(we=T.value)==null||we.update()},Z=()=>{if(c.isPageLoading||v.value.scrollTop===0)return;const{scrollTop:te,offsetHeight:le,scrollHeight:we}=v.value;if(te+le>=we){const je=c.curPage+1;je<=c.totalPage&&(c.isPageLoading=!0,setTimeout(()=>{u(je)},500))}},B=()=>{var le;return Array.from(((le=y.value)==null?void 0:le.childNodes)||[]).filter(we=>![Node.TEXT_NODE,Node.COMMENT_NODE].includes(we.nodeType))},ne=te=>{if(!e.disabled){if(te!=null&&te.target){const{className:le}=te.target;(le.indexOf("bk-tag-input-trigger")>-1||le.indexOf("tag-list")>-1)&&y.value.appendChild(b.value)}clearTimeout(x.value),I.value&&j.value.length&&(L.tagListCache=[...j.value],L.selectedTagListCache=[...L.selectedTagList],f.value=L.selectedTagListCache[0][e.saveKey],ce(L.selectedTagList[0],0),F()),i.isEdit=!0,a.nextTick(()=>{var le;(le=m.value)==null||le.focus(),e.trigger==="focus"&&L.localList.length!==0&&(Ce(),s.isShow?P():s.isShow=!0)})}},ue=()=>{const{saveKey:te,modelValue:le,displayKey:we,allowCreate:je,trigger:Qe}=e;if(L.selectedTagList=[],L.localList=z.value,le.length){const Xe={};L.selectedTagList=le.map(st=>{const yt=O.value[st];return Xe[st]=1,!yt&&je?{[te]:st,[we]:st}:yt}).filter(st=>st),I.value||(L.localList=L.localList.filter(st=>!Xe[st[te]]))}Qe==="focus"&&Ce()},Ce=(te="")=>{const{searchKey:le,filterCallback:we}=e,je=te.toLowerCase().trim();if(je===""){d(L.localList);return}let Qe=[];typeof we=="function"?Qe=we(je,le,L.localList)||[]:Array.isArray(le)?Qe=L.localList.filter(Xe=>le.some(st=>Xe[st].toLowerCase().indexOf(je)>-1)):Qe=L.localList.filter(Xe=>Xe[le].toLowerCase().indexOf(je)>-1),d(Qe)},Ne=(te,le)=>{const we={"bk-selector-actived":!1,"bk-selector-selected":j.value.includes(te[e.saveKey])};return e.useGroup?we["bk-selector-actived"]=te.__index__===i.focusItemIndex:we["bk-selector-actived"]=le===i.focusItemIndex,we};function fe(te,le){return te.length!==le.length?!1:le.every((we,je)=>te[je]===we)}const he=()=>{L.tagListCache=[],L.selectedTagListCache=[],L.selectedTagList=[]},$=()=>{f.value=""},A=()=>{if(I.value)return 0;const le=B().findIndex(({id:we})=>we==="tagInputItem");return le>=0?le:0},H=(te,le,we=!1)=>{if(!le||!te)return;let je=le;we&&(je=le.nextElementSibling||null),le.parentNode.insertBefore(te,je)},F=te=>{const{maxData:le,trigger:we,allowCreate:je}=e;if(le===-1||le>j.value.length){const{value:Qe}=te!=null&&te.target?te.target:f,Xe=Nh(Qe);Xe?(Ce(Qe),m.value.style.width=`${Xe*Za}px`):we==="focus"&&Ce()}else ie(),f.value="",s.isShow=!1;i.isEdit=!0,i.focusItemIndex=je?-1:0},ee=()=>{var te;s.width=I.value?(te=p.value)==null?void 0:te.clientWidth:e.contentWidth,t("focus")},ie=()=>{x.value=setTimeout(()=>{var le;const te=f.value;if($(),i.isEdit=!1,I.value){const[we]=L.tagListCache;te&&te===we&&L.selectedTagListCache.length?se(L.selectedTagListCache[0],"select"):Le("remove")}else if(e.allowAutoMatch&&te){const we=c.curPageList.find(je=>Array.isArray(e.searchKey)?e.searchKey.map(Xe=>je[Xe]).includes(te):je[e.searchKey]===te);we?ae(we,"select"):e.allowCreate&&ae(te,"custom")}s.isShow=!1,t("blur",te,j.value),(le=n==null?void 0:n.validate)==null||le.call(n,"blur")},200)},ae=(te,le,we)=>{we==null||we.stopPropagation(),!(!te||te.disabled)&&(I.value&&he(),se(te,le),Le("select"),$(),s.isShow=!1)},me=(te,le,we)=>{we==null||we.stopPropagation(),ce(te,le),$(),Le("remove",te),m.value.style.width=`${Za}px`},Le=(te,le)=>{t(te,le),t("update:modelValue",j.value),t("change",j.value)},X=te=>{te.stopPropagation();const le=L.selectedTagList;L.selectedTagList=[];const we=le.filter(je=>O.value[je[e.saveKey]]);(e.allowCreate&&we.length!==0||!e.allowCreate)&&!I.value&&L.localList.push(...we),Le("removeAll")},W=()=>{const te={height:v.value.clientHeight,yAxis:v.value.getBoundingClientRect().y};a.nextTick(()=>{const le=v.value.querySelector(".bk-selector-actived");if(!le)return;const we={height:le.clientHeight,yAxis:le.getBoundingClientRect().y};we.yAxis<te.yAxis&&(v.value.scrollTop=v.value.scrollTop-(te.yAxis-we.yAxis));const je=we.yAxis+we.height-te.yAxis;je>te.height&&(v.value.scrollTop=v.value.scrollTop+je-te.height)})},Q=(te,le)=>{const we=B();H(b.value,we[te-1]),L.selectedTagList.splice(te-1,1),ne();const je=O.value[le[e.saveKey]];(e.allowCreate&&je||!e.allowCreate)&&!I.value&&L.localList.push(le),m.value=`${Za}px`,Le("remove")},re=te=>{if(c.isPageLoading)return;let le;const we=te.target.value,je=Nh(we),Qe=A(),Xe=B();switch(te.code){case"ArrowUp":if(te.preventDefault(),!s.isShow)return;i.focusItemIndex=i.focusItemIndex-1,i.focusItemIndex=i.focusItemIndex<0?-1:i.focusItemIndex,i.focusItemIndex===-1&&(i.focusItemIndex=c.curPageList.length-1),W();break;case"ArrowDown":if(te.preventDefault(),!s.isShow)return;i.focusItemIndex=i.focusItemIndex+1,i.focusItemIndex=i.focusItemIndex>c.curPageList.length-1?c.curPageList.length:i.focusItemIndex,i.focusItemIndex===c.curPageList.length&&(i.focusItemIndex=0),W();break;case"ArrowLeft":if(i.isEdit=!0,!je){if(Qe<1)return;H(b.value,Xe[Qe-1]),ne()}break;case"ArrowRight":if(i.isEdit=!0,!je){if(Qe===Xe.length-1)return;H(Xe[Qe+1],b.value),ne()}break;case"Enter":case"NumpadEnter":!e.allowCreate&&s.isShow||e.allowCreate&&i.focusItemIndex>=0&&s.isShow?ae(c.curPageList[i.focusItemIndex],"select",te):e.allowCreate&&ae(f.value,"custom",te),te.preventDefault();break;case"Backspace":Qe!==0&&!f.value&&(le=L.selectedTagList[Qe-1],Q(Qe,le));break}},D=te=>{const le=[],we=te.split(";"),je=/^[a-zA-Z][a-zA-Z_]*/g;return we.forEach(Qe=>{const Xe=Qe.match(je);if(Xe){const st=Xe.join("");le.push({[e.saveKey]:st,[e.displayKey]:st})}}),le},_=te=>{if(te.preventDefault(),I.value)return!1;const{maxData:le,saveKey:we,displayKey:je,pasteFn:Qe,allowCreate:Xe}=e,st=te.clipboardData.getData("text");let at=(Qe?Qe(st):D(st)).map(ft=>ft[we]);if(at.length){const ft=B(),vn=A(),et=L.localList.map(Ge=>Ge[we]);if(at=at.filter(Ge=>{const _t=(Ge==null?void 0:Ge.trim())&&!j.value.includes(Ge);return Xe?_t:_t&&et.includes(Ge)}),le!==-1){const Ge=L.selectedTagList.length;if(Ge<le){const _t=le-Ge;at.length>_t&&(at=[...at.slice(0,_t)])}else at=[]}const mt=Xe?at.map(Ge=>{const _t=L.localList.find(ba=>ba[we]===Ge);return _t!=null?_t:{[we]:Ge,[je]:Ge}}):L.localList.filter(Ge=>at.includes(Ge[we]));at.length&&(L.selectedTagList.splice(vn,0,...mt),H(b.value,ft[vn]),m.value.style.width=`${Za}px`,L.localList=L.localList.filter(Ge=>!at.includes(Ge[we])),Le("select"),ne())}},J=te=>{e.disabled||(H(b.value,te.currentTarget,!0),m.value.style.width=`${Za}px`,s.isShow&&P())},se=(te,le)=>{if(L.selectedTagList.length>=e.maxData&&e.maxData!==-1)return;const{separator:we,saveKey:je,displayKey:Qe,createTagValidator:Xe}=e,st=A();let yt=1,at=!1,ft;const vn=et=>typeof Xe=="function"?Xe(et):!0;if(le==="custom")if(we){let et=te.split(we);et=et.filter(Ge=>(Ge==null?void 0:Ge.trim())&&!j.value.includes(Ge)&&vn(Ge));const mt=et.map(Ge=>O.value[Ge]||{[je]:Ge,[Qe]:Ge});et.length&&(L.selectedTagList.splice(st,0,...mt),yt=mt.length,at=!0)}else{const et=typeof te=="object";if(ft=et?te[je]:te.trim(),ft=ft.replace(/\s+/g,""),ft!==void 0&&!j.value.includes(ft)&&vn(ft)){const mt=O.value[ft]||(et?te:{[je]:ft,[Qe]:ft});L.selectedTagList.splice(st,0,mt),at=!0}}else te&&(ft=te[je],ft!==void 0&&!j.value.includes(ft)&&(L.selectedTagList.splice(st,0,te),at=!0));at&&a.nextTick(()=>{for(let et=1;et<=yt;et++){const Ge=B()[st+et];H(Ge,b.value)}if(m.value.style.width=`${Za}px`,!I.value){e.allowNextFocus&&ne();const et=j.value.reduce((mt,Ge)=>(mt[Ge]=1,mt),{});L.localList=L.localList.filter(mt=>!et[mt[je]])}})},ce=(te,le)=>{L.selectedTagList.splice(le,1);const we=O.value[te[e.saveKey]];(e.allowCreate&&we||!e.allowCreate)&&!I.value&&L.localList.push(te)},pe=a.computed(()=>e.collapseTags?e.collapseTags&&!i.isEdit:e.collapseTags),{overflowTagIndex:ke}=V5(p,pe,j);return xe(Y(Y(Y({popoverProps:s},a.toRefs(i)),a.toRefs(L)),a.toRefs(c)),{isShowPlaceholder:C,isShowClear:M,curInputValue:f,renderList:R,showTagClose:k,tagInputRef:m,bkTagSelectorRef:p,tagListRef:y,tagInputItemRef:b,selectorListRef:v,popoverRef:T,triggerClass:N,overflowTagIndex:ke,localCollapseTags:pe,focusInputTrigger:ne,activeClass:Ne,handleInput:F,handleFocus:ee,handleBlur:ie,handleTagSelected:ae,handleTagRemove:me,handleClear:X,tagFocus:J,handleKeydown:re,handlePaste:_})},render(){return a.createVNode("div",{class:"bk-tag-input",ref:"bkTagSelectorRef",onClick:this.focusInputTrigger,onMouseenter:()=>this.isHover=!0,onMouseleave:()=>this.isHover=!1},[a.createVNode(pn,a.mergeProps({ref:"popoverRef",theme:"light",trigger:"manual",placement:"bottom-start","content-cls":"bk-tag-input-popover-content",arrow:!1},this.popoverProps),{default:()=>{var e,t,n;return a.createVNode("div",{class:this.triggerClass},[a.createVNode("ul",{class:"tag-list",ref:"tagListRef",style:{marginLeft:`${this.leftSpace}px`}},[this.selectedTagList.map((i,s)=>{const o={boundary:"window",theme:"light",distance:12,content:i[this.tooltipKey],disabled:!this.tooltipKey},c=this.localCollapseTags&&this.overflowTagIndex&&s>=this.overflowTagIndex;return a.withDirectives(a.createVNode("li",{class:"tag-item",style:{display:c?"none":""},onClick:this.tagFocus},[a.createVNode(Q5,{node:i,tpl:this.tagTpl,displayKey:this.displayKey},null),this.showTagClose?a.createVNode(Bn,{class:"remove-tag",onClick:this.handleTagRemove.bind(this,i,s)},null):null]),[[a.resolveDirective("bk-tooltips"),o]])}),a.withDirectives(a.createVNode("li",{ref:"tagInputItemRef",id:"tagInputItem",class:"tag-input-item",role:"input"},[a.withDirectives(a.createVNode("input",{type:"text",class:"tag-input",ref:"tagInputRef","onUpdate:modelValue":i=>this.curInputValue=i,onInput:this.handleInput,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeydown:this.handleKeydown,onPaste:this.handlePaste},null),[[a.vModelText,this.curInputValue]])]),[[a.vShow,this.isEdit]]),!!this.overflowTagIndex&&this.localCollapseTags&&a.createVNode("li",{class:"tag-item"},[a.createVNode("div",{class:"tag"},[a.createVNode("span",{class:"text"},[a.createTextVNode("+"),this.selectedTagList.length-this.overflowTagIndex])])])]),a.withDirectives(a.createVNode("p",{class:"placeholder"},[this.placeholder]),[[a.vShow,this.isShowPlaceholder]]),(n=(t=(e=this.$slots)==null?void 0:e.suffix)==null?void 0:t.call(e))!=null?n:this.isShowClear&&a.createVNode(Ut,{class:"clear-icon",onClick:this.handleClear},null)])},content:()=>a.createVNode("div",{class:"bk-selector-list"},[a.createVNode("ul",{ref:"selectorListRef",style:{"max-height":`${this.contentMaxHeight}px`},class:"outside-ul"},[this.renderList.map((e,t)=>this.useGroup?a.createVNode("li",{class:"bk-selector-group-item"},[a.createVNode("span",{class:"group-name"},[e.name,a.createTextVNode(" ("),e.children.length,a.createTextVNode(")")]),a.createVNode("ul",{class:"bk-selector-group-list-item"},[e.children.map((n,i)=>a.createVNode("li",{class:["bk-selector-list-item",{disabled:n.disabled},this.activeClass(n,i)],onClick:this.handleTagSelected.bind(this,n,"select")},[a.createVNode(Lh,{node:n,displayKey:this.displayKey,tpl:this.tpl,searchKey:this.searchKey,searchKeyword:this.curInputValue},null)]))])]):a.createVNode("li",{class:["bk-selector-list-item",{disabled:e.disabled},this.activeClass(e,t)],onClick:this.handleTagSelected.bind(this,e,"select")},[a.createVNode(Lh,{node:e,displayKey:this.displayKey,tpl:this.tpl,searchKey:this.searchKey,searchKeyword:this.curInputValue},null)])),this.isPageLoading?a.createVNode("li",{class:"bk-selector-list-item loading"},[a.createVNode(Di,{theme:"primary",size:Fn.Small},null)]):null])])})])}});const kh=He(R5),_5={direction:g.commonType(["horizontal","vertical"],"direction").def("horizontal"),align:g.commonType(["left","center","right"],"align").def("center"),color:g.string.def("#dde4eb"),width:g.number.def(1),type:g.commonType(["dashed","solid"],"lineType").def("dashed")};var W5=a.defineComponent({name:"Divider",props:_5,render(){const e=()=>this.direction==="vertical"?{borderRight:`${this.width}px ${this.type} ${this.color}`}:{borderBottom:`${this.width}px ${this.type} ${this.color}`};let t;return this.$slots.default&&(t=a.createVNode("div",{class:["bk-divider-info",`bk-divider-info-${this.align}`]},[this.$slots.default()])),a.createVNode("div",{class:["bk-divider",`bk-divider-${this.direction}`],style:e()},[t])}});const Th=He(W5),H5={tabAdd:{type:Function,default:()=>({})},tabChange:{type:Function,default:e=>e},tabRemove:{type:Function,default:e=>e},tabSort:{type:Function,default:()=>({})},tabDrag:{type:Function,default:()=>({})}},B5={active:g.oneOfType([g.number,g.string]).def(""),type:g.commonType(["card","border-card","unborder-card"],"type").def("border-card"),tabPosition:g.commonType(["left","right","top"],"position").def("top"),closable:Boolean,addable:Boolean,sortable:Boolean,sortType:g.commonType(["replace","insert","top"],"sortType").def("replace"),labelHeight:g.number.def(50),scrollStep:g.number.def(200),extCls:g.string.def(""),validateActive:g.bool.def(!0),showHeader:g.bool.def(!0),changeOnHover:g.bool.def(!1),changeOnHoverDelay:g.number.def(1e3)},F5=Y({active:g.oneOfType([g.number,g.string]).def(""),panels:{type:Array,default:()=>[]},tabPosition:g.commonType(["left","right","top"],"position").def("top"),closable:Boolean,addable:Boolean,sortable:Boolean,sortType:g.commonType(["replace","insert","top"],"sortType").def("replace"),labelHeight:g.number.def(50),scrollStep:g.number.def(200),validateActive:g.bool.def(!0),changeOnHover:g.bool.def(!1),changeOnHoverDelay:g.number.def(1e3)},H5),G5={name:g.oneOfType([g.number,g.string]).def(""),label:g.string||g.func,closable:g.bool,visible:g.bool.def(!0),disabled:g.bool,sortable:g.bool,renderDirective:g.commonType(["if","show"],"render").def("show"),panel:g.string||g.func};var xh=a.defineComponent({name:"TabNav",props:F5,setup(e){const t=a.computed(()=>{if(!Array.isArray(e.panels)||!e.panels.length)return[];const d=[];let u=!1;return e.panels.filter((f,m)=>{if(!f.props)return null;const{name:p,label:y,closable:b,visible:v,disabled:T,sortable:x}=f.props;if(!v)return!1;e.active===p&&(u=!0);const k=I=>f.slots.label?a.h(f.slots.label):[void 0,""].includes(I)?`\u9009\u9879\u5361${m+1}`:typeof I=="string"?I:typeof I=="function"?a.h(I):I;return d.push({name:p,closable:b,visible:v,disabled:T,sortable:x,tabLabel:k(y)}),!0}),!u&&e.validateActive&&e.panels[0].props&&e.tabChange(e.panels[0].props.name),d}),n=a.ref(-1),i=a.ref(-1),s=a.ref(""),o=(d,u)=>d===u;return xe(Y({},{handleTabAdd(d){e.tabAdd(d)},dragstart(d,u){i.value=d,s.value=e.guid,Object.assign(u.dataTransfer,{effectAllowed:"move"}),e.tabDrag(d,u)},dragenter(d){o(s.value,e.guid)&&(n.value=d)},dragend(){n.value=-1,i.value=-1,s.value=null},drop(d,u){if(!o(s.value,e.guid))return!1;e.tabSort(i.value,d,u)},handleTabChange(d){e.tabChange(d)},handleTabRemove(d,u){e.tabRemove(d,u)}}),{navs:t,dragenterIndex:n,dragStartIndex:i,draggingEle:s,guid:Math.random().toString(16).substr(4)+Math.random().toString(16).substr(4)})},render(){const{active:e,closable:t,addable:n,sortable:i,sortType:s,labelHeight:o,dragstart:c,dragenter:d,dragend:u,drop:f}=this,m=()=>this.navs.map((y,b)=>{if(!y)return null;const{name:v,disabled:T,tabLabel:x}=y,k=()=>{const C=["bk-tab-header-item"];return T&&C.push("bk-tab-header--disabled"),e===v&&C.push("bk-tab-header--active"),C.join(" ")},I=(C,M)=>C||M;return a.createVNode("div",{key:v,onClick:()=>this.handleTabChange(v),draggable:I(y.sortable,i),onDragstart:C=>c(b,C),onDragenter:C=>{C.preventDefault(),d(b)},onDragleave:C=>{C.preventDefault()},onDragover:C=>{C.preventDefault()},onDragend:C=>{C.preventDefault(),u()},onDrop:C=>{C.preventDefault(),f(b,s)},class:k()},[a.createVNode("div",null,[x]),I(y.closable,t)&&a.createVNode(Ut,{class:"bk-tab-header-item-close",onClick:()=>this.handleTabRemove(b,y)},null)])}),p=()=>{var b,v;const y=[];return typeof this.$slots.add=="function"?y.push((v=(b=this.$slots).add)==null?void 0:v.call(b,a.h)):n&&y.push(a.createVNode("div",{onClick:this.handleTabAdd},[a.createVNode(_s,{width:26,height:26},null)])),y.length?a.createVNode("div",{class:"bk-tab-header-operation"},[y.map((T,x)=>a.createVNode("div",{class:"bk-tab-header-item",key:x},[T]))]):null};return a.createVNode("div",{style:{lineHeight:`${o}px`},class:"bk-tab-header"},[a.createVNode("div",{class:"bk-tab-header-nav"},[m()]),p(),typeof this.$slots.setting=="function"&&a.createVNode("div",{class:"bk-tab-header-setting"},[this.$slots.setting()])])}}),Z5=a.defineComponent({name:"Tab",components:{TabNav:xh},props:B5,emits:["add-panel","tab-change","remove-panel","sort-change","on-drag-tab","add","change","remove","update:active","sort","drag"],setup(e,{slots:t,emit:n}){const i=a.ref(!1),s=a.ref([]),o=a.getCurrentInstance(),c=(f,m=[])=>{const{children:p}=f;return(p||[]).forEach(y=>{let{type:b}=y;b=b.name||b,b==="TabPanel"&&y.component?m.push(y.component):(b===a.Fragment||b==="template")&&c(y,m)}),m},d=()=>{if(t.default){const{children:f}=o.subTree.children[1];if(!f)return;const m=f[0],p=c(m);p.length!==s.value.length&&(s.value=p)}};return a.onMounted(()=>{d(),i.value=!0}),a.onUpdated(()=>{d()}),xe(Y({},{tabAdd(f){n("add",{e:f}),n("add-panel",{e:f})},tabChange(f){n("change",f),n("tab-change",f),n("update:active",f)},tabRemove(f,m){n("remove",f,m),n("remove-panel",f,m)},tabSort(f,m,p){const y=s.value;if(p==="insert")if(f<m)y.splice(m+1,0,s[f]),y.splice(f,1);else if(f>m)y.splice(m,0,s[f]),y.splice(f+1,1);else return!1;else{const b=y[m];y[m]=y[f],y[f]=b}s.value=[...y],n("sort",f,m,p),n("sort-change",f,m,p)},tabDrag(f,m){n("drag",f,m),n("on-drag-tab",f,m)}}),{isMounted:i,panels:s})},render(){var n,i;const e=()=>this.tabPosition==="top"?`bk-tab bk-tab--${this.tabPosition} bk-tab--${this.type} ${this.extCls}`:`bk-tab bk-tab--${this.tabPosition} ${this.extCls}`,t=()=>{const{panels:s,active:o,type:c,closable:d,addable:u,sortable:f,sortType:m,labelHeight:p,scrollStep:y,validateActive:b,changeOnHover:v,changeOnHoverDelay:T,tabPosition:x,tabAdd:k,tabChange:I,tabRemove:C,tabSort:M,tabDrag:N}=this,L={panels:s,active:o,type:c,closable:d,addable:u,sortable:f,sortType:m,labelHeight:p,scrollStep:y,validateActive:b,changeOnHover:v,changeOnHoverDelay:T,tabPosition:x,tabAdd:k,tabChange:I,tabRemove:C,tabSort:M,tabDrag:N};return!s||!Array.isArray(s)?null:a.createVNode(xh,L,this.$slots)};return a.createVNode("div",{class:e()},[t(),a.createVNode("div",{class:"bk-tab-content"},[(i=(n=this.$slots).default)==null?void 0:i.call(n)])])}}),Y5=a.defineComponent({name:"TabPanel",props:G5,render(){const e=this.name===this.$parent.active,t=()=>!this.visible||this.renderDirective==="if"&&!e?null:typeof this.panel=="function"?this.panel(a.h):typeof this.$slots.default=="function"?this.$slots.default(null):typeof this.$slots.panel=="function"?this.$slots.panel(null):null;return a.withDirectives(a.createVNode("div",{ref:"content",class:"bk-tab-panel"},[t()]),[[a.vShow,e]])}});const Sh=Yt(Z5,{TabPanel:Y5}),Ji={"top-left":[],"top-right":[],"bottom-left":[],"bottom-right":[]};let Dh=1;const jh=(e,t)=>{let n=t;const i=n.position||"top-right";typeof t=="string"&&(n={message:t});const s=t.onClose,o=n.offsetX||10;let c=n.offsetY||30;const{spacing:d=10}=n;Ji[i].forEach(y=>{c+=(y.el.offsetHeight||0)+d}),Dh+=1;const u=`message_${Dh}`;n=xe(Y({},n),{offsetX:o,offsetY:c,id:u});const f=document.createElement("div"),m=a.createVNode(e,n);m.props.onDestroy=y=>{U5(y,i,d,s),a.render(null,f)},a.render(m,f),Ji[i].push(m);let p;m.props.getContainer&&Aa(m.props.getContainer)?p=m.props.getContainer:p=document.body,p.appendChild(f.firstElementChild)};function U5(e,t,n,i){i==null||i();const s=t.startsWith("top")?"top":"bottom";let o=-1;Ji[t].forEach((f,m)=>{f.props.id===e&&(o=m)});const d=Ji[t][o].el.offsetHeight,u=Ji[t].length;for(let f=o;f<u;f++){const m=parseInt(Ji[t][f].el.style[s],10)-d-n;Ji[t][f].component.props.offsetY=m}Ji[t].splice(o,1)}const $5={id:g.string.def(""),message:g.string.def(""),theme:g.theme(["primary","warning","success","error"]).def("primary"),delay:g.number.def(3e3),dismissable:g.bool.def(!0),offsetY:g.number.def(30),spacing:g.number.def(10),extCls:g.string.def(""),onClose:g.func,getContainer:g.instanceOf(HTMLElement)};var K5=a.defineComponent({name:"Message",props:$5,emits:["destroy"],setup(e,{emit:t}){const n=a.computed(()=>["bk-message",`bk-message-${e.theme}`,`${e.extCls}`]),i=Rn.getMessageNextIndex(),s=a.computed(()=>e.getContainer&&Aa(e.getContainer)),o=a.computed(()=>({top:`${e.offsetY}px`,zIndex:i,position:s.value?"absolute":"fixed"})),c=a.ref(!1);let d=null;const u=()=>{d=setTimeout(()=>{c.value=!1},e.delay)},f=m=>{m.preventDefault(),m.stopPropagation(),c.value=!1};return a.onMounted(()=>{e.delay&&u(),c.value=!0}),a.onUnmounted(()=>{clearTimeout(d)}),a.watch(c,()=>{c.value||t("destroy",e.id)}),{classNames:n,styles:o,visible:c,close:f}},render(){const e=()=>({primary:a.createVNode(Rs,null,null),warning:a.createVNode(Pr,null,null),success:a.createVNode(Or,null,null),error:a.createVNode(Ut,null,null)})[this.theme];return a.createVNode(a.Transition,{name:"bk-message-fade"},{default:()=>[a.withDirectives(a.createVNode("div",{class:this.classNames,style:this.styles},[a.createVNode("div",{class:"bk-message-content"},[a.createVNode("div",{class:"bk-message-icon"},[e()]),this.message]),this.dismissable&&a.createVNode(Bn,{class:"bk-message-close",onClick:this.close},null)]),[[a.vShow,this.visible]])]})}});const zh=e=>{jh(K5,e)},Oh=He(e=>{const t=document.createElement("div"),n=a.ref(!1),i=a.shallowRef(e),s=a.defineComponent({name:"DialogConfirm",setup(d,{expose:u}){a.onMounted(()=>{(document.activeElement||document.body).blur(),i.value.isShow!==!1&&(n.value=!0)});const f=async()=>{var b,v;typeof((b=i.value)==null?void 0:b.onClosed)=="function"&&await((v=i.value)==null?void 0:v.onClosed()),n.value=!1},m=async()=>{var b,v;typeof((b=i.value)==null?void 0:b.onConfirm)=="function"&&await((v=i.value)==null?void 0:v.onConfirm()),n.value=!1};function p(b){i.value=b}u({update:p});const y=()=>{const b=[],v=[];if(i.value.subTitle)switch(typeof i.value.subTitle){case"string":b.push(i.value.subTitle);break;case"function":b.push(i.value.subTitle());break;default:b.push(i.value.subTitle);break}return b.length&&v.push(a.h("div",{class:"bk-info-sub-title",style:`text-Align:${i.value.contentAlign||"center"}`},b)),v};return()=>a.createVNode(Kf,xe(Y({class:"bk-info-wrapper",headerAlign:"center",footerAlign:"center"},i.value),{isShow:n.value,onClosed:f,onConfirm:m}),y())}}),o=a.createApp(s).mount(t);return{show:()=>{n.value=!0},hide:()=>{n.value=!1},update:d=>{o.update(d)}}}),X5={id:g.string.def(""),title:g.string.def(""),message:g.string.def(""),theme:g.theme(["primary","warning","success","error"]).def("primary"),position:g.position().def("top-right"),delay:g.number.def(5e3),dismissable:g.bool.def(!0),offsetX:g.number.def(100),offsetY:g.number.def(30),spacing:g.number.def(10),extCls:g.string.def(""),onClose:g.func};var q5=a.defineComponent({name:"Notify",props:X5,emits:["destroy"],setup(e,{emit:t}){const n=Rn.getMessageNextIndex(),i=a.computed(()=>e.position.indexOf("right")>1?"right":"left"),s=a.computed(()=>e.position.startsWith("top")?"top":"bottom"),o=a.computed(()=>({[i.value]:`${e.offsetX}px`,[s.value]:`${e.offsetY}px`,zIndex:n})),c=a.computed(()=>["bk-notify",`bk-notify-${e.theme}`,i.value]),d=a.ref(!1);let u=null;const f=()=>{u=setTimeout(()=>{d.value=!1},e.delay)},m=()=>{d.value=!1};return a.onMounted(()=>{e.delay&&f(),d.value=!0}),a.onUnmounted(()=>{clearTimeout(u)}),a.watch(d,()=>{d.value||t("destroy",e.id)}),{classNames:c,styles:o,visible:d,handleClose:m}},render(){const e=()=>({primary:a.createVNode(Rs,null,null),warning:a.createVNode(Pr,null,null),success:a.createVNode(Or,null,null),error:a.createVNode(Ut,null,null)})[this.theme];return a.createVNode(a.Transition,{name:"bk-notify-fade"},{default:()=>[a.withDirectives(a.createVNode("div",{class:this.classNames,style:this.styles},[a.createVNode("div",{class:"bk-notify-content"},[a.createVNode("div",{class:"bk-notify-icon"},[e()]),this.title?a.createVNode("div",{class:"bk-notify-content-header"},[this.title]):"",a.createVNode("div",{class:"bk-notify-content-text"},[this.message])]),this.dismissable&&a.createVNode(Bn,{class:"bk-notify-icon bk-notify-close",onClick:this.handleClose},null)]),[[a.vShow,this.visible]])]})}});const Eh=e=>{jh(q5,e)},Ph=Symbol("MENU_PROVIDER_KEY"),Bc=Symbol("MENU_PROVIDER_KEY_PATH"),eb=e=>{a.provide(Ph,e)},tb=e=>{const{parentKeys:t,parentInfo:n}=Fc(),i=a.computed(()=>[...t.value,e]);a.provide(Bc,{parentInfo:{key:e,parentKey:n==null?void 0:n.key},parentKeys:i})},Ah=()=>a.inject(Ph),Fc=()=>{var n;const e=a.getCurrentInstance(),t=e.parent?e.parent.provides:(n=e.vnode.appContext)==null?void 0:n.provides;return t&&Bc in t?a.inject(Bc):{parentInfo:void 0,parentKeys:a.ref([])}},Gc=function(e){return(e||"").split(" ").filter(t=>!!t.trim())};function Vh(e,t){if(!e||!t)return;const n=Gc(t);let i=e.getAttribute("class")||"";if(e.classList){e.classList.remove(...n);return}n.forEach(o=>{i=i.replace(` ${o} `," ")});const s=Gc(i).join(" ");e.setAttribute("class",s)}function Jh(e,t){if(!e)return;let n=e.getAttribute("class")||"";const i=Gc(n),s=(t||"").split(" ").filter(o=>!i.includes(o)&&!!o.trim());e.classList?e.classList.add(...s):(n+=` ${s.join(" ")}`,e.setAttribute("class",n))}const nb=()=>({css:!0,onBeforeEnter:e=>{Jh(e,"collapse-transition"),e.dataset||(e.dataset={}),e.style.height="0px",e.style.maxHeight="0px"},onEnter:e=>{e.dataset.oldOverflow=e.style.overflow,e.scrollHeight!==0?(e.style.height=`${e.scrollHeight}px`,e.style.maxHeight=`${e.scrollHeight}px`):(e.style.height="0px",e.style.maxHeight="0px"),e.style.overflow="hidden"},onAfterEnter:e=>{e.style.height="",e.style.maxHeight="",e.style.overflow=e.dataset.oldOverflow,Vh(e,"collapse-transition")},onBeforeLeave:e=>{e.dataset||(e.dataset={}),e.dataset.oldOverflow=e.style.overflow,e.style.height=`${e.scrollHeight}px`,e.style.maxHeight=`${e.scrollHeight}px`,e.style.overflow="hidden"},onLeave:e=>{e.scrollHeight!==0&&(Jh(e,"collapse-transition"),e.style.transitionProperty="height",e.style.height="0px",e.style.maxHeight="0px")},onAfterLeave:e=>{Vh(e,"collapse-transition"),e.style.height="",e.style.maxHeight="",e.style.overflow=e.dataset.oldOverflow}}),ib={activeKey:String,collapse:Boolean,openedKeys:{type:Array},mode:{type:String,default:"vertical"},uniqueOpen:{type:Boolean,default:!0}};var ab=a.defineComponent({name:"Menu",props:ib,emits:["update:activeKey","update:openKeys","click","openChange"],setup(e,{slots:t,emit:n,expose:i}){const s=a.ref(""),o=a.ref([]),c=a.ref({}),d=a.computed(()=>e.mode),u=a.ref(e.collapse),f=a.ref([]);a.watchEffect(()=>{e.activeKey!==void 0&&(s.value=e.activeKey)}),a.watch(()=>e.collapse,()=>{u.value=e.collapse;const v=[...f.value],T=[...o.value];o.value=u.value?[]:v,f.value=u.value?T:[]},{immediate:!0}),a.watch(()=>e.openedKeys,(v=o.value)=>{o.value=v},{immediate:!0});const m=(v,T)=>{c.value=xe(Y({},c.value),{[v]:T})},p=v=>{delete c.value[v],c.value=Y({},c.value)},y=(v,T)=>{T?e.uniqueOpen?o.value=[v]:o.value.push(v):o.value=o.value.filter(x=>x!==v),n("openChange",T,c.value[v]),n("update:openKeys",[...o.value])},b=v=>{s.value=v,n("click",c.value[v]),n("update:activeKey",v,c.value[v])};return eb({activeKey:s,menuStore:c,registerMenuInfo:m,unregisterMenuInfo:p,mode:d.value,openedKeys:o,collapse:u,handleOpenChange:y,handleActiveChange:b}),i({activeKey:s,openedKeys:o,menuStore:c}),()=>{var v;return a.createVNode("div",{class:{"bk-menu":!0,"is-collapse":u.value}},[(v=t.default)==null?void 0:v.call(t)])}}}),rb=a.defineComponent({name:"MenuGroup",props:{name:{type:String,default:""}},setup(e,{slots:t}){return()=>{var n;return a.createVNode("div",{class:"bk-menu-group"},[a.createVNode("div",{class:"group-name"},[e.name]),a.createVNode("ul",{class:"group-wrap"},[(n=t.default)==null?void 0:n.call(t)])])}}}),sb=a.defineComponent({name:"MenuItem",props:{needIcon:{type:Boolean,default:!0}},emits:["click"],slots:["icon"],setup(e,{slots:t,emit:n}){var b,v;const{registerMenuInfo:i,unregisterMenuInfo:s,activeKey:o,handleActiveChange:c}=Ah(),d=a.getCurrentInstance(),{parentInfo:u}=Fc(),f=((v=(b=d.vnode.key)==null?void 0:b.toString)==null?void 0:v.call(b))||String(d.uid),m=a.computed(()=>o.value===f),p=a.computed(()=>e.needIcon);i(f,{key:f,parentKey:u==null?void 0:u.key});const y=T=>{c(f),n("click",T)};return a.onBeforeUnmount(()=>s(f)),()=>{var T,x;return a.createVNode("li",{class:{"bk-menu-item":!0,"is-active":m.value},onClick:y},[p.value&&a.createVNode("span",{class:"item-icon"},[((T=t==null?void 0:t.icon)==null?void 0:T.call(t))||a.createVNode("i",{class:"default-icon"},null)]),a.createVNode("span",{class:"item-content"},[(x=t.default)==null?void 0:x.call(t)])])}}});const lb={title:{type:String,default:"title"}};var ob=a.defineComponent({name:"Submenu",props:lb,emits:["collapse"],slots:["icon"],setup(e,{slots:t,emit:n}){var k,I;const{registerMenuInfo:i,unregisterMenuInfo:s,openedKeys:o,handleOpenChange:c,collapse:d,activeKey:u,menuStore:f}=Ah(),{parentInfo:m}=Fc(),p=a.getCurrentInstance(),y=((I=(k=p.vnode.key)==null?void 0:k.toString)==null?void 0:I.call(k))||String(p.uid),b=a.ref(nb()),v=a.computed(()=>o.value.includes(y)),T=a.computed(()=>{var M,N;const C=(N=(M=f.value)==null?void 0:M[u.value])==null?void 0:N.parentKey;return d.value&&C===y&&v});tb(y),i(y,{key:y,parentKey:m==null?void 0:m.key}),a.onBeforeUnmount(()=>s(y));const x=()=>{c(y,!v.value),n("collapse",!v.value,p)};return()=>{var C;return a.createVNode("li",{class:{"bk-menu-submenu":!0,"is-opened":v.value}},[a.createVNode("div",{class:{"submenu-header":!0,"is-collapse":T.value},onClick:x},[a.createVNode("span",{class:"submenu-header-icon"},[((C=t.icon)==null?void 0:C.call(t))||a.createVNode(rc,{class:"menu-icon"},null)]),a.createVNode("span",{class:"submenu-header-content"},[e.title]),a.createVNode(zs,{class:{"submenu-header-collapse":!0,"is-collapse":o.value.includes(y)}},null)]),a.createVNode(a.Transition,b.value,{default:()=>{var M;return[a.withDirectives(a.createVNode("ul",{class:"submenu-list"},[(M=t.default)==null?void 0:M.call(t)]),[[a.vShow,v.value]])]}})])}}});const Qh=Yt(ab,{Item:sb,Submenu:ob,Group:rb}),cb={sideTitle:{type:String,default:""},navigationType:{type:String,default:"left-right"}};var Rh=a.defineComponent({props:cb,slots:["side-icon"],setup(e,{slots:t}){return()=>{var n,i;return a.createVNode("div",{class:"bk-navigation-title",style:{borderBottomWidth:e.navigationType==="left-right"?"0":"1px"}},[((n=t.default)==null?void 0:n.call(t))||[a.createVNode("span",{class:"title-icon"},[((i=t["side-icon"])==null?void 0:i.call(t))||a.createVNode("i",{class:"bk-icon icon-rtx"},null)]),a.createVNode("span",{class:"title-desc"},[e.sideTitle])]])}}});const ub={navWidth:{type:[Number,String],default:60},hoverWidth:{type:[Number,String],default:260},showSideNavTitle:{type:Boolean,default:!0},sideTitle:{type:String,default:""},headerTitle:{type:String,default:""},hoverLeaveDelay:{type:Number,default:0},hoverEnterDelay:{type:Number,default:100},defaultOpen:Boolean,headHeight:{type:[Number,String],default:52},navigationType:{type:String,default:"left-right",validator(e){return["top-bottom","left-right"].includes(e)}},needMenu:{type:Boolean,default:!0}};var db=a.defineComponent({name:"Navigation",props:ub,emits:["leave","toggle","hover","toggle-click"],slots:["header","menu","footer","side-icon","side-header"],setup(e,{emit:t}){const n=a.ref(e.headerTitle),i=a.reactive({click:!1,hover:!1,delay:!1,timer:null,enterTimer:null});e.defaultOpen&&(i.click=!i.click,i.hover=i.click,t("toggle",i.hover)),a.onBeforeUnmount(()=>{i.timer&&window.clearTimeout(i.timer)});const s=()=>{i.click||(i.enterTimer=setTimeout(()=>{i.hover=!0,i.enterTimer&&window.clearTimeout(i.enterTimer),i.timer&&window.clearTimeout(i.timer),t("hover",i.hover),t("toggle",i.hover)},e.hoverEnterDelay))},o=()=>{i.click||(i.enterTimer&&window.clearTimeout(i.enterTimer),i.timer=setTimeout(()=>{i.hover=!1,window.clearTimeout(i.timer),t("leave",i.hover),t("toggle",i.hover)},e.hoverLeaveDelay))},c=()=>{i.click=!i.click,i.hover=i.click,t("toggle",i.hover),t("toggle-click",i.hover)};return{defaultHeaderTitle:n,nav:i,onBeforeUnmount:a.onBeforeUnmount,handleMouseOver:s,handleMouseLeave:o,handleClick:c}},render(){var e,t,n,i,s,o,c,d,u,f,m,p;return a.createVNode("div",{class:"bk-navigation"},[this.navigationType==="top-bottom"&&a.createVNode("div",{class:"bk-navigation-header",style:{flexBasis:`${this.headHeight}px`}},[a.createVNode(Rh,{sideTitle:this.sideTitle},{default:this.$slots["side-header"],"side-icon":this.$slots["side-header"]?void 0:this.$slots["side-icon"]}),a.createVNode("div",{class:"header-right"},[(t=(e=this.$slots).header)==null?void 0:t.call(e)])]),a.createVNode("div",{class:"bk-navigation-wrapper"},[this.needMenu&&a.createVNode("div",{class:"navigation-nav",style:{width:this.nav.click?`${this.hoverWidth}px`:`${this.navWidth}px`}},[a.createVNode("div",{class:"nav-slider",onMouseenter:this.handleMouseOver,onMouseleave:this.handleMouseLeave,style:{width:this.nav.hover?`${this.hoverWidth}px`:`${this.navWidth}px`,borderRight:this.navigationType!=="top-bottom"?"none":"1px solid #DCDEE5"}},[this.navigationType!=="top-bottom"&&this.showSideNavTitle&&a.createVNode(Rh,{style:{flexBasis:`${this.headHeight}px`},sideTitle:this.sideTitle},{default:this.$slots["side-header"],"side-icon":this.$slots["side-header"]?void 0:this.$slots["side-icon"]}),a.createVNode("div",{class:"nav-slider-list",style:{height:`calc(100vh - ${+this.headHeight+56}px)`}},[(i=(n=this.$slots).menu)==null?void 0:i.call(n)]),a.createVNode("div",{class:"nav-slider-footer"},[a.createVNode("div",{class:{"is-left":this.navigationType!=="top-bottom","footer-icon":!0},onClick:this.handleClick},[a.createVNode(Zo,{class:"footer-icon-svg",style:{transform:this.nav.click?"rotate(180deg)":"rotate(0deg)"}},null)])])])]),a.createVNode("div",{class:"navigation-container",style:{maxWidth:this.needMenu?"calc(100vw - 60px)":"100vw"}},[this.navigationType!=="top-bottom"&&a.createVNode("div",{class:"container-header",style:{flexBasis:`${this.headHeight}px`}},[((o=(s=this.$slots).header)==null?void 0:o.call(s))||[a.createVNode("div",{class:"container-header-title"},[this.headerTitle]),a.createVNode("div",{class:"container-header-sets"},[(d=(c=this.$slots)["header-set"])==null?void 0:d.call(c)])]]),a.createVNode("div",{class:"container-content",style:{maxHeight:`calc(100vh - ${this.headHeight}px)`}},[(f=(u=this.$slots).default)==null?void 0:f.call(u),a.createVNode("div",{class:"container-footer"},[(p=(m=this.$slots).footer)==null?void 0:p.call(m)])])])])])}});const _h=He(db),fb={placement:{type:String,default:"bottom-start",validator:e=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].indexOf(e)<0?(console.error(`placement property is not valid: '${e}'`),!1):!0},className:{type:String},extPopoverCls:{type:String},appendToBody:{type:Boolean},triggerRef:{type:Object},onClick:Function};var Zc=a.defineComponent({props:fb,emits:["changeVisible"],setup(e,{emit:t}){let n=Object.create(null);const i=a.ref(null);a.onMounted(()=>{o()}),a.onBeforeUnmount(()=>{s()});const s=()=>{if(n&&Object.keys(n).length!==0){const u=n;u.isShow&&u.hide(),u.destroy(),n=null,t("changeVisible",!1)}},o=()=>{n&&Object.keys(n).length!==0?a.nextTick(()=>{n.update()}):a.nextTick(()=>{n=new g4(e.triggerRef,i.value,{placement:e.placement,trigger:"manual",modifiers:[{name:"computeStyles",options:{adaptive:!1,gpuAcceleration:!1}},{name:"offset",options:{offset:[0,4]}}]})})},c=a.computed(()=>{const u={};return e.appendToBody&&(u["z-index"]=1060+Rn.getModalNextIndex()),u}),d=a.reactive({styles:c});return xe(Y({},a.toRefs(d)),{refContentRef:i,updateDropdown:o,destoryDropdown:s})},render(){var e,t,n;return a.createVNode("div",{ref:"refContentRef",class:["bk-date-picker-dropdown",this.className,this.extPopoverCls],style:this.styles,onClick:this.onClick},[(n=(t=(e=this.$slots).default)==null?void 0:t.call(e))!=null?n:""])}});const hb={showTime:{type:Boolean,required:!0},isTime:{type:Boolean,default:!1},timeDisabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0}};var Wh=a.defineComponent({props:hb,emits:["pick-clear","pick-success","pick-toggle-time"],setup(e,{emit:t}){const n=a.computed(()=>({time:e.isTime?"\u9009\u62E9\u65E5\u671F":"\u9009\u62E9\u65F6\u95F4",clear:"\u6E05\u9664",ok:"\u786E\u5B9A"})),i=()=>{t("pick-clear")},s=()=>{t("pick-success")},o=()=>{e.timeDisabled||t("pick-toggle-time")},c=a.ref(null);return{labels:n,handleClear:i,handleSuccess:s,handleToggleTime:o,handleTab:u=>{const m=[...c.value.children][u.shiftKey?"shift":"pop"]();document.activeElement===m&&(u.preventDefault(),u.stopPropagation())}}},render(){var e,t,n;return a.createVNode("div",{class:"bk-picker-confirm",ref:"elRef",onKeydown:this.handleTab},[this.showTime?a.createVNode(At,{text:!0,class:"bk-picker-confirm-time",disabled:this.timeDisabled,onClick:this.handleToggleTime},{default:()=>[this.labels.time]}):"",(n=(t=(e=this.$slots).confirm)==null?void 0:t.call(e))!=null?n:a.createVNode("div",{class:"bk-picker-confirm-action"},[this.clearable?a.createVNode("a",{href:"javascript: void(0);",onClick:this.handleClear,onKeydown:this.handleClear},[this.labels.clear]):"",a.createVNode("a",{href:"javascript: void(0);",class:"confirm",onClick:this.handleSuccess,onKeydown_enter:this.handleSuccess},[this.labels.ok])])])}}),Hh=1e3*60*60*24;function Bh(e,t){return new Date(e,t+1,0).getDate()}function Fh(e,t,n){return t===0&&n>50?e-1:t===11&&n<10?e+1:e}function Gh(e,t,n,i){t>11&&(t=0,e++);var s=new Date(e,t,n);i&&s.setDate(s.getDate()+4-(s.getDay()||7));var o=i?s.getFullYear():e,c=new Date(o,0,1),d=1+Math.round((s-c)/Hh);i||(d+=c.getDay());var u=Math.ceil(d/7);if(!i){var f=new Date(e,t,n),m=new Date(e+1,0,1),p=m.getDay();f.getTime()>=m.getTime()-Hh*p&&(u=1)}return u}function gb(e,t,n){for(var i=this.lang||"en",s=this.onlyDays,o=typeof this.weekStart=="undefined"?1:this.weekStart,c=o===1,d=[],u=new Date(e,t,1),f=u.getDay()||(c?7:0),m=o-f,p=Gh(e,t,1,c),y=Bh(e,t),b=Bh(e,t-1),v,T,x,k=Fh(e,t,p),I={month:t,year:e,daysInMonth:y},C=0;C<7;C++){x=m;for(var M=0;M<8;M++){C>0&&M>0&&m++,m>y||m<1?(T=m>y?m-y:b+m,v=m>y?t+1:t-1):(T=m,v=t);var N=function(){return M===0?"weekLabel":C===0?"dayLabel":m<1?"prevMonth":m>y?"nextMonth":"monthDay"}(),L=x!==m&&C>0,j={desc:L?T:p,week:p,type:N,format:c?"ISO 8601":"US",date:L?new Date(Date.UTC(e,v,T)):!1,year:k,index:d.length};n&&(typeof n=="function"?j=n.call(I,j,i):n.forEach(function(z){j=z.call(I,j,i)})),s&&L?d.push(j):s||d.push(j)}C>0&&(p=Gh(e,v,T+1,c)),k=Fh(e,t,p)}return I.cells=d,I}var mb=function(e){return gb.bind(e)},pb={weekPlaceholder:"",columnNames:{en:{0:"w",1:"monday",2:"tuesday",3:"wednesday",4:"thursday",5:"friday",6:"saturday",7:"sunday"},sv:{0:"v",1:"m\xE5ndag",2:"tisdag",3:"onsdag",4:"torsdag",5:"fredag",6:"l\xF6rdag",7:"s\xF6ndag"},pt:{0:"s",1:"segunda",2:"ter\xE7a",3:"quarta",4:"quinta",5:"sexta",6:"s\xE1bado",7:"domingo"}},monthNames:{en:["January","February","March","April","May","June","July","August","September","October","November","December"],sv:["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],pt:["Janeiro","Fevereiro","Mar\xE7o","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"]},classes:{dayLabel:"day-of-week",weekLabel:"week-number",prevMonth:"inactive",nextMonth:"inactive",monthDay:"day-in-month"}},Zn=pb;function bb(e){return e==null?!1:e.constructor===Array||e.constructor===Object}function Zh(e,t){for(var n in e)t[n]?bb(e[n])&&Zh(e[n],t[n]):t[n]=e[n]}function Yh(e,t){var n=[Zn.classes[e.type]];return e.class?e.class=(typeof e.class=="string"?[e.class]:e.class).concat(n):e.class=n,e.type.indexOf("Label")>0&&(e.index==0&&Zn.weekPlaceholder?e.desc=Zn.weekPlaceholder:e.index<8?e.desc=Zn.columnNames[t][e.index]:e.index%8==0&&(e.desc=e.week)),e.date&&(e.monthName=Zn.monthNames[t][e.date.getMonth()]),this.monthName||(this.monthName=Zn.monthNames[t][this.month]),this.labels||(this.labels={monthNames:Zn.monthNames[t],columnNames:Zn.columnNames[t],classes:Zn.classes}),e}Yh.setLabels=function(e){Zh(e,Zn)};var yb=Yh,Cb={Generator:mb,addLabels:yb};function yn(e){if(e===null||e===!0||e===!1)return NaN;var t=Number(e);return isNaN(t)?t:t<0?Math.ceil(t):Math.floor(t)}function Jt(e,t){if(t.length<e)throw new TypeError(e+" argument"+(e>1?"s":"")+" required, but only "+t.length+" present")}function sn(e){Jt(1,arguments);var t=Object.prototype.toString.call(e);return e instanceof Date||typeof e=="object"&&t==="[object Date]"?new Date(e.getTime()):typeof e=="number"||t==="[object Number]"?new Date(e):((typeof e=="string"||t==="[object String]")&&typeof console!="undefined"&&(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://git.io/fjule"),console.warn(new Error().stack)),new Date(NaN))}function vb(e,t){Jt(2,arguments);var n=sn(e).getTime(),i=yn(t);return new Date(n+i)}function wb(e){var t=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return t.setUTCFullYear(e.getFullYear()),e.getTime()-t.getTime()}function Mb(e){return Jt(1,arguments),e instanceof Date||typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"}function Ib(e){if(Jt(1,arguments),!Mb(e)&&typeof e!="number")return!1;var t=sn(e);return!isNaN(Number(t))}var Nb={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},Lb=function(e,t,n){var i,s=Nb[e];return typeof s=="string"?i=s:t===1?i=s.one:i=s.other.replace("{{count}}",t.toString()),n!=null&&n.addSuffix?n.comparison&&n.comparison>0?"in "+i:i+" ago":i},kb=Lb;function Yc(e){return function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=t.width?String(t.width):e.defaultWidth,i=e.formats[n]||e.formats[e.defaultWidth];return i}}var Tb={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},xb={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},Sb={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},Db={date:Yc({formats:Tb,defaultWidth:"full"}),time:Yc({formats:xb,defaultWidth:"full"}),dateTime:Yc({formats:Sb,defaultWidth:"full"})},jb=Db,zb={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},Ob=function(e,t,n,i){return zb[e]},Eb=Ob;function Fr(e){return function(t,n){var i=n||{},s=i.context?String(i.context):"standalone",o;if(s==="formatting"&&e.formattingValues){var c=e.defaultFormattingWidth||e.defaultWidth,d=i.width?String(i.width):c;o=e.formattingValues[d]||e.formattingValues[c]}else{var u=e.defaultWidth,f=i.width?String(i.width):e.defaultWidth;o=e.values[f]||e.values[u]}var m=e.argumentCallback?e.argumentCallback(t):t;return o[m]}}var Pb={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},Ab={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},Vb={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},Jb={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},Qb={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},Rb={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},_b=function(e,t){var n=Number(e),i=n%100;if(i>20||i<10)switch(i%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},Wb={ordinalNumber:_b,era:Fr({values:Pb,defaultWidth:"wide"}),quarter:Fr({values:Ab,defaultWidth:"wide",argumentCallback:function(e){return e-1}}),month:Fr({values:Vb,defaultWidth:"wide"}),day:Fr({values:Jb,defaultWidth:"wide"}),dayPeriod:Fr({values:Qb,defaultWidth:"wide",formattingValues:Rb,defaultFormattingWidth:"wide"})},Hb=Wb;function Gr(e){return function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=n.width,s=i&&e.matchPatterns[i]||e.matchPatterns[e.defaultMatchWidth],o=t.match(s);if(!o)return null;var c=o[0],d=i&&e.parsePatterns[i]||e.parsePatterns[e.defaultParseWidth],u=Array.isArray(d)?Fb(d,function(p){return p.test(c)}):Bb(d,function(p){return p.test(c)}),f;f=e.valueCallback?e.valueCallback(u):u,f=n.valueCallback?n.valueCallback(f):f;var m=t.slice(c.length);return{value:f,rest:m}}}function Bb(e,t){for(var n in e)if(e.hasOwnProperty(n)&&t(e[n]))return n}function Fb(e,t){for(var n=0;n<e.length;n++)if(t(e[n]))return n}function Gb(e){return function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=t.match(e.matchPattern);if(!i)return null;var s=i[0],o=t.match(e.parsePattern);if(!o)return null;var c=e.valueCallback?e.valueCallback(o[0]):o[0];c=n.valueCallback?n.valueCallback(c):c;var d=t.slice(s.length);return{value:c,rest:d}}}var Zb=/^(\d+)(th|st|nd|rd)?/i,Yb=/\d+/i,Ub={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},$b={any:[/^b/i,/^(a|c)/i]},Kb={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},Xb={any:[/1/i,/2/i,/3/i,/4/i]},qb={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},ey={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},ty={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},ny={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},iy={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},ay={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},ry={ordinalNumber:Gb({matchPattern:Zb,parsePattern:Yb,valueCallback:function(e){return parseInt(e,10)}}),era:Gr({matchPatterns:Ub,defaultMatchWidth:"wide",parsePatterns:$b,defaultParseWidth:"any"}),quarter:Gr({matchPatterns:Kb,defaultMatchWidth:"wide",parsePatterns:Xb,defaultParseWidth:"any",valueCallback:function(e){return e+1}}),month:Gr({matchPatterns:qb,defaultMatchWidth:"wide",parsePatterns:ey,defaultParseWidth:"any"}),day:Gr({matchPatterns:ty,defaultMatchWidth:"wide",parsePatterns:ny,defaultParseWidth:"any"}),dayPeriod:Gr({matchPatterns:iy,defaultMatchWidth:"any",parsePatterns:ay,defaultParseWidth:"any"})},sy=ry,ly={code:"en-US",formatDistance:kb,formatLong:jb,formatRelative:Eb,localize:Hb,match:sy,options:{weekStartsOn:0,firstWeekContainsDate:1}},oy=ly;function cy(e,t){Jt(2,arguments);var n=yn(t);return vb(e,-n)}var uy=864e5;function dy(e){Jt(1,arguments);var t=sn(e),n=t.getTime();t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0);var i=t.getTime(),s=n-i;return Math.floor(s/uy)+1}function dl(e){Jt(1,arguments);var t=1,n=sn(e),i=n.getUTCDay(),s=(i<t?7:0)+i-t;return n.setUTCDate(n.getUTCDate()-s),n.setUTCHours(0,0,0,0),n}function Uh(e){Jt(1,arguments);var t=sn(e),n=t.getUTCFullYear(),i=new Date(0);i.setUTCFullYear(n+1,0,4),i.setUTCHours(0,0,0,0);var s=dl(i),o=new Date(0);o.setUTCFullYear(n,0,4),o.setUTCHours(0,0,0,0);var c=dl(o);return t.getTime()>=s.getTime()?n+1:t.getTime()>=c.getTime()?n:n-1}function fy(e){Jt(1,arguments);var t=Uh(e),n=new Date(0);n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0);var i=dl(n);return i}var hy=6048e5;function gy(e){Jt(1,arguments);var t=sn(e),n=dl(t).getTime()-fy(t).getTime();return Math.round(n/hy)+1}function fl(e,t){Jt(1,arguments);var n=t||{},i=n.locale,s=i&&i.options&&i.options.weekStartsOn,o=s==null?0:yn(s),c=n.weekStartsOn==null?o:yn(n.weekStartsOn);if(!(c>=0&&c<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var d=sn(e),u=d.getUTCDay(),f=(u<c?7:0)+u-c;return d.setUTCDate(d.getUTCDate()-f),d.setUTCHours(0,0,0,0),d}function $h(e,t){Jt(1,arguments);var n=sn(e),i=n.getUTCFullYear(),s=t||{},o=s.locale,c=o&&o.options&&o.options.firstWeekContainsDate,d=c==null?1:yn(c),u=s.firstWeekContainsDate==null?d:yn(s.firstWeekContainsDate);if(!(u>=1&&u<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var f=new Date(0);f.setUTCFullYear(i+1,0,u),f.setUTCHours(0,0,0,0);var m=fl(f,t),p=new Date(0);p.setUTCFullYear(i,0,u),p.setUTCHours(0,0,0,0);var y=fl(p,t);return n.getTime()>=m.getTime()?i+1:n.getTime()>=y.getTime()?i:i-1}function my(e,t){Jt(1,arguments);var n=t||{},i=n.locale,s=i&&i.options&&i.options.firstWeekContainsDate,o=s==null?1:yn(s),c=n.firstWeekContainsDate==null?o:yn(n.firstWeekContainsDate),d=$h(e,t),u=new Date(0);u.setUTCFullYear(d,0,c),u.setUTCHours(0,0,0,0);var f=fl(u,t);return f}var py=6048e5;function by(e,t){Jt(1,arguments);var n=sn(e),i=fl(n,t).getTime()-my(n,t).getTime();return Math.round(i/py)+1}function it(e,t){for(var n=e<0?"-":"",i=Math.abs(e).toString();i.length<t;)i="0"+i;return n+i}var yy={y:function(e,t){var n=e.getUTCFullYear(),i=n>0?n:1-n;return it(t==="yy"?i%100:i,t.length)},M:function(e,t){var n=e.getUTCMonth();return t==="M"?String(n+1):it(n+1,2)},d:function(e,t){return it(e.getUTCDate(),t.length)},a:function(e,t){var n=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.toUpperCase();case"aaa":return n;case"aaaaa":return n[0];case"aaaa":default:return n==="am"?"a.m.":"p.m."}},h:function(e,t){return it(e.getUTCHours()%12||12,t.length)},H:function(e,t){return it(e.getUTCHours(),t.length)},m:function(e,t){return it(e.getUTCMinutes(),t.length)},s:function(e,t){return it(e.getUTCSeconds(),t.length)},S:function(e,t){var n=t.length,i=e.getUTCMilliseconds(),s=Math.floor(i*Math.pow(10,n-3));return it(s,t.length)}},Qi=yy,Ya={am:"am",pm:"pm",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Cy={G:function(e,t,n){var i=e.getUTCFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(i,{width:"abbreviated"});case"GGGGG":return n.era(i,{width:"narrow"});case"GGGG":default:return n.era(i,{width:"wide"})}},y:function(e,t,n){if(t==="yo"){var i=e.getUTCFullYear(),s=i>0?i:1-i;return n.ordinalNumber(s,{unit:"year"})}return Qi.y(e,t)},Y:function(e,t,n,i){var s=$h(e,i),o=s>0?s:1-s;if(t==="YY"){var c=o%100;return it(c,2)}return t==="Yo"?n.ordinalNumber(o,{unit:"year"}):it(o,t.length)},R:function(e,t){var n=Uh(e);return it(n,t.length)},u:function(e,t){var n=e.getUTCFullYear();return it(n,t.length)},Q:function(e,t,n){var i=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"Q":return String(i);case"QQ":return it(i,2);case"Qo":return n.ordinalNumber(i,{unit:"quarter"});case"QQQ":return n.quarter(i,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(i,{width:"narrow",context:"formatting"});case"QQQQ":default:return n.quarter(i,{width:"wide",context:"formatting"})}},q:function(e,t,n){var i=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"q":return String(i);case"qq":return it(i,2);case"qo":return n.ordinalNumber(i,{unit:"quarter"});case"qqq":return n.quarter(i,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(i,{width:"narrow",context:"standalone"});case"qqqq":default:return n.quarter(i,{width:"wide",context:"standalone"})}},M:function(e,t,n){var i=e.getUTCMonth();switch(t){case"M":case"MM":return Qi.M(e,t);case"Mo":return n.ordinalNumber(i+1,{unit:"month"});case"MMM":return n.month(i,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(i,{width:"narrow",context:"formatting"});case"MMMM":default:return n.month(i,{width:"wide",context:"formatting"})}},L:function(e,t,n){var i=e.getUTCMonth();switch(t){case"L":return String(i+1);case"LL":return it(i+1,2);case"Lo":return n.ordinalNumber(i+1,{unit:"month"});case"LLL":return n.month(i,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(i,{width:"narrow",context:"standalone"});case"LLLL":default:return n.month(i,{width:"wide",context:"standalone"})}},w:function(e,t,n,i){var s=by(e,i);return t==="wo"?n.ordinalNumber(s,{unit:"week"}):it(s,t.length)},I:function(e,t,n){var i=gy(e);return t==="Io"?n.ordinalNumber(i,{unit:"week"}):it(i,t.length)},d:function(e,t,n){return t==="do"?n.ordinalNumber(e.getUTCDate(),{unit:"date"}):Qi.d(e,t)},D:function(e,t,n){var i=dy(e);return t==="Do"?n.ordinalNumber(i,{unit:"dayOfYear"}):it(i,t.length)},E:function(e,t,n){var i=e.getUTCDay();switch(t){case"E":case"EE":case"EEE":return n.day(i,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(i,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(i,{width:"short",context:"formatting"});case"EEEE":default:return n.day(i,{width:"wide",context:"formatting"})}},e:function(e,t,n,i){var s=e.getUTCDay(),o=(s-i.weekStartsOn+8)%7||7;switch(t){case"e":return String(o);case"ee":return it(o,2);case"eo":return n.ordinalNumber(o,{unit:"day"});case"eee":return n.day(s,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(s,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(s,{width:"short",context:"formatting"});case"eeee":default:return n.day(s,{width:"wide",context:"formatting"})}},c:function(e,t,n,i){var s=e.getUTCDay(),o=(s-i.weekStartsOn+8)%7||7;switch(t){case"c":return String(o);case"cc":return it(o,t.length);case"co":return n.ordinalNumber(o,{unit:"day"});case"ccc":return n.day(s,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(s,{width:"narrow",context:"standalone"});case"cccccc":return n.day(s,{width:"short",context:"standalone"});case"cccc":default:return n.day(s,{width:"wide",context:"standalone"})}},i:function(e,t,n){var i=e.getUTCDay(),s=i===0?7:i;switch(t){case"i":return String(s);case"ii":return it(s,t.length);case"io":return n.ordinalNumber(s,{unit:"day"});case"iii":return n.day(i,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(i,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(i,{width:"short",context:"formatting"});case"iiii":default:return n.day(i,{width:"wide",context:"formatting"})}},a:function(e,t,n){var i=e.getUTCHours(),s=i/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(s,{width:"narrow",context:"formatting"});case"aaaa":default:return n.dayPeriod(s,{width:"wide",context:"formatting"})}},b:function(e,t,n){var i=e.getUTCHours(),s;switch(i===12?s=Ya.noon:i===0?s=Ya.midnight:s=i/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(s,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(s,{width:"narrow",context:"formatting"});case"bbbb":default:return n.dayPeriod(s,{width:"wide",context:"formatting"})}},B:function(e,t,n){var i=e.getUTCHours(),s;switch(i>=17?s=Ya.evening:i>=12?s=Ya.afternoon:i>=4?s=Ya.morning:s=Ya.night,t){case"B":case"BB":case"BBB":return n.dayPeriod(s,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(s,{width:"narrow",context:"formatting"});case"BBBB":default:return n.dayPeriod(s,{width:"wide",context:"formatting"})}},h:function(e,t,n){if(t==="ho"){var i=e.getUTCHours()%12;return i===0&&(i=12),n.ordinalNumber(i,{unit:"hour"})}return Qi.h(e,t)},H:function(e,t,n){return t==="Ho"?n.ordinalNumber(e.getUTCHours(),{unit:"hour"}):Qi.H(e,t)},K:function(e,t,n){var i=e.getUTCHours()%12;return t==="Ko"?n.ordinalNumber(i,{unit:"hour"}):it(i,t.length)},k:function(e,t,n){var i=e.getUTCHours();return i===0&&(i=24),t==="ko"?n.ordinalNumber(i,{unit:"hour"}):it(i,t.length)},m:function(e,t,n){return t==="mo"?n.ordinalNumber(e.getUTCMinutes(),{unit:"minute"}):Qi.m(e,t)},s:function(e,t,n){return t==="so"?n.ordinalNumber(e.getUTCSeconds(),{unit:"second"}):Qi.s(e,t)},S:function(e,t){return Qi.S(e,t)},X:function(e,t,n,i){var s=i._originalDate||e,o=s.getTimezoneOffset();if(o===0)return"Z";switch(t){case"X":return Xh(o);case"XXXX":case"XX":return ua(o);case"XXXXX":case"XXX":default:return ua(o,":")}},x:function(e,t,n,i){var s=i._originalDate||e,o=s.getTimezoneOffset();switch(t){case"x":return Xh(o);case"xxxx":case"xx":return ua(o);case"xxxxx":case"xxx":default:return ua(o,":")}},O:function(e,t,n,i){var s=i._originalDate||e,o=s.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+Kh(o,":");case"OOOO":default:return"GMT"+ua(o,":")}},z:function(e,t,n,i){var s=i._originalDate||e,o=s.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+Kh(o,":");case"zzzz":default:return"GMT"+ua(o,":")}},t:function(e,t,n,i){var s=i._originalDate||e,o=Math.floor(s.getTime()/1e3);return it(o,t.length)},T:function(e,t,n,i){var s=i._originalDate||e,o=s.getTime();return it(o,t.length)}};function Kh(e,t){var n=e>0?"-":"+",i=Math.abs(e),s=Math.floor(i/60),o=i%60;if(o===0)return n+String(s);var c=t||"";return n+String(s)+c+it(o,2)}function Xh(e,t){if(e%60===0){var n=e>0?"-":"+";return n+it(Math.abs(e)/60,2)}return ua(e,t)}function ua(e,t){var n=t||"",i=e>0?"-":"+",s=Math.abs(e),o=it(Math.floor(s/60),2),c=it(s%60,2);return i+o+n+c}var vy=Cy;function qh(e,t){switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}}function e9(e,t){switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}}function wy(e,t){var n=e.match(/(P+)(p+)?/)||[],i=n[1],s=n[2];if(!s)return qh(e,t);var o;switch(i){case"P":o=t.dateTime({width:"short"});break;case"PP":o=t.dateTime({width:"medium"});break;case"PPP":o=t.dateTime({width:"long"});break;case"PPPP":default:o=t.dateTime({width:"full"});break}return o.replace("{{date}}",qh(i,t)).replace("{{time}}",e9(s,t))}var My={p:e9,P:wy},Iy=My,Ny=["D","DD"],Ly=["YY","YYYY"];function ky(e){return Ny.indexOf(e)!==-1}function Ty(e){return Ly.indexOf(e)!==-1}function t9(e,t,n){if(e==="YYYY")throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if(e==="YY")throw new RangeError("Use `yy` instead of `YY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if(e==="D")throw new RangeError("Use `d` instead of `D` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"));if(e==="DD")throw new RangeError("Use `dd` instead of `DD` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"))}var xy=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Sy=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Dy=/^'([^]*?)'?$/,jy=/''/g,zy=/[a-zA-Z]/;function Oy(e,t,n){Jt(2,arguments);var i=String(t),s=n||{},o=s.locale||oy,c=o.options&&o.options.firstWeekContainsDate,d=c==null?1:yn(c),u=s.firstWeekContainsDate==null?d:yn(s.firstWeekContainsDate);if(!(u>=1&&u<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var f=o.options&&o.options.weekStartsOn,m=f==null?0:yn(f),p=s.weekStartsOn==null?m:yn(s.weekStartsOn);if(!(p>=0&&p<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!o.localize)throw new RangeError("locale must contain localize property");if(!o.formatLong)throw new RangeError("locale must contain formatLong property");var y=sn(e);if(!Ib(y))throw new RangeError("Invalid time value");var b=wb(y),v=cy(y,b),T={firstWeekContainsDate:u,weekStartsOn:p,locale:o,_originalDate:y},x=i.match(Sy).map(function(k){var I=k[0];if(I==="p"||I==="P"){var C=Iy[I];return C(k,o.formatLong,T)}return k}).join("").match(xy).map(function(k){if(k==="''")return"'";var I=k[0];if(I==="'")return Ey(k);var C=vy[I];if(C)return!s.useAdditionalWeekYearTokens&&Ty(k)&&t9(k,t,e),!s.useAdditionalDayOfYearTokens&&ky(k)&&t9(k,t,e),C(v,k,o.localize,T);if(I.match(zy))throw new RangeError("Format string contains an unescaped latin alphabet character `"+I+"`");return k}).join("");return x}function Ey(e){return e.match(Dy)[1].replace(jy,"'")}const wt={},n9=/d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,da=/\d\d?/,Py=/\d{3}/,Ay=/\d{4}/,hl=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,i9=function(){};function a9(e,t){const n=[];for(let i=0,s=e.length;i<s;i++)n.push(e[i].substr(0,t));return n}function r9(e){return(t,n,i)=>{const s=i[e].indexOf(n.charAt(0).toUpperCase()+n.substr(1).toLowerCase());~s&&(t.month=s)}}function Yn(e,t=2){let n=String(e);for(;n.length<t;)n=`0${n}`;return n}const s9=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],l9=["January","February","March","April","May","June","July","August","September","October","November","December"],Vy=a9(l9,3),Jy=a9(s9,3);wt.i18n={dayNamesShort:Jy,dayNames:s9,monthNamesShort:Vy,monthNames:l9,amPm:["am","pm"],DoFn(e){return e+["th","st","nd","rd"][e%10>3?0:(e-e%10!==10)*e%10]}};const o9={D(e){return e.getDay()},DD(e){return Yn(e.getDay())},Do(e,t){return t.DoFn(e.getDate())},d(e){return e.getDate()},dd(e){return Yn(e.getDate())},ddd(e,t){return t.dayNamesShort[e.getDay()]},dddd(e,t){return t.dayNames[e.getDay()]},M(e){return e.getMonth()+1},MM(e){return Yn(e.getMonth()+1)},MMM(e,t){return t.monthNamesShort[e.getMonth()]},MMMM(e,t){return t.monthNames[e.getMonth()]},yy(e){return String(e.getFullYear()).substr(2)},yyyy(e){return e.getFullYear()},h(e){return e.getHours()%12||12},hh(e){return Yn(e.getHours()%12||12)},H(e){return e.getHours()},HH(e){return Yn(e.getHours())},m(e){return e.getMinutes()},mm(e){return Yn(e.getMinutes())},s(e){return e.getSeconds()},ss(e){return Yn(e.getSeconds())},S(e){return Math.round(e.getMilliseconds()/100)},SS(e){return Yn(Math.round(e.getMilliseconds()/10),2)},SSS(e){return Yn(e.getMilliseconds(),3)},a(e,t){return e.getHours()<12?t.amPm[0]:t.amPm[1]},A(e,t){return e.getHours()<12?t.amPm[0].toUpperCase():t.amPm[1].toUpperCase()},ZZ(e){const t=e.getTimezoneOffset();return(t>0?"-":"+")+Yn(Math.floor(Math.abs(t)/60)*100+Math.abs(t)%60,4)}},gt={d:[da,(e,t)=>{e.day=t}],M:[da,(e,t)=>{e.month=t-1}],yy:[da,(e,t)=>{const i=+`${new Date().getFullYear()}`.substr(0,2);e.year=`${t>68?i-1:i}${t}`}],h:[da,(e,t)=>{e.hour=t}],m:[da,(e,t)=>{e.minute=t}],s:[da,(e,t)=>{e.second=t}],yyyy:[Ay,(e,t)=>{e.year=t}],S:[/\d/,(e,t)=>{e.millisecond=t*100}],SS:[/\d{2}/,(e,t)=>{e.millisecond=t*10}],SSS:[Py,(e,t)=>{e.millisecond=t}],D:[da,i9],ddd:[hl,i9],MMM:[hl,r9("monthNamesShort")],MMMM:[hl,r9("monthNames")],a:[hl,(e,t,n)=>{const i=t.toLowerCase();i===n.amPm[0]?e.isPm=!1:i===n.amPm[1]&&(e.isPm=!0)}],ZZ:[/[\\+\\-]\d\d:?\d\d/,(e,t)=>{const n=`${t}`.match(/([\\+\\-]|\d\d)/gi);let i;n&&(i=+(n[1]*60)+parseInt(n[2],10),e.timezoneOffset=n[0]==="+"?i:-i)}]};gt.DD=gt.D,gt.dddd=gt.ddd,gt.Do=gt.dd=gt.d,gt.mm=gt.m,gt.hh=gt.H=gt.HH=gt.h,gt.MM=gt.M,gt.ss=gt.s,gt.A=gt.a,wt.masks={default:"ddd MMM dd yyyy HH:mm:ss",shortDate:"M/D/yy",mediumDate:"MMM d, yyyy",longDate:"MMMM d, yyyy",fullDate:"dddd, MMMM d, yyyy",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},wt.format=(e,t,n)=>{const i=n||wt.i18n;if(typeof e=="number"&&(e=new Date(e)),Object.prototype.toString.call(e)!=="[object Date]"||isNaN(e.getTime()))throw new Error("Invalid Date in fecha.format");return t=wt.masks[t]||t||wt.masks.default,t.replace(n9,s=>s in o9?o9[s](e,i):s.slice(1,s.length-1))},wt.parse=(e,t,n)=>{const i=n||wt.i18n;if(typeof t!="string")throw new Error("Invalid format in fecha.parse");if(t=wt.masks[t]||t,e.length>1e3)return!1;let s=!0;const o={};if(t.replace(n9,u=>{if(gt[u]){const f=gt[u],m=e.search(f[0]);~m?e.replace(f[0],p=>(f[1](o,p,i),e=e.substr(m+p.length),p)):s=!1}return gt[u]?"":u.slice(1,u.length-1)}),!s)return!1;const c=new Date;o.isPm===!0&&o.hour!==null&&+o.hour!=12?o.hour=+o.hour+12:o.isPm===!1&&+o.hour==12&&(o.hour=0);let d;return o.timezoneOffset!==null&&o.timezoneOffset!==void 0?(o.minute=+(o.minute||0)-+o.timezoneOffset,d=new Date(Date.UTC(o.year||c.getFullYear(),o.month||0,o.day||1,o.hour||0,o.minute||0,o.second||0,o.millisecond||0))):d=new Date(o.year||c.getFullYear(),o.month||0,o.day||1,o.hour||0,o.minute||0,o.second||0,o.millisecond||0),d};const Uc=" - ",di=(e,t)=>{const n=sn(new Date(e));return!n||isNaN(n.getTime())?"":Oy(n,t||"yyyy-MM-dd")},$c=(e,t)=>{if(Array.isArray(e)&&e.length===2){const n=e[0],i=e[1];if(n&&i)return di(n,t)+Uc+di(i,t)}else if(!Array.isArray(e)&&e instanceof Date)return di(e,t);return""},Kc=(e,t)=>{const n=Array.isArray(e)?e:e.split(Uc);if(n.length===2){const i=n[0],s=n[1];return[i instanceof Date?i:wt.parse(i,t||"yyyy-MM-dd"),s instanceof Date?s:wt.parse(s,t||"yyyy-MM-dd")]}return[]},Ua={default:{formatter(e){return e?`${e}`:""},parser(e){return e===void 0||e===""?null:e}},date:{formatter:(e,t)=>di(e,t),parser:(e,t)=>wt.parse(e,t||"yyyy-MM-dd")},datetime:{formatter:(e,t)=>di(e,t),parser:(e,t)=>wt.parse(e,t||"yyyy-MM-dd")},daterange:{formatter:$c,parser:Kc},datetimerange:{formatter:$c,parser:Kc},timerange:{formatter:$c,parser:Kc},time:{formatter:(e,t)=>di(e,t),parser:(e,t)=>wt.parse(e,t||"yyyy-MM-dd")},month:{formatter:(e,t)=>di(e,t),parser:(e,t)=>wt.parse(e,t||"yyyy-MM-dd")},year:{formatter:(e,t)=>di(e,t),parser:(e,t)=>wt.parse(e,t||"yyyy-MM-dd")},multiple:{formatter(e,t){return e.filter(Boolean).map(n=>di(n,t)).join(",")},parser(e,t){return(typeof e=="string"?e.split(","):e).map(i=>{if(i instanceof Date)return i;let s=i;return typeof i=="string"?s=i.trim():typeof i!="number"&&!i&&(s=""),wt.parse(s,t||"yyyy-MM-dd")})}},number:{formatter(e){return e?`${e}`:""},parser(e){const t=Number(e);return isNaN(e)?null:t}}},fa=()=>{const e=new Date;return e.setHours(0),e.setMinutes(0),e.setSeconds(0),e},c9=e=>e.every(t=>!t||typeof t=="string"&&t.trim()===""),gl=e=>e?[e.getHours(),e.getMinutes(),e.getSeconds()]:[0,0,0],u9={date:"yyyy-MM-dd",month:"yyyy-MM",year:"yyyy",datetime:"yyyy-MM-dd HH:mm:ss",time:"HH:mm:ss",timerange:"HH:mm:ss",daterange:"yyyy-MM-dd",datetimerange:"yyyy-MM-dd HH:mm:ss"},Ri=(e,t,n,i)=>{const s=t.includes("range"),{parser:o}=Ua[t]||Ua.default,c=i||u9[t],d=Ua.multiple.parser;let u=e;if(e&&t==="time"&&!(e instanceof Date))u=o(e,c);else if(n&&e)u=d(e,c);else if(s)if(!e)u=[null,null];else if(typeof e=="string")u=o(e,c);else if(t==="timerange")u=o(e,c).map(f=>f||"");else{const[f,m]=e;f instanceof Date&&m instanceof Date?u=e.map(p=>new Date(p)):typeof f=="string"&&typeof m=="string"?u=o(e.join(Uc),c):(!f||!m)&&(u=[null,null])}else typeof e=="string"&&t.indexOf("time")!==0&&(u=o(e,c)||null);return s||n?u||[]:[u]},Un=(e,t,n,i)=>{const s=u9[t];if(n){const{formatter:c}=Ua.multiple;return c(e,i||s)}const{formatter:o}=Ua[t]||Ua.default;return o(e,i||s)},d9=Symbol("date-picker"),ml=Symbol("time-picker");function Cn(e,t=""){return["bk-picker-panel-icon-btn",`bk-date-picker-${e}-btn`,`bk-date-picker-${e}-btn-arrow${t}`]}const Qy=(e,t)=>new Date(e,t+1,0).getDate(),f9=(e,t)=>{const n=new Date(e),i=n.getMonth()+t,s=Qy(n.getFullYear(),i);return s<n.getDate()&&n.setDate(s),n.setMonth(i),n},h9=(()=>{const e={yyyy:n=>n.getFullYear(),m:n=>n.getMonth()+1,mm:n=>`0${n.getMonth()+1}`.slice(-2),mmm:(n,i)=>n.toLocaleDateString(i,{month:"long"}).slice(0,3),Mmm:(n,i)=>{const s=n.toLocaleDateString(i,{month:"long"});return(s[0].toUpperCase()+s.slice(1).toLowerCase()).slice(0,3)},mmmm:(n,i)=>n.toLocaleDateString(i,{month:"long"}),Mmmm:(n,i)=>{const s=n.toLocaleDateString(i,{month:"long"});return s[0].toUpperCase()+s.slice(1).toLowerCase()}},t=new RegExp(["yyyy","Mmmm","mmmm","Mmm","mmm","mm","m"].join("|"),"g");return(n,i,s)=>{const o=/(\[[^\]]+\])([^\\[\]]+)(\[[^\]]+\])/,c=i.match(o).slice(1),d=c[1],u=[c[0],c[2]].map(f=>({label:f.replace(/\[[^\]]+\]/,p=>p.slice(1,-1).replace(t,y=>e[y](s,n))),type:f.indexOf("yy")!==-1?"year":"month"}));return{separator:d,labels:u}}})(),ha=e=>{const t=new Date(e);return t.setHours(0,0,0,0),t.getTime()},Ry=(e,t,n)=>{if(!t||!n)return!1;const[i,s]=[t,n].sort();return e>=i&&e<=s};function _y(e){return e.toString()[0].toUpperCase()+e.toString().slice(1)}const Wy=(e,...t)=>{const n=new Date(e.getTime());return n.setHours(t[0]),n.setMinutes(t[1]),n.setSeconds(t[2]),n},Hy={tableDate:{type:Date,required:!0},disabledDate:Function,selectionMode:{type:String,required:!0},modelValue:{type:[Date,String,Number,Array]},rangeState:{type:Object,default:()=>({from:null,to:null,selecting:!1})},focusedDate:{type:Date,required:!0}};var Xc=a.defineComponent({name:"DateTable",props:Hy,emits:["pick","pick-click","changeRange"],setup(e,{emit:t}){const n=a.computed(()=>new Cb.Generator({onlyDays:!0,weekStart:0})),i=a.computed(()=>{const f=["\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"];return f.splice(0,7-0).concat(f.splice(0,0))}),s=a.computed(()=>e.selectionMode==="range"&&e.rangeState.selecting?[e.rangeState.from]:e.modelValue),o=a.computed(()=>{const f=e.tableDate.getFullYear(),m=e.tableDate.getMonth(),p=ha(new Date),y=s.value.filter(Boolean).map(ha),[b,v]=s.value.map(ha),T=e.rangeState.from&&ha(e.rangeState.from),x=e.rangeState.to&&ha(e.rangeState.to),k=e.selectionMode==="range",I=typeof e.disabledDate=="function"&&e.disabledDate;return n.value(f,m,C=>{C.date instanceof Date&&C.date.setTime(C.date.getTime()+C.date.getTimezoneOffset()*6e4);const M=C.date&&ha(C.date),N=C.date&&m===C.date.getMonth();return xe(Y({},C),{type:M===p?"today":C.type,selected:N&&y.includes(M),disabled:C.date&&I&&I(new Date(M)),range:N&&k&&Ry(M,T,x),start:N&&k&&M===b,end:N&&k&&M===v})}).cells.slice(0)});return{headerDays:i,cells:o,getCellCls:f=>["bk-date-picker-cells-cell",{["bk-date-picker-cells-cell-selected"]:f.selected||f.start||f.end,["bk-date-picker-cells-cell-disabled"]:f.disabled,["bk-date-picker-cells-cell-today"]:f.type==="today",["bk-date-picker-cells-cell-prev-month"]:f.type==="prevMonth",["bk-date-picker-cells-cell-next-month"]:f.type==="nextMonth",["bk-date-picker-cells-cell-week-label"]:f.type==="weekLabel",["bk-date-picker-cells-cell-range"]:f.range&&!f.start&&!f.end}],handleClick:f=>{if(f.disabled||f.type==="weekLabel")return;const m=new Date(ha(f.date));t("pick",m),t("pick-click")},handleMouseMove:f=>{if(!e.rangeState.selecting||f.disabled)return;const m=f.date;t("changeRange",m)}}},render(){return a.createVNode("div",{class:"bk-date-picker-cells"},[a.createVNode("div",{class:"bk-date-picker-cells-header"},[this.headerDays.map(e=>a.createVNode("span",null,[e]))]),this.cells.map(e=>a.createVNode("span",{class:this.getCellCls(e),onClick:()=>this.handleClick(e),onMouseenter:()=>this.handleMouseMove(e)},[a.createVNode("em",null,[e.desc])]))])}});const pl={type:{type:String,default:"date",validator(e){return["year","month","date","daterange","datetime","datetimerange","time","timerange"].indexOf(e)<0?(console.error(`type property is not valid: '${e}'`),!1):!0}},extPopoverCls:{type:String,default:""},format:String,readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},editable:{type:Boolean,default:!0},clearable:{type:Boolean,default:!0},open:{type:Boolean,default:null},multiple:{type:Boolean,default:!1},timePickerOptions:{type:Object,default:()=>({})},splitPanels:{type:Boolean,default:!0},startDate:Date,placeholder:{type:String,default:""},placement:{type:String,default:"bottom-start",validator:e=>["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"].indexOf(e)<0?(console.error(`placement property is not valid: '${e}'`),!1):!0},transfer:{type:Boolean,default:!1},appendToBody:{type:Boolean,default:!1},shortcuts:{type:Array,default:()=>[]},shortcutClose:{type:Boolean,default:!1},modelValue:{type:[Date,String,Number,Array]},value:{type:[Date,String,Number,Array]},options:{type:Object,default:()=>({})},fontSize:{type:String,default:"normal"},upToNow:{type:Boolean,default:!1},useShortcutText:{type:Boolean,default:!1},shortcutSelectedIndex:{type:Number,default:-1},headerSlotCls:{type:String,default:""},footerSlotCls:{type:String,default:""},allowCrossDay:{type:Boolean,default:!1},behavior:{type:String,default:"normal",validator(e){return["simplicity","normal"].indexOf(e)>-1}},disabledDate:Function,withValidate:{type:Boolean,default:!0}},bl={disabledHours:{type:Array,default:()=>[]},disabledMinutes:{type:Array,default:()=>[]},disabledSeconds:{type:Array,default:()=>[]},hideDisabledOptions:{type:Boolean,default:!1},width:{type:Number,default:261},enterMode:{type:Boolean,default:!0}},By={type:{type:String,default:"time",validator(e){return["time","timerange"].indexOf(e)<0?(console.error(`type property is not valid: '${e}'`),!1):!0}},allowCrossDay:{type:Boolean,default:!1}},Fy={hours:{type:[Number,String],default:NaN},minutes:{type:[Number,String],default:NaN},seconds:{type:[Number,String],default:NaN},showSeconds:{type:Boolean,default:!0},steps:{type:Array,default:()=>[]}},g9=["hours","minutes","seconds"];var qc=a.defineComponent({name:"TimeSpinner",props:Y(Y({},Fy),bl),emits:["change","pick-click"],setup(e,{emit:t}){const n=a.reactive({spinerSteps:[1,1,1].map((L,j)=>Math.abs(e.steps[j])||L),compiled:!1,focusedColumn:-1,focusedTime:[0,0,0]}),i=a.computed(()=>{const L=[],j=n.spinerSteps[0],z=n.focusedColumn===0&&n.focusedTime[0],O={text:0,selected:!1,disabled:!1,hide:!1};for(let R=0;R<24;R+=j){const P=JSON.parse(JSON.stringify(O));P.text=R,P.focused=R===z,e.disabledHours.length&&e.disabledHours.indexOf(R)>-1&&(P.disabled=!0,e.hideDisabledOptions&&(P.hide=!0)),e.hours===R&&(P.selected=!0),L.push(P)}return L}),s=a.computed(()=>{const L=[],j=n.spinerSteps[1],z=n.focusedColumn===1&&n.focusedTime[1],O={text:0,selected:!1,disabled:!1,hide:!1};for(let R=0;R<60;R+=j){const P=JSON.parse(JSON.stringify(O));P.text=R,P.focused=R===z,e.disabledMinutes.length&&e.disabledMinutes.indexOf(R)>-1&&(P.disabled=!0,e.hideDisabledOptions&&(P.hide=!0)),e.minutes===R&&(P.selected=!0),L.push(P)}return L}),o=a.computed(()=>{const L=[],j=n.spinerSteps[2],z=n.focusedColumn===2&&n.focusedTime[2],O={text:0,selected:!1,disabled:!1,hide:!1};for(let R=0;R<60;R+=j){const P=JSON.parse(JSON.stringify(O));P.text=R,P.focused=R===z,e.disabledSeconds.length&&e.disabledSeconds.indexOf(R)>-1&&(P.disabled=!0,e.hideDisabledOptions&&(P.hide=!0)),e.seconds===R&&(P.selected=!0),L.push(P)}return L}),c=a.computed(()=>({width:e.showSeconds?"33.33%":"50%"}));a.watch(()=>e.hours,L=>{!n.compiled||T("hours",i.value.findIndex(j=>j.text===L))}),a.watch(()=>e.minutes,L=>{!n.compiled||T("minutes",s.value.findIndex(j=>j.text===L))}),a.watch(()=>e.seconds,L=>{!n.compiled||T("seconds",s.value.findIndex(j=>j.text===L))}),a.watch(()=>n.focusedTime,(L,j)=>{g9.forEach((z,O)=>{if(L[O]===j[O]||typeof L[O]=="undefined")return;const R=this[`${z}List`].findIndex(P=>P.text===L[O]);T(z,R)})}),a.onMounted(()=>{a.nextTick(()=>{n.compiled=!0,f()})});function d(L){let j;return L==="hours"?j=C:L==="minutes"?j=M:j=N,j.value}function u(L){return["bk-time-picker-cells-cell",{["bk-time-picker-cells-cell-selected"]:L.selected,["bk-time-picker-cells-cell-focused"]:L.focused,["bk-time-picker-cells-cell-disabled"]:L.disabled}]}function f(){const L=j=>{d(j).addEventListener("wheel",ot.exports.debounce(()=>{y(j)},32),{passive:!0})};L("hours"),L("minutes"),L("seconds")}function m(L){return d(L).querySelector("li").offsetHeight}function p(L){return d(L).offsetHeight}function y(L){const j=d(L),z=Math.min(Math.round((j.scrollTop-(p(L)*.5-10)/m(L)+3)/m(L)),L==="hours"?23:59);let O;if(L==="hours"?O=i:L==="minutes"?O=s:O=o,O.value.find(P=>P.text===z).disabled)return!1;a.nextTick(()=>{v({[L]:z})})}function b(L,j){if(j.disabled)return;const z={[L]:j.text};v(z)}function v(L){t("change",L),t("pick-click")}function T(L,j){const z=d(L),O=z.scrollTop,R=32*x(L,j);W4(z,O,R,500)}function x(L,j){const z=_y(L),O=e[`disabled${z}`];let R=j;if(O.length&&e.hideDisabledOptions){let P=0;O.forEach(Z=>Z<=j?P+=1:""),R-=P}return R}function k(){a.nextTick(()=>{g9.forEach(L=>{const j=d(L);let z;L==="hours"?z=i:L==="minutes"?z=s:z=o,j.scrollTop=32*z.value.findIndex(O=>O.text===e[L])})})}function I(L){return L<10?`0${L}`:L}const C=a.ref(null),M=a.ref(null),N=a.ref(null);return xe(Y({},a.toRefs(n)),{hoursList:i,minutesList:s,secondsList:o,styles:c,hoursRef:C,minutesRef:M,secondsRef:N,getCellCls:u,handleClick:b,updateScroll:k,padTime:I})},render(){return a.createVNode("div",{class:["bk-time-picker-cells",this.showSeconds?"bk-time-picker-cells-with-seconds":""]},[a.createVNode("div",{class:"bk-time-picker-cells-title-wrapper"},[a.createVNode("div",{class:["bk-time-picker-cells-title",this.focusedColumn===0?"active":""],style:this.styles},[a.createTextVNode("\u65F6")]),a.createVNode("div",{class:["bk-time-picker-cells-title",this.focusedColumn===1?"active":""],style:this.styles},[a.createTextVNode("\u5206")]),a.withDirectives(a.createVNode("div",{class:["bk-time-picker-cells-title",this.focusedColumn===2?"active":""],style:this.styles},[a.createTextVNode("\u79D2")]),[[a.vShow,this.showSeconds]])]),a.createVNode("div",{class:"bk-time-picker-cells-list",ref:"hoursRef",style:this.styles},[a.createVNode("ul",{class:"bk-time-picker-cells-ul"},[this.hoursList.map(e=>a.withDirectives(a.createVNode("li",{class:this.getCellCls(e),onClick:()=>this.handleClick("hours",e)},[this.padTime(e.text)]),[[a.vShow,!e.hide]]))])]),a.createVNode("div",{class:"bk-time-picker-cells-list",ref:"minutesRef",style:this.styles},[a.createVNode("ul",{class:"bk-time-picker-cells-ul"},[this.minutesList.map(e=>a.withDirectives(a.createVNode("li",{class:this.getCellCls(e),onClick:()=>this.handleClick("minutes",e)},[this.padTime(e.text)]),[[a.vShow,!e.hide]]))])]),a.withDirectives(a.createVNode("div",{class:"bk-time-picker-cells-list",ref:"secondsRef",style:this.styles},[a.createVNode("ul",{class:"bk-time-picker-cells-ul"},[this.secondsList.map(e=>a.withDirectives(a.createVNode("li",{class:this.getCellCls(e),onClick:()=>this.handleClick("seconds",e)},[this.padTime(e.text)]),[[a.vShow,!e.hide]]))])]),[[a.vShow,this.showSeconds]])])}});const Gy={disabledDate:{type:Function,default:()=>!1},steps:{type:Array,default:()=>[]},format:{type:String,default:"HH:mm:ss"},value:{type:Array,required:!0},confirm:{type:Boolean,default:!1}};var m9=a.defineComponent({name:"TimePanel",props:Y(Y(Y({},pl),bl),Gy),emits:["pick","pick-click"],setup(e,{emit:t}){const n=a.reactive({date:e.value[0]||fa(),showDate:!1}),i=a.inject(ml),s=a.ref(null),o=a.computed(()=>!(e.format||"").match(/mm$/)),c=a.computed(()=>wt.format(i.panelDate,e.format)),d=a.computed(()=>e.value[0]?["getHours","getMinutes","getSeconds"].map(p=>n.date[p]()):[]),u=a.computed(()=>{const p=["disabledHours","disabledMinutes","disabledSeconds"];if(e.disabledDate===(()=>!e.value[0]))return p.reduce((x,k)=>(x[k]=this[k],x),{});const y=[24,60,60],v=["Hours","Minutes","Seconds"].map(T=>e[`disabled${T}`]).map((T,x)=>{const k=y[x],I=T;for(let C=0;C<k;C+=e.steps[x]||1){const M=d.value.map((L,j)=>j===x?C:L),N=Wy(n.date,...M);e.disabledDate(N,!0)&&I.push(C)}return I.filter((C,M,N)=>N.indexOf(C)===M)});return p.reduce((T,x,k)=>(T[x]=v[k],T),{})});a.watch(()=>e.value,p=>{let y=p[0]||fa();y=new Date(y),n.date=y}),a.onMounted(()=>{i&&i.parentName==="DatePanel"&&(n.showDate=!0)});function f(p,y=!0){const b=new Date(n.date);Object.keys(p).forEach(v=>b[`set${kr(v)}`](p[v])),y&&t("pick",b,!0,"time")}function m(){t("pick-click")}return xe(Y({},a.toRefs(n)),{visibleDate:c,showSeconds:o,timeSlots:d,disabledHMS:u,timeSpinnerRef:s,handlePickClick:m,handleChange:f})},render(){return a.createVNode("div",{class:"bk-picker-panel-body-wrapper",onMousedown:e=>{e.preventDefault()}},[a.createVNode("div",{class:"bk-picker-panel-body",style:{width:`${this.width}px`}},[this.showDate?a.createVNode("div",{class:"bk-time-picker-header"},[this.visibleDate]):"",a.createVNode("div",{class:"bk-picker-panel-content"},[a.createVNode(qc,{ref:"timeSpinnerRef",showSeconds:this.showSeconds,steps:this.steps,hours:this.timeSlots[0],minutes:this.timeSlots[1],seconds:this.timeSlots[2],disabledHours:this.disabledHMS.disabledHours,disabledMinutes:this.disabledHMS.disabledMinutes,disabledSeconds:this.disabledHMS.disabledSeconds,hideDisabledOptions:this.hideDisabledOptions,"onPick-click":this.handlePickClick,onChange:this.handleChange},null)])])])}});const Zy={modelValue:{type:[Date,String,Number,Array]},shortcuts:{type:Array,default:()=>[]},multiple:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},shortcutClose:{type:Boolean,default:!1},selectionMode:{type:String,default:"date",validator(e){return["year","month","date","time"].indexOf(e)<0?(console.error(`selectionMode property is not valid: '${e}'`),!1):!0}},startDate:{type:Date},focusedDate:{type:Date,required:!0},confirm:{type:Boolean,default:!1},showTime:{type:Boolean,default:!1},format:{type:String,default:"yyyy-MM-dd"},disabledDate:{type:Function,default:()=>!1},timePickerOptions:{type:Object,default:()=>({})}};var Yy=a.defineComponent({name:"DatePanel",props:Zy,emits:["pick","pick-success","pick-clear","pick-click","selection-mode-change"],setup(e,{slots:t,emit:n}){const i=B=>B.match(/^time/)?"time-picker":`${B}-table`,s=e.modelValue.slice().sort(),o=a.reactive({currentView:e.selectionMode||"date",pickerTable:i(e.selectionMode),dates:s,panelDate:e.startDate||s[0]||new Date}),{proxy:c}=a.getCurrentInstance();a.provide(ml,{panelDate:o.panelDate,parentName:c.$options.name});const d=a.ref(null),u=a.ref(null),f=a.ref(null);a.watch(()=>o.currentView,B=>{n("selection-mode-change",B),o.currentView==="time"&&a.nextTick(()=>{d.value.timeSpinnerRef.updateScroll()})}),a.watch(()=>e.selectionMode,B=>{o.currentView=B,o.pickerTable=i(B)}),a.watch(()=>e.modelValue,B=>{o.dates=B;const ne=e.multiple?o.dates[o.dates.length-1]:e.startDate||o.dates[0];o.panelDate=ne||new Date});const m=()=>{setTimeout(()=>{o.currentView=e.selectionMode},500)},p=B=>{o.panelDate=B,o.pickerTable==="year-table"?o.pickerTable="month-table":o.pickerTable=i(o.currentView)},y=(B,ne)=>{let ue=B;e.selectionMode==="year"?ue=new Date(B.getFullYear(),0,1):e.selectionMode==="month"?ue=new Date(o.panelDate.getFullYear(),B.getMonth(),1):ue=new Date(B),o.dates=[ue],n("pick",ue,!1,ne||e.selectionMode)},b=()=>{m(),n("pick-success")},v=()=>{m(),n("pick-clear")},T=B=>{B.value&&n("pick",B.value(),!1,void 0,B),B.onClick&&B.onClick(this),e.shortcutClose&&b()},x=()=>{o.currentView=e.selectionMode,o.pickerTable=i(o.currentView)},k=B=>{e.selectionMode==="year"||o.pickerTable==="year-table"?o.panelDate=new Date(o.panelDate.getFullYear()+B*10,0,1):o.panelDate=f9(o.panelDate,B*12)},I=B=>{o.panelDate=f9(o.panelDate,B)},C=B=>{var ne,ue;B&&((ne=u==null?void 0:u.value)==null||ne.updateScroll(),(ue=f==null?void 0:f.value)==null||ue.updateScroll())},M=a.computed(()=>o.pickerTable===`${o.currentView}-table`?y:p),N=a.computed(()=>{const B="zh-CN",ne="[yyyy]-[mm]",ue=o.panelDate,{labels:Ce,separator:Ne}=h9(B,ne,ue),fe=he=>()=>{o.pickerTable=i(he)};return{separator:Ne,labels:Ce.map(he=>{const $=he;return $.handler=fe(he.type),$})}}),L=a.computed(()=>N.value.labels[0].type==="year"||o.currentView==="date"),j=a.computed(()=>N.value.labels[1].type==="year"||o.currentView==="date"),z=a.computed(()=>o.currentView==="time"),O=()=>{o.currentView=o.currentView==="time"?"date":"time"},R=a.computed(()=>!!t.shortcuts),P=a.computed(()=>!o.dates[0]);function Z(){n("pick-click")}return xe(Y({},a.toRefs(o)),{panelPickerHandlers:M,datePanelLabel:N,showLabelFirst:L,showLabelSecond:j,handleShortcutClick:T,changeYear:k,changeMonth:I,reset:x,isTime:z,hasShortcuts:R,timeDisabled:P,onToggleVisibility:C,handleToggleTime:O,handlePickSuccess:b,handlePickClear:v,handlePick:y,handlePickClick:Z,timePickerRef:d})},render(){var e,t,n;return a.createVNode("div",{class:["bk-picker-panel-body-wrapper",this.shortcuts.length||this.hasShortcuts?"bk-picker-panel-with-sidebar":""],onMousedown:i=>{i.preventDefault()}},[this.shortcuts.length?a.createVNode("div",{class:"bk-picker-panel-sidebar"},[this.shortcuts.map(i=>a.createVNode("div",{class:"bk-picker-panel-shortcut",onClick:()=>this.handleShortcutClick(i)},[i.text]))]):"",a.createVNode("div",{class:"bk-picker-panel-body",style:"width: 261px;"},[a.withDirectives(a.createVNode("div",{class:"bk-date-picker-header"},[a.createVNode("span",{class:Cn("prev","-double"),onClick:()=>this.changeYear(-1)},[a.createVNode(Sr,{style:{fontSize:"20px",lineHeight:1}},null)]),this.pickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("prev"),onClick:()=>this.changeMonth(-1)},[a.createVNode(Si,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):"",this.datePanelLabel&&Object.keys(this.datePanelLabel).length>0?a.createVNode("span",null,[a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.datePanelLabel.labels[0].handler},[this.datePanelLabel.labels[0].label]),[[a.vShow,this.showLabelFirst]]),this.currentView==="date"?` ${this.datePanelLabel.separator} `:" ",a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.datePanelLabel.labels[1].handler},[this.datePanelLabel.labels[1].label]),[[a.vShow,this.showLabelSecond]])]):"",a.createVNode("span",{class:Cn("next","-double"),onClick:()=>this.changeYear(1)},[a.createVNode(Dr,{style:{fontSize:"20px",lineHeight:1}},null)]),this.pickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("next"),onClick:()=>this.changeMonth(1)},[a.createVNode(jn,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):""]),[[a.vShow,this.currentView!=="time"]]),a.createVNode("div",{class:"bk-picker-panel-content"},[this.currentView!=="time"?(()=>{switch(this.pickerTable){case"date-table":return a.createVNode(Xc,{tableDate:this.panelDate,disabledDate:this.disabledDate,selectionMode:this.selectionMode,modelValue:this.dates,focusedDate:this.focusedDate,onPick:this.panelPickerHandlers},null);default:return null}})():a.createVNode(m9,{ref:"timePickerRef",value:this.dates,format:this.format,disabledDate:this.disabledDate,onPick:this.handlePick,"onPick-click":this.handlePickClick,"onPick-clear":this.handlePickClear,"onPick-success":this.handlePickSuccess,"onPick-toggle-time":this.handleToggleTime},null)]),this.confirm?a.createVNode(Wh,{clearable:this.clearable,showTime:this.showTime,timeDisabled:this.timeDisabled,isTime:this.isTime,"onPick-toggle-time":this.handleToggleTime,"onPick-clear":this.handlePickClear,"onPick-success":this.handlePickSuccess},this.$slots):""]),this.hasShortcuts?a.createVNode("div",{class:"bk-picker-panel-sidebar"},[(n=(t=(e=this.$slots).shortcuts)==null?void 0:t.call(e))!=null?n:null]):null])}});const Uy={steps:{type:Array,default:()=>[]},format:{type:String,default:"HH:mm:ss"},value:{type:Array,required:!0},allowCrossDay:{type:Boolean,default:!1}};var p9=a.defineComponent({name:"TimeRangePanel",props:Y(Y(Y({},pl),bl),Uy),emits:["pick","pick-click"],setup(e,{emit:t}){const[n,i]=e.value.slice(),s=a.reactive({showDate:!1,dateStart:n||fa(),dateEnd:i||fa()}),o=a.inject(ml),c=a.computed(()=>!(e.format||"").match(/mm$/)),d=a.computed(()=>wt.format(o.dates[0],e.format)),u=a.computed(()=>wt.format(o.dates[1],e.format));a.watch(()=>e.value,x=>{const[k,I]=x.slice();s.dateStart=k||fa(),s.dateEnd=I||fa()}),a.onMounted(()=>{o&&o.parentName==="DatePanel"&&(s.showDate=!0)});function f(){t("pick-click")}function m(x,k,I,C=!0){let M=new Date(s.dateStart),N=new Date(s.dateEnd);Object.keys(k).forEach(L=>{M[`set${kr(L)}`](k[L])}),Object.keys(I).forEach(L=>{N[`set${kr(L)}`](I[L])}),!e.allowCrossDay&&N<M&&(x==="start"&&(N=M),x==="end"&&(M=N)),C&&t("pick",[M,N],!0,"time")}function p(x){m("start",x,{})}function y(x){m("end",{},x)}const b=a.ref(null),v=a.ref(null);function T(){var x,k;(x=b==null?void 0:b.value)==null||x.updateScroll(),(k=v==null?void 0:v.value)==null||k.updateScroll()}return xe(Y({},a.toRefs(s)),{showSeconds:c,leftDatePanelLabel:d,rightDatePanelLabel:u,handleStartChange:p,handleEndChange:y,handlePickClick:f,updateScroll:T,timeSpinnerRef:b,timeSpinnerEndRef:v})},render(){return a.createVNode("div",{class:["bk-picker-panel-body-wrapper","bk-time-picker-with-range",this.showSeconds?"bk-time-picker-with-seconds":""],onMousedown:e=>{e.preventDefault()}},[a.createVNode("div",{class:"bk-picker-panel-body",style:{width:`${this.width*2}px`}},[a.createVNode("div",{class:"bk-picker-panel-content bk-picker-panel-content-left",style:{width:`${this.width}px`}},[this.showDate?a.createVNode("div",{class:"bk-time-picker-header"},[this.leftDatePanelLabel]):"",a.createVNode(qc,{ref:"timeSpinnerRef",steps:this.steps,showSeconds:this.showSeconds,hours:this.value[0]&&this.dateStart.getHours(),minutes:this.value[0]&&this.dateStart.getMinutes(),seconds:this.value[0]&&this.dateStart.getSeconds(),disabledHours:this.disabledHours,disabledMinutes:this.disabledMinutes,disabledSeconds:this.disabledSeconds,hideDisabledOptions:this.hideDisabledOptions,onChange:this.handleStartChange,"onPick-click":this.handlePickClick},null)]),a.createVNode("div",{class:"bk-picker-panel-content bk-picker-panel-content-right",style:{width:`${this.width}px`}},[this.showDate?a.createVNode("div",{class:"bk-time-picker-header"},[this.rightDatePanelLabel]):"",a.createVNode(qc,{ref:"timeSpinnerEndRef",steps:this.steps,showSeconds:this.showSeconds,hours:this.value[1]&&this.dateEnd.getHours(),minutes:this.value[1]&&this.dateEnd.getMinutes(),seconds:this.value[1]&&this.dateEnd.getSeconds(),disabledHours:this.disabledHours,disabledMinutes:this.disabledMinutes,disabledSeconds:this.disabledSeconds,hideDisabledOptions:this.hideDisabledOptions,onChange:this.handleEndChange,"onPick-click":this.handlePickClick},null)])])])}});const $y={modelValue:{type:[Date,String,Number,Array]},type:{type:String,default:"date",validator(e){return["year","month","date","daterange","datetime","datetimerange","time","timerange"].indexOf(e)<0?(console.error(`type property is not valid: '${e}'`),!1):!0}},shortcuts:{type:Array,default:()=>[]},shortcutClose:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},splitPanels:{type:Boolean,default:!0},showTime:{type:Boolean,default:!1},selectionMode:{type:String,default:"date",validator(e){return["year","month","date","time"].indexOf(e)<0?(console.error(`selectionMode property is not valid: '${e}'`),!1):!0}},startDate:{type:Date},upToNow:{type:Boolean,default:!1},disabledDate:Function,focusedDate:{type:Date,required:!0},confirm:{type:Boolean,default:!1},format:{type:String,default:"yyyy-MM-dd"},timePickerOptions:{type:Object,default:()=>({})}};var Ky=a.defineComponent({name:"DateRangePanel",props:$y,emits:["pick","pick-success","pick-clear","pick-click"],setup(e,{slots:t,emit:n}){const[i,s]=e.modelValue.map(W=>W||fa()),o=e.startDate?e.startDate:i,c=a.reactive({currentView:e.selectionMode||"date",leftPickerTable:`${e.selectionMode}-table`,rightPickerTable:`${e.selectionMode}-table`,leftPanelDate:o,rightPanelDate:new Date(o.getFullYear(),o.getMonth()+1,1),rangeState:{from:e.modelValue[0],to:e.modelValue[1],selecting:i&&!s},upToNowEnable:!1,dates:e.modelValue}),{proxy:d}=a.getCurrentInstance();a.provide(ml,{dates:c.dates,parentName:d.$options.name});const u=(W,Q)=>!W||!Q?0:W.getTime()-Q.getTime(),f=()=>{c.currentView=e.selectionMode,c.leftPickerTable=`${c.currentView}-table`,c.rightPickerTable=`${c.currentView}-table`},m=a.ref(null),p=a.ref(null),y=W=>{var Q,re;W&&((Q=m==null?void 0:m.value)==null||Q.updateScroll(),(re=p==null?void 0:p.value)==null||re.updateScroll())},b=(W,Q,re,D=!0)=>{const _=new Date(c[`${W}PanelDate`]);if(_[`set${Q}`](_[`get${Q}`]()+re),c[`${W}PanelDate`]=_,!!D)if(e.splitPanels){const J=W==="left"?"right":"left";W==="left"&&c.leftPanelDate>=c.rightPanelDate&&b(J,Q,1),W==="right"&&c.rightPanelDate<=c.leftPanelDate&&b(J,Q,-1)}else{const J=W==="left"?"right":"left",se=c[`${J}PanelDate`],ce=new Date(se);if(Q==="Month"){const pe=new Date(ce.getFullYear(),ce.getMonth()+re+1,0).getDate();ce.setDate(Math.min(pe,ce.getDate()))}ce[`set${Q}`](ce[`get${Q}`]()+re),c[`${J}PanelDate`]=ce}},v=W=>{const Q=c.currentView==="year"?-10:-1;b(W,"FullYear",Q)},T=W=>{const Q=c.currentView==="year"?10:1;b(W,"FullYear",Q)},x=W=>{b(W,"Month",-1)},k=W=>{b(W,"Month",1)},I=W=>{c[`${W}PickerTable`]="year-table"},C=W=>{c[`${W}PickerTable`]="month-table"},M=W=>{const Q="zh-CN",re="[yyyy]-[mm]",D=c[`${W}PanelDate`],{labels:_,separator:J}=h9(Q,re,D),se=ce=>{const pe=ce==="month"?C:I;return()=>pe(W)};return{separator:J,labels:_.map(ce=>{const pe=ce;return pe.handler=se(ce.type),pe})}},N=(W,Q)=>{n("pick",c.dates,W,Q||e.type)},L=(W,Q)=>{if(c.rangeState.selecting||c.currentView==="time"){if(c.currentView==="time")c.dates=W;else{const[re,D]=[c.rangeState.from,W].sort(u),_=Q==="upToNow"?new Date:new Date(new Date(new Date(D.setHours(23)).setMinutes(59)).setSeconds(59));c.dates=[re,_],c.rangeState={from:re,to:_,selecting:!1}}N(!1,Q||"date")}else c.upToNowEnable=new Date(W).getTime()<new Date().getTime(),c.rangeState={from:W,to:null,selecting:!0}},j=(W,Q)=>{if(c[`${W}PanelDate`]=Q,c[`${W}PickerTable`]==="year-table"?c[`${W}PickerTable`]="month-table":c[`${W}PickerTable`]=`${c.currentView}-table`,!e.splitPanels){const D=W==="left"?"right":"left";c[`${D}PanelDate`]=Q,b(D,"Month",D==="left"?-1:1,!1)}},z=(W,Q)=>{if(!(W!=null&&W.value))return!1;W.onClick&&W.onClick(W,Q);const re=typeof W.value=="function"?W.value():W.value,[D,_]=re;c.rangeState.from=D,c.rangeState.to=_,c.dates=[D,_],n("pick",re,!1,"shortcut",W),e.shortcutClose&&n("pick-success")},O=W=>{c.rangeState.to=W};function R(W){c.leftPanelDate=W;const Q=new Date(W.getFullYear(),W.getMonth()+1,1),re=c.dates[1]?c.dates[1].getTime():c.dates[1];c.rightPanelDate=e.splitPanels?new Date(Math.max(re,Q.getTime())):Q}a.watch(()=>e.selectionMode,W=>{c.currentView=W||"range"}),a.watch(()=>e.modelValue,W=>{const Q=W[0]?sn(W[0]):null,re=W[1]?sn(W[1]):null;c.dates=[Q,re].sort(u),c.rangeState={from:c.dates[0],to:c.dates[1],selecting:!1},R(e.startDate||c.dates[0]||new Date)}),a.watch(()=>c.currentView,W=>{const Q=c.leftPanelDate.getMonth(),re=c.rightPanelDate.getMonth(),D=c.leftPanelDate.getFullYear()===c.rightPanelDate.getFullYear();W==="date"&&D&&Q===re&&b("right","Month",1),W==="month"&&D&&b("right","FullYear",1),W==="year"&&D&&b("right","FullYear",10),c.currentView==="time"&&a.nextTick(()=>{X.value.updateScroll()})});const P=a.computed(()=>c.currentView==="time"),Z=a.computed(()=>M("left")),B=a.computed(()=>M("right")),ne=a.computed(()=>c.leftPickerTable.split("-").shift()),ue=a.computed(()=>c.rightPickerTable.split("-").shift()),Ce=a.computed(()=>Z.value.labels[0].type==="year"||c.currentView==="date"),Ne=a.computed(()=>Z.value.labels[1].type==="year"||c.currentView==="date"),fe=a.computed(()=>B.value.labels[0].type==="year"||c.currentView==="date"),he=a.computed(()=>B.value.labels[1].type==="year"||c.currentView==="date"),$=a.computed(()=>{const W=`${c.currentView}-table`;return{left:c.leftPickerTable!==W,right:c.rightPickerTable!==W}}),A=a.computed(()=>({left:$.value.left?j.bind("left"):L,right:$.value.right?j.bind("right"):L})),H=a.computed(()=>{var W;return t.shortcuts||((W=e.shortcuts)==null?void 0:W.length)}),F=()=>{c.currentView=c.currentView==="time"?"date":"time"},ee=()=>{setTimeout(()=>{c.currentView=e.selectionMode},500)},ie=()=>{ee(),n("pick-success")},ae=()=>{ee(),n("pick-clear")};function me(){n("pick-click")}const Le=a.computed(()=>!(c.dates[0]&&c.dates[1])),X=a.ref(null);return xe(Y({},a.toRefs(c)),{isTime:P,hasShortcuts:H,prevYear:v,nextYear:T,prevMonth:x,nextMonth:k,leftDatePanelLabel:Z,rightDatePanelLabel:B,leftDatePanelView:ne,rightDatePanelView:ue,leftShowLabelFirst:Ce,leftShowLabelSecond:Ne,rightShowLabelFirst:fe,rightShowLabelSecond:he,preSelecting:$,panelPickerHandlers:A,timeDisabled:Le,handleShortcutClick:z,reset:f,onToggleVisibility:y,handleRangePick:L,handleChangeRange:O,handleToggleTime:F,handlePickSuccess:ie,handlePickClear:ae,handlePickClick:me,timePickerRef:X})},render(){let e=null;if(this.hasShortcuts){let t="";this.$slots.shortcuts?t=typeof this.$slots.shortcuts=="function"?this.$slots.shortcuts():this.$slots.shortcuts:this.shortcuts.length&&(t=a.createVNode("div",{class:"bk-picker-panel-shortcuts"},[this.shortcuts.map((n,i)=>a.createVNode("div",{key:i,class:"shortcuts-item",onClick:()=>this.handleShortcutClick(n,i)},[n.text]))])),e=a.createVNode("div",{class:"bk-picker-panel-sidebar"},[t])}return a.createVNode("div",{class:["bk-picker-panel-body-wrapper","bk-date-picker-with-range",this.shortcuts.length||this.$slots.shortcuts?"bk-picker-panel-with-sidebar":""],onMousedown:t=>{t.preventDefault()}},[a.createVNode("div",{class:["bk-picker-panel-body",this.showTime?"bk-picker-panel-body-time":"bk-picker-panel-body-date"]},[a.withDirectives(a.createVNode("div",{class:"bk-picker-panel-content bk-picker-panel-content-left",style:"width: 261px;"},[a.withDirectives(a.createVNode("div",{class:"bk-date-picker-header"},[a.createVNode("span",{class:Cn("prev","-double"),onClick:()=>this.prevYear("left")},[a.createVNode(Sr,{style:{fontSize:"20px",lineHeight:1}},null)]),this.leftPickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("prev"),onClick:()=>this.prevMonth("left")},[a.createVNode(Si,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):"",this.leftDatePanelLabel&&Object.keys(this.leftDatePanelLabel).length>0?a.createVNode("span",null,[a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.leftDatePanelLabel.labels[0].handler},[this.leftDatePanelLabel.labels[0].label]),[[a.vShow,this.leftShowLabelFirst]]),this.leftDatePanelView==="date"?` ${this.leftDatePanelLabel.separator} `:" ",a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.leftDatePanelLabel.labels[1].handler},[this.leftDatePanelLabel.labels[1].label]),[[a.vShow,this.leftShowLabelSecond]])]):"",this.splitPanels||this.leftPickerTable!=="date-table"?a.createVNode("span",{class:Cn("next","-double"),onClick:()=>this.nextYear("left")},[a.createVNode(Dr,{style:{fontSize:"20px",lineHeight:1}},null)]):"",this.splitPanels||this.leftPickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("next"),onClick:()=>this.nextMonth("left")},[a.createVNode(jn,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):""]),[[a.vShow,this.currentView!=="time"]]),this.currentView!=="time"?(()=>{switch(this.leftPickerTable){case"date-table":return a.createVNode(Xc,{selectionMode:"range",tableDate:this.leftPanelDate,disabledDate:this.disabledDate,rangeState:this.rangeState,modelValue:this.preSelecting.left?[this.dates[0]]:this.dates,focusedDate:this.focusedDate,onChangeRange:this.handleChangeRange,onPick:this.panelPickerHandlers.left},null);default:return null}})():""]),[[a.vShow,!this.isTime]]),a.withDirectives(a.createVNode("div",{class:"bk-picker-panel-content bk-picker-panel-content-right",style:"width: 261px;"},[a.withDirectives(a.createVNode("div",{class:"bk-date-picker-header"},[this.splitPanels||this.rightPickerTable!=="date-table"?a.createVNode("span",{class:Cn("prev","-double"),onClick:()=>this.prevYear("right")},[a.createVNode(Sr,{style:{fontSize:"20px",lineHeight:1}},null)]):"",this.splitPanels&&this.rightPickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("prev","-double"),onClick:()=>this.prevMonth("right")},[a.createVNode(Si,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):"",this.rightDatePanelLabel&&Object.keys(this.rightDatePanelLabel).length>0?a.createVNode("span",null,[a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.rightDatePanelLabel.labels[0].handler},[this.rightDatePanelLabel.labels[0].label]),[[a.vShow,this.rightShowLabelFirst]]),this.rightDatePanelView==="date"?` ${this.rightDatePanelLabel.separator} `:" ",a.withDirectives(a.createVNode("span",{class:"bk-date-picker-header-label",onClick:()=>this.rightDatePanelLabel.labels[1].handler},[this.rightDatePanelLabel.labels[1].label]),[[a.vShow,this.rightShowLabelSecond]])]):"",this.upToNow?(()=>(this.rangeState.selecting||this.currentView==="time")&&this.upToNowEnable?a.createVNode("span",{class:"up-to-now",onClick:()=>this.handleRangePick(new Date,"upToNow")},[a.createTextVNode("\u81F3\u4ECA")]):a.createVNode("span",{class:"up-to-now disabled"},[a.createTextVNode("\u81F3\u4ECA")]))():"",a.createVNode("span",{class:Cn("next","-double"),onClick:()=>this.nextYear("right")},[a.createVNode(Dr,{style:{fontSize:"20px",lineHeight:1}},null)]),this.rightPickerTable==="date-table"?a.withDirectives(a.createVNode("span",{class:Cn("next"),onClick:()=>this.nextMonth("right")},[a.createVNode(jn,{style:{fontSize:"20px",lineHeight:1}},null)]),[[a.vShow,this.currentView==="date"]]):""]),[[a.vShow,this.currentView!=="time"]]),this.currentView!=="time"?(()=>{switch(this.rightPickerTable){case"date-table":return a.createVNode(Xc,{selectionMode:"range",tableDate:this.rightPanelDate,disabledDate:this.disabledDate,rangeState:this.rangeState,modelValue:this.preSelecting.right?[this.dates[this.dates.length-1]]:this.dates,focusedDate:this.focusedDate,onChangeRange:this.handleChangeRange,onPick:this.panelPickerHandlers.right},null);default:return null}})():""]),[[a.vShow,!this.isTime]]),this.isTime?a.createVNode(p9,{ref:"timePickerRef",value:this.dates,format:this.format,disabledDate:this.disabledDate,onPick:this.handleRangePick,"onPick-click":this.handlePickClick,"onPick-clear":this.handlePickClear,"onPick-success":this.handlePickSuccess,"onPick-toggle-time":this.handleToggleTime},null):"",this.confirm?a.createVNode(Wh,{clearable:this.clearable,showTime:this.showTime,timeDisabled:this.timeDisabled,isTime:this.isTime,"onPick-toggle-time":this.handleToggleTime,"onPick-clear":this.handlePickClear,"onPick-success":this.handlePickSuccess},this.$slots):""]),e])}}),Xy=a.defineComponent({name:"DatePicker",directives:{clickoutside:zn},props:pl,emits:["open-change","input","change","update:modelValue","clear","shortcut-change","pick-success"],slots:["header"],setup(e,{slots:t,emit:n}){const i=Dn(),s=e.type.includes("range"),o=s?[null,null]:[null],c=s?e.value||e.modelValue:[e.value||e.modelValue];let d=c9(c)?o:Ri(e.value||e.modelValue,e.type,e.multiple,e.format),u=null;e.shortcutSelectedIndex!==-1&&(u=e.shortcuts[e.shortcutSelectedIndex]||null,u&&(d=u.value()));const f=a.reactive({showClose:!1,visible:!1,internalValue:d,disableClickOutSide:!1,disableCloseUnderTransfer:!1,selectionMode:"date",forceInputRerender:1,isFocused:!1,focusedDate:d[0]||e.startDate||new Date,focusedTime:{column:0,picker:0,time:d.map(gl),active:!1},internalFocus:!1,timeEnterMode:!0,shortcut:u,onSelectionModeChange:m});function m(W){let Q=W;return W.match(/^date/)&&(Q="date"),f.selectionMode=["year","month","date","time"].indexOf(Q)>-1&&Q,f.selectionMode}const p=a.computed(()=>{if(e.multiple)return f.internalValue.slice();const W=e.type.includes("range");let Q=f.internalValue.map(re=>re instanceof Date?new Date(re):re||"");return e.type.match(/^time/)&&(Q=Q.map(re=>Un(re,e.type,e.multiple,e.format))),W||e.multiple?Q:Q[0]}),y=a.computed(()=>e.type.match(/^time/)?p.value:e.multiple?Un(p.value,e.type,e.multiple,e.format):Array.isArray(p.value)?p.value.map(W=>Un(W,e.type,e.multiple,e.format)):Un(p.value,e.type,e.multiple,e.format)),b=a.computed(()=>e.type==="daterange"||e.type==="datetimerange"?"DateRangePanel":"DatePanel"),v=a.computed(()=>e.open===null?f.visible:e.open),T=a.computed(()=>Un(f.internalValue,e.type,e.multiple,e.format)),x=a.computed(()=>{var W;return((W=f.shortcut)==null?void 0:W.text)&&e.useShortcutText?f.shortcut.text:T.value}),k=a.computed(()=>!!t.trigger||e.type==="datetime"||e.type==="datetimerange"||e.multiple),I=a.computed(()=>!!t.header),C=a.computed(()=>!!t.footer),M=a.computed(()=>!!t.shortcuts),N=a.computed(()=>!!t.confirm),L=a.computed(()=>{let W="";return e.fontSize==="medium"?W="medium-font":e.fontSize==="large"&&(W="large-font"),W}),j=a.computed(()=>{let W="";return e.fontSize==="medium"?W="medium-width":e.fontSize==="large"&&(W="large-width"),W}),z=a.computed(()=>{var W;return((W=f.shortcut)==null?void 0:W.text)&&e.useShortcutText?!0:!e.editable||e.readonly}),O=a.computed(()=>e.options),R=a.computed(()=>b.value==="RangeTimePickerPanel"?e.allowCrossDay:!1),P=a.ref(null),Z=()=>{var W;(W=P==null?void 0:P.value)==null||W.focus()};a.watch(()=>f.visible,W=>{var Q,re;W===!1&&((Q=B.value)==null||Q.destoryDropdown()),(re=B.value)==null||re.updateDropdown(),n("open-change",W)});const B=a.ref(null);a.watch(()=>e.modelValue,W=>{var Q;f.internalValue=Ri(W,e.type,e.multiple,e.format),e.withValidate&&((Q=i==null?void 0:i.validate)==null||Q.call(i,"change"))}),a.watch(()=>e.open,W=>{f.visible=W===!0}),a.watch(()=>e.type,W=>{m(W)}),a.watch(()=>p,(W,Q)=>{const re=JSON.stringify(W),D=JSON.stringify(Q);(re!==D||typeof W!=typeof Q)&&n("input",W)}),a.onMounted(()=>{e.type.indexOf("date")>-1,f.timeEnterMode=!0;const W=e.modelValue,Q=p.value;(typeof W!=typeof Q||JSON.stringify(W)!==JSON.stringify(Q))&&n("input",p.value),e.open!==null&&(f.visible=e.open),a.provide(d9,{props:e,focus:()=>Z()})});const ne=a.ref(null),ue=W=>{var Q;if(f.disableCloseUnderTransfer)return f.disableCloseUnderTransfer=!1,!1;if(W&&W.type==="mousedown"&&f.visible){W.preventDefault(),W.stopPropagation();return}if(f.visible){const re=(Q=ne==null?void 0:ne.value)==null?void 0:Q.$el;if(W&&re&&re.contains(W.target))return;f.visible=!1,W==null||W.preventDefault(),W==null||W.stopPropagation();return}f.isFocused=!1,f.disableClickOutSide=!1},Ce=()=>{var W,Q;(W=P==null?void 0:P.value)==null||W.focus(),(Q=P==null?void 0:P.value)==null||Q.click()},Ne=()=>{e.readonly||e.disabled||T!=null&&T.value&&(f.showClose=!0)},fe=W=>{f.showClose=!1},he=W=>{a.nextTick(()=>{var Q;n("update:modelValue",p.value),n("change",y.value,W),e.type.indexOf("time")<0&&((Q=P==null?void 0:P.value)==null||Q.blur())})},$=W=>{var pe;const Q=e.type.includes("range")||e.multiple,re=T.value,D=W.target.value,_=Ri(D,e.type,e.multiple,e.format),J=Q?_:_[0],se=(pe=e.disabledDate)==null?void 0:pe.call(e,J),ce=_.reduce((ke,te)=>ke&&te instanceof Date,!0);D!==re&&!se&&ce?(he(e.type),f.internalValue=_):f.forceInputRerender=f.forceInputRerender+1},A=W=>{e.readonly||(f.isFocused=!0,!(W&&W.type==="focus")&&(e.disabled||(f.visible=!0)))},H=()=>{var W;(W=ne==null?void 0:ne.value)==null||W.reset()},F=W=>{var Q,re;if(f.internalFocus){f.internalFocus=!1;return}if(f.visible){W.preventDefault();return}f.isFocused=!1,m(e.type),f.internalValue=f.internalValue.slice(),H(),(Q=ne==null?void 0:ne.value)==null||Q.onToggleVisibility(!1),(re=i==null?void 0:i.validate)==null||re.call(i,"blur")},ee=W=>{const{keyCode:Q}=W;if(Q===9&&f.visible)if(W.stopPropagation(),W.preventDefault(),k.value){const D=".bk-picker-confirm > *",_=B.value.$el.querySelectorAll(D);f.internalFocus=!0,[..._][W.shiftKey?"pop":"shift"]().focus()}else ue();const re=[37,38,39,40];if(!f.visible&&re.includes(Q)){f.visible=!0;return}Q===27&&f.visible&&(W.stopPropagation(),ue()),!!re.includes(Q)&&f.focusedTime.active&&W.preventDefault()},ie=()=>{f.visible=!1,f.internalValue=f.internalValue.map(()=>null),n("clear"),he(e.type),H(),f.showClose=!1,f.shortcut=null,setTimeout(()=>m(e.type),500)},ae=()=>{var W;f.visible=!1,a.nextTick(()=>{n("pick-success")}),(W=P==null?void 0:P.value)==null||W.blur(),H()},me=(W,Q=!1,re,D)=>{let _=W;if(e.multiple){const se=_.getTime(),ce=f.internalValue.findIndex(te=>te&&te.getTime()===se),ke=[...f.internalValue,_].filter(Boolean).map(te=>te.getTime()).filter((te,le,we)=>we.indexOf(te)===le&&le!==ce);f.internalValue=ke.map(te=>new Date(te))}else _=Ri(W,e.type,e.multiple,e.format),f.internalValue=Array.isArray(_)?_:[_];if(f.internalValue[0]){const[se]=f.internalValue;f.focusedDate=se}f.focusedTime=xe(Y({},f.focusedTime),{time:f.internalValue.map(gl)}),k.value||(m(e.type),f.visible=Q),re==="upToNow"&&e.type==="daterange"&&ae(),f.shortcut=D,he(re);const J=e.shortcuts.findIndex(se=>se===f.shortcut);n("shortcut-change",f.shortcut,J)},Le=a.ref(null),X=()=>{var W,Q;(Q=(W=ne.value).handleToggleTime)==null||Q.call(W)};return xe(Y({},a.toRefs(f)),{panel:b,publicStringValue:y,opened:v,visualValue:T,displayValue:x,isConfirm:k,hasHeader:I,hasFooter:C,hasShortcuts:M,hasConfirm:N,fontSizeCls:L,longWidthCls:j,localReadonly:z,allowCrossDayProp:R,ownPickerProps:O,pickerDropdownRef:B,inputRef:P,triggerRef:Le,pickerPanelRef:ne,handleClose:ue,handleIconClick:Ce,handleInputMouseenter:Ne,handleInputMouseleave:fe,handleFocus:A,handleBlur:F,handleKeydown:ee,handleInputChange:$,handleClear:ie,onPick:me,onPickSuccess:ae,handleToggleTime:X})},render(){var s,o,c;const e=a.createVNode("div",null,[a.createVNode("span",{class:["icon-wrapper",this.disabled?"disabled":""],onClick:this.handleIconClick},[this.type==="time"||this.type==="timerange"?a.createVNode("svg",{class:"picker-icon",x:"0px",y:"0px",viewBox:"0 0 1024 1024"},[a.createVNode("g",{id:"time"},[a.createVNode("path",{fill:"#c4c6cc",d:"M512,128c51.9,0,102.2,10.1,149.5,30.2c45.7,19.3,86.8,47,122.1,82.3s63,76.4,82.3,122.1c20,47.3,30.2,97.6,30.2,149.5S886,614.3,865.9,661.6c-19.3,45.7-47,86.8-82.3,122.1s-76.4,63-122.1,82.3c-47.3,20-97.6,30.2-149.5,30.2S409.8,886.1,362.5,866c-45.7-19.3-86.8-47-122.1-82.3s-63-76.4-82.3-122.1c-20-47.3-30.2-97.6-30.2-149.5s10.1-102.2,30.2-149.5c19.3-45.7,47-86.8,82.3-122.1s76.4-63,122.1-82.3C409.8,138.1,460.1,128,512,128 M512,64C264.6,64,64,264.6,64,512s200.6,448,448,448s448-200.6,448-448S759.4,64,512,64L512,64z"},null),a.createVNode("polygon",{fill:"#c4c6cc",points:"512,512 512,256 448,256 448,512 448,576 512,576 768,576 768,512"},null)])]):a.createVNode("svg",{class:"picker-icon",x:"0px",y:"0px",viewBox:"0 0 1024 1024"},[a.createVNode("g",{id:"date"},[a.createVNode("path",{fill:"#c4c6cc",d:"M896,128h-96v64h64v112H160V192h64v-64h-96c-17.7,0-32,14.3-32,32v736c0,17.7,14.3,32,32,32h768c17.7,0,32-14.3,32-32V160C928,142.3,913.7,128,896,128z M160,864V368h704v496H160z"},null),a.createVNode("rect",{x:"416",y:"128",fill:"#c4c6cc",width:"192",height:"64"},null),a.createVNode("rect",{x:"288",y:"96",fill:"#c4c6cc",width:"64",height:"128"},null),a.createVNode("rect",{x:"672",y:"96",fill:"#c4c6cc",width:"64",height:"128"},null),a.createVNode("polygon",{fill:"#c4c6cc",points:"403.7,514.4 557.1,514.4 557.1,515.3 420.1,765.5 483.5,765.5 620.3,504.3 620.3,466.5 403.7,466.5"},null)])])]),a.createVNode("input",{type:"text",class:["bk-date-picker-editor",this.readonly?"readonly":"",this.fontSizeCls,this.behavior==="simplicity"?"only-bottom-border":""],ref:"inputRef",key:this.forceInputRerender,readonly:this.localReadonly,disabled:this.disabled,placeholder:this.placeholder,value:this.displayValue,onFocus:this.handleFocus,onClick:this.handleFocus,onBlur:this.handleBlur,onKeydown:this.handleKeydown,onChange:this.handleInputChange},null),this.clearable&&this.showClose?a.createVNode(Ut,{onClick:this.handleClear,class:"clear-action"},null):""]),t=this.hasShortcuts?{shortcuts:()=>{var d,u;return((u=(d=this.$slots).shortcuts)==null?void 0:u.call(d,{change:this.onPick}))||null}}:{},n=this.hasConfirm?{confirm:this.$slots.confirm}:{},i=Y(Y({},t),n);return a.withDirectives(a.createVNode("div",{class:["bk-date-picker",this.type==="datetimerange"?"long":"",this.longWidthCls]},[a.createVNode("div",{ref:"triggerRef",class:"bk-date-picker-rel",onMouseenter:this.handleInputMouseenter,onMouseleave:this.handleInputMouseleave},[(c=(o=(s=this.$slots).trigger)==null?void 0:o.call(s))!=null?c:e]),a.createVNode(a.Teleport,{to:"body",disabled:!this.appendToBody},{default:()=>[a.createVNode(a.Transition,{name:"bk-fade-down-transition"},{default:()=>[a.withDirectives(a.createVNode(Zc,{class:[this.appendToBody?"bk-date-picker-transfer":""],ref:"pickerDropdownRef",triggerRef:this.triggerRef,placement:this.placement,extPopoverCls:this.extPopoverCls,appendToBody:this.appendToBody},{default:()=>{var d,u,f,m,p,y;return[this.hasHeader?a.createVNode("div",{class:["bk-date-picker-top-wrapper",this.headerSlotCls]},[(f=(u=(d=this.$slots).header)==null?void 0:u.call(d))!=null?f:null]):null,this.panel==="DateRangePanel"?a.createVNode(Ky,{ref:"pickerPanelRef",type:this.type,showTime:this.type==="datetime"||this.type==="datetimerange",confirm:this.isConfirm,shortcuts:this.shortcuts,shortcutClose:this.shortcutClose,modelValue:this.internalValue,selectionMode:this.selectionMode,startDate:this.startDate,disabledDate:this.disabledDate,focusedDate:this.focusedDate,timePickerOptions:this.timePickerOptions,onPick:this.onPick,"onPick-clear":this.handleClear,"onPick-success":this.onPickSuccess,"onSelection-mode-change":this.onSelectionModeChange},i):a.createVNode(Yy,{ref:"pickerPanelRef",clearable:this.clearable,showTime:this.type==="datetime"||this.type==="datetimerange",confirm:this.isConfirm,shortcuts:this.shortcuts,multiple:this.multiple,shortcutClose:this.shortcutClose,selectionMode:this.selectionMode,modelValue:this.internalValue,startDate:this.startDate,disabledDate:this.disabledDate,focusedDate:this.focusedDate,timePickerOptions:this.timePickerOptions,onPick:this.onPick,"onPick-clear":this.handleClear,"onPick-success":this.onPickSuccess,"onSelection-mode-change":this.onSelectionModeChange},i),this.hasFooter?a.createVNode("div",{class:["bk-date-picker-footer-wrapper",this.footerSlotCls]},[(y=(p=(m=this.$slots).footer)==null?void 0:p.call(m))!=null?y:null]):null]}}),[[a.vShow,this.opened]])]})]})]),[[a.resolveDirective("clickoutside"),this.handleClose]])}}),qy=a.defineComponent({name:"TimePicker",directives:{clickoutside:zn},props:Y(Y(Y({},pl),By),bl),emits:["open-change","input","change","update:modelValue","clear","shortcut-change","pick-success"],slots:["header"],setup(e,{slots:t,emit:n}){const i=Dn(),s=e.type.includes("range"),o=s?[null,null]:[null];let c=c9((s?e.modelValue:[e.modelValue])||[])?o:Ri(e.modelValue,e.type,e.multiple,e.format),d=null;e.shortcutSelectedIndex!==-1&&(d=e.shortcuts[e.shortcutSelectedIndex]||null,d&&(c=d.value()));const u=a.reactive({showClose:!1,visible:!1,internalValue:c,disableClickOutSide:!1,disableCloseUnderTransfer:!1,selectionMode:"date",forceInputRerender:1,isFocused:!1,focusedDate:c[0]||e.startDate||new Date,focusedTime:{column:0,picker:0,time:c.map(gl),active:!1},internalFocus:!1,timeEnterMode:!0,shortcut:d,onSelectionModeChange:f});function f(X){let W=X;return X.match(/^date/)&&(W="date"),u.selectionMode=["year","month","date","time"].indexOf(W)>-1&&W,u.selectionMode}const m=a.computed(()=>{if(e.multiple)return u.internalValue.slice();const X=e.type.includes("range");let W=u.internalValue.map(Q=>Q instanceof Date?new Date(Q):Q||"");return e.type.match(/^time/)&&(W=W.map(Q=>Un(Q,e.type,e.multiple,e.format))),X||e.multiple?W:W[0]}),p=a.computed(()=>e.type.match(/^time/)?m.value:e.multiple?Un(m.value,e.type,e.multiple,e.format):Array.isArray(m.value)?m.value.map(X=>Un(X,e.type,e.multiple,e.format)):Un(m.value,e.type,e.multiple,e.format)),y=a.computed(()=>e.type==="timerange"?"RangeTimePickerPanel":"TimePickerPanel"),b=a.computed(()=>e.open===null?u.visible:e.open),v=a.computed(()=>Un(u.internalValue,e.type,e.multiple,e.format)),T=a.computed(()=>{var X;return((X=u.shortcut)==null?void 0:X.text)&&e.useShortcutText?u.shortcut.text:v.value}),x=a.computed(()=>!!t.trigger||e.type==="datetime"||e.type==="datetimerange"||e.multiple),k=a.computed(()=>!!t.header),I=a.computed(()=>!!t.footer),C=a.computed(()=>!!t.shortcuts),M=a.computed(()=>{let X="";return e.fontSize==="medium"?X="medium-font":e.fontSize==="large"&&(X="large-font"),X}),N=a.computed(()=>{let X="";return e.fontSize==="medium"?X="medium-width":e.fontSize==="large"&&(X="large-width"),X}),L=a.computed(()=>{var X;return((X=u.shortcut)==null?void 0:X.text)&&e.useShortcutText?!0:!e.editable||e.readonly}),j=a.computed(()=>({disabledHours:e.disabledHours,disabledMinutes:e.disabledMinutes,disabledSeconds:e.disabledSeconds,hideDisabledOptions:e.hideDisabledOptions})),z=a.computed(()=>y.value==="RangeTimePickerPanel"?e.allowCrossDay:!1),O=a.ref(null),R=()=>{var X;(X=O==null?void 0:O.value)==null||X.focus()},{proxy:P}=a.getCurrentInstance();a.watch(()=>u.visible,X=>{X&&a.nextTick(()=>{var W,Q;(Q=(W=P.pickerPanelRef)==null?void 0:W.timeSpinnerRef)==null||Q.updateScroll()})});const Z=a.ref(null);a.watch(()=>e.modelValue,X=>{var W;u.internalValue=Ri(X,e.type,e.multiple,e.format),e.withValidate&&((W=i==null?void 0:i.validate)==null||W.call(i,"change"))}),a.watch(()=>e.open,X=>{u.visible=X===!0}),a.watch(()=>e.type,X=>{f(X)}),a.watch(()=>m,(X,W)=>{const Q=JSON.stringify(X),re=JSON.stringify(W);(Q!==re||typeof X!=typeof W)&&n("input",X)}),a.onMounted(()=>{e.type.indexOf("date")>-1,u.timeEnterMode=!0;const X=e.modelValue,W=m.value;(typeof X!=typeof W||JSON.stringify(X)!==JSON.stringify(W))&&n("input",m.value),e.open!==null&&(u.visible=e.open),a.provide(d9,{props:e,focus:()=>R()})});const B=a.ref(null),ne=X=>{var W;if(u.disableCloseUnderTransfer)return u.disableCloseUnderTransfer=!1,!1;if(X&&X.type==="mousedown"&&u.visible){X.preventDefault(),X.stopPropagation();return}if(u.visible){const Q=(W=B==null?void 0:B.value)==null?void 0:W.$el;if(X&&Q&&Q.contains(X.target))return;u.visible=!1,X==null||X.preventDefault(),X==null||X.stopPropagation();return}u.isFocused=!1,u.disableClickOutSide=!1},ue=()=>{var X,W;(X=O==null?void 0:O.value)==null||X.focus(),(W=O==null?void 0:O.value)==null||W.click()},Ce=()=>{e.readonly||e.disabled||v!=null&&v.value&&(u.showClose=!0)},Ne=X=>{u.showClose=!1},fe=X=>{a.nextTick(()=>{var W;n("update:modelValue",m.value),n("change",p.value,X),e.type.indexOf("time")<0&&((W=O==null?void 0:O.value)==null||W.blur())})},he=X=>{var ce;const W=e.type.includes("range")||e.multiple,Q=v.value,re=X.target.value,D=Ri(re,e.type,e.multiple,e.format),_=W?D:D[0],J=(ce=e.disabledDate)==null?void 0:ce.call(e,_),se=D.reduce((pe,ke)=>pe&&ke instanceof Date,!0);re!==Q&&!J&&se?(fe(e.type),u.internalValue=D):u.forceInputRerender=u.forceInputRerender+1},$=X=>{e.readonly||(u.isFocused=!0,!(X&&X.type==="focus")&&(e.disabled||(u.visible=!0)))},A=()=>{var X,W;(W=(X=B==null?void 0:B.value)==null?void 0:X.reset)==null||W.call(X)},H=X=>{var W,Q;if(u.internalFocus){u.internalFocus=!1;return}if(u.visible){X.preventDefault();return}u.isFocused=!1,f(e.type),u.internalValue=u.internalValue.slice(),A(),(W=B==null?void 0:B.value)==null||W.onToggleVisibility(!1),(Q=i==null?void 0:i.validate)==null||Q.call(i,"blur")},F=X=>{const{keyCode:W}=X;if(W===9&&u.visible)if(X.stopPropagation(),X.preventDefault(),x.value){const re=".bk-picker-confirm > *",D=Z.value.$el.querySelectorAll(re);u.internalFocus=!0,[...D][X.shiftKey?"pop":"shift"]().focus()}else ne();const Q=[37,38,39,40];if(!u.visible&&Q.includes(W)){u.visible=!0;return}W===27&&u.visible&&(X.stopPropagation(),ne()),!!Q.includes(W)&&u.focusedTime.active&&X.preventDefault()},ee=()=>{u.visible=!1,u.internalValue=u.internalValue.map(()=>null),n("clear"),fe(e.type),A(),u.showClose=!1,u.shortcut=null,setTimeout(()=>f(e.type),500)},ie=()=>{e.appendToBody&&(u.disableCloseUnderTransfer=!0)},ae=()=>{var X;u.visible=!1,a.nextTick(()=>{n("pick-success")}),(X=O==null?void 0:O.value)==null||X.blur(),A()},me=(X,W=!1,Q,re)=>{let D=X;if(e.multiple){const J=D.getTime(),se=u.internalValue.findIndex(ke=>ke&&ke.getTime()===J),pe=[...u.internalValue,D].filter(Boolean).map(ke=>ke.getTime()).filter((ke,te,le)=>le.indexOf(ke)===te&&te!==se);u.internalValue=pe.map(ke=>new Date(ke))}else D=Ri(X,e.type,e.multiple,e.format),u.internalValue=Array.isArray(D)?D:[D];if(u.internalValue[0]){const[J]=u.internalValue;u.focusedDate=J}u.focusedTime=xe(Y({},u.focusedTime),{time:u.internalValue.map(gl)}),x.value||(f(e.type),u.visible=W),Q==="upToNow"&&e.type==="daterange"&&ae(),u.shortcut=re,fe(Q);const _=e.shortcuts.findIndex(J=>J===u.shortcut);n("shortcut-change",u.shortcut,_)},Le=a.ref(null);return xe(Y({},a.toRefs(u)),{panel:y,publicStringValue:p,opened:b,visualValue:v,displayValue:T,isConfirm:x,hasHeader:k,hasFooter:I,hasShortcuts:C,fontSizeCls:M,longWidthCls:N,localReadonly:L,allowCrossDayProp:z,ownPickerProps:j,pickerDropdownRef:Z,inputRef:O,triggerRef:Le,pickerPanelRef:B,handleClose:ne,handleIconClick:ue,handleInputMouseenter:Ce,handleInputMouseleave:Ne,handleFocus:$,handleBlur:H,handleKeydown:F,handleInputChange:he,handleClear:ee,handleTransferClick:ie,onPick:me,onPickSuccess:ae})},render(){var n,i,s;const e=a.createVNode("div",null,[a.createVNode("span",{class:["icon-wrapper",this.disabled?"disabled":""],onClick:this.handleIconClick},[this.type==="time"||this.type==="timerange"?a.createVNode("svg",{class:"picker-icon",x:"0px",y:"0px",viewBox:"0 0 1024 1024"},[a.createVNode("g",{id:"time"},[a.createVNode("path",{fill:"#c4c6cc",d:"M512,128c51.9,0,102.2,10.1,149.5,30.2c45.7,19.3,86.8,47,122.1,82.3s63,76.4,82.3,122.1c20,47.3,30.2,97.6,30.2,149.5S886,614.3,865.9,661.6c-19.3,45.7-47,86.8-82.3,122.1s-76.4,63-122.1,82.3c-47.3,20-97.6,30.2-149.5,30.2S409.8,886.1,362.5,866c-45.7-19.3-86.8-47-122.1-82.3s-63-76.4-82.3-122.1c-20-47.3-30.2-97.6-30.2-149.5s10.1-102.2,30.2-149.5c19.3-45.7,47-86.8,82.3-122.1s76.4-63,122.1-82.3C409.8,138.1,460.1,128,512,128 M512,64C264.6,64,64,264.6,64,512s200.6,448,448,448s448-200.6,448-448S759.4,64,512,64L512,64z"},null),a.createVNode("polygon",{fill:"#c4c6cc",points:"512,512 512,256 448,256 448,512 448,576 512,576 768,576 768,512"},null)])]):a.createVNode("svg",{class:"picker-icon",x:"0px",y:"0px",viewBox:"0 0 1024 1024"},[a.createVNode("g",{id:"date"},[a.createVNode("path",{fill:"#c4c6cc",d:"M896,128h-96v64h64v112H160V192h64v-64h-96c-17.7,0-32,14.3-32,32v736c0,17.7,14.3,32,32,32h768c17.7,0,32-14.3,32-32V160C928,142.3,913.7,128,896,128z M160,864V368h704v496H160z"},null),a.createVNode("rect",{x:"416",y:"128",fill:"#c4c6cc",width:"192",height:"64"},null),a.createVNode("rect",{x:"288",y:"96",fill:"#c4c6cc",width:"64",height:"128"},null),a.createVNode("rect",{x:"672",y:"96",fill:"#c4c6cc",width:"64",height:"128"},null),a.createVNode("polygon",{fill:"#c4c6cc",points:"403.7,514.4 557.1,514.4 557.1,515.3 420.1,765.5 483.5,765.5 620.3,504.3 620.3,466.5 403.7,466.5"},null)])])]),a.createVNode("input",{type:"text",class:["bk-date-picker-editor",this.readonly?"readonly":"",this.fontSizeCls,this.behavior==="simplicity"?"only-bottom-border":""],ref:"inputRef",key:this.forceInputRerender,readonly:this.localReadonly,disabled:this.disabled,placeholder:this.placeholder,value:this.displayValue,onFocus:this.handleFocus,onClick:this.handleFocus,onBlur:this.handleBlur,onKeydown:this.handleKeydown,onChange:this.handleInputChange},null),this.clearable&&this.showClose?a.createVNode(Ut,{onClick:this.handleClear,class:"clear-action"},null):""]),t=this.hasShortcuts?{shortcuts:()=>{var o,c;return((c=(o=this.$slots).shortcuts)==null?void 0:c.call(o))||null}}:{};return a.withDirectives(a.createVNode("div",{class:["bk-date-picker",this.type==="datetimerange"?"long":"",this.longWidthCls]},[a.createVNode("div",{ref:"triggerRef",class:"bk-date-picker-rel",onMouseenter:this.handleInputMouseenter,onMouseleave:this.handleInputMouseleave},[(s=(i=(n=this.$slots).trigger)==null?void 0:i.call(n))!=null?s:e]),a.createVNode(a.Teleport,{to:"body",disabled:!this.appendToBody},{default:()=>[a.createVNode(a.Transition,{name:"bk-fade-down-transition"},{default:()=>[a.withDirectives(a.createVNode(Zc,{class:[this.appendToBody?"bk-date-picker-transfer":""],ref:"pickerDropdownRef",triggerRef:this.triggerRef,placement:this.placement,extPopoverCls:this.extPopoverCls,appendToBody:this.appendToBody,onClick:this.handleTransferClick},{default:()=>{var o,c,d,u,f,m;return[this.hasHeader?a.createVNode("div",{class:["bk-date-picker-top-wrapper",this.headerSlotCls]},[(d=(c=(o=this.$slots).header)==null?void 0:c.call(o))!=null?d:null]):null,this.panel==="RangeTimePickerPanel"?a.createVNode(p9,{ref:"pickerPanelRef",clearable:this.clearable,shortcuts:this.shortcuts,multiple:this.multiple,shortcutClose:this.shortcutClose,value:this.internalValue,startDate:this.startDate,disabledDate:this.disabledDate,onPick:this.onPick,"onPick-clear":this.handleClear,"onPick-success":this.onPickSuccess,disabledHours:this.ownPickerProps.disabledHours,disabledMinutes:this.ownPickerProps.disabledMinutes,disabledSeconds:this.ownPickerProps.disabledSeconds},t):a.createVNode(m9,{ref:"pickerPanelRef",clearable:this.clearable,confirm:this.isConfirm,shortcuts:this.shortcuts,multiple:this.multiple,shortcutClose:this.shortcutClose,value:this.internalValue,startDate:this.startDate,disabledDate:this.disabledDate,onPick:this.onPick,"onPick-clear":this.handleClear,"onPick-success":this.onPickSuccess,disabledHours:this.ownPickerProps.disabledHours,disabledMinutes:this.ownPickerProps.disabledMinutes,disabledSeconds:this.ownPickerProps.disabledSeconds},t),this.hasFooter?a.createVNode("div",{class:["bk-date-picker-footer-wrapper",this.footerSlotCls]},[(m=(f=(u=this.$slots).footer)==null?void 0:f.call(u))!=null?m:null]):null]}}),[[a.vShow,this.opened]])]})]})]),[[a.resolveDirective("clickoutside"),this.handleClose]])}});const b9=He(Xy);var $n=(e=>(e.OBJECT_ARRAY="objectArray",e.BASE_ARRAY="baseArray",e.NOT_ARRAY="notArray",e))($n||{});const eC={title:g.arrayOf(g.string).def([]),extCls:g.string.def(""),searchPlaceholder:g.string.def(""),settingKey:g.string.def("id"),displayKey:g.string.def("value"),sortKey:g.string.def("value"),showOverflowTips:g.bool.def(!1),searchable:g.bool.def(!1),sortable:g.bool.def(!1),sourceList:g.arrayOf(g.any).def([]),targetList:g.arrayOf(g.any).def([]),emptyContent:g.arrayOf(g.string).def([])};function tC(e,t,n){const i=a.ref([]),s=a.ref([]),o=(c=!1)=>{c&&(i.value=[],s.value=[]),e.value.forEach(d=>{const u=d[n.value];t.value.includes(u)?s.value.push(d):i.value.push(d)})};return o(),a.watch(()=>[e,t,n],()=>{o(!0)},{deep:!0}),{selectList:i,selectedList:s}}function nC(e,t){const n=a.ref(""),i=a.computed(()=>e.value.filter(s=>{const o=s[t.value];return o instanceof Object?!1:o.toString().includes(n.value)}));return{selectSearchQuery:n,selectListSearch:i}}var iC=a.defineComponent({name:"Transfer",props:eC,emits:["change","update:targetList"],setup(e,{emit:t}){const n=a.computed(()=>Array.isArray(e.sourceList)?e.sourceList.every(M=>M.toString().includes("[object Object]"))?$n.OBJECT_ARRAY:$n.BASE_ARRAY:$n.NOT_ARRAY),i=a.computed(()=>n.value===$n.BASE_ARRAY?"value":e.settingKey),s=a.computed(()=>n.value===$n.BASE_ARRAY?"value":e.displayKey),o=a.computed(()=>e.sortKey||s.value),c=a.computed(()=>{switch(n.value){case $n.BASE_ARRAY:return[...new Set(e.sourceList)].map(C=>({value:C}));case $n.OBJECT_ARRAY:return[...e.sourceList];default:return[]}}),{targetList:d}=a.toRefs(e),{selectList:u,selectedList:f}=tC(c,d,i),{selectSearchQuery:m,selectListSearch:p}=nC(u,s),y=a.computed(()=>[...p.value].sort((C,M)=>{const N=C[o.value],L=M[o.value];return N>L?1:-1})),b=a.computed(()=>[...f.value].sort((C,M)=>{const N=C[o.value],L=M[o.value];return N>L?1:-1}));a.watch(()=>[u,f],()=>{I()},{deep:!0});const v=(C,M)=>{const N=i.value;return C.some(L=>L[N]===M[N])&&M.disabled},T=()=>{u.value=[...c.value.filter(C=>v(u.value,C))],f.value=[...c.value.filter(C=>!v(u.value,C))],I()},x=()=>{u.value=[...c.value.filter(C=>!v(f.value,C))],f.value=[...c.value.filter(C=>v(f.value,C))],I()},k=(C,M)=>{if(C.disabled)return;const N=C[i.value],L=M?u:f,j=M?f:u,z=L.value.findIndex(O=>O[i.value]===N);j.value.push(...L.value.splice(z,1)),I()},I=()=>{const C=u.value.map(N=>N[i.value]),M=f.value.map(N=>N[i.value]);t("update:targetList",M),t("change",n.value===$n.BASE_ARRAY?C:u.value.map(N=>a.toRaw(N)),n.value===$n.BASE_ARRAY?M:f.value.map(N=>a.toRaw(N)),M)};return{selectSearchQuery:m,selectListSearch:p,selectedList:f,selectListSort:y,selectedListSort:b,settingCode:i,displayCode:s,allToRight:T,allToLeft:x,handleItemClick:k}},render(){const e=this.sortable?this.selectListSort:this.selectListSearch,t=this.sortable?this.selectedListSort:this.selectedList,n=c=>{var p,y;const d=c==="left-header",u=d?`${(p=this.title[0])!=null?p:"\u6E90\u5217\u8868"}`:`${(y=this.title[1])!=null?y:"\u76EE\u6807\u5217\u8868"}`,f=d?!e.length:!t.length,m=()=>{f||(d?this.allToRight():this.allToLeft())};return this.$slots[c]?a.createVNode("div",{class:"slot-header"},[this.$slots[c]()]):a.createVNode("div",{class:"header"},[`${u}\uFF08${d?e.length:t.length}\uFF09`,a.createVNode("span",{class:{disabled:f},onClick:()=>m()},[d?"\u9009\u62E9\u5168\u90E8":"\u6E05\u7A7A"])])},i=c=>{var f;const d=c==="left-empty-content",u=(f=d?this.emptyContent[0]:this.emptyContent[1])!=null?f:d?"\u65E0\u6570\u636E":"\u672A\u9009\u62E9\u4EFB\u4F55\u9879";return this.$slots[c]?a.createVNode("div",null,[this.$slots[c]()]):a.createVNode("div",{class:"empty"},[u])},s=(c,d=!0)=>a.createVNode("div",{class:["item-content",{"is-disabled":c.disabled}]},[a.createVNode("span",{class:"content-text",title:c[this.displayCode]},[c[this.displayCode]]),a.createVNode("span",{class:"icon-wrapper"},[d?a.createVNode(Bo,{class:"bk-icon icon-move"},null):a.createVNode(Bn,{class:"bk-icon icon-delete"},null)])]),o=c=>{const d=c==="left",u=d?e:t,f=d?"source-option":"target-option",m=d?"left-empty-content":"right-empty-content";return u.length?a.createVNode("ul",{class:["content",this.searchable&&d?"is-search":""]},[u.map(p=>{var y,b,v;return a.createVNode("li",{key:p[this.settingCode],class:[this.$slots[f]?"custom-item":""],onClick:()=>this.handleItemClick(p,d)},[(v=(b=(y=this.$slots)[f])==null?void 0:b.call(y,p))!=null?v:s(p,d)])})]):i(m)};return a.createVNode("div",{class:["bk-transfer",this.extCls]},[a.createVNode("div",{class:"source-list"},[n("left-header"),this.searchable&&a.createVNode(ra,{modelValue:this.selectSearchQuery,"onUpdate:modelValue":c=>this.selectSearchQuery=c,class:"transfer-search-input",clearable:!0,placeholder:this.searchPlaceholder||"\u641C\u7D22"},{prefix:()=>a.createVNode(Ha,{class:"icon-search"},null)}),o("left")]),a.createVNode(ac,{class:"transfer"},null),a.createVNode("div",{class:"target-list"},[n("right-header"),o("right")])])}});const y9=He(iC);var fi=(e=>(e.NODE_CLICK="nodeClick",e.NODE_COLLAPSE="nodeCollapse",e.NODE_EXPAND="nodeExpand",e.NODE_CHECKED="nodeChecked",e.NODE_DRAG_START="nodeDragStart",e.NODE_DRAG_OVER="nodeDragOver",e.NODE_DRAG_LEAVE="nodeDragLeave",e.NODE_DROP="nodeDrop",e))(fi||{});const _i=(...e)=>!0,aC={nodeClick:_i,nodeCollapse:_i,nodeExpand:_i,nodeChecked:_i,nodeDragStart:_i,nodeDragOver:_i,nodeDragLeave:_i,nodeDrop:_i};var de=(e=>(e.DEPTH="__depth",e.INDEX="__index",e.UUID="__uuid",e.PARENT_ID="__parent_id",e.HAS_CHILD="__has_child",e.PATH="__path",e.IS_ROOT="__is_root",e.ORDER="__order",e.IS_OPEN="__is_open",e.IS_CHECKED="__is_checked",e.IS_SELECTED="__is_selected",e.IS_ASYNC_INIT="__is_async_init",e.IS_MATCH="__is_match",e.IS_NULL="__IS_NULL",e.IS_CACHED="__is_cached",e.IS_ASYNC="__is_async",e.IS_LOADING="__is_loading",e.TREE_NODE_ATTR="__attr__",e))(de||{});const Wi={__is_open:"isOpen",__is_selected:"selected",__is_match:"isMatch",__has_child:"hasChild",__is_checked:"checked",__is_async:"async",__is_loading:"loading",__is_root:"isRoot"},rC=["click","selected","expand","collapse"],sC={data:g.arrayOf(g.any).def([]),label:g.oneOfType([g.func.def(void 0),g.string.def("label")]),nodeKey:g.string.def(void 0),children:g.string.def("children"),indent:g.number.def(18),lineHeight:g.number.def(32),levelLine:g.oneOfType([g.bool.def(!1),g.func.def(void 0),g.string.def("1px dashed #c3cdd7")]).def(!1),virtualRender:g.bool.def(!1),prefixIcon:g.oneOfType([g.func.def(()=>{}),g.bool.def(!1)]).def(!0),async:g.shape({callback:g.func.def(void 0),cache:g.bool.def(!0),deepAutoOpen:g.commonType(["once","every"],"columnType").def("once")}),offsetLeft:g.number.def(5),search:g.oneOfType([g.shape({value:g.oneOfType([g.number,g.string,g.bool]).def(""),match:g.oneOfType([g.commonType(["fuzzy","full"],"TreeSearchMatchType"),g.func]),resultType:g.commonType(["tree","list"],"TreeSearchResultType").def("tree"),openResultNode:g.bool}),g.string,g.number,g.bool]).def(void 0),emptyText:g.string.def("\u6CA1\u6709\u6570\u636E"),draggable:g.bool.def(!1),disableDrag:g.func.def(null),disableDrop:g.func.def(null),dragSort:g.bool.def(!1),selectable:g.oneOfType([g.bool,g.func]).def(!0),disabledFolderSelectable:g.bool.def(!1),showCheckbox:g.bool.def(!1),showNodeTypeIcon:g.bool.def(!0),selected:g.oneOfType([g.string,null,g.number,g.object]).def(null),autoCheckChildren:g.bool.def(!0),autoOpenParentNode:g.bool.def(!0),expandAll:g.bool.def(!1),nodeContentAction:g.oneOfType([g.arrayOf(g.commonType(rC)),g.func.def(()=>["selected"])]).def(["selected","expand","click"])};var lC=(e,{slots:t})=>({renderEmpty:n=>a.createVNode(Fs,{scene:"part",type:n},{default:()=>{var i,s;return[(s=(i=t.default)==null?void 0:i.call(t))!=null?s:e.emptyText]}})}),yl=(e,t)=>{const n=P=>e.schema.get(P),i=(P,Z)=>{var B;return(B=n(P[de.UUID]))==null?void 0:B[Z]},s=(P,Z,B)=>{e.schema.set(P[de.UUID],xe(Y({},n(P[de.UUID])),{[Z]:B}))},o=P=>i(P,de.PATH),c=P=>i(P,de.UUID),d=P=>i(P,de.IS_ROOT),u=P=>i(P,de.IS_OPEN),f=P=>i(P,de.HAS_CHILD),m=P=>i(P,de.IS_MATCH),p=P=>i(P,de.IS_CHECKED),y=P=>i(P,de.PARENT_ID),b=P=>i({[de.UUID]:P},de.PARENT_ID),v=P=>i(P,de.IS_LOADING),T=(P,Z)=>{s(P,de.IS_LOADING,Z)},x=P=>e.schema.delete(P),k=P=>n(y(P)),I=P=>{var Z;return typeof P=="object"?u(P):typeof P=="string"?(Z=n(P))==null?void 0:Z[de.IS_OPEN]:!1},C=P=>I(i(P,de.PARENT_ID)),M=P=>d(P)||C(P),N=P=>P.split("-").reduce((B,ne)=>{const ue=Number(ne);return Array.isArray(B)?B[ue]:B[t.children][ue]},t.data),L=P=>{const Z=e.schema;return Array.prototype.filter.call(Array.from(Z.keys()),B=>Z.get(B)[de.PARENT_ID]===P[de.UUID])},j=P=>N(o({[de.UUID]:P})),z=P=>d({[de.UUID]:P})?{[t.children]:t.data}:j(b(P)),O=P=>({[Wi[de.IS_LOADING]]:i(P,de.IS_LOADING),[Wi[de.HAS_CHILD]]:f(P),[Wi[de.IS_MATCH]]:m(P),[Wi[de.IS_CHECKED]]:p(P),[Wi[de.IS_OPEN]]:u(P),[Wi[de.IS_ROOT]]:d(P),fullPath:i(P,de.PATH),uuid:c(P),parentId:i(P,de.PARENT_ID)});return{getSchemaVal:n,getNodeAttr:i,getNodeId:c,getNodeParentId:y,getNodeParentIdById:b,getParentNodeData:z,getParentNode:k,setNodeAttr:s,getNodePath:o,isRootNode:d,isNodeOpened:u,hasChildNode:f,isItemOpen:I,isNodeChecked:p,isNodeMatched:m,isNodeLoading:v,checkNodeIsOpen:M,getSourceNodeByPath:N,getSourceNodeByUID:j,deleteNodeSchema:x,resolveScopedSlotParam:O,setTreeNodeLoading:T,extendNodeAttr:P=>xe(Y({},P),{[de.TREE_NODE_ATTR]:O(P)}),getChildNodes:L}};const C9="1px dashed #c3cdd7",v9=(e,t,n=null,i=null,s=null,o=[])=>{const c=e[t];return typeof c=="boolean"?c?i:s:w9(n,e,t,o)},w9=(e,t,n,i=[])=>{const s=t[n];if(typeof s=="string")return typeof e=="object"&&e!==null?(Object.prototype.hasOwnProperty.call(e,s)||console.error(`cannot find node label with key ${s}`),e[s]):s;if(typeof s=="function"){const o=s.apply(globalThis,[e,...i]);if(typeof o=="string")return o;console.error("props label with function return value is not string, please check and return string");return}},M9=(e,t)=>w9(e,t,"label"),eu=(e,t)=>e.get(t)||{},oC=(e,t,n)=>{var i;return(i=eu(e,t))==null?void 0:i[n]},cC=(e,t)=>({"--level-line":v9(t,"levelLine",e,C9,null,["tree"]),"--lineHeight":`${t.lineHeight}px`,"--indent":`${t.indent}px`,"--offset-left":`${t.offsetLeft}px`}),uC=(e,t,n={})=>{const{schema:i}=n,s=oC(i,e[de.UUID],de.DEPTH);return Y({"--depth":s},typeof t.levelLine=="function"?{"--level-line":v9(t,"levelLine",e,C9,null,["node"])}:{})},dC=(e,t,n)=>{const{__is_root:i,__is_open:s}=eu(t,e[de.UUID])||{};return{"is-root":i,"bk-tree-node":!0,"is-open":s,"is-virtual-render":n.virtualRender,"level-line":n.levelLine}},fC=(e,t)=>{const{__is_checked:n,__is_selected:i}=eu(t,e[de.UUID])||{};return{"is-checked":n,"is-selected":i,"node-folder":e.is_folder,"node-leaf":e.is_leaf,[Ye("node-row")]:!0}},hC=(e,t,n,i,s)=>{gC(e,t,n,{[i]:s})},gC=(e,t,n,i)=>{const o=e.split("-").reduce((c,d)=>{const u=Number(d);return Array.isArray(c)?c[u]:c[n][u]},t);Object.assign(o,i||{})},Zr=e=>e==null?{__IS_NULL:!0}:typeof e=="string"||typeof e=="number"||typeof e=="symbol"?{[de.UUID]:e}:(Object.prototype.hasOwnProperty.call(e,de.UUID)||console.error("setNodeAction Error: node id cannot found"),e);var I9=(e,t)=>{const{setNodeAttr:n,getNodePath:i,getNodeAttr:s,resolveScopedSlotParam:o,setTreeNodeLoading:c}=yl(t,e),d=(m,p)=>{if(typeof m=="object"&&m!==null){n(p,de.IS_OPEN,!0);const y=Array.isArray(m)?m:[m];return hC(i(p),e.data,e.children,e.children,y),Promise.resolve(m)}return Promise.resolve(m)},u=m=>{const{callback:p=null,cache:y=!0}=e.async||{};if(typeof p=="function"&&s(m,de.IS_ASYNC)){if(n(m,de.IS_ASYNC_INIT,!0),!s(m,de.IS_CACHED)){n(m,de.IS_CACHED,y);const b=o(m),v=p(m,T=>d(T,m),b);if(typeof v=="object"&&v!==null)return c(m,!0),v instanceof Promise?Promise.resolve(v.then(T=>d(T,m)).catch(T=>console.error("load remote data error:",T)).finally(()=>{c(m,!1),n(m,de.IS_CACHED,!0)})):(d(v,m),c(m,!1),Promise.resolve(!0))}return Promise.resolve(!0)}return Promise.resolve(!0)},f=()=>{const m=t.data.filter(p=>s(p,de.IS_ASYNC)&&p[Wi[de.IS_OPEN]]&&!s(p,de.IS_ASYNC_INIT));m.length&&Promise.all(m.map(p=>u(p))).then(()=>{f()}).catch(p=>{console.warn(p)})};return{asyncNodeClick:u,deepAutoOpen:f}},mC=(e,t,n,i,s,o)=>{let c=e.selected;const{setNodeAttr:d,getNodePath:u,getSchemaVal:f,getNodeAttr:m,getNodeId:p,getChildNodes:y,isRootNode:b,hasChildNode:v,isItemOpen:T,isNodeOpened:x,isNodeLoading:k,isNodeChecked:I,getParentNode:C,resolveScopedSlotParam:M,extendNodeAttr:N}=yl(n,e),{registerNextLoop:L}=o,{asyncNodeClick:j,deepAutoOpen:z}=I9(e,n),O=Q=>T(Q)?a.createVNode($o,{class:[Ye("tree-icon"),Ye("node-prefix")]},null):a.createVNode(Ko,{class:[Ye("tree-icon"),Ye("node-prefix")]},null),R=Q=>{if(typeof Q=="string")return Q;if(typeof Q=="object"&&Q!==null){if(Q.__v_isVNode)return Q;const{node:re,className:D,text:_,style:J}=Q;return a.h(re,{class:D,style:J},_)}return null},P=Q=>{var re,D,_;return((_=(D=(re=t.slots).nodeLoading)==null?void 0:D.call(re,N(Q)))!=null?_:k(Q))?a.createVNode(zr,null,null):""},Z=Q=>{if(t.slots.nodeAction)return t.slots.nodeAction(N(Q));let re=null;return k(Q)?P(Q):typeof e.prefixIcon=="function"&&(re=e.prefixIcon(N(Q),"node_action"),re!=="default")?R(re):(re==="default"||typeof e.prefixIcon=="boolean"&&e.prefixIcon)&&(v(Q)||Q.async||!e.autoCheckChildren)?T(Q)?a.createVNode(As,{class:Ye("node-prefix")},null):a.createVNode(Ws,{class:Ye("node-prefix")},null):null},B=Q=>{if(!e.showNodeTypeIcon)return null;if(t.slots.nodeType)return t.slots.nodeType(N(Q));let re=null;return typeof e.prefixIcon=="function"&&(re=e.prefixIcon(N(Q),"node_type"),re!=="default")?R(re):re==="default"||typeof e.prefixIcon=="boolean"&&e.prefixIcon?b(Q)||v(Q)?O(Q):a.createVNode(ic,{class:[Ye("tree-icon"),Ye("node-prefix")]},null):null},ne=(Q,re)=>{const D=C(Q);D&&(d(D,de.IS_CHECKED,re),b(D)||ne(D,re))},ue=(Q,re,D)=>{y(Q).forEach(_=>{d({[de.UUID]:_},re,D),ue({[de.UUID]:_},re,D)})},Ce=(Q,re)=>{d(Q,de.IS_CHECKED,!!re),ue(Q,de.IS_CHECKED,!!re),ne(Q,re),t.emit(fi.NODE_CHECKED,s.value.filter(D=>I(D)).map(D=>D[de.UUID]))},Ne=Q=>I(Q)&&!s.value.filter(re=>{var D;return(D=u(re))==null?void 0:D.startsWith(u(Q))}).every(re=>I(re)),fe=Q=>I(Q)||s.value.filter(re=>{var D;return(D=u(re))==null?void 0:D.startsWith(u(Q))}).some(re=>I(re)),he=Q=>e.showCheckbox?a.createVNode(zi,{size:"small",modelValue:fe(Q),indeterminate:Ne(Q),onChange:re=>Ce(Q,re)},null):null,$=(Q,re=null,D=null,_=!0)=>{const J=re===null?!T(Q):!!re;if(J||ue(Q,de.IS_OPEN,J),d(Q,de.IS_OPEN,J),_){const se=T(Q)?fi.NODE_EXPAND:fi.NODE_COLLAPSE;t.emit(se,Q,M(Q),f(Q[de.UUID]),D)}},A=(Q,re,D)=>{if(Array.isArray(Q)){Q.forEach(_=>d(Zr(_),re,D));return}d(Zr(Q),re,D)},H=(Q,re=!0,D=!1)=>{const _=Zr(Q);if(!_[de.IS_NULL])if(D)if(re){if(A(_,de.IS_OPEN,!0),!b(_)){const J=m(_,de.PARENT_ID);H(J,!0,!0)}}else $(_,!1,null,!1);else A(_,de.IS_OPEN,re)},F=(Q,re)=>{if(x(Q)){$(Q,!1,re);return}j(Q).finally(()=>{m(Q,de.IS_LOADING)?L("setNodeOpenedAfterLoading",{type:"once",fn:()=>$(Q,!0,re)}):$(Q,!0,re)})},ee=(Q,re)=>{Q.stopImmediatePropagation(),Q.stopPropagation(),Q.preventDefault(),F(re,Q)},ie=(Q,re=!0,D=!0)=>{const _=Array.isArray(Q)?Q:[Q];if(!_.length)return;const J=Zr(_[0]);if(!J[de.IS_NULL]){if(!e.selectable||typeof e.selectable=="function"&&!e.selectable(Q)||e.disabledFolderSelectable&&(Q==null?void 0:Q.is_folder)===!0){console.warn("props.selectable is false or undefined, please set selectable with true");return}c!=null&&d({[de.UUID]:c},de.IS_SELECTED,!re),e.selected&&e.selected!==c&&d({[de.UUID]:e.selected},de.IS_SELECTED,!re),d(J,de.IS_SELECTED,re),c=p(J),D&&_.length===1&&H(J,!0,!0),m(J,de.IS_ASYNC)&&j(J).then(()=>{a.nextTick(()=>{_.shift(),ie(_,re,D)})})}},ae=Q=>typeof e.nodeContentAction=="function"?Reflect.apply(e.nodeContentAction,globalThis,[{node:Q}]):typeof e.nodeContentAction=="string"?[e.nodeContentAction]:Array.isArray(e.nodeContentAction)?e.nodeContentAction:["selected","expand","click"],me=(Q,re)=>{const D=ae(Q);if(D.includes("selected")&&ie(Q,!0,!1),D.includes("expand")&&(x(Q)||F(Q,re)),D.includes("collapse")&&x(Q)&&F(Q,re),D.includes("click")){const _=fi.NODE_CLICK;t.emit(_,Q,M(Q),f(Q[de.UUID]),re)}},Le=(Q,re)=>{if(b(re))return!1;const D=u(re),_=`${D}`.split("-").slice(0,Q+1);if(_.join("-")===D)return!0;const se=_.pop(),ce=parseInt(se,10);_.push(`${ce+1}`);const pe=_.join("-");return s.value.some(ke=>ke[de.PATH]===pe)},X=Q=>{if(!e.levelLine)return null;const re=_=>({"--depth":_}),D=m(Q,de.DEPTH)+1;return new Array(D).fill("").map((_,J)=>J).filter(_=>Le(_,Q)).filter(_=>_>0).map(_=>a.createVNode("span",{class:"node-virtual-line",style:re(D-_)},null))};return{renderTreeNode:Q=>{var re,D,_,J,se;return a.createVNode("div",{"data-tree-node":p(Q),key:p(Q),class:fC(Q,n.schema)},[a.createVNode("div",{class:dC(Q,n.schema,e),style:uC(Q,e,n),onClick:ce=>me(Q,ce)},[a.createVNode("div",{class:[Ye("node-action")],onClick:ce=>ee(ce,Q)},[Z(Q)]),a.createVNode("div",{class:Ye("node-content")},[[he(Q),B(Q)],a.createVNode("span",{class:Ye("node-text")},[(_=(D=(re=t.slots).node)==null?void 0:D.call(re,N(Q)))!=null?_:[M9(Q,e)]]),(se=(J=t.slots).nodeAppend)==null?void 0:se.call(J,N(Q))]),X(Q)])])},handleTreeNodeClick:F,deepAutoOpen:z,asyncNodeClick:j,setNodeAction:A,setNodeOpened:$,setSelect:ie,setOpen:H}},pC=(e,t,n,i)=>{const{getSourceNodeByUID:s,getNodeParentIdById:o,getParentNodeData:c,getNodeAttr:d,getNodePath:u,isRootNode:f}=yl(i,e),m=a.computed(()=>typeof e.disableDrag=="function"),p=a.computed(()=>typeof e.disableDrop=="function"),y=j=>j.target.closest("[data-tree-node]"),b=j=>{var O;const z=(O=j==null?void 0:j.dataset)==null?void 0:O.treeNode;return s(z)},v=j=>{y(j).removeEventListener("mouseup",v)},T=j=>{const z=y(j),O=b(z);if(O.draggable===!1||m.value&&e.disableDrag(O)){z.classList.add("bk-tree-drag-disabled");return}z.setAttribute("draggable","true"),z.addEventListener("mouseup",v)},x=j=>{j.preventDefault();const z=y(j),O=b(z);if(t.emit(fi.NODE_DRAG_OVER,j,z,O),p.value&&(e==null?void 0:e.disableDrop(O))){j.dataTransfer.effectAllowed="move",j.dataTransfer.dropEffect="none",z.classList.add("bk-tree-drop-disabled");return}z.classList.add("bk-tree-drop-active");const R=j.dataTransfer.getData("node-id"),P=z.getAttribute("data-tree-node"),Z=C(R,P)?"move":"none";j.dataTransfer.effectAllowed=Z,j.dataTransfer.dropEffect=Z},k=j=>{j.dataTransfer.effectAllowed="move",j.dataTransfer.dropEffect="move";const z=y(j);j.dataTransfer.setData("text/plain",""),j.dataTransfer.setData("node-id",z.getAttribute("data-tree-node")),t.emit(fi.NODE_DRAG_START,j,z)},I=j=>{j.preventDefault(),j.stopPropagation();const z=y(j);z.classList.remove("bk-tree-drop-active","bk-tree-drop-disabled");const O=b(z);if(p.value&&e.disableDrop(O))return;const R=j.dataTransfer.getData("node-id"),P=z.getAttribute("data-tree-node");Reflect.apply(e.dragSort?M:N,globalThis,[R,P]),t.emit(fi.NODE_DROP,j,z,O)},C=(j,z)=>{const O=u({[de.UUID]:j}),R=u({[de.UUID]:z}),P=o(j),Z=o(z);return P===Z?!0:O.indexOf(R)===-1&&R.indexOf(O)===-1},M=(j,z)=>{if(!C(j,z))return;const O=JSON.parse(JSON.stringify(s(j))),R=JSON.parse(JSON.stringify(s(z))),P=c(j),Z=c(z),B=d({[de.UUID]:j},de.INDEX),ne=d({[de.UUID]:z},de.INDEX);P==null||P[e.children].splice(B,1,R),Z==null||Z[e.children].splice(ne,1,O)},N=(j,z)=>{const O=s(j),R=s(z);let P=null;if(f({[de.UUID]:j}))P=e.data;else{const Z=o(j);if(Z!=null){P=s(Z);const B=d({[de.UUID]:j},de.INDEX);P==null||P[e.children].splice(B,1)}}R[e.children]||(R[e.children]=[]),R[e.children].unshift(O)},L=j=>{j.preventDefault();const z=y(j);z.classList.remove("bk-tree-drop-active","bk-tree-drop-disabled"),t.emit(fi.NODE_DRAG_LEAVE,j,z)};a.onMounted(()=>{if(e.draggable&&n.value){const j=n.value.$el;j.addEventListener("mousedown",T),j.addEventListener("dragstart",k),j.addEventListener("dragover",x),j.addEventListener("dragleave",L),j.addEventListener("drop",I)}}),a.onUnmounted(()=>{if(e.draggable&&n.value){const j=n.value.$el;j.removeEventListener("mousedown",T),j.removeEventListener("dragstart",k),j.removeEventListener("dragover",x),j.removeEventListener("dragleave",L),j.removeEventListener("drop",I)}})},bC=e=>{var y;const t=a.toRef(e,"search"),{openResultNode:n=!1,resultType:i="tree"}=(y=e.search)!=null?y:{},s=b=>["string","number","boolean"].includes(typeof b),o=(b,v)=>b===v,c=(b,v)=>new RegExp(`${b}`,"i").test(`${v}`),d=(b,v)=>Reflect.apply(b,globalThis,v),u=t.value===void 0||t.value===!1,f=(b,v)=>{if(u)return!0;if(s(t.value))return d(c,[t.value,b,v]);const{value:T="",match:x="fuzzy"}=t.value,I=typeof x=="function"?x:x==="fuzzy"?c:o;return`${T}`.length===0?!0:d(I,[T,b,v])},m=a.computed(()=>t.value!==!1&&(s(t.value)?`${t.value}`.length>0:typeof t.value=="object"));return{searchFn:f,refSearch:t,isSearchActive:m,isSearchDisabled:u,openResultNode:n,resultType:i,isTreeUI:i==="tree"}},yC=e=>{var x;const t=(k,I=void 0,C=[])=>{const{data:M,children:N}=k,L=[],j=[];let z=0;const O=new Map;function R(fe,he,$,A){if(fe!=null&&O.has(fe)&&![de.UUID,de.PARENT_ID].includes(he)){const H=O.get(fe);Object.prototype.hasOwnProperty.call(H,he)&&typeof A=="function"&&Reflect.apply(A,self,[H,he,$])&&(Object.assign(H,{[he]:$}),R(H[de.PARENT_ID],he,$,A))}}function P(fe){let he=null;return typeof k.nodeKey=="string"&&(he=fe[k.nodeKey]||ki.v4()),he||fe[de.UUID]||ki.v4()}const Z={[de.IS_OPEN]:()=>!!k.expandAll,[de.IS_CHECKED]:()=>!1,[de.IS_MATCH]:()=>!0,[de.IS_SELECTED]:fe=>k.selected===fe,[de.IS_CACHED]:()=>!1,[de.IS_ASYNC]:()=>null,[de.IS_LOADING]:()=>!1};function B(fe,he,$,A=void 0){let H=A;A===void 0&&typeof Z[$]=="function"&&(H=Z[$](fe,he));const F=Wi[$];if(Object.prototype.hasOwnProperty.call(he,F))return he[F];const ee=(C||[]).find(ae=>ae[de.UUID]===fe);let ie;return ee&&(ie=ee[$]),ie==null&&(ie=H),ie}function ne(fe,he){return k.selectable?B(fe,he,de.IS_SELECTED,k.selected===fe):!1}function ue(fe,he,$){var F;const A=B(fe,he,de.IS_OPEN),H=O.has($)?(F=O.get($))==null?void 0:F[de.IS_OPEN]:!0;return A&&H}function Ce(fe){return!fe[de.IS_OPEN]}function Ne(fe,he=0,$=null,A=null){const H=fe.length;for(let F=0;F<H;F++){const ee=fe[F];if(Array.isArray(ee))Ne(ee,he,$,A);else if(typeof ee=="object"&&ee!==null){const ie=A!==null?`${A}-${F}`:`${F}`,ae=`${P(ee)}`,me=!!(ee[N]||[]).length;let Le=B(ae,ee,de.IS_OPEN);k.autoOpenParentNode?Le&&R($,de.IS_OPEN,!0,Ce):Le=ue(ae,ee,$),Object.assign(ee,{[de.UUID]:ae});const X=k.showCheckbox&&B(ae,ee,de.IS_CHECKED);X&&L.push(ae),O.set(ae,{[de.DEPTH]:he,[de.INDEX]:F,[de.UUID]:ae,[de.PARENT_ID]:$,[de.HAS_CHILD]:me,[de.PATH]:ie,[de.IS_ROOT]:$===null,[de.ORDER]:z,[de.IS_SELECTED]:ne(ae,ee),[de.IS_MATCH]:B(ae,ee,de.IS_MATCH),[de.IS_OPEN]:Le,[de.IS_CHECKED]:X,[de.IS_CACHED]:B(ae,ee,de.IS_CACHED),[de.IS_ASYNC]:B(ae,ee,de.IS_ASYNC),[de.IS_LOADING]:B(ae,ee,de.IS_LOADING),[N]:null}),z+=1,j.push(xe(Y({},JSON.parse(JSON.stringify(ee,(W,Q)=>W===k.children?null:Q))),{[de.IS_OPEN]:Le,[N]:null})),Object.prototype.hasOwnProperty.call(ee,N)&&Ne(ee[N]||[],he+1,ae,ie)}}}return Ne(I||M),k.showCheckbox&&(L==null||L.forEach(fe=>{Array.from(O.values()).filter(he=>{var $;return($=he[de.PATH])==null?void 0:$.startsWith(O.get(fe)[de.PATH])}).forEach(he=>Object.assign(he,{[de.IS_CHECKED]:!0})),R(fe,de.IS_CHECKED,!0,()=>!0)})),[j,O]},n=t(e),i=new Map,s=[],o=[],c=a.reactive({data:n[0],schema:n[1],levelLineSchema:{}}),d=a.computed(()=>Array.from(c.schema.values())),{asyncNodeClick:u,deepAutoOpen:f}=I9(e,c),m=k=>{s.push(k)},p=(k,I,C=!0)=>{C&&i.has(k)&&i.delete(k),i.set(k,I)},y=k=>typeof k=="function"?{type:"loop",fn:k}:typeof k=="object"&&typeof k.type=="string"&&typeof k.fn=="function"?k:(console.error("loop event error",k),null),b=k=>{var C;const I=y(k);return I!==null&&Reflect.apply(I.fn,globalThis,[]),(C=I==null?void 0:I.type)!=null?C:"once"},v=()=>{Array.from(i.keys()).forEach(k=>{const I=i.get(k);if(Array.isArray(I)){const C=[];I.forEach((M,N)=>{b(M)==="once"&&C.unshift(N)}),C.length&&C.forEach(M=>I.splice(M,1)),I.length===0&&i.delete(k)}else b(I)==="once"&&i.delete(k)})};a.watch(()=>[e.data],k=>{var C,M;const I=t(e,k,d.value);c.data=I[0],c.schema=I[1],((C=e.async)==null?void 0:C.callback)&&((M=e.async)==null?void 0:M.deepAutoOpen)==="every"&&f(),v()},{deep:!0}),e.selectable&&a.onMounted(()=>{a.watch(()=>e.selected,k=>{o.length=0,s.forEach(I=>{Reflect.apply(I,globalThis,[k]),o.push(()=>Reflect.apply(I,globalThis,[k]))}),p("afterSelectWatch",o)},{immediate:!0})});const T=k=>{p("afterDataUpdate",k)};return(x=e.async)!=null&&x.callback&&f(),{flatData:c,schemaValues:d,asyncNodeClick:u,deepAutoOpen:f,afterDataUpdate:T,registerNextLoop:p,onSelected:m}},CC=a.defineComponent({name:"Tree",props:sC,emits:aC,setup(e,t){const{flatData:n,schemaValues:i,onSelected:s,registerNextLoop:o}=yC(e),{setNodeAttr:c,checkNodeIsOpen:d,getNodeAttr:u,getNodePath:f,isRootNode:m,isNodeOpened:p,isNodeChecked:y,isNodeMatched:b,hasChildNode:v}=yl(n,e),{searchFn:T,isSearchActive:x,refSearch:k,openResultNode:I,isTreeUI:C,isSearchDisabled:M}=bC(e);M||a.watch([k],()=>{n.data.forEach(he=>{const $=T(M9(he,e),he);c(he,de.IS_MATCH,$),I&&R(he,!0,!0)})});const N=he=>{if(x.value){const $=()=>C?i.value.some(A=>{var H;return((H=A[de.PATH])==null?void 0:H.startsWith(f(he)))&&A[de.IS_MATCH]}):!1;return u(he,de.IS_MATCH)||$()}return!0},L=a.computed(()=>n.data.filter(he=>d(he)&&N(he))),{renderTreeNode:j,handleTreeNodeClick:z,setNodeOpened:O,setOpen:R,setNodeAction:P,setSelect:Z,asyncNodeClick:B}=mC(e,t,n,L,i,{registerNextLoop:o}),ne=(he,$=!0)=>{P(Zr(he),de.IS_CHECKED,$)};s(he=>{Z(he,!0,e.autoOpenParentNode)});const ue=()=>n;t.expose({handleTreeNodeClick:z,isNodeChecked:y,isRootNode:m,isNodeOpened:p,isNodeMatched:b,hasChildNode:v,setOpen:R,setChecked:ne,setNodeAction:P,setNodeOpened:O,setSelect:Z,asyncNodeClick:B,getData:ue});const Ce=a.ref(),{renderEmpty:Ne}=lC(e,t);pC(e,t,Ce,n);const fe=he=>{if(he.length)return he.map(j);const $=x.value?"search-empty":"empty";return Ne($)};return()=>a.createVNode(Wr,{class:Ye("tree"),style:cC(null,e),list:L.value,lineHeight:e.lineHeight,enabled:e.virtualRender,contentClassName:Ye("container"),throttleDelay:0,ref:Ce},{default:he=>fe(he.data||[])})}});const N9=He(CC),L9=e=>e.__v_isVNode;var vC=a.defineComponent({name:"ComposeFormItem",props:{headBackgroundColor:{type:String,default:"#FAFBFD"},tailBackgroundColor:String},render(){if(!this.$slots.default)return null;const e=this.$slots.default();if(e.length>1){const t=e.length;let n=0,i=null;for(;n<t;){if(L9(e[n])){i=e[n];break}n=n+1}let s=t-1,o=null;for(;s>=0&&s>n;){if(L9(e[s])){o=e[s];break}s=s-1}if(i&&o){i.props||(i.props={});let c="bk-compose-form-item-head";i.props.class&&(c+=` ${i.props.class}`),this.headBackgroundColor&&(i.props.style=Object.assign(i.props.style||{},{"background-color":this.headBackgroundColor})),i.props.class=c,o.props||(o.props={});let d="bk-compose-form-item-tail";o.props.class&&(d+=` ${o.props.class}`),this.tailBackgroundColor&&(o.props.style=Object.assign(o.props.style||{},{"background-color":this.tailBackgroundColor})),o.props.class=d}}return a.h("div",{class:"bk-compose-form-item"},e)}});const wC={formType:g.oneOf(["default","vertical"]).def("default"),labelWidth:g.oneOfType([Number,String]),labelPosition:g.oneOf(["left","center","right"]),model:g.object,rules:g.object};var MC=a.defineComponent({name:"Form",props:wC,emits:["submit"],setup(e,t){let n=[];const i=u=>{n.push(u)},s=u=>{n=n.reduce((f,m)=>(m!==u&&f.push(m),f),[])};return a.provide(Of,{props:e,register:i,unregister:s}),{handleSubmit:u=>{u.preventDefault(),t.emit("submit")},validate:u=>{let f={};return u?f=(typeof u=="string"?[u]:u).reduce((p,y)=>xe(Y({},p),{[y]:!0}),{}):f=n.reduce((m,p)=>p.property?xe(Y({},m),{[p.property]:!0}):m,{}),Promise.all(n.reduce((m,p)=>(f[p.property]&&m.push(p.validate()),m),[])).then(()=>Promise.resolve(e.model))},clearValidate:u=>{let f={};u?f=(typeof u=="string"?[u]:u).reduce((p,y)=>xe(Y({},p),{[y]:!0}),{}):f=n.reduce((m,p)=>xe(Y({},m),{[p.property]:!0}),{}),n.forEach(m=>f[m.property]&&m.clearValidate())}}},render(){var t,n;const e=ze({"bk-form":!0,[`bk-form--${this.formType}`]:!0});return a.createVNode("form",{class:e,onSubmit:this.handleSubmit},[(n=(t=this.$slots).default)==null?void 0:n.call(t)])}});const tu=e=>typeof e.message=="function"?e.message():e.message;var En={required:e=>typeof e=="number"||typeof e=="boolean"||Lr.isDate(e)?!0:!Lr.isEmpty(e),min:(e,t)=>e>=t,max:(e,t)=>t>=e,email:e=>/^[A-Za-z\d]+([-_.][A-Za-z\d]+)*@([A-Za-z\d]+[-.])+[A-Za-z\d]{2,4}$/.test(e),maxlength:(e,t)=>e.length<=t,pattern:(e,t)=>t.test(e)};const IC={label:g.string,labelWidth:g.oneOfType([Number,String]).def(150),labelPosition:g.oneOf(["left","center","right"]),property:g.string.def(""),required:g.bool.def(!1),email:g.bool.def(!1),max:g.number,min:g.number,maxlength:g.number,rules:g.array,autoCheck:g.bool.def(!1),description:g.string,errorDisplayType:g.oneOf(["tooltips","normal"]).def("normal")},NC=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),LC=e=>{const t=[],n=e.label||"";return e.required&&t.push({required:!0,validator:En.required,message:`${n}\u4E0D\u80FD\u4E3A\u7A7A`,trigger:"change"}),e.email&&t.push({email:!0,validator:En.email,message:`${n}\u683C\u5F0F\u4E0D\u6B63\u786E`,trigger:"change"}),Number(e.max)>-1&&t.push({validator:i=>En.max(i,e.max),message:`${n}\u6700\u5927\u503C ${e.max}`,trigger:"change"}),Number(e.min)>-1&&t.push({validator:i=>En.min(i,e.min),message:`${n}\u6700\u5C0F\u503C ${e.min}`,trigger:"change"}),Number(e.maxlength)>-1&&t.push({validator:i=>En.maxlength(i,e.maxlength),message:`${n}\u6700\u5927\u957F\u5EA6 ${e.maxlength}`,trigger:"change"}),t},kC=(e,t)=>{let n=!1,i=!1;const s=e.reduce((c,d)=>{let u;if(d.required)u=ot.exports.isFunction(d.validator)?d.validator:En.required,n=!0;else if(d.email)u=ot.exports.isFunction(d.validator)?d.validator:En.email,i=!0;else if(Number(d.max)>-1)u=f=>En.max(f,d.max);else if(Number(d.min)>-1)u=f=>En.min(f,d.max);else if(Number(d.maxlength)>-1)u=f=>En.min(f,d.max);else if(Object.prototype.toString.call(d.pattern)==="[object RegExp]")u=f=>En.pattern(f,d.pattern);else if(ot.exports.isFunction(d.validator))u=d.validator;else return c;return c.push({validator:u,message:d.message||"\u9A8C\u8BC1\u9519\u8BEF",trigger:d.trigger||"blur"}),c},[]);return[...t.reduce((c,d)=>(d.required&&n||d.email&&i||c.push(d),c),[]),...s]},TC=(e,t)=>t.reduce((n,i)=>!i.trigger||!e?(n.push(i),n):((Array.isArray(i.trigger)?i.trigger:[i.trigger]).includes(e)&&n.push(i),n),[]),k9=e=>e!==void 0;var xC=a.defineComponent({name:"FormItem",directives:{bkTooltips:Mc},props:IC,setup(e,t){const n=Q4(),i=Boolean(n),s=Dn(),o=Boolean(s),c=a.getCurrentInstance(),d=a.reactive({isError:!1,errorMessage:""}),u=a.computed(()=>i?n.props.formType==="vertical":!1),f=a.computed(()=>!!(e.label||t.slots.label)),m=a.computed(()=>{const v={width:"",paddingRight:"",textAlign:""},T=e.labelPosition||i&&n.props.labelPosition;if(T&&(v["text-align"]=T),n.props.formType==="vertical"||!e.label&&o)return v;const x=k9(e.labelWidth)?e.labelWidth:i&&n.props.labelWidth;return k9(x)&&(v.width=`${x}px`,v.paddingRight=x?"":"0px"),v}),p=a.computed(()=>({["margin-left"]:m.value.width})),y=v=>{if(!e.property||i&&!n.props.model)return Promise.resolve(!0);let T=[];i&&n.props.rules&&NC(n.props.rules,e.property)&&(T=n.props.rules[e.property]),e.rules&&(T=e.rules),T=TC(v,kC(T,LC(e))),T.length>0&&(d.isError=!1,d.errorMessage="");const x=ot.exports.get(n.props.model,e.property),k=(()=>{let I=-1;return()=>{if(I=I+1,I>=T.length)return Promise.resolve(!0);const C=T[I];return Promise.resolve().then(()=>{const M=C.validator(x);return typeof M!="boolean"&&typeof M.then=="function"?M.then(N=>{if(N===!1)return Promise.reject(tu(C))}).then(()=>k(),()=>(d.isError=!0,d.errorMessage=tu(C),Promise.reject(d.errorMessage))):M?k():(d.isError=!0,d.errorMessage=typeof M=="string"?M:tu(C),Promise.reject(d.errorMessage))})}})();return k()},b=()=>{d.isError=!1,d.errorMessage=""};return a.provide(Ef,xe(Y({},e),{validate:y,clearValidate:b})),a.onMounted(()=>{i&&n.register(c.proxy)}),a.onBeforeUnmount(()=>{i&&n.unregister(c.proxy)}),xe(Y({},a.toRefs(d)),{isShowLabel:f,labelStyles:m,contentStyles:p,isFormTypeVertical:u,validate:y,clearValidate:b})},render(){var i,s,o,c;const e=ze({"bk-form-item":!0,"is-error":this.isError,"is-required":this.required}),t=()=>this.$slots.label?this.$slots.label():this.description?a.withDirectives(a.createVNode("span",{class:{"bk-form-label-description":Boolean(this.description)}},[this.label]),[[a.resolveDirective("bk-tooltips"),this.description]]):this.label,n=()=>this.isError?this.errorDisplayType==="tooltips"?a.withDirectives(a.createVNode("div",{class:"bk-form-error-tips"},[a.createVNode(Qs,null,null)]),[[a.resolveDirective("bk-tooltips"),this.errorMessage]]):a.createVNode("div",{class:"bk-form-error"},[this.$slots.error?this.$slots.error(this.errorMessage):this.errorMessage]):null;return a.createVNode("div",{class:e},[this.isShowLabel&&a.createVNode("div",{class:"bk-form-label",style:this.labelStyles},[t(),this.isFormTypeVertical&&((s=(i=this.$slots).labelAppend)==null?void 0:s.call(i))]),a.createVNode("div",{class:"bk-form-content",style:this.contentStyles},[(c=(o=this.$slots).default)==null?void 0:c.call(o),n()])])}});const T9=Yt(MC,{FormItem:xC,ComposeFormItem:vC}),SC={span:g.number.def(1),offset:g.number.def(0),pull:g.number.def(0),push:g.number.def(0)};var DC=a.defineComponent({name:"Col",props:SC,emits:[],setup(e,t){const{col:n,gutter:i,flex:s}=a.inject("containerProps"),{span:o,offset:c,pull:d,push:u}=e,f=a.computed(()=>o||n);a.provide("containerProps",{col:f.value,gutter:i,flex:s});const m=function(y){return`${Number((y*100).toFixed(3))}%`},p=a.computed(()=>({width:m(f.value/n),"padding-right":`${i/2}px`,"padding-left":`${i/2}px`,"margin-left":c?m(c/n):null,right:d?m(d/n):null,left:u?m(u/n):null}));return()=>{var y,b;return a.createVNode("div",{class:"bk-grid-col",style:p.value},[(b=(y=t.slots).default)==null?void 0:b.call(y)])}}});const jC={col:g.number.def(24),gutter:g.number.def(20),margin:g.number.def(20),flex:g.bool.def(!1),extCls:g.string};var zC=a.defineComponent({name:"Container",props:jC,emits:[],setup(e,t){const{col:n,gutter:i,flex:s,extCls:o}=e;a.provide("containerProps",{col:n,gutter:i,flex:s});const c=a.computed(()=>o?`bk-grid-container ${o}`:"bk-grid-container"),d=a.computed(()=>{const{margin:u}=e;return{"padding-right":`${u}px`,"padding-left":`${u}px`}});return()=>{var u,f;return a.createVNode("div",{class:c.value,style:d.value},[(f=(u=t.slots).default)==null?void 0:f.call(u)])}}}),OC=a.defineComponent({name:"Row",emits:[],setup(e,t){const{col:n,gutter:i,flex:s}=a.inject("containerProps");a.provide("containerProps",{col:n,gutter:i,flex:s});const o=a.computed(()=>xe(Y({},s?{display:["-webkit-box","-ms-flexbox","flex"]}:{}),{"margin-right":`-${i/2}px`,"margin-left":`-${i/2}px`}));return()=>{var c,d;return a.createVNode("div",{class:"bk-grid-row",style:o.value},[(d=(c=t.slots).default)==null?void 0:d.call(c)])}}});const Cl=Yt(zC,{Row:OC,Col:DC}),EC=["auto","auto-start","auto-end","top","right","bottom","left","top-start","top-end","bottom-start","bottom-end","right-start","right-end","left-start","left-end"],PC=["hover","click","manual"];var AC=a.defineComponent({name:"Dropdown",props:{isShow:g.bool.def(!1),placement:g.commonType(EC,"placement").def("bottom"),trigger:g.commonType(PC,"trigger").def("hover"),disabled:g.bool.def(!1),popoverOptions:g.object.def({}),extCls:g.string},emits:["showChange","show","hide"],setup(e,{emit:t}){const n=o=>{t("showChange",o)};return{afterShow:()=>{t("show"),n(!0)},afterHidden:()=>{t("hide"),n(!1)}}},render(){const e=ze({"bk-dropdown":!0},this.$props.extCls),t={theme:"light bk-dropdown-popover",trigger:this.trigger,arrow:!1,placement:this.placement,isShow:this.isShow,disabled:this.disabled},n=ot.exports.merge(t,this.popoverOptions);return a.createVNode("div",{class:e},[a.createVNode(pn,a.mergeProps(n,{onAfterShow:this.afterShow,onAfterHidden:this.afterHidden}),{default:()=>{var i,s;return a.createVNode("div",{class:"bk-dropdown-reference"},[a.createTextVNode(" "),(s=(i=this.$slots).default)==null?void 0:s.call(i),a.createTextVNode(" ")])},content:()=>{var i,s;return a.createVNode("div",{class:"bk-dropdown-content"},[a.createTextVNode(" "),(s=(i=this.$slots).content)==null?void 0:s.call(i),a.createTextVNode(" ")])}})])}}),VC=a.defineComponent({name:"DropdownItem",props:{extCls:g.string},emits:["click"],setup(e,{emit:t}){const n=s=>{s.stopPropagation(),t("click",s)};return{wrapperCLasses:a.computed(()=>["bk-dropdown-item",e.extCls]),handleClick:n}},render(){var e,t;return a.createVNode("li",{class:this.wrapperCLasses,onClick:this.handleClick},[(t=(e=this.$slots).default)==null?void 0:t.call(e)])}}),JC=a.defineComponent({name:"DropdownMenu",props:{extCls:g.string},setup(e){return{wrapperCLasses:a.computed(()=>["bk-dropdown-menu",e.extCls])}},render(){var e,t;return a.createVNode("ul",{class:this.wrapperCLasses},[(t=(e=this.$slots).default)==null?void 0:t.call(e)])}});const x9=Yt(AC,{DropdownMenu:JC,DropdownItem:VC});var nu=a.defineComponent({name:"CascaderPanel",props:{width:g.oneOfType([g.number,g.string]).def("auto"),height:g.oneOfType([g.number,g.string]).def(216),store:g.object.def({}),separator:g.string.def(""),suggestions:g.arrayOf(Df()),isFiltering:g.bool.def(!1),searchKey:g.oneOfType([g.string,g.number]).def(""),modelValue:g.arrayOf(g.oneOfType([Ro(),String,Number]))},emits:["update:modelValue"],setup(e,{emit:t}){const{store:n}=e,i=a.reactive({list:[e.store.getNodes()]}),s=a.ref([]),o=a.ref([]),c=I=>typeof I=="number"?`${I}px`:I,d=c(e.height),u=c(e.width),f=I=>{I.length===0&&(i.list=i.list.slice(0,1),s.value=[]),I.forEach(C=>{const M=n.getNodeById(C);p(M)}),o.value=I},m=I=>{I.isDisabled||(I.config.multiple?o.value=n.getCheckedNodes().map(C=>C.path):o.value=I.path,t("update:modelValue",o.value))},p=I=>{var C;if(!(!I||(I==null?void 0:I.isDisabled))){if(i.list=i.list.slice(0,I.level),s.value=s.value.slice(0,I.level-1),(C=I.children)!=null&&C.length){i.list.push(I.children),s.value.push(I);return}if(n.config.isRemote&&!I.isLeaf){I.loading=!0;const M=N=>{n.appendNodes(N,I||null),i.list.push(I.children),s.value.push(I),I.loading=!1};n.config.remoteMethod(I,M)}}},y=I=>{const{trigger:C,checkAnyLevel:M,multiple:N}=I.config;return{onClick:j=>{(!I.isLeaf||N)&&j.stopPropagation(),C==="click"&&p(I),M&&!N&&m(I),I.isLeaf&&!N&&m(I)},onMouseenter:()=>{C==="hover"&&p(I)}}},b=I=>{const{multiple:C}=I.config;return{onClick:N=>{if(C){N.stopPropagation(),x(I,!I.checked);return}p(I),I.isLeaf&&!C&&m(I)}}},v=I=>(s.value[I.level-1]||{}).id===I.id,T=(I,C)=>{const{multiple:M}=I.config;return M?C.some(N=>xr(N,I.path)):xr(C,I.path)},x=(I,C)=>{I.setNodeCheck(C||!1),m(I)},k=I=>I.loading?a.createVNode(zr,{class:"icon-spinner"},null):a.createVNode(jn,{class:"icon-angle-right"},null);return a.watch(()=>e.modelValue,I=>{f(I)},{immediate:!0}),a.watch(()=>e.store,I=>{i.list=[I.getNodes()]}),{menus:i,activePath:s,nodeExpandHandler:p,isNodeInPath:v,nodeEvent:y,isCheckedNode:T,checkValue:o,checkNode:x,iconRender:k,panelWidth:u,panelHeight:d,searchPanelEvents:b}},render(){const e=parseInt(this.panelWidth,10)>200?this.panelWidth:`${200}px`,t=()=>this.suggestions.length?a.createVNode("ul",{class:"bk-cascader-panel bk-scroll-y",style:{height:this.panelHeight,width:this.panelWidth}},[this.suggestions.map(n=>a.createVNode("li",a.mergeProps({class:["bk-cascader-node",{"is-selected":this.isNodeInPath(n)},{"is-disabled":n.isDisabled},{"is-checked":this.isCheckedNode(n,this.checkValue)}]},this.searchPanelEvents(n)),[n.pathNames.join(this.separator)]))]):a.createVNode("div",{class:"bk-cascader-search-empty",style:{width:e}},[a.createVNode("span",null,[a.createTextVNode("\u6682\u65E0\u641C\u7D22\u7ED3\u679C")])]);return a.createVNode("div",{class:"bk-cascader-panel-wrapper"},[this.isFiltering?t():this.menus.list.map(n=>a.createVNode("ul",{class:"bk-cascader-panel bk-scroll-y",style:{height:this.panelHeight,width:this.panelWidth}},[n.map(i=>{var s,o;return a.createVNode("li",a.mergeProps({class:["bk-cascader-node",{"is-selected":this.isNodeInPath(i)},{"is-disabled":i.isDisabled},{"is-checked":!i.config.multiple&&this.isCheckedNode(i,this.checkValue)}]},Object.assign(this.nodeEvent(i),i.config.multiple?{}:{})),[i.config.multiple&&a.createVNode(zi,{disabled:i.isDisabled,modelValue:i.checked,"onUpdate:modelValue":c=>i.checked=c,indeterminate:i.isIndeterminate,onChange:c=>this.checkNode(i,c)},null),(o=(s=this.$slots).default)==null?void 0:o.call(s,{node:i,data:i.data}),i.isLeaf?"":this.iconRender(i)])})]))])}});function S9(e){return e.data.disabled?!0:e.level!==1?S9(e.parent):e.data.disabled}class vl{constructor(t,n,i){this.data=t,this.config=n,this.parent=i||null,this.leaf=t.leaf,this.level=this.parent?this.parent.level+1:1,this.initState()}initState(){const{idKey:t,nameKey:n,childrenKey:i}=this.config;this.id=this.data[t],this.name=this.data[n],this.loading=!1,this.loaded=!1,this.checked=!1;const s=this.data[i];this.children=(s||[]).map(o=>new vl(o,this.config,this)),this.pathNodes=this.calculateNodesPath(),this.path=this.pathNodes.map(o=>o.id),this.pathNames=this.pathNodes.map(o=>o.name)}get isLeaf(){var t;return this.config.isRemote?this.leaf||(this.loaded?!this.children.length:!1):!(Array.isArray(this.children)&&((t=this.children)==null?void 0:t.length)!==0)}get isDisabled(){return S9(this)}broadcast(t,n){const i=`onParent${kr(t)}`;this.children.forEach(s=>{var o;s&&(s.broadcast(t,n),(o=s[i])==null||o.call(s,n))})}emit(t){var s;const{parent:n}=this,i=`onChild${kr(t)}`;n&&((s=n[i])==null||s.call(n),n.emit(t))}onParentCheck(t){this.isDisabled||this.setCheckState(t)}onChildCheck(){const{children:t}=this,n=t.filter(s=>!s.isDisabled),i=n.length?n.every(s=>s.checked):!1;this.setCheckState(i)}setCheckState(t){const n=this.children.length,i=this.children.reduce((s,o)=>{const c=o.isIndeterminate?.5:0,d=o.checked?1:c;return s+d},0);this.checked=t,this.isIndeterminate=i!==n&&i>0}setNodeCheck(t){if(this.checked!==t){if(this.config.checkAnyLevel){this.checked=t;return}this.broadcast("check",t),this.setCheckState(t),this.emit("check")}}calculateNodesPath(){const t=[this];let{parent:n}=this;for(;n;)t.unshift(n),n=n.parent;return t}}const D9=(e,t)=>e.reduce((n,i)=>(i.isLeaf?n.push(i):(!t&&n.push(i),n=n.concat(D9(i.children,t))),n),[]);class j9{constructor(t){const{list:n}=t;this.data=n,this.config=t,this.nodes=this.data.map(i=>new vl(i,this.config))}getNodes(){return this.nodes}clearChecked(){this.getFlattedNodes().forEach(t=>{t.checked=!1,t.isIndeterminate=!1})}removeTag(t){this.getFlattedNodes().find(n=>xr(t,n.path)?(n.checked=!1,!0):!1)}getFlattedNodes(t=!1){return D9(this.nodes,t)}getCheckedNodes(){return this.getFlattedNodes().filter(t=>t.checked)}getNodeByValue(t){var i;return(i=this.getFlattedNodes().filter(s=>xr(s.path,t))[0])!=null?i:null}getNodeById(t){return this.getFlattedNodes().find(n=>n.id===t)}appendNode(t,n){const i=new vl(t,this.config,n);(n?n.children:this.nodes).push(i)}appendNodes(t,n){t.forEach(i=>this.appendNode(i,n))}}var QC=a.defineComponent({name:"Cascader",directives:{clickoutside:zn},components:{CascaderPanel:nu,BkPopover:pn},props:{modelValue:g.arrayOf(g.oneOfType([Ro(),String,Number])),list:g.array.def([]),placeholder:g.string.def("\u8BF7\u9009\u62E9"),filterable:g.bool.def(!1),multiple:g.bool.def(!1),disabled:g.bool.def(!1),clearable:g.bool.def(!0),trigger:g.string.def("click"),checkAnyLevel:g.bool.def(!1),isRemote:g.bool.def(!1),remoteMethod:g.func,showCompleteName:g.bool.def(!0),idKey:g.string.def("id"),nameKey:g.string.def("name"),childrenKey:g.string.def("children"),separator:g.string.def("/"),limitOneLine:g.bool.def(!1),extCls:g.string.def(""),scrollHeight:g.oneOfType([g.number,g.string]).def(216),scrollWidth:g.oneOfType([g.number,g.string]).def("auto")},emits:["update:modelValue","change","clear","toggle"],setup(e,{emit:t}){const{separator:n,multiple:i}=e,{isHover:s,setHover:o,cancelHover:c}=U0(),d=a.ref(new j9(e)),u=a.ref(!1),f=a.ref(""),m=a.ref([]),{modelValue:p}=a.toRefs(e),y=a.ref(),b=a.ref(""),v=a.ref([]),T=a.ref(!1),x=a.computed({get:()=>p.value,set:P=>{t("update:modelValue",P)}}),k=a.ref(null),I=P=>e.showCompleteName?P.pathNames.join(n):P.pathNames[P.pathNames.length-1],C=()=>{b.value=f.value},M=P=>{var Z;if(i){m.value=d.value.getCheckedNodes().map(B=>({text:I(B),key:B.id}));return}if(!e.checkAnyLevel&&((Z=k==null?void 0:k.value)==null||Z.hide()),P.length===0)f.value="";else{const B=d.value.getNodeByValue(P);if(!B)return;f.value=I(B)}C()},N=P=>{P.stopPropagation(),d.value.clearChecked(),b.value="",M([]),t("update:modelValue",[]),t("clear",JSON.parse(JSON.stringify(e.modelValue)))},L=(P,Z,B)=>{B.stopPropagation();const ne=JSON.parse(JSON.stringify(P)),ue=ne.splice(Z,1)[0];d.value.removeTag(ue),M(ne),t("update:modelValue",d.value.getCheckedNodes().map(Ce=>Ce.path))},j=(P,Z)=>{M(P),t("update:modelValue",P),Z!==void 0&&t("change",P)},z=()=>{d.value=new j9(e),M(e.modelValue)},O=P=>{t("toggle",P.isShow),P.isShow||(T.value=!1)},R=js(200,P=>{const Z=P.target;if(b.value=Z.value,b.value===""){T.value=!1;return}T.value=!0;const B=d.value.getFlattedNodes().filter(ne=>(e.checkAnyLevel||ne.isLeaf)&&ne.pathNames.join(e.separator).includes(b.value));v.value=B,!(k!=null&&k.value.isShow)&&(k==null||k.value.show())});return a.watch(()=>e.modelValue,j,{immediate:!0}),a.watch(()=>e.list,z,{deep:!0,immediate:!0}),{store:d,updateValue:M,panelShow:u,selectedText:f,checkedValue:x,handleClear:N,isHover:s,setHover:o,popover:k,cancelHover:c,selectedTags:m,removeTag:L,cascaderPanel:y,popoverChangeEmitter:O,searchKey:b,suggestions:v,isFiltering:T,searchInputHandler:R}},render(){const e=()=>this.clearable&&this.isHover?a.createVNode(Ut,{class:"bk-icon-clear-icon",onClick:this.handleClear},null):a.createVNode(Wa,{class:"bk-icon-angle-up"},null),t=()=>this.limitOneLine?a.createVNode("span",null,[this.selectedText]):a.createVNode("div",{class:"cascader-tag-list"},[this.selectedTags.map((n,i)=>a.createVNode("span",{class:"cascader-tag-item"},[a.createVNode("span",{class:"cascader-tag-item-name"},[n.text]),a.createVNode(Bn,{class:"bk-icon-clear-icon",onClick:s=>this.removeTag(this.modelValue,i,s)},null)]))]);return a.createVNode("div",{class:["bk-cascader","bk-cascader-wrapper",this.extCls,{"bk-is-show-panel":this.panelShow,"is-unselected":this.modelValue.length===0,"is-hover":this.isHover,"is-filterable":this.filterable}],tabindex:"0","data-placeholder":this.placeholder,onMouseenter:this.setHover,onMouseleave:this.cancelHover},[e(),a.createVNode(pn,{placement:"bottom-start",theme:"light bk-cascader-popover",trigger:"click",arrow:!1,class:"bk-cascader-popover-wrapper",ref:"popover",onAfterHidden:this.popoverChangeEmitter,onAfterShow:this.popoverChangeEmitter,boundary:"body"},{default:()=>a.createVNode("div",{class:"bk-cascader-name"},[this.multiple&&this.selectedTags.length>0&&t(),this.filterable?a.createVNode("input",{class:"bk-cascader-search-input",type:"text",onInput:this.searchInputHandler,placeholder:this.placeholder,value:this.searchKey},null):a.createVNode("span",null,[this.selectedText])]),content:()=>a.createVNode("div",{class:"bk-cascader-popover"},[a.createVNode(nu,{store:this.store,ref:"cascaderPanel",width:this.scrollWidth,height:this.scrollHeight,"search-key":this.searchKey,separator:this.separator,"is-filtering":this.isFiltering,suggestions:this.suggestions,modelValue:this.checkedValue,"onUpdate:modelValue":n=>this.checkedValue=n},{default:n=>this.$slots.default?this.$slots.default(n):a.createVNode("span",{class:"bk-cascader-node-name"},[n.node.name])})])})])}});const z9=Yt(QC,{CascaderPanel:nu});var O9=a.defineComponent({name:"SliderButton",props:{modelValue:{type:Number,default:0},params:{type:Object,default:()=>({})}},emits:["emitChange","resetSize","update:modelValue"],setup(e,{emit:t}){const n=a.ref(!1),i=a.ref(!1),s=a.ref(0),o=a.ref(0),c=a.ref(0),d=a.ref(null),u=a.ref(e.modelValue),f=a.ref(0),m=a.ref(0),p=a.ref(!1),y=a.ref(null),b=a.computed(()=>{var O,R;let j="";if((O=e.params.customContent)!=null&&O[e.modelValue]){const P=e.params.customContent[e.modelValue];j=P.tip||P.label||""}const z=e.params.vertical?"right":"top";return(R=e.params)!=null&&R.showTip?{content:e.params.formatterTipLabel(`${j||(e==null?void 0:e.modelValue)||"0"}`),placement:z}:{content:"",placement:z}}),v=a.computed(()=>`${(e.modelValue-e.params.minValue)/(e.params.maxValue-e.params.minValue)*100}%`),T=a.computed(()=>e.params.vertical?{bottom:v.value}:{left:v.value}),x=a.computed(()=>e.params.formatterButtonLabel(e.modelValue)),k=j=>{e.params.disable||(j.preventDefault(),I(j),Yr(window,"mousemove",C),Yr(window,"touchmove",C),Yr(window,"mouseup",M),Yr(window,"touchend",M))},I=j=>{n.value=!0,i.value=!0,e.params.vertical?s.value=j.clientY:o.value=j.clientX,c.value=parseFloat(v.value),d.value=c.value},C=j=>{if(n.value){i.value=!1,t("resetSize");let z=0;e.params.vertical?(f.value=j.clientY,z=(s.value-f.value)/e.params.sliderSize*100):(m.value=j.clientX,z=(m.value-o.value)/e.params.sliderSize*100),d.value=c.value+z,N(d.value)}},M=()=>{p.value=!1,n.value&&(setTimeout(()=>{n.value=!1,i.value||(N(d.value),t("emitChange"))},0),wl(window,"mousemove",C),wl(window,"touchmove",C),wl(window,"mouseup",M),wl(window,"touchend",M))},N=j=>{if(j===null||isNaN(j))return;j<0?d.value=0:j>100&&(d.value=100);const z=100/((e.params.maxValue-e.params.minValue)/e.params.step);let R=Math.round(j/z)*z*(e.params.maxValue-e.params.minValue)*.01+e.params.minValue;R=parseFloat(R.toFixed(e.params.precision)),t("update:modelValue",R),!n.value&&e.modelValue!==u.value&&(u.value=e.modelValue)};return{renderDom:()=>a.createVNode("div",{class:["bk-slider-button",e.params.vertical?"vertical":"horizontal",{grabbing:n.value}],ref:y,tabindex:"0",style:T.value,onClick:j=>j.stopPropagation(),onMousedown:k},[Boolean(b.value.content)?a.createVNode(pn,{content:b.value.content,theme:"dark",placement:b.value.placement,boundary:document.body},{default:()=>[a.createVNode("div",{class:["slider-button",{"slider-button-disable":e.params.disable}]},null)]}):a.createVNode("div",{class:["slider-button",{"slider-button-disable":e.params.disable}]},null),e.params.showButtonLabel&&!e.params.showIntervalLabel?a.createVNode("div",{class:["slider-button-label",e.params.vertical?"vertical":"horizontal"]},[x.value]):void 0]),setPosition:N,tip:b}},render(){return this.renderDom()}});const Yr=(e,t,n)=>{e&&t&&n&&e.addEventListener(t,n,!1)},wl=(e,t,n)=>{e&&t&&n&&e.removeEventListener(t,n,!1)};var RC=a.defineComponent({name:"Slider",props:{modelValue:g.oneOfType([g.array,g.number]),extCls:{type:String,default:""},vertical:{type:Boolean,default:!1},height:{type:String,default:"200px"},disable:{type:Boolean,default:!1},showTip:{type:Boolean,default:!1},maxValue:{type:[Number],default:100},minValue:{type:[Number],default:0},step:{type:[Number],default:1},range:{type:Boolean,default:!1},showInterval:{type:Boolean,default:!1},showIntervalLabel:{type:Boolean,default:!1},showButtonLabel:{type:Boolean,default:!1},showBetweenLabel:{type:Boolean,default:!1},showInput:{type:Boolean,default:!1},customContent:{type:Object,default:null},formatterLabel:{type:Function,default:e=>e},formatterButtonLabel:{type:Function,default:e=>e},formatterTipLabel:{type:Function,default:e=>e}},emits:["update:modelValue","change"],setup(e,{slots:t,emit:n}){const i=a.ref(1),s=a.ref(null),o=a.ref(null),c=a.ref(null),d=a.ref(0),u=a.ref(0),f=a.ref(null),m=a.ref(null),p=a.ref(null),y=a.ref(null),b=a.computed(()=>{const $=[e.minValue,e.maxValue,e.step].map(A=>{const H=`${A}`.split(".")[1];return H?H.length:0});return Math.max.apply(null,$)}),v=a.computed(()=>Math.min(s.value,o.value)),T=a.computed(()=>Math.max(s.value,o.value)),x=a.computed(()=>e.range?`${100*(T.value-v.value)/(e.maxValue-e.minValue)}%`:`${100*(s.value-e.minValue)/(e.maxValue-e.minValue)}%`),k=a.computed(()=>e.range?`${100*(v.value-e.minValue)/(e.maxValue-e.minValue)}%`:"0%"),I=a.computed(()=>e.vertical?{height:x.value,bottom:k.value}:{width:x.value,left:k.value}),C=a.computed(()=>{if(!e.showInterval||e.minValue>e.maxValue)return[];if(e.step===0)return console.warn("WARNNING:step should not be 0"),[];const $=(e.maxValue-e.minValue)/e.step,A=100*e.step/(e.maxValue-e.minValue),H=[];for(let F=1;F<$;F++)H.push(F*A);return e.range?H.filter(F=>F<100*(v.value-e.minValue)/(e.maxValue-e.minValue)||F>100*(T.value-e.minValue)/(e.maxValue-e.minValue)):H.filter(F=>F>100*(s.value-e.minValue)/(e.maxValue-e.minValue))}),M=a.computed(()=>e.vertical?{height:e.height,width:"4px"}:{}),N=a.computed(()=>{if(!e.showIntervalLabel)return[];if(e.step===0)return console.warn("WARNNING:step should not be 0"),[];const $=100*e.step/(e.maxValue-e.minValue),A=[];for(let H=e.minValue,F=0;H<=e.maxValue;H+=e.step,F++){const ee={stepWidth:F*$,stepLabel:e.formatterLabel(H)};A.push(ee)}return A}),L=a.computed(()=>Array.isArray(e.modelValue)),j=a.computed(()=>e.customContent?Object.keys(e.customContent).sort(($,A)=>Number($)-Number(A)).filter($=>Number($)>=e.minValue&&Number($)<=e.maxValue).map($=>{const{tip:A}=e.customContent[$],{label:H}=e.customContent[$];return{tip:A||H||"",label:H||"",percent:(Number($)-e.minValue)/(e.maxValue-e.minValue)*100}}):[]),z=a.computed(()=>({vertical:e.vertical,showTip:e.showTip,disable:e.disable,maxValue:e.maxValue,minValue:e.minValue,step:e.step,precision:b.value,showButtonLabel:e.showButtonLabel,formatterButtonLabel:e.formatterButtonLabel,showIntervalLabel:e.showIntervalLabel,customContent:e.customContent,sliderSize:i.value,formatterTipLabel:e.formatterTipLabel}));a.watch(()=>e.modelValue,()=>{Z()}),a.watch(()=>s.value,$=>{e.range?n("update:modelValue",[v.value,T.value]):n("update:modelValue",$),d.value=$}),a.watch(()=>o.value,$=>{n("update:modelValue",[v.value,T.value]),u.value=$}),a.onMounted(()=>{e.range?(Array.isArray(e.modelValue)?(s.value=Math.max(e.minValue,Number(e.modelValue[0])),o.value=Math.min(e.maxValue,Number(e.modelValue[1]))):(s.value=e.minValue,o.value=e.maxValue),c.value=[s.value,o.value]):(typeof e.modelValue!="number"||isNaN(e.modelValue)?s.value=e.minValue:s.value=Math.min(e.maxValue,Math.max(e.minValue,e.modelValue)),c.value=s.value),O(),Yr(window,"resize",O())});const O=()=>{f.value&&(i.value=f.value[`client${e.vertical?"Height":"Width"}`])},R=$=>{var A,H;if($.stopPropagation(),!e.disable){if(O(),e.vertical){const F=(A=f.value)==null?void 0:A.getBoundingClientRect().bottom;ue((F-$.clientY)/i.value*100)}else{const F=(H=f.value)==null?void 0:H.getBoundingClientRect().left;ue(($.clientX-F)/i.value*100)}B()}},P=()=>e.range?![v.value,T.value].every(($,A)=>$===c.value[A]):e.modelValue!==c.value,Z=()=>{if(e.minValue>e.maxValue){console.error("min should not be greater than max.");return}const $=e.modelValue;e.range&&Array.isArray($)?$[1]<e.minValue?n("update:modelValue",[e.minValue,e.minValue]):$[0]>e.maxValue?n("update:modelValue",[e.maxValue,e.maxValue]):$[0]<e.minValue?n("update:modelValue",[e.minValue,$[1]]):$[1]>e.maxValue?n("update:modelValue",[$[0],e.maxValue]):(s.value=Number($[0]),o.value=Number($[1]),P()&&(c.value=$.slice())):!e.range&&typeof $=="number"&&!isNaN($)&&($<e.minValue?n("update:modelValue",e.minValue):$>e.maxValue?n("update:modelValue",e.maxValue):(s.value=$,P()&&(c.value=$)))},B=async()=>{await a.nextTick(),n("change",e.range?[v.value,T.value]:e.modelValue)},ne=$=>e.vertical?{bottom:`${$}%`}:{left:`${$}%`},ue=$=>{if(!e.range){m.value.setPosition($);return}const A=e.minValue+$*(e.maxValue-e.minValue)/100;Math.abs(v.value-A)<Math.abs(T.value-A)?y.value=s.value<o.value?m.value:p.value:y.value=s.value>o.value?m.value:p.value,y.value.setPosition($)},Ce=$=>{if($==="")return;const A=parseFloat($);A<e.minValue?(d.value=e.minValue,s.value=e.minValue):A>e.maxValue?(d.value=e.maxValue,s.value=e.maxValue):s.value=A},Ne=$=>{if($===""||typeof $=="number")return;const A=parseFloat($);A<e.minValue?(u.value=e.minValue,o.value=e.minValue):A>e.maxValue?(u.value=e.maxValue,o.value=e.maxValue):o.value=A},fe=$=>{let A=0;return $==="start"?A=e.vertical?e.maxValue:e.minValue:A=e.vertical?e.minValue:e.maxValue,e.showButtonLabel&&[s.value,o.value].includes(A)?"0":"1"};return{renderDom:()=>{var $,A;return a.createVNode("div",{class:["bk-slider",e.extCls]},[($=t.start)==null?void 0:$.call(t),a.createVNode("div",{class:"bk-slider-runway",ref:f,style:M.value,onClick:R},[a.createVNode("div",{class:["bk-slider-bar",e.vertical?"vertical":"horizontal",{disable:e.disable}],style:I.value},null),e.showInterval?C.value.map((H,F)=>a.createVNode("div",{key:F,class:["bk-slider-interval",{vertical:e.vertical}],style:ne(H)},null)):void 0,e.customContent?j.value.map((H,F)=>a.createVNode("div",{key:F,class:["bk-slider-interval",{vertical:e.vertical}],style:ne(H.percent)},null)):void 0,e.showBetweenLabel||e.showIntervalLabel||e.customContent?a.createVNode("div",{class:["bk-slider-labels",e.vertical?"vertical":"horizontal"]},[function(){if(e.showBetweenLabel)return[a.createVNode("div",{class:"label-start",style:[{opacity:fe("start")}]},[e.formatterLabel(e.minValue)]),a.createVNode("div",{class:"label-end",style:[{opacity:fe("end")}]},[e.formatterLabel(e.maxValue)])];if(e.showIntervalLabel)return N.value.map((H,F)=>a.createVNode("div",{class:["bk-slider-label",e.vertical?"vertical":"horizontal"],key:F,style:ne(H.stepWidth)},[H.stepLabel]));if(e.customContent)return j.value.map((H,F)=>a.createVNode("div",{class:["bk-slider-label",e.vertical?"vertical":"horizontal"],key:F,style:ne(H.percent)},[H.label]))}()]):void 0,a.createVNode(O9,{modelValue:s.value,"onUpdate:modelValue":H=>s.value=H,ref:m,params:z.value,onEmitChange:B,onResetSize:O},null),e.range?a.createVNode(O9,{modelValue:o.value,"onUpdate:modelValue":H=>o.value=H,ref:p,params:z.value,onEmitChange:B,onResetSize:O},null):void 0]),e.showInput&&!e.vertical?a.createVNode("div",{class:"bk-slider-input"},[a.createVNode("div",{class:"input-item"},[a.createVNode(ra,{type:"number",modelValue:d.value,max:e.maxValue,min:e.minValue,onChange:Ce},null)]),L.value&&o.value?[a.createVNode("div",{class:"input-center"},[a.createTextVNode("\uFF5E")]),a.createVNode("div",{class:"input-item"},[a.createVNode(ra,{type:"number",modelValue:u.value,max:e.maxValue,min:e.minValue,onChange:Ne},null)])]:void 0]):void 0,(A=t.end)==null?void 0:A.call(t)])}}},render(){return this.renderDom()}});const E9=He(RC);var _C=a.defineComponent({name:"ResizeLayout",props:{placement:g.placement().def("left"),min:g.number.def(3),max:g.number.def(1/0),triggerWidth:g.number.def(5),triggerOffset:g.number.def(3),initialDivide:g.oneOfType([String,Number]).def("20%"),immediate:g.bool,disabled:g.bool,collapsible:g.bool,autoMinimize:g.oneOfType([Boolean,Number]).def(!1),border:g.bool.def(!0)},emits:["before-resize","resizing","after-resize","collapse-change"],setup(e,{emit:t}){const{placement:n,initialDivide:i,triggerOffset:s,triggerWidth:o,max:c,min:d,immediate:u,autoMinimize:f}=a.toRefs(e),m=a.ref(!1),p=a.ref(!0),y=a.ref(!1),b=a.ref(null),v=a.ref({}),T=a.ref(null),x=a.ref(null),k=a.ref(null),I=a.ref(null),C=a.computed(()=>["left","right"].includes(n.value)),M=a.computed(()=>C.value?"width":"height"),N=a.computed(()=>{let fe=i.value;return typeof fe=="number"&&(fe=`${fe}px`),{[M.value]:fe}}),L=a.computed(()=>({[`margin-${n.value}`]:`${s.value-o.value}px`,[M.value]:`${o.value}px`})),j=a.computed(()=>f.value?typeof f.value=="boolean"?50:f.value:0),z=()=>{const fe=T.value.getBoundingClientRect();b.value=C.value?fe.width:fe.height},O=new ResizeObserver(z),R=()=>{switch(x.value.style.visibility="visible",n.value){case"left":x.value.style.inset=`0 auto auto ${v.value.aside.width}px`;break;case"right":x.value.style.inset=`0 ${v.value.aside.width}px auto auto`;break;case"top":x.value.style.inset=`${v.value.aside.height}px auto auto 0`;break;case"bottom":x.value.style.inset=`auto auto ${v.value.aside.height}px 0`;break}},P=()=>{k.value.style.display="block",k.value.style.cursor=C.value?"col-resize":"row-resize"},Z=fe=>Math.min(c.value,Math.max(d.value,fe),b.value-o.value),B=fe=>{t("before-resize",fe);const he=I.value.getBoundingClientRect();v.value=Object.freeze({mouse:{clientX:fe.clientX,clientY:fe.clientY},aside:{width:he.width,height:he.height}}),P(),u.value||R(),document.onselectstart=()=>!1,document.ondragstart=()=>!1;const $=F=>{t("resizing",F)},A=F=>{let ee;switch(n.value){case"top":ee=F.clientY-v.value.mouse.clientY;break;case"right":ee=v.value.mouse.clientX-F.clientX;break;case"bottom":ee=v.value.mouse.clientY-F.clientY;break;case"left":ee=F.clientX-v.value.mouse.clientX}const ie=v.value.aside[M.value]+ee,ae=Z(ie)+s.value,me=`${ae}px`;u.value?I.value.style[M.value]=me:x.value.style[n.value]=me,$(ae)},H=()=>{if(x.value.style.visibility="hidden",k.value.style.display="none",document.removeEventListener("mousemove",A),document.removeEventListener("mouseup",H),document.onselectstart=null,document.ondragstart=null,a.nextTick(()=>{ne(),t("after-resize",parseFloat(x.value.style[n.value]))}),u.value)return!1;I.value.style[M.value]=x.value.style[n.value]};document.addEventListener("mousemove",A),document.addEventListener("mouseup",H)},ne=()=>{if(!f.value)return!1;const fe=I.value.getBoundingClientRect();if(y.value=m.value=fe[M.value]<=j.value,!y.value)return p.value=!0,!1;Ce(),a.nextTick(()=>{I.value.setAttribute(`data-${M.value}`,N.value[M.value])})},ue=fe=>{m.value=typeof fe=="boolean"?fe:!m.value,Ce(),t("collapse-change",m.value)},Ce=()=>{const fe=I.value.getBoundingClientRect();Ne(!m.value),m.value?(I.value.setAttribute(`data-${M.value}`,`${fe[M.value]}px`),I.value.style[M.value]="5px"):(p.value=!0,I.value.style[M.value]=I.value.getAttribute(`data-${M.value}`))},Ne=fe=>{const he=()=>{p.value=fe,I.value.style.transition="",I.value.removeEventListener("transitionend",he)};I.value.addEventListener("transitionend",he),I.value.style.transition=`${M.value} cubic-bezier(0.4, 0, 0.2, 1) .3s`};return a.onMounted(()=>{O.observe(T.value)}),a.onBeforeUnmount(()=>{O.unobserve(T.value)}),{collapsed:m,asideContentVisible:p,minimized:y,limitMax:b,state:v,vertical:C,cssPropKey:M,bkResizeLayoutRef:T,resizeProxyRef:x,resizeMaskRef:k,asideRef:I,triggerStyle:L,asideStyle:N,handleMousedown:B,setCollapse:ue}},render(){var t,n,i,s,o,c;const e=["bk-resize-layout",`bk-resize-layout-${this.placement}`,{"bk-resize-layout-collapsed":this.collapsed,"bk-resize-layout-border":this.border}];return a.createVNode("div",{ref:"bkResizeLayoutRef",class:e},[a.createVNode("aside",{class:"bk-resize-layout-aside",ref:"asideRef",style:this.asideStyle},[a.withDirectives(a.createVNode("div",{class:"bk-resize-layout-aside-content"},[(n=(t=this.$slots).aside)==null?void 0:n.call(t)]),[[a.vShow,this.asideContentVisible]]),a.withDirectives(a.createVNode("i",{class:"bk-resize-trigger",style:this.triggerStyle,onMousedown:a.withModifiers(this.handleMousedown,["left"])},null),[[a.vShow,!this.disabled&&(!this.collapsed||this.autoMinimize)]]),a.withDirectives(a.createVNode("i",{class:["bk-resize-proxy",this.placement],ref:"resizeProxyRef"},null),[[a.vShow,!this.collapsed||this.autoMinimize]]),this.collapsible&&(((s=(i=this.$slots)["collapse-trigger"])==null?void 0:s.call(i))||(this.collapsed?a.createVNode(jn,{class:"bk-resize-collapse",onClick:this.setCollapse},null):a.createVNode(Si,{class:"bk-resize-collapse",onClick:this.setCollapse},null)))]),a.createVNode("main",{class:"bk-resize-layout-main"},[(c=(o=this.$slots).main)==null?void 0:c.call(o)]),a.createVNode("div",{class:"bk-resize-mask",ref:"resizeMaskRef"},null)])}});const P9=He(_C),WC={list:g.array.def([]),titleAble:g.bool.def(!1),extCls:g.string};var HC=a.defineComponent({name:"Timeline",props:WC,emits:["select"],setup(e,{emit:t}){const n=a.ref([]),i=c=>{const d=[];c.forEach(u=>{var f;d.push({tag:u.tag,content:u.content,type:u.type,size:u.size,color:u.color,icon:u.icon,filled:u.filled,border:(f=u.border)!=null?f:!0})}),n.value.splice(0,n.value.length,...d)},s=()=>{var c;n.value.splice(0,n.value.length,{tag:"\u6B65\u9AA41",content:"\u5185\u5BB91"},{tag:"\u6B65\u9AA42",content:"\u5185\u5BB92"},{tag:"\u6B65\u9AA43",content:"\u5185\u5BB93"}),(c=e.list)!=null&&c.length&&i(e.list)},o=c=>{try{t("select",c)}catch(d){console.warn(d)}};return a.onMounted(s),a.watch(()=>e.list,()=>{i(e.list)},{deep:!0}),{defaultTimelines:n,titleSelect:o}},render(){const e=i=>{const{icon:s}=i;return s?typeof s=="object"||typeof s=="function":!1},t=i=>{const s="bk-timeline",o=["blue","red","green","yellow","gray"],c=i.type?`${s}-${i.type}`:`${s}-default`,d=i.size?`${s}-${i.size}`:"",u=i.filled?`${s}-filled`:"",f=i.color&&o.includes(i.color)?`${s}-${i.color}`:"",m=e(i)?`${s}-custom`:"";return ze({},`${s} ${c} ${d} ${f} ${u} ${m}`)},n=i=>this.$slots.content?a.createVNode("div",{class:"bk-timeline-content"},[this.$slots.content(i)]):a.createVNode("div",{class:"bk-timeline-content",innerHTML:i.content},null);return a.createVNode("ul",{class:["bk-timeline",this.extCls]},[this.defaultTimelines.map(i=>{var s,o,c;return a.createVNode("li",{class:["bk-timeline-dot",t(i)]},[e(i)?a.createVNode("div",{class:"bk-timeline-icon",style:{border:i.border?`2px solid ${i.color}`:"0px",borderRadius:i.border?"50%":"0"}},[a.createVNode("span",{class:"bk-timeline-icon-inner"},[typeof i.icon=="function"?a.createVNode(i.icon,null,null):i.icon])]):"",a.createVNode("div",{class:"bk-timeline-section"},[a.createVNode("div",{class:"bk-timeline-title",onClick:()=>{this.titleSelect(i)}},[(c=(o=(s=this.$slots).default)==null?void 0:o.call(s,i))!=null?c:a.createVNode("span",{innerHTML:i.tag},null)]),i.content?n(i):""])])})])}});const A9=He(HC),BC={list:g.array.def([]),controllable:g.bool.def(!1),showSteps:g.bool.def(!1),curProcess:g.number.def(0),displayKey:g.string.def("content"),extCls:g.string};var FC=a.defineComponent({name:"Process",props:BC,emits:["update:curProcess","click"],setup(e,{emit:t}){const n=a.ref([]),i=a.ref(0),s=()=>{var c;n.value.splice(0,n.value.length,{content:"\u6B65\u9AA41"},{content:"\u6B65\u9AA42"},{content:"\u6B65\u9AA43"},{content:"\u6B65\u9AA44"}),(c=e.list)!=null&&c.length&&n.value.splice(0,n.value.length,...e.list)},o=async c=>{try{e.controllable&&c!==e.curProcess&&(t("update:curProcess",c),t("click",c))}catch(d){console.warn(d)}};return a.onMounted(s),{defaultProcessList:n,paddingBottom:i,jumpTo:o}},render(){const e="bk-process",t=ze({[`${this.extCls}`]:!!this.extCls},`${e}`),n=d=>d.status==="loading",i=d=>d.status==="error",s=d=>this.curProcess>=d+1||this.defaultProcessList[d].status==="done",o=d=>d.icon?d.icon:"",c=(d,u)=>{if(d===this.curProcess-1&&n(u))return a.createVNode(Es,{class:"bk-icon bk-process-icon icon-loading"},null);if(d===this.curProcess-1&&i(u))return a.createVNode(Bn,{class:"bk-process-icon"},null);if(d===this.curProcess-1&&o(u))return a.createVNode("span",{class:"bk-process-icon-custom"},[a.createVNode(u.icon,null,null)]);if(s(d))return a.createVNode(ia,{class:"bk-process-icon-done"},null)};return a.createVNode("div",{class:t},[a.createVNode("ul",{style:{paddingBottom:`${this.paddingBottom}px`}},[this.defaultProcessList.map((d,u)=>a.createVNode("li",{onClick:()=>{this.jumpTo(u+1)},style:{cursor:this.controllable?"pointer":""},class:{success:this.curProcess>=u+1,current:n(d)&&u===this.curProcess-1,error:i(d)&&u===this.curProcess-1}},[d[this.displayKey],c(u,d)]))])])}});const V9=He(FC),ga="bk-upload";var hi=(e=>(e.BUTTON="button",e.DRAGGABLE="draggable",e.PICTURE="picture",e))(hi||{}),$a=(e=>(e.NEW="new",e.UPLOADING="uploading",e.SUCCESS="success",e.FAIL="fail",e))($a||{});const J9=[hi.BUTTON,hi.DRAGGABLE,hi.PICTURE];var gi={theme:{type:String,default:"draggable",validator:e=>!e||J9.includes(e)?!0:(console.error(`invalid theme, ${e}, the theme must be one of \u3010${J9.join(" | ")}\u3011`),!1)},files:{type:Array,default:()=>[]},name:{type:String,default:"upload_file"},multiple:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},autoUpload:{type:Boolean,default:!0},accept:{type:String},delayTime:{type:Number,default:0},url:{type:String,required:!1},method:{type:String,default:"post"},size:{type:[Number,Object],default(){return{maxFileSize:5,maxImgSize:1}}},handleResCode:{type:Function,default(e){return!!(e&&e.code===0)}},headers:{type:Object,default:()=>({})},header:{type:[Array,Object],default:()=>[]},tip:{type:String,default:""},validateName:{type:RegExp},withCredentials:{type:Boolean,default:!1},limit:Number,data:{type:[Array,Object],default:()=>[]},formDataAttributes:{type:[Array,Object],default:()=>[]},extCls:{type:String,default:""},customRequest:Function,beforeUpload:{type:Function},beforeRemove:{type:Function},sliceUpload:{type:Boolean,default:!1},sliceUrl:{type:String,default:""},mergeUrl:{type:String,default:""},chunkSize:{type:Number,default:10}};function Q9(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}var GC=a.defineComponent({name:"UploadList",props:{theme:gi.theme,disabled:gi.disabled,files:gi.files,multiple:gi.multiple},emits:["remove","retry"],setup(e,{slots:t,emit:n}){const{theme:i,disabled:s,multiple:o}=a.toRefs(e),c=`${ga}-list`,d=a.computed(()=>i.value===hi.PICTURE),u=a.computed(()=>d.value&&!o.value),f=a.computed(()=>ze({[c]:!0,[`${c}--${i.value}`]:!0,[`${c}--disabled`]:s.value}));function m(I){const C=["Bytes","KB","MB","GB","TB"],M=Math.floor(Math.log(I)/Math.log(1024));return`${(I/1024**M).toFixed(2)}${C[M]}`}function p(I,C){n("remove",I,C)}function y(I,C){n("retry",I,C)}const b=()=>{let I;return a.createVNode(a.TransitionGroup,{name:`${c}__item`},Q9(I=e.files.map(C=>{const M=ze({[`${c}__item`]:!0,[`${c}__item-picture`]:!0,[`${c}__item--${C.status}`]:!0});return a.createVNode("li",{key:C.uid,class:M},[t!=null&&t.file?t.file({file:C}):v(C)])}))?I:{default:()=>[I]})},v=I=>[a.withDirectives(a.createVNode("img",{src:I.url,class:`${c}__picture-item-thumbnail`,alt:""},null),[[a.vShow,I.status!=="uploading"]]),a.createVNode(a.Fragment,null,[I.status==="uploading"&&a.createVNode(_r,{class:`${c}__picture-item-progress`,type:"circle",color:"#3a84ff",bgColor:"#333",width:50,titleStyle:{color:"#fff"},percent:I.percentage},null)]),a.createVNode(a.Fragment,null,[!s.value&&a.createVNode("div",{class:`${c}__picture-item-actions`},[a.createVNode(jr,{class:"action-icon",onClick:C=>p(I,C)},null)])])],T=()=>{let I;return a.createVNode(a.TransitionGroup,{name:`${c}__item`},Q9(I=e.files.map(C=>{const M=ze({[`${c}__item`]:!0,[`${c}__item--${C.status}`]:!0});return a.createVNode("li",{key:C.uid,class:M},[t!=null&&t.file?t.file({file:C}):k(C)])}))?I:{default:()=>[I]})},x=I=>{var z;const C=(z=I==null?void 0:I.raw)==null?void 0:z.type,[M]=(C==null?void 0:C.split("/"))||"";let L={text:Er,image:qo,application:Er,video:lc,audio:Fo}[M]||Er;return["application/zip","application/rar","application/tar","application/gz","application/x-gzip"].includes(C)&&(L=Wo),a.h(L,{class:`${c}__item-file-icon`})},k=I=>[a.createVNode("div",{class:`${c}__item-icon`},[I.isPic?a.createVNode("img",{src:I.url,class:`${c}__item-thumbnail`,alt:""},null):x(I)]),a.createVNode("div",{class:`${c}__item-summary`},[a.createVNode("div",{class:`${c}__item-name`,title:I.name},[I.name]),I.status!=="uploading"&&a.createVNode("div",{class:`${c}__item-message`,title:I.statusText},[I.status==="success"&&a.createVNode("span",null,[a.createVNode(ia,{class:`${c}__item-message-success-icon`},null),I.statusText||"\u4E0A\u4F20\u6210\u529F"]),I.status==="fail"&&a.createVNode("span",null,[I.statusText||"\u4E0A\u4F20\u5931\u8D25"])]),I.status==="uploading"&&a.createVNode(_r,{class:`${c}__item-progress`,showText:!1,percent:I.percentage,size:"small"},null),I.status!=="fail"&&a.createVNode("div",{class:`${c}__item-speed`},[a.withDirectives(a.createVNode("span",{class:`${c}__item-speed-size`},[m(I.size)]),[[a.vShow,I.size]]),a.withDirectives(a.createVNode("span",{class:`${c}__item-speed-percentage`},[I.percentage,a.createTextVNode("%")]),[[a.vShow,I.status==="uploading"]])]),!s.value&&a.createVNode("div",{class:`${c}__item-actions`},[I.status==="fail"&&a.createVNode(tc,{class:`${c}__item-retry-icon`,onClick:C=>y(I,C)},null),a.createVNode(jr,{class:`${c}__item-del-icon`,onClick:C=>p(I,C)},null)])])];return()=>{var I;return a.createVNode(a.Fragment,null,[u.value?(t==null?void 0:t.innerTrigger)&&(t==null?void 0:t.innerTrigger((I=e.files)==null?void 0:I[0])):a.createVNode("ul",{class:f.value},[d.value?b():T(),(t==null?void 0:t.innerTrigger)&&(t==null?void 0:t.innerTrigger())])])}}}),R9=a.defineComponent({name:"UploadTrigger",props:{theme:gi.theme,disabled:gi.disabled,multiple:gi.multiple,accept:gi.accept,file:{type:Object}},emits:["change","remove"],setup(e,{slots:t,emit:n}){const{theme:i,disabled:s,file:o,multiple:c,accept:d}=a.toRefs(e),u=`${ga}-trigger`,f=a.computed(()=>i.value===hi.BUTTON),m=a.computed(()=>i.value===hi.DRAGGABLE),p=a.computed(()=>i.value===hi.PICTURE),y=a.computed(()=>p.value&&!c.value),b=a.computed(()=>p.value&&!d.value?"image/png,image/jpeg,image/jpg":d.value),v=a.ref(null),T=a.computed(()=>{var Z,B,ne;return ze({[u]:!0,[`${u}--${i.value}`]:!0,[`${u}--single-picture`]:y.value,[`${u}--has-file`]:(Z=o.value)!=null?Z:!1,[`${u}--${(B=o.value)==null?void 0:B.status}`]:(ne=o.value)!=null?ne:!1,[`${u}--dragover`]:N.value,[`${u}--disabled`]:s.value})}),x=()=>{v.value.value=null,v.value.click()},k=Z=>{const{files:B}=Z.target;n("change",Array.from(B))},I=()=>{e.disabled||x()},C=Z=>{Z.defaultPrevented||Z.target!==Z.currentTarget||((Z.code==="Enter"||Z.code==="Space")&&x(),Z.preventDefault())};function M(Z,B){n("remove",Z,B),B.stopPropagation(),B.preventDefault()}const N=a.ref(!1),L=()=>{const Z=Ce=>{if(s.value)return;Ce.preventDefault(),N.value=!1;const Ne=Array.from(Ce.dataTransfer.files);if(!b.value){n("change",Ne);return}const fe=Ne.filter(he=>{const{type:$,name:A}=he,H=A.includes(".")?`.${A.split(".").pop()}`:"",F=$.replace(/\/.*$/,"");return b.value.split(",").map(ee=>ee.trim()).filter(ee=>ee).some(ee=>ee.startsWith(".")?H===ee:/\/\*$/.test(ee)?F===ee.replace(/\/\*$/,""):/^[^/]+\/[^/]+$/.test(ee)?$===ee:!1)});n("change",fe)},B=Ce=>{Ce.preventDefault(),N.value=!0},ne=()=>{N.value=!1},ue=ze({[`${u}__draggable`]:!0});return a.createVNode("div",{class:ue,onDrop:Z,onDragover:B,onDragleave:ne},[t.default?t.default():a.createVNode(a.Fragment,null,[a.createVNode(Hs,{class:`${u}__draggable-icon`},null),a.createVNode("div",{class:`${u}__draggable-text`},[a.createTextVNode("\u5C06\u6587\u4EF6\u62D6\u5230\u6B64\u5904\u6216"),a.createVNode("span",{class:`${u}__draggable-upload-link`},[a.createTextVNode("\u70B9\u51FB\u4E0A\u4F20")])])])])},j=()=>a.createVNode(a.Fragment,null,[y.value&&e.file?O(e.file):z()]),z=()=>a.createVNode(a.Fragment,null,[t.default?t.default():a.createVNode("div",{class:`${u}__picture-inner`},[a.createVNode(_s,{class:`${u}__picture-icon`},null),a.createVNode("div",{class:`${u}__picture-text`},[a.createTextVNode("\u70B9\u51FB\u4E0A\u4F20")])])]),O=Z=>[a.withDirectives(a.createVNode("img",{src:Z.url,class:`${u}__picture-thumbnail`,alt:""},null),[[a.vShow,Z.status!=="uploading"]]),a.createVNode(a.Fragment,null,[Z.status==="uploading"&&a.createVNode(_r,{class:`${u}__picture-progress`,type:"circle",color:"#3a84ff",bgColor:"#333",width:50,titleStyle:{color:"#fff"},percent:Z.percentage},null)]),a.createVNode(a.Fragment,null,[!e.disabled&&a.createVNode("div",{class:`${u}__picture-actions`},[a.createVNode(jr,{class:"action-icon",onClick:B=>M(Z,B)},null)])])],R=()=>a.createVNode(At,{disabled:s.value},{default:()=>[a.createVNode(Hs,{class:`${u}__button-icon`},null),a.createVNode("span",{class:`${u}__button-text`},[a.createTextVNode("\u4E0A\u4F20\u6587\u4EF6")])]}),P=()=>{if(f.value)return R();if(m.value)return L();if(p.value)return j()};return()=>{var Z;return a.createVNode("div",{class:T.value,tabindex:"0",onClick:I,onKeydown:C},[t.trigger?[t.trigger(),(Z=t==null?void 0:t.default)==null?void 0:Z.call(t)]:P(),a.createVNode("input",{ref:v,class:"bk-upload__input-file",tabindex:"-1",onChange:k,accept:b.value,multiple:c.value,disabled:s.value,type:"file"},null)])}}}),_9={exports:{}};(function(e,t){(function(n){e.exports=n()})(function(n){var i=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];function s(k,I){var C=k[0],M=k[1],N=k[2],L=k[3];C+=(M&N|~M&L)+I[0]-680876936|0,C=(C<<7|C>>>25)+M|0,L+=(C&M|~C&N)+I[1]-389564586|0,L=(L<<12|L>>>20)+C|0,N+=(L&C|~L&M)+I[2]+606105819|0,N=(N<<17|N>>>15)+L|0,M+=(N&L|~N&C)+I[3]-1044525330|0,M=(M<<22|M>>>10)+N|0,C+=(M&N|~M&L)+I[4]-176418897|0,C=(C<<7|C>>>25)+M|0,L+=(C&M|~C&N)+I[5]+1200080426|0,L=(L<<12|L>>>20)+C|0,N+=(L&C|~L&M)+I[6]-1473231341|0,N=(N<<17|N>>>15)+L|0,M+=(N&L|~N&C)+I[7]-45705983|0,M=(M<<22|M>>>10)+N|0,C+=(M&N|~M&L)+I[8]+1770035416|0,C=(C<<7|C>>>25)+M|0,L+=(C&M|~C&N)+I[9]-1958414417|0,L=(L<<12|L>>>20)+C|0,N+=(L&C|~L&M)+I[10]-42063|0,N=(N<<17|N>>>15)+L|0,M+=(N&L|~N&C)+I[11]-1990404162|0,M=(M<<22|M>>>10)+N|0,C+=(M&N|~M&L)+I[12]+1804603682|0,C=(C<<7|C>>>25)+M|0,L+=(C&M|~C&N)+I[13]-40341101|0,L=(L<<12|L>>>20)+C|0,N+=(L&C|~L&M)+I[14]-1502002290|0,N=(N<<17|N>>>15)+L|0,M+=(N&L|~N&C)+I[15]+1236535329|0,M=(M<<22|M>>>10)+N|0,C+=(M&L|N&~L)+I[1]-165796510|0,C=(C<<5|C>>>27)+M|0,L+=(C&N|M&~N)+I[6]-1069501632|0,L=(L<<9|L>>>23)+C|0,N+=(L&M|C&~M)+I[11]+643717713|0,N=(N<<14|N>>>18)+L|0,M+=(N&C|L&~C)+I[0]-373897302|0,M=(M<<20|M>>>12)+N|0,C+=(M&L|N&~L)+I[5]-701558691|0,C=(C<<5|C>>>27)+M|0,L+=(C&N|M&~N)+I[10]+38016083|0,L=(L<<9|L>>>23)+C|0,N+=(L&M|C&~M)+I[15]-660478335|0,N=(N<<14|N>>>18)+L|0,M+=(N&C|L&~C)+I[4]-405537848|0,M=(M<<20|M>>>12)+N|0,C+=(M&L|N&~L)+I[9]+568446438|0,C=(C<<5|C>>>27)+M|0,L+=(C&N|M&~N)+I[14]-1019803690|0,L=(L<<9|L>>>23)+C|0,N+=(L&M|C&~M)+I[3]-187363961|0,N=(N<<14|N>>>18)+L|0,M+=(N&C|L&~C)+I[8]+1163531501|0,M=(M<<20|M>>>12)+N|0,C+=(M&L|N&~L)+I[13]-1444681467|0,C=(C<<5|C>>>27)+M|0,L+=(C&N|M&~N)+I[2]-51403784|0,L=(L<<9|L>>>23)+C|0,N+=(L&M|C&~M)+I[7]+1735328473|0,N=(N<<14|N>>>18)+L|0,M+=(N&C|L&~C)+I[12]-1926607734|0,M=(M<<20|M>>>12)+N|0,C+=(M^N^L)+I[5]-378558|0,C=(C<<4|C>>>28)+M|0,L+=(C^M^N)+I[8]-2022574463|0,L=(L<<11|L>>>21)+C|0,N+=(L^C^M)+I[11]+1839030562|0,N=(N<<16|N>>>16)+L|0,M+=(N^L^C)+I[14]-35309556|0,M=(M<<23|M>>>9)+N|0,C+=(M^N^L)+I[1]-1530992060|0,C=(C<<4|C>>>28)+M|0,L+=(C^M^N)+I[4]+1272893353|0,L=(L<<11|L>>>21)+C|0,N+=(L^C^M)+I[7]-155497632|0,N=(N<<16|N>>>16)+L|0,M+=(N^L^C)+I[10]-1094730640|0,M=(M<<23|M>>>9)+N|0,C+=(M^N^L)+I[13]+681279174|0,C=(C<<4|C>>>28)+M|0,L+=(C^M^N)+I[0]-358537222|0,L=(L<<11|L>>>21)+C|0,N+=(L^C^M)+I[3]-722521979|0,N=(N<<16|N>>>16)+L|0,M+=(N^L^C)+I[6]+76029189|0,M=(M<<23|M>>>9)+N|0,C+=(M^N^L)+I[9]-640364487|0,C=(C<<4|C>>>28)+M|0,L+=(C^M^N)+I[12]-421815835|0,L=(L<<11|L>>>21)+C|0,N+=(L^C^M)+I[15]+530742520|0,N=(N<<16|N>>>16)+L|0,M+=(N^L^C)+I[2]-995338651|0,M=(M<<23|M>>>9)+N|0,C+=(N^(M|~L))+I[0]-198630844|0,C=(C<<6|C>>>26)+M|0,L+=(M^(C|~N))+I[7]+1126891415|0,L=(L<<10|L>>>22)+C|0,N+=(C^(L|~M))+I[14]-1416354905|0,N=(N<<15|N>>>17)+L|0,M+=(L^(N|~C))+I[5]-57434055|0,M=(M<<21|M>>>11)+N|0,C+=(N^(M|~L))+I[12]+1700485571|0,C=(C<<6|C>>>26)+M|0,L+=(M^(C|~N))+I[3]-1894986606|0,L=(L<<10|L>>>22)+C|0,N+=(C^(L|~M))+I[10]-1051523|0,N=(N<<15|N>>>17)+L|0,M+=(L^(N|~C))+I[1]-2054922799|0,M=(M<<21|M>>>11)+N|0,C+=(N^(M|~L))+I[8]+1873313359|0,C=(C<<6|C>>>26)+M|0,L+=(M^(C|~N))+I[15]-30611744|0,L=(L<<10|L>>>22)+C|0,N+=(C^(L|~M))+I[6]-1560198380|0,N=(N<<15|N>>>17)+L|0,M+=(L^(N|~C))+I[13]+1309151649|0,M=(M<<21|M>>>11)+N|0,C+=(N^(M|~L))+I[4]-145523070|0,C=(C<<6|C>>>26)+M|0,L+=(M^(C|~N))+I[11]-1120210379|0,L=(L<<10|L>>>22)+C|0,N+=(C^(L|~M))+I[2]+718787259|0,N=(N<<15|N>>>17)+L|0,M+=(L^(N|~C))+I[9]-343485551|0,M=(M<<21|M>>>11)+N|0,k[0]=C+k[0]|0,k[1]=M+k[1]|0,k[2]=N+k[2]|0,k[3]=L+k[3]|0}function o(k){var I=[],C;for(C=0;C<64;C+=4)I[C>>2]=k.charCodeAt(C)+(k.charCodeAt(C+1)<<8)+(k.charCodeAt(C+2)<<16)+(k.charCodeAt(C+3)<<24);return I}function c(k){var I=[],C;for(C=0;C<64;C+=4)I[C>>2]=k[C]+(k[C+1]<<8)+(k[C+2]<<16)+(k[C+3]<<24);return I}function d(k){var I=k.length,C=[1732584193,-271733879,-1732584194,271733878],M,N,L,j,z,O;for(M=64;M<=I;M+=64)s(C,o(k.substring(M-64,M)));for(k=k.substring(M-64),N=k.length,L=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],M=0;M<N;M+=1)L[M>>2]|=k.charCodeAt(M)<<(M%4<<3);if(L[M>>2]|=128<<(M%4<<3),M>55)for(s(C,L),M=0;M<16;M+=1)L[M]=0;return j=I*8,j=j.toString(16).match(/(.*?)(.{0,8})$/),z=parseInt(j[2],16),O=parseInt(j[1],16)||0,L[14]=z,L[15]=O,s(C,L),C}function u(k){var I=k.length,C=[1732584193,-271733879,-1732584194,271733878],M,N,L,j,z,O;for(M=64;M<=I;M+=64)s(C,c(k.subarray(M-64,M)));for(k=M-64<I?k.subarray(M-64):new Uint8Array(0),N=k.length,L=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],M=0;M<N;M+=1)L[M>>2]|=k[M]<<(M%4<<3);if(L[M>>2]|=128<<(M%4<<3),M>55)for(s(C,L),M=0;M<16;M+=1)L[M]=0;return j=I*8,j=j.toString(16).match(/(.*?)(.{0,8})$/),z=parseInt(j[2],16),O=parseInt(j[1],16)||0,L[14]=z,L[15]=O,s(C,L),C}function f(k){var I="",C;for(C=0;C<4;C+=1)I+=i[k>>C*8+4&15]+i[k>>C*8&15];return I}function m(k){var I;for(I=0;I<k.length;I+=1)k[I]=f(k[I]);return k.join("")}m(d("hello")),typeof ArrayBuffer!="undefined"&&!ArrayBuffer.prototype.slice&&function(){function k(I,C){return I=I|0||0,I<0?Math.max(I+C,0):Math.min(I,C)}ArrayBuffer.prototype.slice=function(I,C){var M=this.byteLength,N=k(I,M),L=M,j,z,O,R;return C!==n&&(L=k(C,M)),N>L?new ArrayBuffer(0):(j=L-N,z=new ArrayBuffer(j),O=new Uint8Array(z),R=new Uint8Array(this,N,j),O.set(R),z)}}();function p(k){return/[\u0080-\uFFFF]/.test(k)&&(k=unescape(encodeURIComponent(k))),k}function y(k,I){var C=k.length,M=new ArrayBuffer(C),N=new Uint8Array(M),L;for(L=0;L<C;L+=1)N[L]=k.charCodeAt(L);return I?N:M}function b(k){return String.fromCharCode.apply(null,new Uint8Array(k))}function v(k,I,C){var M=new Uint8Array(k.byteLength+I.byteLength);return M.set(new Uint8Array(k)),M.set(new Uint8Array(I),k.byteLength),C?M:M.buffer}function T(k){var I=[],C=k.length,M;for(M=0;M<C-1;M+=2)I.push(parseInt(k.substr(M,2),16));return String.fromCharCode.apply(String,I)}function x(){this.reset()}return x.prototype.append=function(k){return this.appendBinary(p(k)),this},x.prototype.appendBinary=function(k){this._buff+=k,this._length+=k.length;var I=this._buff.length,C;for(C=64;C<=I;C+=64)s(this._hash,o(this._buff.substring(C-64,C)));return this._buff=this._buff.substring(C-64),this},x.prototype.end=function(k){var I=this._buff,C=I.length,M,N=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],L;for(M=0;M<C;M+=1)N[M>>2]|=I.charCodeAt(M)<<(M%4<<3);return this._finish(N,C),L=m(this._hash),k&&(L=T(L)),this.reset(),L},x.prototype.reset=function(){return this._buff="",this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},x.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash.slice()}},x.prototype.setState=function(k){return this._buff=k.buff,this._length=k.length,this._hash=k.hash,this},x.prototype.destroy=function(){delete this._hash,delete this._buff,delete this._length},x.prototype._finish=function(k,I){var C=I,M,N,L;if(k[C>>2]|=128<<(C%4<<3),C>55)for(s(this._hash,k),C=0;C<16;C+=1)k[C]=0;M=this._length*8,M=M.toString(16).match(/(.*?)(.{0,8})$/),N=parseInt(M[2],16),L=parseInt(M[1],16)||0,k[14]=N,k[15]=L,s(this._hash,k)},x.hash=function(k,I){return x.hashBinary(p(k),I)},x.hashBinary=function(k,I){var C=d(k),M=m(C);return I?T(M):M},x.ArrayBuffer=function(){this.reset()},x.ArrayBuffer.prototype.append=function(k){var I=v(this._buff.buffer,k,!0),C=I.length,M;for(this._length+=k.byteLength,M=64;M<=C;M+=64)s(this._hash,c(I.subarray(M-64,M)));return this._buff=M-64<C?new Uint8Array(I.buffer.slice(M-64)):new Uint8Array(0),this},x.ArrayBuffer.prototype.end=function(k){var I=this._buff,C=I.length,M=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],N,L;for(N=0;N<C;N+=1)M[N>>2]|=I[N]<<(N%4<<3);return this._finish(M,C),L=m(this._hash),k&&(L=T(L)),this.reset(),L},x.ArrayBuffer.prototype.reset=function(){return this._buff=new Uint8Array(0),this._length=0,this._hash=[1732584193,-271733879,-1732584194,271733878],this},x.ArrayBuffer.prototype.getState=function(){var k=x.prototype.getState.call(this);return k.buff=b(k.buff),k},x.ArrayBuffer.prototype.setState=function(k){return k.buff=y(k.buff,!0),x.prototype.setState.call(this,k)},x.ArrayBuffer.prototype.destroy=x.prototype.destroy,x.ArrayBuffer.prototype._finish=x.prototype._finish,x.ArrayBuffer.hash=function(k,I){var C=u(new Uint8Array(k)),M=m(C);return I?T(M):M},x})})(_9);var W9=_9.exports;function iu(e){const t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch{return t}}const ZC=e=>{if(typeof XMLHttpRequest=="undefined")throw new Error("XMLHttpRequest is undefined");const t=new XMLHttpRequest,{action:n}=e;t.upload&&t.upload.addEventListener("progress",o=>{const c=o;c.percent=o.total>0?o.loaded/o.total*100:0,e.onProgress(c)});const i=new FormData;if(e.data){let o=e.data;Array.isArray(o)||(o=[o]),o.forEach(c=>{for(const[d,u]of Object.entries(c))Array.isArray(u)?i.append(d,...u):i.append(d,u)})}if(e.formDataAttributes){let o=e.formDataAttributes;Array.isArray(o)||(o=[o]),o.forEach(c=>{Array.isArray(c.value)?i.append(c.name,...c.value):i.append(c.name,c.value)})}if(i.append(e.filename,e.file,e.file.name),t.addEventListener("error",()=>{e.onError(new Error("An error occurred during upload"))}),t.addEventListener("load",()=>{if(t.status<200||t.status>=300)return e.onError(new Error("An error occurred during upload"));e.onSuccess(iu(t))}),t.addEventListener("loadend",()=>{e.onComplete()}),t.open(e.method,n,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0),e.header)if(Array.isArray(e.header))e.header.forEach(o=>{const c=o.name,d=o.value;t.setRequestHeader(c,d)});else{const o=e.header.name,c=e.header.value;t.setRequestHeader(o,c)}const s=e.headers||{};if(s instanceof Headers)s.forEach((o,c)=>t.setRequestHeader(c,o));else for(const[o,c]of Object.entries(s))yf(c)||t.setRequestHeader(o,String(c));return t.send(i),t},H9=File.prototype.slice||File.prototype.mozSlice||File.prototype.webkitSlice,YC=async e=>{const t=e.chunkSize*1024*1024,{file:n}=e;if(!n)throw new Error("File not found");const i=Math.ceil(n.size/t),s=await $C(n,t),o=[];UC(e,n,i,s,o,t),await Promise.all(o).then(()=>{const c={size:n.size,name:n.name,total:i,hash:s},d=new XMLHttpRequest;d.open(e.method,e.mergeUrl,!0),d.onreadystatechange=()=>{if(d.readyState===4){if(d.status<200||d.status>=300)return e.onError(new Error("An error occurred during upload"));e.onSuccess(iu(d))}},d.onloadend=()=>{e.onComplete()},d.setRequestHeader("Content-type","application/JSON"),d.send(JSON.stringify(c))})},UC=(e,t,n,i,s,o)=>{for(let c=0;c<n;c++){const d=new Promise((u,f)=>{const m=c*o,p=Math.min(t.size,m+o),y=new FormData;if(e.data){let T=e.data;Array.isArray(T)||(T=[T]),T.forEach(x=>{for(const[k,I]of Object.entries(x))Array.isArray(I)?y.append(k,...I):y.append(k,I)})}if(e.formDataAttributes){let T=e.formDataAttributes;Array.isArray(T)||(T=[T]),T.forEach(x=>{Array.isArray(x.value)?y.append(x.name,...x.value):y.append(x.name,x.value)})}y.append("file",H9.call(t,m,p)),y.append("name",t.name),y.append("total",n.toString()),y.append("index",c.toString()),y.append("size",t.size.toString()),y.append("hash",i.toString());const b=new XMLHttpRequest;if(b.onreadystatechange=()=>{if(b.readyState===4){const T=iu(b);b.status<200||b.status>=300?(f(T),e.onError(new Error("An error occurred during upload"))):u("reponseText")}},b.upload.addEventListener("progress",T=>{const x=T;e.onProgress(x,c)},!1),e.withCredentials&&"withCredentials"in b&&(b.withCredentials=!0),b.open(e.method,e.sliceUrl,!0),e.header)if(Array.isArray(e.header))e.header.forEach(T=>{const x=T.name,k=T.value;b.setRequestHeader(x,k)});else{const T=e.header.name,x=e.header.value;b.setRequestHeader(T,x)}const v=e.headers||{};if(v instanceof Headers)v.forEach((T,x)=>b.setRequestHeader(x,T));else for(const[T,x]of Object.entries(v))yf(x)||b.setRequestHeader(T,String(x));b.send(y)});s.push(d)}},$C=(e,t)=>new Promise((n,i)=>{const s=Math.ceil(e.size/t);let o=0;const c=new W9.ArrayBuffer,d=new FileReader;function u(){const f=o*t,m=f+t>=e.size?e.size:f+t;d.readAsArrayBuffer(H9.call(e,f,m))}d.onload=f=>{if(c.append(f.target.result),o+=1,o<s)u();else{const m=c.end(),p=new W9;p.append(m),p.append(e.name);const y=p.end();n(y)}},d.onerror=()=>{i(new Error("File slcie failed"))},u()}).catch(n=>{console.log(n)});function B9(e){return Date.now()+e}var KC=(e,t)=>{const n=a.computed(()=>{var y;return typeof e.size=="number"?e.size:(y=e==null?void 0:e.size)==null?void 0:y.maxImgSize}),i=a.computed(()=>{var y;return typeof e.size=="number"?e.size:(y=e==null?void 0:e.size)==null?void 0:y.maxImgSize}),s=a.ref([]);function o(y){return s.value.find(b=>b.uid===y.uid)}let c=0;function d(y){var x;c+=1,y.uid=B9(c);const b={uid:y.uid,name:y.name,status:$a.NEW,size:y.size,raw:y},v=y.type.startsWith("image/");let T=null;if(v){try{b.url=window.URL.createObjectURL(y)}catch(k){console.error(k)}b.isPic=!0}return e.validateName&&!((x=e.validateName)!=null&&x.test(b.name))&&(b.status=$a.FAIL,b.statusText="invalid filename",T=new Error(b.statusText)),v&&y.size>n.value*1024**2&&(b.status=$a.FAIL,b.statusText="invalid file size",T=new Error(b.statusText)),!v&&y.size>i.value*1024**2&&(b.status=$a.FAIL,b.statusText="invalid file size",T=new Error(b.statusText)),s.value.push(b),T}async function u(y){var T;const b=y instanceof File?o(y):y,v=x=>{var k;t.onRemove(x,s.value),s.value.splice(s.value.indexOf(b),1),(k=x.url)!=null&&k.startsWith("blob:")&&URL.revokeObjectURL(x.url)};e.beforeRemove?await((T=e.beforeRemove)==null?void 0:T.call(e,b,s.value))!==!1&&v(b):v(b)}async function f(y,b,v){const T=o(b);!T||(T.status="fail",T.statusText=y.message,T.response=v)}async function m(y,b){const v=o(b);!v||(v.status="success",v.response=y)}async function p(y,b){const v=o(b);!v||(v.status="uploading",v.percentage=Math.round(y.percent))}return a.watch(()=>e.files,y=>{s.value=y.map(b=>{var v,T;return c+=1,xe(Y({},b),{uid:(v=b.uid)!=null?v:B9(c),status:(T=b.status)!=null?T:$a.SUCCESS})})},{immediate:!0,deep:!0}),{fileList:s,handlePreprocess:d,handleRemove:u,handleError:f,handleSuccess:m,handleProgress:p}},XC=a.defineComponent({name:"Upload",props:gi,emits:["exceed","progress","success","error","delete","done"],setup(e,{slots:t,emit:n,expose:i}){const s=a.shallowRef({}),o=a.computed(()=>e.theme===hi.PICTURE),c=a.computed(()=>o.value&&!e.multiple),d=a.computed(()=>{var N;return ze({[ga]:!0,[`${ga}--${e.theme}`]:!0,[`${ga}--disabled`]:e.disabled,[`${ga}--single-picture`]:c.value,[e.extCls]:(N=e.extCls)!=null?N:!1})}),u={theme:e.theme,multiple:e.multiple,disabled:e.disabled,accept:e.accept};function f(N,L){M(N),n("delete",N,L)}const{fileList:m,handlePreprocess:p,handleRemove:y,handleProgress:b,handleSuccess:v,handleError:T}=KC(e,{onRemove:f});function x(N){if(!N.length)return;if(e.limit&&m.value.length+N.length>e.limit){n("exceed",N,m.value);return}let L=N;(!e.multiple||e.limit===1)&&(L=N.slice(0,1));for(const j of L){const z=j,O=p(z);if(O){n("error",z,m.value,O);return}e.autoUpload&&I(z,L)}}function k(N){C(N.raw)}async function I(N,L){var z;if(!e.beforeUpload)return C(N,L);let j;try{j=await((z=e.beforeUpload)==null?void 0:z.call(e,N))}catch{j=!1}if(j===!1){y(N);return}C(N,L)}function C(N,L){const{headers:j,header:z,data:O,formDataAttributes:R,method:P,withCredentials:Z,name:B,url:ne,sliceUrl:ue,mergeUrl:Ce,chunkSize:Ne,customRequest:fe}=e,{uid:he}=N,$={headers:j,header:z,withCredentials:Z,file:N,data:O,formDataAttributes:R,method:P,filename:B,action:ne,sliceUrl:ue,mergeUrl:Ce,chunkSize:Ne,onProgress:F=>{b(F,N),n("progress",F,N,m.value)},onSuccess:F=>{var ie;const ee=F;if((ie=e==null?void 0:e.handleResCode)!=null&&ie.call(e,ee))v(F,N),n("success",F,N,m.value);else{const ae=new Error((ee==null?void 0:ee.message)||"unknow error");T(ae,N,F),n("error",N,m.value,ae)}delete s.value[he]},onError:F=>{T(F,N),n("error",N,m.value,F),delete s.value[he]},onComplete:()=>{L&&L.indexOf(N)===L.length-1&&n("done",m.value)}};let A=e.sliceUpload?YC:ZC;fe&&(A=fe);const H=A($);s.value[he]=H,H instanceof Promise&&H.then($.onSuccess,$.onError)}function M(N){let L=s.value;N&&(L={[N.uid]:s.value[N.uid]}),Object.keys(L).forEach(j=>{if(L[j]instanceof XMLHttpRequest){const z=L[j];z==null||z.abort()}delete s.value[j]})}return a.onBeforeUnmount(()=>{m.value.forEach(({url:N})=>{N!=null&&N.startsWith("blob:")&&URL.revokeObjectURL(N)})}),i({handleRemove:y,handleRetry:k}),()=>a.createVNode("div",{class:d.value},[!o.value&&a.createVNode(R9,a.mergeProps(u,{onChange:x}),t),t.tip?t.tip():e.tip&&a.createVNode("div",{class:`${ga}__tip`},[e.tip]),a.createVNode(GC,{files:m.value,theme:e.theme,disabled:e.disabled,multiple:e.multiple,onRemove:y,onRetry:k},{innerTrigger:N=>o.value&&a.createVNode(R9,a.mergeProps(u,{file:N,onChange:x,onRemove:y}),t),file:t.file})])}});const F9=He(XC);function Hi(){}Hi.prototype={diff:function(t,n){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=i.callback;typeof i=="function"&&(s=i,i={}),this.options=i;var o=this;function c(T){return s?(setTimeout(function(){s(void 0,T)},0),!0):T}t=this.castInput(t),n=this.castInput(n),t=this.removeEmpty(this.tokenize(t)),n=this.removeEmpty(this.tokenize(n));var d=n.length,u=t.length,f=1,m=d+u,p=[{newPos:-1,components:[]}],y=this.extractCommon(p[0],n,t,0);if(p[0].newPos+1>=d&&y+1>=u)return c([{value:this.join(n),count:n.length}]);function b(){for(var T=-1*f;T<=f;T+=2){var x=void 0,k=p[T-1],I=p[T+1],C=(I?I.newPos:0)-T;k&&(p[T-1]=void 0);var M=k&&k.newPos+1<d,N=I&&0<=C&&C<u;if(!M&&!N){p[T]=void 0;continue}if(!M||N&&k.newPos<I.newPos?(x=e8(I),o.pushComponent(x.components,void 0,!0)):(x=k,x.newPos++,o.pushComponent(x.components,!0,void 0)),C=o.extractCommon(x,n,t,T),x.newPos+1>=d&&C+1>=u)return c(qC(o,x.components,n,t,o.useLongestToken));p[T]=x}f++}if(s)(function T(){setTimeout(function(){if(f>m)return s();b()||T()},0)})();else for(;f<=m;){var v=b();if(v)return v}},pushComponent:function(t,n,i){var s=t[t.length-1];s&&s.added===n&&s.removed===i?t[t.length-1]={count:s.count+1,added:n,removed:i}:t.push({count:1,added:n,removed:i})},extractCommon:function(t,n,i,s){for(var o=n.length,c=i.length,d=t.newPos,u=d-s,f=0;d+1<o&&u+1<c&&this.equals(n[d+1],i[u+1]);)d++,u++,f++;return f&&t.components.push({count:f}),t.newPos=d,u},equals:function(t,n){return this.options.comparator?this.options.comparator(t,n):t===n||this.options.ignoreCase&&t.toLowerCase()===n.toLowerCase()},removeEmpty:function(t){for(var n=[],i=0;i<t.length;i++)t[i]&&n.push(t[i]);return n},castInput:function(t){return t},tokenize:function(t){return t.split("")},join:function(t){return t.join("")}};function qC(e,t,n,i,s){for(var o=0,c=t.length,d=0,u=0;o<c;o++){var f=t[o];if(f.removed){if(f.value=e.join(i.slice(u,u+f.count)),u+=f.count,o&&t[o-1].added){var p=t[o-1];t[o-1]=t[o],t[o]=p}}else{if(!f.added&&s){var m=n.slice(d,d+f.count);m=m.map(function(b,v){var T=i[u+v];return T.length>b.length?T:b}),f.value=e.join(m)}else f.value=e.join(n.slice(d,d+f.count));d+=f.count,f.added||(u+=f.count)}}var y=t[c-1];return c>1&&typeof y.value=="string"&&(y.added||y.removed)&&e.equals("",y.value)&&(t[c-2].value+=y.value,t.pop()),t}function e8(e){return{newPos:e.newPos,components:e.components.slice(0)}}var G9=/^[A-Za-z\xC0-\u02C6\u02C8-\u02D7\u02DE-\u02FF\u1E00-\u1EFF]+$/,Z9=/\S/,Y9=new Hi;Y9.equals=function(e,t){return this.options.ignoreCase&&(e=e.toLowerCase(),t=t.toLowerCase()),e===t||this.options.ignoreWhitespace&&!Z9.test(e)&&!Z9.test(t)},Y9.tokenize=function(e){for(var t=e.split(/([^\S\r\n]+|[()[\]{}'"\r\n]|\b)/),n=0;n<t.length-1;n++)!t[n+1]&&t[n+2]&&G9.test(t[n])&&G9.test(t[n+2])&&(t[n]+=t[n+2],t.splice(n+1,2),n--);return t};var au=new Hi;au.tokenize=function(e){var t=[],n=e.split(/(\n|\r\n)/);n[n.length-1]||n.pop();for(var i=0;i<n.length;i++){var s=n[i];i%2&&!this.options.newlineIsToken?t[t.length-1]+=s:(this.options.ignoreWhitespace&&(s=s.trim()),t.push(s))}return t};function t8(e,t,n){return au.diff(e,t,n)}var n8=new Hi;n8.tokenize=function(e){return e.split(/(\S.+?[.!?])(?=\s+|$)/)};var i8=new Hi;i8.tokenize=function(e){return e.split(/([{}:;,]|\s+)/)};function Ml(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Ml=function(t){return typeof t}:Ml=function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Ml(e)}function ru(e){return a8(e)||r8(e)||s8(e)||l8()}function a8(e){if(Array.isArray(e))return su(e)}function r8(e){if(typeof Symbol!="undefined"&&Symbol.iterator in Object(e))return Array.from(e)}function s8(e,t){if(!!e){if(typeof e=="string")return su(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return su(e,t)}}function su(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,i=new Array(t);n<t;n++)i[n]=e[n];return i}function l8(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
58
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var o8=Object.prototype.toString,Ur=new Hi;Ur.useLongestToken=!0,Ur.tokenize=au.tokenize,Ur.castInput=function(e){var t=this.options,n=t.undefinedReplacement,i=t.stringifyReplacer,s=i===void 0?function(o,c){return typeof c=="undefined"?n:c}:i;return typeof e=="string"?e:JSON.stringify(lu(e,null,null,s),s," ")},Ur.equals=function(e,t){return Hi.prototype.equals.call(Ur,e.replace(/,([\r\n])/g,"$1"),t.replace(/,([\r\n])/g,"$1"))};function lu(e,t,n,i,s){t=t||[],n=n||[],i&&(e=i(s,e));var o;for(o=0;o<t.length;o+=1)if(t[o]===e)return n[o];var c;if(o8.call(e)==="[object Array]"){for(t.push(e),c=new Array(e.length),n.push(c),o=0;o<e.length;o+=1)c[o]=lu(e[o],t,n,i,s);return t.pop(),n.pop(),c}if(e&&e.toJSON&&(e=e.toJSON()),Ml(e)==="object"&&e!==null){t.push(e),c={},n.push(c);var d=[],u;for(u in e)e.hasOwnProperty(u)&&d.push(u);for(d.sort(),o=0;o<d.length;o+=1)u=d[o],c[u]=lu(e[u],t,n,i,u);t.pop(),n.pop()}else c=e;return c}var ou=new Hi;ou.tokenize=function(e){return e.slice()},ou.join=ou.removeEmpty=function(e){return e};function c8(e,t,n,i,s,o,c){c||(c={}),typeof c.context=="undefined"&&(c.context=4);var d=t8(n,i,c);d.push({value:"",lines:[]});function u(k){return k.map(function(I){return" "+I})}for(var f=[],m=0,p=0,y=[],b=1,v=1,T=function(I){var C=d[I],M=C.lines||C.value.replace(/\n$/,"").split(`
59
+ `);if(C.lines=M,C.added||C.removed){var N;if(!m){var L=d[I-1];m=b,p=v,L&&(y=c.context>0?u(L.lines.slice(-c.context)):[],m-=y.length,p-=y.length)}(N=y).push.apply(N,ru(M.map(function(ne){return(C.added?"+":"-")+ne}))),C.added?v+=M.length:b+=M.length}else{if(m)if(M.length<=c.context*2&&I<d.length-2){var j;(j=y).push.apply(j,ru(u(M)))}else{var z,O=Math.min(M.length,c.context);(z=y).push.apply(z,ru(u(M.slice(0,O))));var R={oldStart:m,oldLines:b-m+O,newStart:p,newLines:v-p+O,lines:y};if(I>=d.length-2&&M.length<=c.context){var P=/\n$/.test(n),Z=/\n$/.test(i),B=M.length==0&&y.length>R.oldLines;!P&&B&&n.length>0&&y.splice(R.oldLines,0,"\"),(!P&&!B||!Z)&&y.push("\")}f.push(R),m=0,p=0,y=[]}b+=M.length,v+=M.length}},x=0;x<d.length;x++)T(x);return{oldFileName:e,newFileName:t,oldHeader:s,newHeader:o,hunks:f}}function u8(e){var t=[];e.oldFileName==e.newFileName&&t.push("Index: "+e.oldFileName),t.push("==================================================================="),t.push("--- "+e.oldFileName+(typeof e.oldHeader=="undefined"?"":" "+e.oldHeader)),t.push("+++ "+e.newFileName+(typeof e.newHeader=="undefined"?"":" "+e.newHeader));for(var n=0;n<e.hunks.length;n++){var i=e.hunks[n];i.oldLines===0&&(i.oldStart-=1),i.newLines===0&&(i.newStart-=1),t.push("@@ -"+i.oldStart+","+i.oldLines+" +"+i.newStart+","+i.newLines+" @@"),t.push.apply(t,i.lines)}return t.join(`
60
+ `)+`
61
+ `}function d8(e,t,n,i,s,o,c){return u8(c8(e,t,n,i,s,o,c))}function f8(e,t,n,i,s,o){return d8(e,e,t,n,i,s,o)}var Mt;(function(e){e.INSERT="insert",e.DELETE="delete",e.CONTEXT="context"})(Mt||(Mt={}));var h8={LINE_BY_LINE:"line-by-line",SIDE_BY_SIDE:"side-by-side"},g8={LINES:"lines",WORDS:"words",NONE:"none"},m8={WORD:"word",CHAR:"char"},p8=["-","[","]","/","{","}","(",")","*","+","?",".","\\","^","$","|"],b8=RegExp("["+p8.join("\\")+"]","g");function y8(e){return e.replace(b8,"\\$&")}function U9(e){return e&&e.replace(/\\/g,"/")}function C8(e){var t,n,i,s=0;for(t=0,i=e.length;t<i;t++)n=e.charCodeAt(t),s=(s<<5)-s+n,s|=0;return s}var $9=globalThis&&globalThis.__spreadArray||function(e,t,n){if(n||arguments.length===2)for(var i=0,s=t.length,o;i<s;i++)(o||!(i in t))&&(o||(o=Array.prototype.slice.call(t,0,i)),o[i]=t[i]);return e.concat(o||Array.prototype.slice.call(t))};function K9(e,t){var n=e.split(".");return n.length>1?n[n.length-1]:t}function X9(e,t){return t.reduce(function(n,i){return n||e.startsWith(i)},!1)}var q9=["a/","b/","i/","w/","c/","o/"];function Ka(e,t,n){var i=n!==void 0?$9($9([],q9,!0),[n],!1):q9,s=t?new RegExp("^".concat(y8(t),' "?(.+?)"?$')):new RegExp('^"?(.+?)"?$'),o=s.exec(e)||[],c=o[1],d=c===void 0?"":c,u=i.find(function(m){return d.indexOf(m)===0}),f=u?d.slice(u.length):d;return f.replace(/\s+\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(?:\.\d+)? [+-]\d{4}.*$/,"")}function v8(e,t){return Ka(e,"---",t)}function w8(e,t){return Ka(e,"+++",t)}function M8(e,t){t===void 0&&(t={});var n=[],i=null,s=null,o=null,c=null,d=null,u=null,f=null,m="--- ",p="+++ ",y="@@",b=/^old mode (\d{6})/,v=/^new mode (\d{6})/,T=/^deleted file mode (\d{6})/,x=/^new file mode (\d{6})/,k=/^copy from "?(.+)"?/,I=/^copy to "?(.+)"?/,C=/^rename from "?(.+)"?/,M=/^rename to "?(.+)"?/,N=/^similarity index (\d+)%/,L=/^dissimilarity index (\d+)%/,j=/^index ([\da-z]+)\.\.([\da-z]+)\s*(\d{6})?/,z=/^Binary files (.*) and (.*) differ/,O=/^GIT binary patch/,R=/^index ([\da-z]+),([\da-z]+)\.\.([\da-z]+)/,P=/^mode (\d{6}),(\d{6})\.\.(\d{6})/,Z=/^new file mode (\d{6})/,B=/^deleted file mode (\d{6}),(\d{6})/,ne=e.replace(/\/g,"").replace(/\r\n?/g,`
62
+ `).split(`
63
+ `);function ue(){s!==null&&i!==null&&(i.blocks.push(s),s=null)}function Ce(){i!==null&&(!i.oldName&&u!==null&&(i.oldName=u),!i.newName&&f!==null&&(i.newName=f),i.newName&&(n.push(i),i=null)),u=null,f=null}function Ne(){ue(),Ce(),i={blocks:[],deletedLines:0,addedLines:0}}function fe(A){ue();var H;i!==null&&((H=/^@@ -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@.*/.exec(A))?(i.isCombined=!1,o=parseInt(H[1],10),d=parseInt(H[2],10)):(H=/^@@@ -(\d+)(?:,\d+)? -(\d+)(?:,\d+)? \+(\d+)(?:,\d+)? @@@.*/.exec(A))?(i.isCombined=!0,o=parseInt(H[1],10),c=parseInt(H[2],10),d=parseInt(H[3],10)):(A.startsWith(y)&&console.error("Failed to parse lines, starting in 0!"),o=0,d=0,i.isCombined=!1)),s={lines:[],oldStartLine:o,oldStartLine2:c,newStartLine:d,header:A}}function he(A){if(!(i===null||s===null||o===null||d===null)){var H={content:A},F=i.isCombined?["+ "," +","++"]:["+"],ee=i.isCombined?["- "," -","--"]:["-"];X9(A,F)?(i.addedLines++,H.type=Mt.INSERT,H.oldNumber=void 0,H.newNumber=d++):X9(A,ee)?(i.deletedLines++,H.type=Mt.DELETE,H.oldNumber=o++,H.newNumber=void 0):(H.type=Mt.CONTEXT,H.oldNumber=o++,H.newNumber=d++),s.lines.push(H)}}function $(A,H){for(var F=H;F<ne.length-3;){if(A.startsWith("diff"))return!1;if(ne[F].startsWith(m)&&ne[F+1].startsWith(p)&&ne[F+2].startsWith(y))return!0;F++}return!1}return ne.forEach(function(A,H){if(!(!A||A.startsWith("*"))){var F,ee=ne[H-1],ie=ne[H+1],ae=ne[H+2];if(A.startsWith("diff")){Ne();var me=/^diff --git "?([a-ciow]\/.+)"? "?([a-ciow]\/.+)"?/;if((F=me.exec(A))&&(u=Ka(F[1],void 0,t.dstPrefix),f=Ka(F[2],void 0,t.srcPrefix)),i===null)throw new Error("Where is my file !!!");i.isGitDiff=!0;return}if((!i||!i.isGitDiff&&i&&A.startsWith(m)&&ie.startsWith(p)&&ae.startsWith(y))&&Ne(),!(i!=null&&i.isTooBig)){if(i&&(typeof t.diffMaxChanges=="number"&&i.addedLines+i.deletedLines>t.diffMaxChanges||typeof t.diffMaxLineLength=="number"&&A.length>t.diffMaxLineLength)){i.isTooBig=!0,i.addedLines=0,i.deletedLines=0,i.blocks=[],s=null;var Le=typeof t.diffTooBigMessage=="function"?t.diffTooBigMessage(n.length):"Diff too big to be displayed";fe(Le);return}if(A.startsWith(m)&&ie.startsWith(p)||A.startsWith(p)&&ee.startsWith(m)){if(i&&!i.oldName&&A.startsWith("--- ")&&(F=v8(A,t.srcPrefix))){i.oldName=F,i.language=K9(i.oldName,i.language);return}if(i&&!i.newName&&A.startsWith("+++ ")&&(F=w8(A,t.dstPrefix))){i.newName=F,i.language=K9(i.newName,i.language);return}}if(i&&(A.startsWith(y)||i.isGitDiff&&i.oldName&&i.newName&&!s)){fe(A);return}if(s&&(A.startsWith("+")||A.startsWith("-")||A.startsWith(" "))){he(A);return}var X=!$(A,H);if(i===null)throw new Error("Where is my file !!!");(F=b.exec(A))?i.oldMode=F[1]:(F=v.exec(A))?i.newMode=F[1]:(F=T.exec(A))?(i.deletedFileMode=F[1],i.isDeleted=!0):(F=x.exec(A))?(i.newFileMode=F[1],i.isNew=!0):(F=k.exec(A))?(X&&(i.oldName=F[1]),i.isCopy=!0):(F=I.exec(A))?(X&&(i.newName=F[1]),i.isCopy=!0):(F=C.exec(A))?(X&&(i.oldName=F[1]),i.isRename=!0):(F=M.exec(A))?(X&&(i.newName=F[1]),i.isRename=!0):(F=z.exec(A))?(i.isBinary=!0,i.oldName=Ka(F[1],void 0,t.srcPrefix),i.newName=Ka(F[2],void 0,t.dstPrefix),fe("Binary file")):O.test(A)?(i.isBinary=!0,fe(A)):(F=N.exec(A))?i.unchangedPercentage=parseInt(F[1],10):(F=L.exec(A))?i.changedPercentage=parseInt(F[1],10):(F=j.exec(A))?(i.checksumBefore=F[1],i.checksumAfter=F[2],F[3]&&(i.mode=F[3])):(F=R.exec(A))?(i.checksumBefore=[F[2],F[3]],i.checksumAfter=F[1]):(F=P.exec(A))?(i.oldMode=[F[2],F[3]],i.newMode=F[1]):(F=Z.exec(A))?(i.newFileMode=F[1],i.isNew=!0):(F=B.exec(A))&&(i.deletedFileMode=F[1],i.isDeleted=!0)}}}),ue(),Ce(),n}function mi(){}mi.prototype={diff:function(t,n){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=i.callback;typeof i=="function"&&(s=i,i={}),this.options=i;var o=this;function c(T){return s?(setTimeout(function(){s(void 0,T)},0),!0):T}t=this.castInput(t),n=this.castInput(n),t=this.removeEmpty(this.tokenize(t)),n=this.removeEmpty(this.tokenize(n));var d=n.length,u=t.length,f=1,m=d+u,p=[{newPos:-1,components:[]}],y=this.extractCommon(p[0],n,t,0);if(p[0].newPos+1>=d&&y+1>=u)return c([{value:this.join(n),count:n.length}]);function b(){for(var T=-1*f;T<=f;T+=2){var x=void 0,k=p[T-1],I=p[T+1],C=(I?I.newPos:0)-T;k&&(p[T-1]=void 0);var M=k&&k.newPos+1<d,N=I&&0<=C&&C<u;if(!M&&!N){p[T]=void 0;continue}if(!M||N&&k.newPos<I.newPos?(x=N8(I),o.pushComponent(x.components,void 0,!0)):(x=k,x.newPos++,o.pushComponent(x.components,!0,void 0)),C=o.extractCommon(x,n,t,T),x.newPos+1>=d&&C+1>=u)return c(I8(o,x.components,n,t,o.useLongestToken));p[T]=x}f++}if(s)(function T(){setTimeout(function(){if(f>m)return s();b()||T()},0)})();else for(;f<=m;){var v=b();if(v)return v}},pushComponent:function(t,n,i){var s=t[t.length-1];s&&s.added===n&&s.removed===i?t[t.length-1]={count:s.count+1,added:n,removed:i}:t.push({count:1,added:n,removed:i})},extractCommon:function(t,n,i,s){for(var o=n.length,c=i.length,d=t.newPos,u=d-s,f=0;d+1<o&&u+1<c&&this.equals(n[d+1],i[u+1]);)d++,u++,f++;return f&&t.components.push({count:f}),t.newPos=d,u},equals:function(t,n){return this.options.comparator?this.options.comparator(t,n):t===n||this.options.ignoreCase&&t.toLowerCase()===n.toLowerCase()},removeEmpty:function(t){for(var n=[],i=0;i<t.length;i++)t[i]&&n.push(t[i]);return n},castInput:function(t){return t},tokenize:function(t){return t.split("")},join:function(t){return t.join("")}};function I8(e,t,n,i,s){for(var o=0,c=t.length,d=0,u=0;o<c;o++){var f=t[o];if(f.removed){if(f.value=e.join(i.slice(u,u+f.count)),u+=f.count,o&&t[o-1].added){var p=t[o-1];t[o-1]=t[o],t[o]=p}}else{if(!f.added&&s){var m=n.slice(d,d+f.count);m=m.map(function(b,v){var T=i[u+v];return T.length>b.length?T:b}),f.value=e.join(m)}else f.value=e.join(n.slice(d,d+f.count));d+=f.count,f.added||(u+=f.count)}}var y=t[c-1];return c>1&&typeof y.value=="string"&&(y.added||y.removed)&&e.equals("",y.value)&&(t[c-2].value+=y.value,t.pop()),t}function N8(e){return{newPos:e.newPos,components:e.components.slice(0)}}var L8=new mi;function k8(e,t,n){return L8.diff(e,t,n)}var e3=/^[A-Za-z\xC0-\u02C6\u02C8-\u02D7\u02DE-\u02FF\u1E00-\u1EFF]+$/,t3=/\S/,cu=new mi;cu.equals=function(e,t){return this.options.ignoreCase&&(e=e.toLowerCase(),t=t.toLowerCase()),e===t||this.options.ignoreWhitespace&&!t3.test(e)&&!t3.test(t)},cu.tokenize=function(e){for(var t=e.split(/([^\S\r\n]+|[()[\]{}'"\r\n]|\b)/),n=0;n<t.length-1;n++)!t[n+1]&&t[n+2]&&e3.test(t[n])&&e3.test(t[n+2])&&(t[n]+=t[n+2],t.splice(n+1,2),n--);return t};function T8(e,t,n){return cu.diff(e,t,n)}var n3=new mi;n3.tokenize=function(e){var t=[],n=e.split(/(\n|\r\n)/);n[n.length-1]||n.pop();for(var i=0;i<n.length;i++){var s=n[i];i%2&&!this.options.newlineIsToken?t[t.length-1]+=s:(this.options.ignoreWhitespace&&(s=s.trim()),t.push(s))}return t};var x8=new mi;x8.tokenize=function(e){return e.split(/(\S.+?[.!?])(?=\s+|$)/)};var S8=new mi;S8.tokenize=function(e){return e.split(/([{}:;,]|\s+)/)};function Il(e){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Il=function(t){return typeof t}:Il=function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Il(e)}var D8=Object.prototype.toString,$r=new mi;$r.useLongestToken=!0,$r.tokenize=n3.tokenize,$r.castInput=function(e){var t=this.options,n=t.undefinedReplacement,i=t.stringifyReplacer,s=i===void 0?function(o,c){return typeof c=="undefined"?n:c}:i;return typeof e=="string"?e:JSON.stringify(uu(e,null,null,s),s," ")},$r.equals=function(e,t){return mi.prototype.equals.call($r,e.replace(/,([\r\n])/g,"$1"),t.replace(/,([\r\n])/g,"$1"))};function uu(e,t,n,i,s){t=t||[],n=n||[],i&&(e=i(s,e));var o;for(o=0;o<t.length;o+=1)if(t[o]===e)return n[o];var c;if(D8.call(e)==="[object Array]"){for(t.push(e),c=new Array(e.length),n.push(c),o=0;o<e.length;o+=1)c[o]=uu(e[o],t,n,i,s);return t.pop(),n.pop(),c}if(e&&e.toJSON&&(e=e.toJSON()),Il(e)==="object"&&e!==null){t.push(e),c={},n.push(c);var d=[],u;for(u in e)e.hasOwnProperty(u)&&d.push(u);for(d.sort(),o=0;o<d.length;o+=1)u=d[o],c[u]=uu(e[u],t,n,i,u);t.pop(),n.pop()}else c=e;return c}var du=new mi;du.tokenize=function(e){return e.slice()},du.join=du.removeEmpty=function(e){return e};function j8(e,t){if(e.length===0)return t.length;if(t.length===0)return e.length;var n=[],i;for(i=0;i<=t.length;i++)n[i]=[i];var s;for(s=0;s<=e.length;s++)n[0][s]=s;for(i=1;i<=t.length;i++)for(s=1;s<=e.length;s++)t.charAt(i-1)===e.charAt(s-1)?n[i][s]=n[i-1][s-1]:n[i][s]=Math.min(n[i-1][s-1]+1,Math.min(n[i][s-1]+1,n[i-1][s]+1));return n[t.length][e.length]}function fu(e){return function(t,n){var i=e(t).trim(),s=e(n).trim(),o=j8(i,s);return o/(i.length+s.length)}}function hu(e){function t(i,s,o){o===void 0&&(o=new Map);for(var c=1/0,d,u=0;u<i.length;++u)for(var f=0;f<s.length;++f){var m=JSON.stringify([i[u],s[f]]),p=void 0;o.has(m)&&(p=o.get(m))||(p=e(i[u],s[f]),o.set(m,p)),p<c&&(c=p,d={indexA:u,indexB:f,score:c})}return d}function n(i,s,o,c){o===void 0&&(o=0),c===void 0&&(c=new Map);var d=t(i,s,c);if(!d||i.length+s.length<3)return[[i,s]];var u=i.slice(0,d.indexA),f=s.slice(0,d.indexB),m=[i[d.indexA]],p=[s[d.indexB]],y=d.indexA+1,b=d.indexB+1,v=i.slice(y),T=s.slice(b),x=n(u,f,o+1,c),k=n(m,p,o+1,c),I=n(v,T,o+1,c),C=k;return(d.indexA>0||d.indexB>0)&&(C=x.concat(C)),(i.length>y||s.length>b)&&(C=C.concat(I)),C}return n}var Nl=globalThis&&globalThis.__assign||function(){return Nl=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++){t=arguments[n];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},Nl.apply(this,arguments)},Qt={INSERTS:"d2h-ins",DELETES:"d2h-del",CONTEXT:"d2h-cntx",INFO:"d2h-info",INSERT_CHANGES:"d2h-ins d2h-change",DELETE_CHANGES:"d2h-del d2h-change"},gu={matching:g8.NONE,matchWordsThreshold:.25,maxLineLengthHighlight:1e4,diffStyle:m8.WORD},Kn="/",i3=fu(function(e){return e.value}),z8=hu(i3);function mu(e){return e.indexOf("dev/null")!==-1}function O8(e){return e.replace(/(<ins[^>]*>((.|\n)*?)<\/ins>)/g,"")}function E8(e){return e.replace(/(<del[^>]*>((.|\n)*?)<\/del>)/g,"")}function Ll(e){switch(e){case Mt.CONTEXT:return Qt.CONTEXT;case Mt.INSERT:return Qt.INSERTS;case Mt.DELETE:return Qt.DELETES}}function P8(e){return e?2:1}function Xa(e){return e.slice(0).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;").replace(/\//g,"&#x2F;")}function Xn(e,t,n){n===void 0&&(n=!0);var i=P8(t);return{prefix:e.substring(0,i),content:n?Xa(e.substring(i)):e.substring(i)}}function kl(e){var t=U9(e.oldName),n=U9(e.newName);if(t!==n&&!mu(t)&&!mu(n)){for(var i=[],s=[],o=t.split(Kn),c=n.split(Kn),d=o.length,u=c.length,f=0,m=d-1,p=u-1;f<m&&f<p&&o[f]===c[f];)i.push(c[f]),f+=1;for(;m>f&&p>f&&o[m]===c[p];)s.unshift(c[p]),m-=1,p-=1;var y=i.join(Kn),b=s.join(Kn),v=o.slice(f,m+1).join(Kn),T=c.slice(f,p+1).join(Kn);return y.length&&b.length?y+Kn+"{"+v+" \u2192 "+T+"}"+Kn+b:y.length?y+Kn+"{"+v+" \u2192 "+T+"}":b.length?"{"+v+" \u2192 "+T+"}"+Kn+b:t+" \u2192 "+n}else return mu(n)?t:n}function pu(e){return"d2h-".concat(C8(kl(e)).toString().slice(-6))}function bu(e){var t="file-changed";return e.isRename||e.isCopy?t="file-renamed":e.isNew?t="file-added":e.isDeleted?t="file-deleted":e.newName!==e.oldName&&(t="file-renamed"),t}function a3(e,t,n,i){i===void 0&&(i={});var s=Nl(Nl({},gu),i),o=s.matching,c=s.maxLineLengthHighlight,d=s.matchWordsThreshold,u=s.diffStyle,f=Xn(e,n,!1),m=Xn(t,n,!1);if(f.content.length>c||m.content.length>c)return{oldLine:{prefix:f.prefix,content:Xa(f.content)},newLine:{prefix:m.prefix,content:Xa(m.content)}};var p=u==="char"?k8(f.content,m.content):T8(f.content,m.content),y=[];if(u==="word"&&o==="words"){var b=p.filter(function(k){return k.removed}),v=p.filter(function(k){return k.added}),T=z8(v,b);T.forEach(function(k){if(k[0].length===1&&k[1].length===1){var I=i3(k[0][0],k[1][0]);I<d&&(y.push(k[0][0]),y.push(k[1][0]))}})}var x=p.reduce(function(k,I){var C=I.added?"ins":I.removed?"del":null,M=y.indexOf(I)>-1?' class="d2h-change"':"",N=Xa(I.value);return C!==null?"".concat(k,"<").concat(C).concat(M,">").concat(N,"</").concat(C,">"):"".concat(k).concat(N)},"");return{oldLine:{prefix:f.prefix,content:O8(x)},newLine:{prefix:m.prefix,content:E8(x)}}}var r3="file-summary",A8="icon";function V8(e,t){var n=e.map(function(i){return t.render(r3,"line",{fileHtmlId:pu(i),oldName:i.oldName,newName:i.newName,fileName:kl(i),deletedLines:"-"+i.deletedLines,addedLines:"+"+i.addedLines},{fileIcon:t.template(A8,bu(i))})}).join(`
64
+ `);return t.render(r3,"wrapper",{filesNumber:e.length,files:n})}var Xt=globalThis&&globalThis.__assign||function(){return Xt=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++){t=arguments[n];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},Xt.apply(this,arguments)},s3=Xt(Xt({},gu),{renderNothingWhenEmpty:!1,matchingMaxComparisons:2500,maxLineSizeInBlockForComparison:200}),Kr="generic",l3="line-by-line",J8="icon",Q8="tag",R8=function(){function e(t,n){n===void 0&&(n={}),this.hoganUtils=t,this.config=Xt(Xt({},s3),n)}return e.prototype.render=function(t){var n=this,i=t.map(function(s){var o;return s.blocks.length?o=n.generateFileHtml(s):o=n.generateEmptyDiff(),n.makeFileDiffHtml(s,o)}).join(`
65
+ `);return this.hoganUtils.render(Kr,"wrapper",{content:i})},e.prototype.makeFileDiffHtml=function(t,n){if(this.config.renderNothingWhenEmpty&&Array.isArray(t.blocks)&&t.blocks.length===0)return"";var i=this.hoganUtils.template(l3,"file-diff"),s=this.hoganUtils.template(Kr,"file-path"),o=this.hoganUtils.template(J8,"file"),c=this.hoganUtils.template(Q8,bu(t));return i.render({file:t,fileHtmlId:pu(t),diffs:n,filePath:s.render({fileDiffName:kl(t)},{fileIcon:o,fileTag:c})})},e.prototype.generateEmptyDiff=function(){return this.hoganUtils.render(Kr,"empty-diff",{contentClass:"d2h-code-line",CSSLineClass:Qt})},e.prototype.generateFileHtml=function(t){var n=this,i=hu(fu(function(s){return Xn(s.content,t.isCombined).content}));return t.blocks.map(function(s){var o=n.hoganUtils.render(Kr,"block-header",{CSSLineClass:Qt,blockHeader:t.isTooBig?s.header:Xa(s.header),lineClass:"d2h-code-linenumber",contentClass:"d2h-code-line"});return n.applyLineGroupping(s).forEach(function(c){var d=c[0],u=c[1],f=c[2];if(u.length&&f.length&&!d.length)n.applyRematchMatching(u,f,i).map(function(b){var v=b[0],T=b[1],x=n.processChangedLines(t.isCombined,v,T),k=x.left,I=x.right;o+=k,o+=I});else if(d.length)d.forEach(function(b){var v=Xn(b.content,t.isCombined),T=v.prefix,x=v.content;o+=n.generateSingleLineHtml({type:Qt.CONTEXT,prefix:T,content:x,oldNumber:b.oldNumber,newNumber:b.newNumber})});else if(u.length||f.length){var m=n.processChangedLines(t.isCombined,u,f),p=m.left,y=m.right;o+=p,o+=y}else console.error("Unknown state reached while processing groups of lines",d,u,f)}),o}).join(`
66
+ `)},e.prototype.applyLineGroupping=function(t){for(var n=[],i=[],s=[],o=0;o<t.lines.length;o++){var c=t.lines[o];(c.type!==Mt.INSERT&&s.length||c.type===Mt.CONTEXT&&i.length>0)&&(n.push([[],i,s]),i=[],s=[]),c.type===Mt.CONTEXT?n.push([[c],[],[]]):c.type===Mt.INSERT&&i.length===0?n.push([[],[],[c]]):c.type===Mt.INSERT&&i.length>0?s.push(c):c.type===Mt.DELETE&&i.push(c)}return(i.length||s.length)&&(n.push([[],i,s]),i=[],s=[]),n},e.prototype.applyRematchMatching=function(t,n,i){var s=t.length*n.length,o=Math.max.apply(null,[0].concat(t.concat(n).map(function(d){return d.content.length}))),c=s<this.config.matchingMaxComparisons&&o<this.config.maxLineSizeInBlockForComparison&&(this.config.matching==="lines"||this.config.matching==="words");return c?i(t,n):[[t,n]]},e.prototype.processChangedLines=function(t,n,i){for(var s={right:"",left:""},o=Math.max(n.length,i.length),c=0;c<o;c++){var d=n[c],u=i[c],f=d!==void 0&&u!==void 0?a3(d.content,u.content,t,this.config):void 0,m=d!==void 0&&d.oldNumber!==void 0?Xt(Xt({},f!==void 0?{prefix:f.oldLine.prefix,content:f.oldLine.content,type:Qt.DELETE_CHANGES}:Xt(Xt({},Xn(d.content,t)),{type:Ll(d.type)})),{oldNumber:d.oldNumber,newNumber:d.newNumber}):void 0,p=u!==void 0&&u.newNumber!==void 0?Xt(Xt({},f!==void 0?{prefix:f.newLine.prefix,content:f.newLine.content,type:Qt.INSERT_CHANGES}:Xt(Xt({},Xn(u.content,t)),{type:Ll(u.type)})),{oldNumber:u.oldNumber,newNumber:u.newNumber}):void 0,y=this.generateLineHtml(m,p),b=y.left,v=y.right;s.left+=b,s.right+=v}return s},e.prototype.generateLineHtml=function(t,n){return{left:this.generateSingleLineHtml(t),right:this.generateSingleLineHtml(n)}},e.prototype.generateSingleLineHtml=function(t){if(t===void 0)return"";var n=this.hoganUtils.render(l3,"numbers",{oldNumber:t.oldNumber||"",newNumber:t.newNumber||""});return this.hoganUtils.render(Kr,"line",{type:t.type,lineClass:"d2h-code-linenumber",contentClass:"d2h-code-line",prefix:t.prefix===" "?"&nbsp;":t.prefix,content:t.content,lineNumber:n})},e}(),qt=globalThis&&globalThis.__assign||function(){return qt=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++){t=arguments[n];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},qt.apply(this,arguments)},o3=qt(qt({},gu),{renderNothingWhenEmpty:!1,matchingMaxComparisons:2500,maxLineSizeInBlockForComparison:200}),Xr="generic",_8="side-by-side",W8="icon",H8="tag",B8=function(){function e(t,n){n===void 0&&(n={}),this.hoganUtils=t,this.config=qt(qt({},o3),n)}return e.prototype.render=function(t){var n=this,i=t.map(function(s){var o;return s.blocks.length?o=n.generateFileHtml(s):o=n.generateEmptyDiff(),n.makeFileDiffHtml(s,o)}).join(`
67
+ `);return this.hoganUtils.render(Xr,"wrapper",{content:i})},e.prototype.makeFileDiffHtml=function(t,n){if(this.config.renderNothingWhenEmpty&&Array.isArray(t.blocks)&&t.blocks.length===0)return"";var i=this.hoganUtils.template(_8,"file-diff"),s=this.hoganUtils.template(Xr,"file-path"),o=this.hoganUtils.template(W8,"file"),c=this.hoganUtils.template(H8,bu(t));return i.render({file:t,fileHtmlId:pu(t),diffs:n,filePath:s.render({fileDiffName:kl(t)},{fileIcon:o,fileTag:c})})},e.prototype.generateEmptyDiff=function(){return{right:"",left:this.hoganUtils.render(Xr,"empty-diff",{contentClass:"d2h-code-side-line",CSSLineClass:Qt})}},e.prototype.generateFileHtml=function(t){var n=this,i=hu(fu(function(s){return Xn(s.content,t.isCombined).content}));return t.blocks.map(function(s){var o={left:n.makeHeaderHtml(s.header,t),right:n.makeHeaderHtml("")};return n.applyLineGroupping(s).forEach(function(c){var d=c[0],u=c[1],f=c[2];if(u.length&&f.length&&!d.length)n.applyRematchMatching(u,f,i).map(function(b){var v=b[0],T=b[1],x=n.processChangedLines(t.isCombined,v,T),k=x.left,I=x.right;o.left+=k,o.right+=I});else if(d.length)d.forEach(function(b){var v=Xn(b.content,t.isCombined),T=v.prefix,x=v.content,k=n.generateLineHtml({type:Qt.CONTEXT,prefix:T,content:x,number:b.oldNumber},{type:Qt.CONTEXT,prefix:T,content:x,number:b.newNumber}),I=k.left,C=k.right;o.left+=I,o.right+=C});else if(u.length||f.length){var m=n.processChangedLines(t.isCombined,u,f),p=m.left,y=m.right;o.left+=p,o.right+=y}else console.error("Unknown state reached while processing groups of lines",d,u,f)}),o}).reduce(function(s,o){return{left:s.left+o.left,right:s.right+o.right}},{left:"",right:""})},e.prototype.applyLineGroupping=function(t){for(var n=[],i=[],s=[],o=0;o<t.lines.length;o++){var c=t.lines[o];(c.type!==Mt.INSERT&&s.length||c.type===Mt.CONTEXT&&i.length>0)&&(n.push([[],i,s]),i=[],s=[]),c.type===Mt.CONTEXT?n.push([[c],[],[]]):c.type===Mt.INSERT&&i.length===0?n.push([[],[],[c]]):c.type===Mt.INSERT&&i.length>0?s.push(c):c.type===Mt.DELETE&&i.push(c)}return(i.length||s.length)&&(n.push([[],i,s]),i=[],s=[]),n},e.prototype.applyRematchMatching=function(t,n,i){var s=t.length*n.length,o=Math.max.apply(null,[0].concat(t.concat(n).map(function(d){return d.content.length}))),c=s<this.config.matchingMaxComparisons&&o<this.config.maxLineSizeInBlockForComparison&&(this.config.matching==="lines"||this.config.matching==="words");return c?i(t,n):[[t,n]]},e.prototype.makeHeaderHtml=function(t,n){return this.hoganUtils.render(Xr,"block-header",{CSSLineClass:Qt,blockHeader:n!=null&&n.isTooBig?t:Xa(t),lineClass:"d2h-code-side-linenumber",contentClass:"d2h-code-side-line"})},e.prototype.processChangedLines=function(t,n,i){for(var s={right:"",left:""},o=Math.max(n.length,i.length),c=0;c<o;c++){var d=n[c],u=i[c],f=d!==void 0&&u!==void 0?a3(d.content,u.content,t,this.config):void 0,m=d!==void 0&&d.oldNumber!==void 0?qt(qt({},f!==void 0?{prefix:f.oldLine.prefix,content:f.oldLine.content,type:Qt.DELETE_CHANGES}:qt(qt({},Xn(d.content,t)),{type:Ll(d.type)})),{number:d.oldNumber}):void 0,p=u!==void 0&&u.newNumber!==void 0?qt(qt({},f!==void 0?{prefix:f.newLine.prefix,content:f.newLine.content,type:Qt.INSERT_CHANGES}:qt(qt({},Xn(u.content,t)),{type:Ll(u.type)})),{number:u.newNumber}):void 0,y=this.generateLineHtml(m,p),b=y.left,v=y.right;s.left+=b,s.right+=v}return s},e.prototype.generateLineHtml=function(t,n){return{left:this.generateSingleHtml(t),right:this.generateSingleHtml(n)}},e.prototype.generateSingleHtml=function(t){var n="d2h-code-side-linenumber",i="d2h-code-side-line";return this.hoganUtils.render(Xr,"line",{type:(t==null?void 0:t.type)||"".concat(Qt.CONTEXT," d2h-emptyplaceholder"),lineClass:t!==void 0?n:"".concat(n," d2h-code-side-emptyplaceholder"),contentClass:t!==void 0?i:"".concat(i," d2h-code-side-emptyplaceholder"),prefix:(t==null?void 0:t.prefix)===" "?"&nbsp;":t==null?void 0:t.prefix,content:t==null?void 0:t.content,lineNumber:t==null?void 0:t.number})},e}(),c3={};(function(e){(function(t){var n=/\S/,i=/\"/g,s=/\n/g,o=/\r/g,c=/\\/g,d=/\u2028/,u=/\u2029/;t.tags={"#":1,"^":2,"<":3,$:4,"/":5,"!":6,">":7,"=":8,_v:9,"{":10,"&":11,_t:12},t.scan=function(O,R){var P=O.length,Z=0,B=1,ne=2,ue=Z,Ce=null,Ne=null,fe="",he=[],$=!1,A=0,H=0,F="{{",ee="}}";function ie(){fe.length>0&&(he.push({tag:"_t",text:new String(fe)}),fe="")}function ae(){for(var X=!0,W=H;W<he.length;W++)if(X=t.tags[he[W].tag]<t.tags._v||he[W].tag=="_t"&&he[W].text.match(n)===null,!X)return!1;return X}function me(X,W){if(ie(),X&&ae())for(var Q=H,re;Q<he.length;Q++)he[Q].text&&((re=he[Q+1])&&re.tag==">"&&(re.indent=he[Q].text.toString()),he.splice(Q,1));else W||he.push({tag:`
68
+ `});$=!1,H=he.length}function Le(X,W){var Q="="+ee,re=X.indexOf(Q,W),D=m(X.substring(X.indexOf("=",W)+1,re)).split(" ");return F=D[0],ee=D[D.length-1],re+Q.length-1}for(R&&(R=R.split(" "),F=R[0],ee=R[1]),A=0;A<P;A++)ue==Z?p(F,O,A)?(--A,ie(),ue=B):O.charAt(A)==`
69
+ `?me($):fe+=O.charAt(A):ue==B?(A+=F.length-1,Ne=t.tags[O.charAt(A+1)],Ce=Ne?O.charAt(A+1):"_v",Ce=="="?(A=Le(O,A),ue=Z):(Ne&&A++,ue=ne),$=A):p(ee,O,A)?(he.push({tag:Ce,n:m(fe),otag:F,ctag:ee,i:Ce=="/"?$-F.length:A+ee.length}),fe="",A+=ee.length-1,ue=Z,Ce=="{"&&(ee=="}}"?A++:f(he[he.length-1]))):fe+=O.charAt(A);return me($,!0),he};function f(z){z.n.substr(z.n.length-1)==="}"&&(z.n=z.n.substring(0,z.n.length-1))}function m(z){return z.trim?z.trim():z.replace(/^\s*|\s*$/g,"")}function p(z,O,R){if(O.charAt(R)!=z.charAt(0))return!1;for(var P=1,Z=z.length;P<Z;P++)if(O.charAt(R+P)!=z.charAt(P))return!1;return!0}var y={_t:!0,"\n":!0,$:!0,"/":!0};function b(z,O,R,P){var Z=[],B=null,ne=null,ue=null;for(ne=R[R.length-1];z.length>0;){if(ue=z.shift(),ne&&ne.tag=="<"&&!(ue.tag in y))throw new Error("Illegal content in < super tag.");if(t.tags[ue.tag]<=t.tags.$||v(ue,P))R.push(ue),ue.nodes=b(z,ue.tag,R,P);else if(ue.tag=="/"){if(R.length===0)throw new Error("Closing tag without opener: /"+ue.n);if(B=R.pop(),ue.n!=B.n&&!T(ue.n,B.n,P))throw new Error("Nesting error: "+B.n+" vs. "+ue.n);return B.end=ue.i,Z}else ue.tag==`
70
+ `&&(ue.last=z.length==0||z[0].tag==`
71
+ `);Z.push(ue)}if(R.length>0)throw new Error("missing closing tag: "+R.pop().n);return Z}function v(z,O){for(var R=0,P=O.length;R<P;R++)if(O[R].o==z.n)return z.tag="#",!0}function T(z,O,R){for(var P=0,Z=R.length;P<Z;P++)if(R[P].c==z&&R[P].o==O)return!0}function x(z){var O=[];for(var R in z)O.push('"'+C(R)+'": function(c,p,t,i) {'+z[R]+"}");return"{ "+O.join(",")+" }"}function k(z){var O=[];for(var R in z.partials)O.push('"'+C(R)+'":{name:"'+C(z.partials[R].name)+'", '+k(z.partials[R])+"}");return"partials: {"+O.join(",")+"}, subs: "+x(z.subs)}t.stringify=function(z,O,R){return"{code: function (c,p,i) { "+t.wrapMain(z.code)+" },"+k(z)+"}"};var I=0;t.generate=function(z,O,R){I=0;var P={code:"",subs:{},partials:{}};return t.walk(z,P),R.asString?this.stringify(P,O,R):this.makeTemplate(P,O,R)},t.wrapMain=function(z){return'var t=this;t.b(i=i||"");'+z+"return t.fl();"},t.template=t.Template,t.makeTemplate=function(z,O,R){var P=this.makePartials(z);return P.code=new Function("c","p","i",this.wrapMain(z.code)),new this.template(P,O,this,R)},t.makePartials=function(z){var O,R={subs:{},partials:z.partials,name:z.name};for(O in R.partials)R.partials[O]=this.makePartials(R.partials[O]);for(O in z.subs)R.subs[O]=new Function("c","p","t","i",z.subs[O]);return R};function C(z){return z.replace(c,"\\\\").replace(i,'\\"').replace(s,"\\n").replace(o,"\\r").replace(d,"\\u2028").replace(u,"\\u2029")}function M(z){return~z.indexOf(".")?"d":"f"}function N(z,O){var R="<"+(O.prefix||""),P=R+z.n+I++;return O.partials[P]={name:z.n,partials:{}},O.code+='t.b(t.rp("'+C(P)+'",c,p,"'+(z.indent||"")+'"));',P}t.codegen={"#":function(z,O){O.code+="if(t.s(t."+M(z.n)+'("'+C(z.n)+'",c,p,1),c,p,0,'+z.i+","+z.end+',"'+z.otag+" "+z.ctag+'")){t.rs(c,p,function(c,p,t){',t.walk(z.nodes,O),O.code+="});c.pop();}"},"^":function(z,O){O.code+="if(!t.s(t."+M(z.n)+'("'+C(z.n)+'",c,p,1),c,p,1,0,0,"")){',t.walk(z.nodes,O),O.code+="};"},">":N,"<":function(z,O){var R={partials:{},code:"",subs:{},inPartial:!0};t.walk(z.nodes,R);var P=O.partials[N(z,O)];P.subs=R.subs,P.partials=R.partials},$:function(z,O){var R={subs:{},code:"",partials:O.partials,prefix:z.n};t.walk(z.nodes,R),O.subs[z.n]=R.code,O.inPartial||(O.code+='t.sub("'+C(z.n)+'",c,p,i);')},"\n":function(z,O){O.code+=j('"\\n"'+(z.last?"":" + i"))},_v:function(z,O){O.code+="t.b(t.v(t."+M(z.n)+'("'+C(z.n)+'",c,p,0)));'},_t:function(z,O){O.code+=j('"'+C(z.text)+'"')},"{":L,"&":L};function L(z,O){O.code+="t.b(t.t(t."+M(z.n)+'("'+C(z.n)+'",c,p,0)));'}function j(z){return"t.b("+z+");"}t.walk=function(z,O){for(var R,P=0,Z=z.length;P<Z;P++)R=t.codegen[z[P].tag],R&&R(z[P],O);return O},t.parse=function(z,O,R){return R=R||{},b(z,"",[],R.sectionTags||[])},t.cache={},t.cacheKey=function(z,O){return[z,!!O.asString,!!O.disableLambda,O.delimiters,!!O.modelGet].join("||")},t.compile=function(z,O){O=O||{};var R=t.cacheKey(z,O),P=this.cache[R];if(P){var Z=P.partials;for(var B in Z)delete Z[B].instance;return P}return P=this.generate(this.parse(this.scan(z,O.delimiters),z,O),z,O),this.cache[R]=P}})(e)})(c3);var u3={};(function(e){(function(t){t.Template=function(b,v,T,x){b=b||{},this.r=b.code||this.r,this.c=T,this.options=x||{},this.text=v||"",this.partials=b.partials||{},this.subs=b.subs||{},this.buf=""},t.Template.prototype={r:function(b,v,T){return""},v:p,t:m,render:function(v,T,x){return this.ri([v],T||{},x)},ri:function(b,v,T){return this.r(b,v,T)},ep:function(b,v){var T=this.partials[b],x=v[T.name];if(T.instance&&T.base==x)return T.instance;if(typeof x=="string"){if(!this.c)throw new Error("No compiler available.");x=this.c.compile(x,this.options)}if(!x)return null;if(this.partials[b].base=x,T.subs){v.stackText||(v.stackText={});for(key in T.subs)v.stackText[key]||(v.stackText[key]=this.activeSub!==void 0&&v.stackText[this.activeSub]?v.stackText[this.activeSub]:this.text);x=i(x,T.subs,T.partials,this.stackSubs,this.stackPartials,v.stackText)}return this.partials[b].instance=x,x},rp:function(b,v,T,x){var k=this.ep(b,T);return k?k.ri(v,T,x):""},rs:function(b,v,T){var x=b[b.length-1];if(!y(x)){T(b,v,this);return}for(var k=0;k<x.length;k++)b.push(x[k]),T(b,v,this),b.pop()},s:function(b,v,T,x,k,I,C){var M;return y(b)&&b.length===0?!1:(typeof b=="function"&&(b=this.ms(b,v,T,x,k,I,C)),M=!!b,!x&&M&&v&&v.push(typeof b=="object"?b:v[v.length-1]),M)},d:function(b,v,T,x){var k,I=b.split("."),C=this.f(I[0],v,T,x),M=this.options.modelGet,N=null;if(b==="."&&y(v[v.length-2]))C=v[v.length-1];else for(var L=1;L<I.length;L++)k=n(I[L],C,M),k!==void 0?(N=C,C=k):C="";return x&&!C?!1:(!x&&typeof C=="function"&&(v.push(N),C=this.mv(C,v,T),v.pop()),C)},f:function(b,v,T,x){for(var k=!1,I=null,C=!1,M=this.options.modelGet,N=v.length-1;N>=0;N--)if(I=v[N],k=n(b,I,M),k!==void 0){C=!0;break}return C?(!x&&typeof k=="function"&&(k=this.mv(k,v,T)),k):x?!1:""},ls:function(b,v,T,x,k){var I=this.options.delimiters;return this.options.delimiters=k,this.b(this.ct(m(b.call(v,x)),v,T)),this.options.delimiters=I,!1},ct:function(b,v,T){if(this.options.disableLambda)throw new Error("Lambda features disabled.");return this.c.compile(b,this.options).render(v,T)},b:function(b){this.buf+=b},fl:function(){var b=this.buf;return this.buf="",b},ms:function(b,v,T,x,k,I,C){var M,N=v[v.length-1],L=b.call(N);return typeof L=="function"?x?!0:(M=this.activeSub&&this.subsText&&this.subsText[this.activeSub]?this.subsText[this.activeSub]:this.text,this.ls(L,N,T,M.substring(k,I),C)):L},mv:function(b,v,T){var x=v[v.length-1],k=b.call(x);return typeof k=="function"?this.ct(m(k.call(x)),x,T):k},sub:function(b,v,T,x){var k=this.subs[b];k&&(this.activeSub=b,k(v,T,this,x),this.activeSub=!1)}};function n(b,v,T){var x;return v&&typeof v=="object"&&(v[b]!==void 0?x=v[b]:T&&v.get&&typeof v.get=="function"&&(x=v.get(b))),x}function i(b,v,T,x,k,I){function C(){}C.prototype=b;function M(){}M.prototype=b.subs;var N,L=new C;L.subs=new M,L.subsText={},L.buf="",x=x||{},L.stackSubs=x,L.subsText=I;for(N in v)x[N]||(x[N]=v[N]);for(N in x)L.subs[N]=x[N];k=k||{},L.stackPartials=k;for(N in T)k[N]||(k[N]=T[N]);for(N in k)L.partials[N]=k[N];return L}var s=/&/g,o=/</g,c=/>/g,d=/\'/g,u=/\"/g,f=/[&<>\"\']/;function m(b){return String(b==null?"":b)}function p(b){return b=m(b),f.test(b)?b.replace(s,"&amp;").replace(o,"&lt;").replace(c,"&gt;").replace(d,"&#39;").replace(u,"&quot;"):b}var y=Array.isArray||function(b){return Object.prototype.toString.call(b)==="[object Array]"}})(e)})(u3);var Tl=c3;Tl.Template=u3.Template,Tl.template=Tl.Template;var bt=Tl,It={};It["file-summary-line"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<li class="d2h-file-list-line">'),i.b(`
72
+ `+n),i.b(' <span class="d2h-file-name-wrapper">'),i.b(`
73
+ `+n),i.b(i.rp("<fileIcon0",e,t," ")),i.b(' <a href="#'),i.b(i.v(i.f("fileHtmlId",e,t,0))),i.b('" class="d2h-file-name">'),i.b(i.v(i.f("fileName",e,t,0))),i.b("</a>"),i.b(`
74
+ `+n),i.b(' <span class="d2h-file-stats">'),i.b(`
75
+ `+n),i.b(' <span class="d2h-lines-added">'),i.b(i.v(i.f("addedLines",e,t,0))),i.b("</span>"),i.b(`
76
+ `+n),i.b(' <span class="d2h-lines-deleted">'),i.b(i.v(i.f("deletedLines",e,t,0))),i.b("</span>"),i.b(`
77
+ `+n),i.b(" </span>"),i.b(`
78
+ `+n),i.b(" </span>"),i.b(`
79
+ `+n),i.b("</li>"),i.fl()},partials:{"<fileIcon0":{name:"fileIcon",partials:{},subs:{}}},subs:{}}),It["file-summary-wrapper"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<div class="d2h-file-list-wrapper">'),i.b(`
80
+ `+n),i.b(' <div class="d2h-file-list-header">'),i.b(`
81
+ `+n),i.b(' <span class="d2h-file-list-title">Files changed ('),i.b(i.v(i.f("filesNumber",e,t,0))),i.b(")</span>"),i.b(`
82
+ `+n),i.b(' <a class="d2h-file-switch d2h-hide">hide</a>'),i.b(`
83
+ `+n),i.b(' <a class="d2h-file-switch d2h-show">show</a>'),i.b(`
84
+ `+n),i.b(" </div>"),i.b(`
85
+ `+n),i.b(' <ol class="d2h-file-list">'),i.b(`
86
+ `+n),i.b(" "),i.b(i.t(i.f("files",e,t,0))),i.b(`
87
+ `+n),i.b(" </ol>"),i.b(`
88
+ `+n),i.b("</div>"),i.fl()},partials:{},subs:{}}),It["generic-block-header"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b("<tr>"),i.b(`
89
+ `+n),i.b(' <td class="'),i.b(i.v(i.f("lineClass",e,t,0))),i.b(" "),i.b(i.v(i.d("CSSLineClass.INFO",e,t,0))),i.b('"></td>'),i.b(`
90
+ `+n),i.b(' <td class="'),i.b(i.v(i.d("CSSLineClass.INFO",e,t,0))),i.b('">'),i.b(`
91
+ `+n),i.b(' <div class="'),i.b(i.v(i.f("contentClass",e,t,0))),i.b('">'),i.b(i.t(i.f("blockHeader",e,t,0))),i.b("</div>"),i.b(`
92
+ `+n),i.b(" </td>"),i.b(`
93
+ `+n),i.b("</tr>"),i.fl()},partials:{},subs:{}}),It["generic-empty-diff"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b("<tr>"),i.b(`
94
+ `+n),i.b(' <td class="'),i.b(i.v(i.d("CSSLineClass.INFO",e,t,0))),i.b('">'),i.b(`
95
+ `+n),i.b(' <div class="'),i.b(i.v(i.f("contentClass",e,t,0))),i.b('">'),i.b(`
96
+ `+n),i.b(" File without changes"),i.b(`
97
+ `+n),i.b(" </div>"),i.b(`
98
+ `+n),i.b(" </td>"),i.b(`
99
+ `+n),i.b("</tr>"),i.fl()},partials:{},subs:{}}),It["generic-file-path"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<span class="d2h-file-name-wrapper">'),i.b(`
100
+ `+n),i.b(i.rp("<fileIcon0",e,t," ")),i.b(' <span class="d2h-file-name">'),i.b(i.v(i.f("fileDiffName",e,t,0))),i.b("</span>"),i.b(`
101
+ `+n),i.b(i.rp("<fileTag1",e,t," ")),i.b("</span>"),i.b(`
102
+ `+n),i.b('<label class="d2h-file-collapse">'),i.b(`
103
+ `+n),i.b(' <input class="d2h-file-collapse-input" type="checkbox" name="viewed" value="viewed">'),i.b(`
104
+ `+n),i.b(" Viewed"),i.b(`
105
+ `+n),i.b("</label>"),i.fl()},partials:{"<fileIcon0":{name:"fileIcon",partials:{},subs:{}},"<fileTag1":{name:"fileTag",partials:{},subs:{}}},subs:{}}),It["generic-line"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b("<tr>"),i.b(`
106
+ `+n),i.b(' <td class="'),i.b(i.v(i.f("lineClass",e,t,0))),i.b(" "),i.b(i.v(i.f("type",e,t,0))),i.b('">'),i.b(`
107
+ `+n),i.b(" "),i.b(i.t(i.f("lineNumber",e,t,0))),i.b(`
108
+ `+n),i.b(" </td>"),i.b(`
109
+ `+n),i.b(' <td class="'),i.b(i.v(i.f("type",e,t,0))),i.b('">'),i.b(`
110
+ `+n),i.b(' <div class="'),i.b(i.v(i.f("contentClass",e,t,0))),i.b('">'),i.b(`
111
+ `+n),i.s(i.f("prefix",e,t,1),e,t,0,162,238,"{{ }}")&&(i.rs(e,t,function(s,o,c){c.b(' <span class="d2h-code-line-prefix">'),c.b(c.t(c.f("prefix",s,o,0))),c.b("</span>"),c.b(`
112
+ `+n)}),e.pop()),i.s(i.f("prefix",e,t,1),e,t,1,0,0,"")||(i.b(' <span class="d2h-code-line-prefix">&nbsp;</span>'),i.b(`
113
+ `+n)),i.s(i.f("content",e,t,1),e,t,0,371,445,"{{ }}")&&(i.rs(e,t,function(s,o,c){c.b(' <span class="d2h-code-line-ctn">'),c.b(c.t(c.f("content",s,o,0))),c.b("</span>"),c.b(`
114
+ `+n)}),e.pop()),i.s(i.f("content",e,t,1),e,t,1,0,0,"")||(i.b(' <span class="d2h-code-line-ctn"><br></span>'),i.b(`
115
+ `+n)),i.b(" </div>"),i.b(`
116
+ `+n),i.b(" </td>"),i.b(`
117
+ `+n),i.b("</tr>"),i.fl()},partials:{},subs:{}}),It["generic-wrapper"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<div class="d2h-wrapper">'),i.b(`
118
+ `+n),i.b(" "),i.b(i.t(i.f("content",e,t,0))),i.b(`
119
+ `+n),i.b("</div>"),i.fl()},partials:{},subs:{}}),It["icon-file-added"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<svg aria-hidden="true" class="d2h-icon d2h-added" height="16" title="added" version="1.1" viewBox="0 0 14 16"'),i.b(`
120
+ `+n),i.b(' width="14">'),i.b(`
121
+ `+n),i.b(' <path d="M13 1H1C0.45 1 0 1.45 0 2v12c0 0.55 0.45 1 1 1h12c0.55 0 1-0.45 1-1V2c0-0.55-0.45-1-1-1z m0 13H1V2h12v12zM6 9H3V7h3V4h2v3h3v2H8v3H6V9z"></path>'),i.b(`
122
+ `+n),i.b("</svg>"),i.fl()},partials:{},subs:{}}),It["icon-file-changed"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<svg aria-hidden="true" class="d2h-icon d2h-changed" height="16" title="modified" version="1.1"'),i.b(`
123
+ `+n),i.b(' viewBox="0 0 14 16" width="14">'),i.b(`
124
+ `+n),i.b(' <path d="M13 1H1C0.45 1 0 1.45 0 2v12c0 0.55 0.45 1 1 1h12c0.55 0 1-0.45 1-1V2c0-0.55-0.45-1-1-1z m0 13H1V2h12v12zM4 8c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3-3-1.34-3-3z"></path>'),i.b(`
125
+ `+n),i.b("</svg>"),i.fl()},partials:{},subs:{}}),It["icon-file-deleted"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<svg aria-hidden="true" class="d2h-icon d2h-deleted" height="16" title="removed" version="1.1"'),i.b(`
126
+ `+n),i.b(' viewBox="0 0 14 16" width="14">'),i.b(`
127
+ `+n),i.b(' <path d="M13 1H1C0.45 1 0 1.45 0 2v12c0 0.55 0.45 1 1 1h12c0.55 0 1-0.45 1-1V2c0-0.55-0.45-1-1-1z m0 13H1V2h12v12zM11 9H3V7h8v2z"></path>'),i.b(`
128
+ `+n),i.b("</svg>"),i.fl()},partials:{},subs:{}}),It["icon-file-renamed"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<svg aria-hidden="true" class="d2h-icon d2h-moved" height="16" title="renamed" version="1.1"'),i.b(`
129
+ `+n),i.b(' viewBox="0 0 14 16" width="14">'),i.b(`
130
+ `+n),i.b(' <path d="M6 9H3V7h3V4l5 4-5 4V9z m8-7v12c0 0.55-0.45 1-1 1H1c-0.55 0-1-0.45-1-1V2c0-0.55 0.45-1 1-1h12c0.55 0 1 0.45 1 1z m-1 0H1v12h12V2z"></path>'),i.b(`
131
+ `+n),i.b("</svg>"),i.fl()},partials:{},subs:{}}),It["icon-file"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<svg aria-hidden="true" class="d2h-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12">'),i.b(`
132
+ `+n),i.b(' <path d="M6 5H2v-1h4v1zM2 8h7v-1H2v1z m0 2h7v-1H2v1z m0 2h7v-1H2v1z m10-7.5v9.5c0 0.55-0.45 1-1 1H1c-0.55 0-1-0.45-1-1V2c0-0.55 0.45-1 1-1h7.5l3.5 3.5z m-1 0.5L8 2H1v12h10V5z"></path>'),i.b(`
133
+ `+n),i.b("</svg>"),i.fl()},partials:{},subs:{}}),It["line-by-line-file-diff"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<div id="'),i.b(i.v(i.f("fileHtmlId",e,t,0))),i.b('" class="d2h-file-wrapper" data-lang="'),i.b(i.v(i.d("file.language",e,t,0))),i.b('">'),i.b(`
134
+ `+n),i.b(' <div class="d2h-file-header">'),i.b(`
135
+ `+n),i.b(" "),i.b(i.t(i.f("filePath",e,t,0))),i.b(`
136
+ `+n),i.b(" </div>"),i.b(`
137
+ `+n),i.b(' <div class="d2h-file-diff">'),i.b(`
138
+ `+n),i.b(' <div class="d2h-code-wrapper">'),i.b(`
139
+ `+n),i.b(' <table class="d2h-diff-table">'),i.b(`
140
+ `+n),i.b(' <tbody class="d2h-diff-tbody">'),i.b(`
141
+ `+n),i.b(" "),i.b(i.t(i.f("diffs",e,t,0))),i.b(`
142
+ `+n),i.b(" </tbody>"),i.b(`
143
+ `+n),i.b(" </table>"),i.b(`
144
+ `+n),i.b(" </div>"),i.b(`
145
+ `+n),i.b(" </div>"),i.b(`
146
+ `+n),i.b("</div>"),i.fl()},partials:{},subs:{}}),It["line-by-line-numbers"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<div class="line-num1">'),i.b(i.v(i.f("oldNumber",e,t,0))),i.b("</div>"),i.b(`
147
+ `+n),i.b('<div class="line-num2">'),i.b(i.v(i.f("newNumber",e,t,0))),i.b("</div>"),i.fl()},partials:{},subs:{}}),It["side-by-side-file-diff"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<div id="'),i.b(i.v(i.f("fileHtmlId",e,t,0))),i.b('" class="d2h-file-wrapper" data-lang="'),i.b(i.v(i.d("file.language",e,t,0))),i.b('">'),i.b(`
148
+ `+n),i.b(' <div class="d2h-file-header">'),i.b(`
149
+ `+n),i.b(" "),i.b(i.t(i.f("filePath",e,t,0))),i.b(`
150
+ `+n),i.b(" </div>"),i.b(`
151
+ `+n),i.b(' <div class="d2h-files-diff">'),i.b(`
152
+ `+n),i.b(' <div class="d2h-file-side-diff">'),i.b(`
153
+ `+n),i.b(' <div class="d2h-code-wrapper">'),i.b(`
154
+ `+n),i.b(' <table class="d2h-diff-table">'),i.b(`
155
+ `+n),i.b(' <tbody class="d2h-diff-tbody">'),i.b(`
156
+ `+n),i.b(" "),i.b(i.t(i.d("diffs.left",e,t,0))),i.b(`
157
+ `+n),i.b(" </tbody>"),i.b(`
158
+ `+n),i.b(" </table>"),i.b(`
159
+ `+n),i.b(" </div>"),i.b(`
160
+ `+n),i.b(" </div>"),i.b(`
161
+ `+n),i.b(' <div class="d2h-file-side-diff">'),i.b(`
162
+ `+n),i.b(' <div class="d2h-code-wrapper">'),i.b(`
163
+ `+n),i.b(' <table class="d2h-diff-table">'),i.b(`
164
+ `+n),i.b(' <tbody class="d2h-diff-tbody">'),i.b(`
165
+ `+n),i.b(" "),i.b(i.t(i.d("diffs.right",e,t,0))),i.b(`
166
+ `+n),i.b(" </tbody>"),i.b(`
167
+ `+n),i.b(" </table>"),i.b(`
168
+ `+n),i.b(" </div>"),i.b(`
169
+ `+n),i.b(" </div>"),i.b(`
170
+ `+n),i.b(" </div>"),i.b(`
171
+ `+n),i.b("</div>"),i.fl()},partials:{},subs:{}}),It["tag-file-added"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<span class="d2h-tag d2h-added d2h-added-tag">ADDED</span>'),i.fl()},partials:{},subs:{}}),It["tag-file-changed"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<span class="d2h-tag d2h-changed d2h-changed-tag">CHANGED</span>'),i.fl()},partials:{},subs:{}}),It["tag-file-deleted"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<span class="d2h-tag d2h-deleted d2h-deleted-tag">DELETED</span>'),i.fl()},partials:{},subs:{}}),It["tag-file-renamed"]=new bt.Template({code:function(e,t,n){var i=this;return i.b(n=n||""),i.b('<span class="d2h-tag d2h-moved d2h-moved-tag">RENAMED</span>'),i.fl()},partials:{},subs:{}});var ma=globalThis&&globalThis.__assign||function(){return ma=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++){t=arguments[n];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},ma.apply(this,arguments)},F8=function(){function e(t){var n=t.compiledTemplates,i=n===void 0?{}:n,s=t.rawTemplates,o=s===void 0?{}:s,c=Object.entries(o).reduce(function(d,u){var f,m=u[0],p=u[1],y=bt.compile(p,{asString:!1});return ma(ma({},d),(f={},f[m]=y,f))},{});this.preCompiledTemplates=ma(ma(ma({},It),i),c)}return e.compile=function(t){return bt.compile(t,{asString:!1})},e.prototype.render=function(t,n,i,s,o){var c=this.templateKey(t,n);try{var d=this.preCompiledTemplates[c];return d.render(i,s,o)}catch{throw new Error("Could not find template to render '".concat(c,"'"))}},e.prototype.template=function(t,n){return this.preCompiledTemplates[this.templateKey(t,n)]},e.prototype.templateKey=function(t,n){return"".concat(t,"-").concat(n)},e}(),pa=globalThis&&globalThis.__assign||function(){return pa=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++){t=arguments[n];for(var s in t)Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s])}return e},pa.apply(this,arguments)},G8=pa(pa(pa({},s3),o3),{outputFormat:h8.LINE_BY_LINE,drawFileList:!0});function Z8(e,t){t===void 0&&(t={});var n=pa(pa({},G8),t),i=typeof e=="string"?M8(e,n):e,s=new F8(n),o=n.drawFileList?V8(i,s):"",c=n.outputFormat==="side-by-side"?new B8(s,n).render(i):new R8(s,n).render(i);return o+c}const Y8=zf([...["side-by-side","line-by-line"]]),U8=zf([...["dark","light"]]),$8={oldContent:_a().def(""),newContent:_a().def(""),diffFormat:_a().def(Y8["line-by-line"]),diffContext:Sf(),theme:_a().def("light"),language:_a().def("javascript"),hljs:g.any.isRequired};function K8(e,t){return e.replace(/d2h-code-line-ctn/g,n=>`${n} lang-${t}`)}var X8=a.defineComponent({name:"CodeDiff",props:$8,emits:[],setup(e){const t=a.ref(null),n=a.ref(""),i=a.computed(()=>ze({dark:e.theme===U8.dark},"hljs bk-code-diff"));function s(){a.nextTick(()=>{t.value&&t.value.querySelectorAll(`.lang-${e.language}`).forEach(c=>{e.hljs.highlightElement(c)})})}function o(c,d){const u=f8("",e.oldContent,e.newContent,"","",{context:c});n.value=K8(Z8(u,{drawFileList:!1,matching:"lines",outputFormat:e.diffFormat}),d),s()}return a.onMounted(()=>{o(e.diffContext,e.language)}),a.watch(()=>[e.diffContext,e.language],c=>{const[d,u]=c;o(d,u)}),()=>a.createVNode("div",{ref:t,class:i.value,innerHTML:n.value},null)}});const d3=He(X8);var f3={exports:{}};(function(e){(function(t){var n=/^\s+/,i=/\s+$/,s=0,o=t.round,c=t.min,d=t.max,u=t.random;function f(D,_){if(D=D||"",_=_||{},D instanceof f)return D;if(!(this instanceof f))return new f(D,_);var J=m(D);this._originalInput=D,this._r=J.r,this._g=J.g,this._b=J.b,this._a=J.a,this._roundA=o(100*this._a)/100,this._format=_.format||J.format,this._gradientType=_.gradientType,this._r<1&&(this._r=o(this._r)),this._g<1&&(this._g=o(this._g)),this._b<1&&(this._b=o(this._b)),this._ok=J.ok,this._tc_id=s++}f.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var D=this.toRgb();return(D.r*299+D.g*587+D.b*114)/1e3},getLuminance:function(){var D=this.toRgb(),_,J,se,ce,pe,ke;return _=D.r/255,J=D.g/255,se=D.b/255,_<=.03928?ce=_/12.92:ce=t.pow((_+.055)/1.055,2.4),J<=.03928?pe=J/12.92:pe=t.pow((J+.055)/1.055,2.4),se<=.03928?ke=se/12.92:ke=t.pow((se+.055)/1.055,2.4),.2126*ce+.7152*pe+.0722*ke},setAlpha:function(D){return this._a=he(D),this._roundA=o(100*this._a)/100,this},toHsv:function(){var D=v(this._r,this._g,this._b);return{h:D.h*360,s:D.s,v:D.v,a:this._a}},toHsvString:function(){var D=v(this._r,this._g,this._b),_=o(D.h*360),J=o(D.s*100),se=o(D.v*100);return this._a==1?"hsv("+_+", "+J+"%, "+se+"%)":"hsva("+_+", "+J+"%, "+se+"%, "+this._roundA+")"},toHsl:function(){var D=y(this._r,this._g,this._b);return{h:D.h*360,s:D.s,l:D.l,a:this._a}},toHslString:function(){var D=y(this._r,this._g,this._b),_=o(D.h*360),J=o(D.s*100),se=o(D.l*100);return this._a==1?"hsl("+_+", "+J+"%, "+se+"%)":"hsla("+_+", "+J+"%, "+se+"%, "+this._roundA+")"},toHex:function(D){return x(this._r,this._g,this._b,D)},toHexString:function(D){return"#"+this.toHex(D)},toHex8:function(D){return k(this._r,this._g,this._b,this._a,D)},toHex8String:function(D){return"#"+this.toHex8(D)},toRgb:function(){return{r:o(this._r),g:o(this._g),b:o(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+o(this._r)+", "+o(this._g)+", "+o(this._b)+")":"rgba("+o(this._r)+", "+o(this._g)+", "+o(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:o($(this._r,255)*100)+"%",g:o($(this._g,255)*100)+"%",b:o($(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+o($(this._r,255)*100)+"%, "+o($(this._g,255)*100)+"%, "+o($(this._b,255)*100)+"%)":"rgba("+o($(this._r,255)*100)+"%, "+o($(this._g,255)*100)+"%, "+o($(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){return this._a===0?"transparent":this._a<1?!1:Ne[x(this._r,this._g,this._b,!0)]||!1},toFilter:function(D){var _="#"+I(this._r,this._g,this._b,this._a),J=_,se=this._gradientType?"GradientType = 1, ":"";if(D){var ce=f(D);J="#"+I(ce._r,ce._g,ce._b,ce._a)}return"progid:DXImageTransform.Microsoft.gradient("+se+"startColorstr="+_+",endColorstr="+J+")"},toString:function(D){var _=!!D;D=D||this._format;var J=!1,se=this._a<1&&this._a>=0,ce=!_&&se&&(D==="hex"||D==="hex6"||D==="hex3"||D==="hex4"||D==="hex8"||D==="name");return ce?D==="name"&&this._a===0?this.toName():this.toRgbString():(D==="rgb"&&(J=this.toRgbString()),D==="prgb"&&(J=this.toPercentageRgbString()),(D==="hex"||D==="hex6")&&(J=this.toHexString()),D==="hex3"&&(J=this.toHexString(!0)),D==="hex4"&&(J=this.toHex8String(!0)),D==="hex8"&&(J=this.toHex8String()),D==="name"&&(J=this.toName()),D==="hsl"&&(J=this.toHslString()),D==="hsv"&&(J=this.toHsvString()),J||this.toHexString())},clone:function(){return f(this.toString())},_applyModification:function(D,_){var J=D.apply(null,[this].concat([].slice.call(_)));return this._r=J._r,this._g=J._g,this._b=J._b,this.setAlpha(J._a),this},lighten:function(){return this._applyModification(L,arguments)},brighten:function(){return this._applyModification(j,arguments)},darken:function(){return this._applyModification(z,arguments)},desaturate:function(){return this._applyModification(C,arguments)},saturate:function(){return this._applyModification(M,arguments)},greyscale:function(){return this._applyModification(N,arguments)},spin:function(){return this._applyModification(O,arguments)},_applyCombination:function(D,_){return D.apply(null,[this].concat([].slice.call(_)))},analogous:function(){return this._applyCombination(ne,arguments)},complement:function(){return this._applyCombination(R,arguments)},monochromatic:function(){return this._applyCombination(ue,arguments)},splitcomplement:function(){return this._applyCombination(B,arguments)},triad:function(){return this._applyCombination(P,arguments)},tetrad:function(){return this._applyCombination(Z,arguments)}},f.fromRatio=function(D,_){if(typeof D=="object"){var J={};for(var se in D)D.hasOwnProperty(se)&&(se==="a"?J[se]=D[se]:J[se]=ae(D[se]));D=J}return f(D,_)};function m(D){var _={r:0,g:0,b:0},J=1,se=null,ce=null,pe=null,ke=!1,te=!1;return typeof D=="string"&&(D=Q(D)),typeof D=="object"&&(W(D.r)&&W(D.g)&&W(D.b)?(_=p(D.r,D.g,D.b),ke=!0,te=String(D.r).substr(-1)==="%"?"prgb":"rgb"):W(D.h)&&W(D.s)&&W(D.v)?(se=ae(D.s),ce=ae(D.v),_=T(D.h,se,ce),ke=!0,te="hsv"):W(D.h)&&W(D.s)&&W(D.l)&&(se=ae(D.s),pe=ae(D.l),_=b(D.h,se,pe),ke=!0,te="hsl"),D.hasOwnProperty("a")&&(J=D.a)),J=he(J),{ok:ke,format:D.format||te,r:c(255,d(_.r,0)),g:c(255,d(_.g,0)),b:c(255,d(_.b,0)),a:J}}function p(D,_,J){return{r:$(D,255)*255,g:$(_,255)*255,b:$(J,255)*255}}function y(D,_,J){D=$(D,255),_=$(_,255),J=$(J,255);var se=d(D,_,J),ce=c(D,_,J),pe,ke,te=(se+ce)/2;if(se==ce)pe=ke=0;else{var le=se-ce;switch(ke=te>.5?le/(2-se-ce):le/(se+ce),se){case D:pe=(_-J)/le+(_<J?6:0);break;case _:pe=(J-D)/le+2;break;case J:pe=(D-_)/le+4;break}pe/=6}return{h:pe,s:ke,l:te}}function b(D,_,J){var se,ce,pe;D=$(D,360),_=$(_,100),J=$(J,100);function ke(we,je,Qe){return Qe<0&&(Qe+=1),Qe>1&&(Qe-=1),Qe<1/6?we+(je-we)*6*Qe:Qe<1/2?je:Qe<2/3?we+(je-we)*(2/3-Qe)*6:we}if(_===0)se=ce=pe=J;else{var te=J<.5?J*(1+_):J+_-J*_,le=2*J-te;se=ke(le,te,D+1/3),ce=ke(le,te,D),pe=ke(le,te,D-1/3)}return{r:se*255,g:ce*255,b:pe*255}}function v(D,_,J){D=$(D,255),_=$(_,255),J=$(J,255);var se=d(D,_,J),ce=c(D,_,J),pe,ke,te=se,le=se-ce;if(ke=se===0?0:le/se,se==ce)pe=0;else{switch(se){case D:pe=(_-J)/le+(_<J?6:0);break;case _:pe=(J-D)/le+2;break;case J:pe=(D-_)/le+4;break}pe/=6}return{h:pe,s:ke,v:te}}function T(D,_,J){D=$(D,360)*6,_=$(_,100),J=$(J,100);var se=t.floor(D),ce=D-se,pe=J*(1-_),ke=J*(1-ce*_),te=J*(1-(1-ce)*_),le=se%6,we=[J,ke,pe,pe,te,J][le],je=[te,J,J,ke,pe,pe][le],Qe=[pe,pe,te,J,J,ke][le];return{r:we*255,g:je*255,b:Qe*255}}function x(D,_,J,se){var ce=[ie(o(D).toString(16)),ie(o(_).toString(16)),ie(o(J).toString(16))];return se&&ce[0].charAt(0)==ce[0].charAt(1)&&ce[1].charAt(0)==ce[1].charAt(1)&&ce[2].charAt(0)==ce[2].charAt(1)?ce[0].charAt(0)+ce[1].charAt(0)+ce[2].charAt(0):ce.join("")}function k(D,_,J,se,ce){var pe=[ie(o(D).toString(16)),ie(o(_).toString(16)),ie(o(J).toString(16)),ie(me(se))];return ce&&pe[0].charAt(0)==pe[0].charAt(1)&&pe[1].charAt(0)==pe[1].charAt(1)&&pe[2].charAt(0)==pe[2].charAt(1)&&pe[3].charAt(0)==pe[3].charAt(1)?pe[0].charAt(0)+pe[1].charAt(0)+pe[2].charAt(0)+pe[3].charAt(0):pe.join("")}function I(D,_,J,se){var ce=[ie(me(se)),ie(o(D).toString(16)),ie(o(_).toString(16)),ie(o(J).toString(16))];return ce.join("")}f.equals=function(D,_){return!D||!_?!1:f(D).toRgbString()==f(_).toRgbString()},f.random=function(){return f.fromRatio({r:u(),g:u(),b:u()})};function C(D,_){_=_===0?0:_||10;var J=f(D).toHsl();return J.s-=_/100,J.s=A(J.s),f(J)}function M(D,_){_=_===0?0:_||10;var J=f(D).toHsl();return J.s+=_/100,J.s=A(J.s),f(J)}function N(D){return f(D).desaturate(100)}function L(D,_){_=_===0?0:_||10;var J=f(D).toHsl();return J.l+=_/100,J.l=A(J.l),f(J)}function j(D,_){_=_===0?0:_||10;var J=f(D).toRgb();return J.r=d(0,c(255,J.r-o(255*-(_/100)))),J.g=d(0,c(255,J.g-o(255*-(_/100)))),J.b=d(0,c(255,J.b-o(255*-(_/100)))),f(J)}function z(D,_){_=_===0?0:_||10;var J=f(D).toHsl();return J.l-=_/100,J.l=A(J.l),f(J)}function O(D,_){var J=f(D).toHsl(),se=(J.h+_)%360;return J.h=se<0?360+se:se,f(J)}function R(D){var _=f(D).toHsl();return _.h=(_.h+180)%360,f(_)}function P(D){var _=f(D).toHsl(),J=_.h;return[f(D),f({h:(J+120)%360,s:_.s,l:_.l}),f({h:(J+240)%360,s:_.s,l:_.l})]}function Z(D){var _=f(D).toHsl(),J=_.h;return[f(D),f({h:(J+90)%360,s:_.s,l:_.l}),f({h:(J+180)%360,s:_.s,l:_.l}),f({h:(J+270)%360,s:_.s,l:_.l})]}function B(D){var _=f(D).toHsl(),J=_.h;return[f(D),f({h:(J+72)%360,s:_.s,l:_.l}),f({h:(J+216)%360,s:_.s,l:_.l})]}function ne(D,_,J){_=_||6,J=J||30;var se=f(D).toHsl(),ce=360/J,pe=[f(D)];for(se.h=(se.h-(ce*_>>1)+720)%360;--_;)se.h=(se.h+ce)%360,pe.push(f(se));return pe}function ue(D,_){_=_||6;for(var J=f(D).toHsv(),se=J.h,ce=J.s,pe=J.v,ke=[],te=1/_;_--;)ke.push(f({h:se,s:ce,v:pe})),pe=(pe+te)%1;return ke}f.mix=function(D,_,J){J=J===0?0:J||50;var se=f(D).toRgb(),ce=f(_).toRgb(),pe=J/100,ke={r:(ce.r-se.r)*pe+se.r,g:(ce.g-se.g)*pe+se.g,b:(ce.b-se.b)*pe+se.b,a:(ce.a-se.a)*pe+se.a};return f(ke)},f.readability=function(D,_){var J=f(D),se=f(_);return(t.max(J.getLuminance(),se.getLuminance())+.05)/(t.min(J.getLuminance(),se.getLuminance())+.05)},f.isReadable=function(D,_,J){var se=f.readability(D,_),ce,pe;switch(pe=!1,ce=re(J),ce.level+ce.size){case"AAsmall":case"AAAlarge":pe=se>=4.5;break;case"AAlarge":pe=se>=3;break;case"AAAsmall":pe=se>=7;break}return pe},f.mostReadable=function(D,_,J){var se=null,ce=0,pe,ke,te,le;J=J||{},ke=J.includeFallbackColors,te=J.level,le=J.size;for(var we=0;we<_.length;we++)pe=f.readability(D,_[we]),pe>ce&&(ce=pe,se=f(_[we]));return f.isReadable(D,se,{level:te,size:le})||!ke?se:(J.includeFallbackColors=!1,f.mostReadable(D,["#fff","#000"],J))};var Ce=f.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},Ne=f.hexNames=fe(Ce);function fe(D){var _={};for(var J in D)D.hasOwnProperty(J)&&(_[D[J]]=J);return _}function he(D){return D=parseFloat(D),(isNaN(D)||D<0||D>1)&&(D=1),D}function $(D,_){F(D)&&(D="100%");var J=ee(D);return D=c(_,d(0,parseFloat(D))),J&&(D=parseInt(D*_,10)/100),t.abs(D-_)<1e-6?1:D%_/parseFloat(_)}function A(D){return c(1,d(0,D))}function H(D){return parseInt(D,16)}function F(D){return typeof D=="string"&&D.indexOf(".")!=-1&&parseFloat(D)===1}function ee(D){return typeof D=="string"&&D.indexOf("%")!=-1}function ie(D){return D.length==1?"0"+D:""+D}function ae(D){return D<=1&&(D=D*100+"%"),D}function me(D){return t.round(parseFloat(D)*255).toString(16)}function Le(D){return H(D)/255}var X=function(){var D="[-\\+]?\\d+%?",_="[-\\+]?\\d*\\.\\d+%?",J="(?:"+_+")|(?:"+D+")",se="[\\s|\\(]+("+J+")[,|\\s]+("+J+")[,|\\s]+("+J+")\\s*\\)?",ce="[\\s|\\(]+("+J+")[,|\\s]+("+J+")[,|\\s]+("+J+")[,|\\s]+("+J+")\\s*\\)?";return{CSS_UNIT:new RegExp(J),rgb:new RegExp("rgb"+se),rgba:new RegExp("rgba"+ce),hsl:new RegExp("hsl"+se),hsla:new RegExp("hsla"+ce),hsv:new RegExp("hsv"+se),hsva:new RegExp("hsva"+ce),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function W(D){return!!X.CSS_UNIT.exec(D)}function Q(D){D=D.replace(n,"").replace(i,"").toLowerCase();var _=!1;if(Ce[D])D=Ce[D],_=!0;else if(D=="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var J;return(J=X.rgb.exec(D))?{r:J[1],g:J[2],b:J[3]}:(J=X.rgba.exec(D))?{r:J[1],g:J[2],b:J[3],a:J[4]}:(J=X.hsl.exec(D))?{h:J[1],s:J[2],l:J[3]}:(J=X.hsla.exec(D))?{h:J[1],s:J[2],l:J[3],a:J[4]}:(J=X.hsv.exec(D))?{h:J[1],s:J[2],v:J[3]}:(J=X.hsva.exec(D))?{h:J[1],s:J[2],v:J[3],a:J[4]}:(J=X.hex8.exec(D))?{r:H(J[1]),g:H(J[2]),b:H(J[3]),a:Le(J[4]),format:_?"name":"hex8"}:(J=X.hex6.exec(D))?{r:H(J[1]),g:H(J[2]),b:H(J[3]),format:_?"name":"hex"}:(J=X.hex4.exec(D))?{r:H(J[1]+""+J[1]),g:H(J[2]+""+J[2]),b:H(J[3]+""+J[3]),a:Le(J[4]+""+J[4]),format:_?"name":"hex8"}:(J=X.hex3.exec(D))?{r:H(J[1]+""+J[1]),g:H(J[2]+""+J[2]),b:H(J[3]+""+J[3]),format:_?"name":"hex"}:!1}function re(D){var _,J;return D=D||{level:"AA",size:"small"},_=(D.level||"AA").toUpperCase(),J=(D.size||"small").toLowerCase(),_!=="AA"&&_!=="AAA"&&(_="AA"),J!=="small"&&J!=="large"&&(J="small"),{level:_,size:J}}e.exports?e.exports=f:window.tinycolor=f})(Math)})(f3);var qr=f3.exports;const q8={info:g.object.isRequired};var es=a.defineComponent({props:q8,emits:["tab","input"],setup(e,{emit:t}){const n=o=>{e.info.key==="a"&&t("tab",o)},i=o=>{const{key:c}=e.info,{value:d}=o.target;t("input",c,d)},s=a.computed(()=>ze({error:e.info.error},"bk-color-picker-input-value"));return()=>a.createVNode("div",{class:"bk-color-picker-input-part"},[a.createVNode("input",{type:e.info.name==="HEX"?"text":"number",class:s.value,value:e.info.value,onKeydown:n,onInput:i},null),a.createVNode("span",{class:"bk-color-picker-input-text"},[e.info.name])])}});const ev={colorObj:g.object.isRequired};var tv=a.defineComponent({name:"ColorPicker",props:ev,emits:["change","tab"],setup(e,{emit:t}){const n=a.reactive({key:"hex",name:"HEX",value:e.colorObj.hex,error:!1}),i=a.reactive({key:"r",name:"R",value:e.colorObj.rgba.r.toString(),error:!1}),s=a.reactive({key:"g",name:"G",value:e.colorObj.rgba.g.toString(),error:!1}),o=a.reactive({key:"b",name:"B",value:e.colorObj.rgba.b.toString(),error:!1}),c=a.reactive({key:"a",name:"Alpha",value:e.colorObj.rgba.a.toString(),error:!1});a.watch(()=>e.colorObj,m=>{qr(m.hex).toString()!==qr(n.value).toString()&&(n.value=m.hex),i.value=m.rgba.r.toString(),s.value=m.rgba.g.toString(),o.value=m.rgba.b.toString(),c.value=m.rgba.a.toString(),f()},{deep:!0});const d=m=>{t("tab",m)},u=(m,p)=>{const y={r:i,g:s,b:o,a:c,hex:n};if(y[m].value=p,f()){const b=m==="hex"?n.value:`rgba(${i.value}, ${s.value}, ${o.value}, ${c.value})`;t("change",b)}},f=()=>{let m=!0;n.value.startsWith("#")&&(n.value.length===4||n.value.length===7)&&!n.value.slice(1).match(/[^0-9a-fA-F]/)?n.error=!1:(n.error=!0,m=!1),c.value!==""&&c.value>=0&&c.value<=1?c.error=!1:(c.error=!0,m=!1);for(const p of[i,s,o]){const{value:y}=p;y!==""&&y>=0&&y<=255?p.error=!1:(p.error=!0,m=!1)}return m};return()=>a.createVNode("div",{class:"bk-color-picker-input"},[a.createVNode("div",{class:"bk-color-picker-input-hex"},[a.createVNode(es,{info:n,onInput:u},null)]),a.createVNode("div",{class:"bk-color-picker-input-rgba"},[a.createVNode(es,{info:i,onInput:u},null),a.createVNode(es,{info:s,onInput:u},null),a.createVNode(es,{info:o,onInput:u},null),a.createVNode(es,{info:c,onInput:u,onTab:d},null)])])}});const yu=e=>{let t=e;e===""&&(t="#FFFFFF");const n=qr(e),i=n.toHsl(),s=n.toHsv();return i.s===0&&(i.h=t.h||0,s.h=t.h||0),s.v<.0164&&(s.h=t.h||0,s.s=t.s||0),i.l<.01&&(i.h=t.h||0,i.s=t.s||0),{hsl:i,hsv:s,hex:n.toHexString().toUpperCase(),rgba:n.toRgb()}},Rt=(e,t,n)=>e<t?t:e>n?n:e,Cu=(e,t)=>e.touches?e.touches[0][t]:0,h3=e=>{const{r:t,g:n,b:i,a:s}=e;return`rgba(${[t,n,i,s].join(",")})`},nv={colorObj:g.object.isRequired};var iv=a.defineComponent({name:"ColorPicker",props:nv,emits:["change"],setup(e,{emit:t}){const n=a.ref(null),i=a.computed(()=>({left:`${e.colorObj.hsv.h/360*100}%`})),s=m=>{const{clientWidth:p}=n.value;let y=e.colorObj.hsv.h/360*p;const b=2,v=10;switch(m.code){case"ArrowLeft":m.preventDefault(),y=Rt(y-b,0,p);break;case"ArrowRight":m.preventDefault(),y=Rt(y+b,0,p);break;case"ArrowUp":m.preventDefault(),y=Rt(y-v,0,p);break;case"ArrowDown":m.preventDefault(),y=Rt(y+v,0,p);break;default:return}d(null,y)},o=m=>{n.value.focus(),d(m),window.addEventListener("mousemove",d,{passive:!0}),window.addEventListener("mouseup",c)},c=()=>{window.removeEventListener("mousemove",d),window.removeEventListener("mouseup",c)},d=(m,p)=>{const{clientWidth:y}=n.value,b=p!==void 0?p:u(m);f(b/y)},u=m=>{const p=n.value.getBoundingClientRect().left+window.pageXOffset,y=m.pageX||Cu(m,"PageX");return Rt(y-p,0,n.value.clientWidth)},f=m=>{const{h:p,s:y,l:b,a:v}=e.colorObj.hsl,T=m*360;p!==T&&t("change",{h:T,s:y,l:b,a:v})};return()=>a.createVNode("div",{ref:n,tabindex:"0",class:"bk-color-picker-hue",onKeydown:s,onMousedown:m=>{m.stopPropagation(),m.preventDefault(),o(m)}},[a.createVNode("div",{class:"bk-color-picker-hue-pointer",style:i.value},[a.createVNode("div",{class:"bk-color-picker-hue-rectangle"},null)])])}});const av={colorObj:g.object.isRequired,recommend:g.oneOfType([g.array.def(()=>[]),g.bool.def(!0)]).isRequired};var rv=a.defineComponent({props:av,emits:["change","tab"],setup(e,{emit:t}){const n=a.ref(!1),i=a.ref(-1),s=a.ref(null);a.watch(()=>e.colorObj,()=>{i.value=-1,s.value=null},{deep:!0});const o=a.computed(()=>f(e.recommend)),c=(m,p)=>ze({"bk-color-picker-empty":m==="","bk-color-picker-recommend-selected-color":n.value&&i.value===p},"bk-color-picker-recommend-color"),d=m=>{if(m.code==="Tab")t("tab",m);else{let p=0;const y=10,b=o.value.length-1;switch(m.code){case"ArrowLeft":m.preventDefault(),p=Rt(i.value-1,0,b);break;case"ArrowRight":m.preventDefault(),p=Rt(i.value+1,0,b);break;case"ArrowUp":m.preventDefault(),p=Rt(i.value-y,0,b);break;case"ArrowDown":m.preventDefault(),p=Rt(i.value+y,0,b);break;default:return}u(p)}},u=m=>{const p=o.value[m];t("change",p),a.nextTick(()=>{i.value=m,s.value=p})},f=m=>{if(m===!0)return["","#ff4500","#ff8c00","#ffd700","#90ee90","#ddffff","#00ced1","#3a84ff","#a933f5","#db7093","#000000","#494949","#9B9B9B","#ffffff"];if(Array.isArray(m))return m.map(p=>qr(p).isValid()?p:"")};return()=>a.createVNode("div",{tabindex:"0",class:"bk-color-picker-recommend",onFocus:()=>n.value=!0,onBlur:()=>n.value=!1,onKeydown:d},[o.value.map((m,p)=>a.createVNode("div",{style:`background: ${m||"#fff"}`,class:c(m,p),onClick:()=>u(p)},[i.value===p?a.createVNode("div",{class:"bk-color-picker-pointer"},[a.createVNode("div",{class:"bk-color-picker-circle"},null)]):void 0]))])}});const sv={colorObj:g.object.isRequired};var lv=a.defineComponent({props:sv,emits:["change"],setup(e,{emit:t}){const n=a.ref(null),i=a.computed(()=>({background:`hsl(${e.colorObj.hsv.h}, 100%, 50%)`})),s=a.computed(()=>({top:`${(1-e.colorObj.hsv.v)*100}%`,left:`${e.colorObj.hsv.s*100}%`})),o=y=>{n.value.focus(),u(y),window.addEventListener("mousemove",u,{passive:!0}),window.addEventListener("mouseup",c)},c=()=>{window.removeEventListener("mousemove",u),window.removeEventListener("mouseup",c)},d=y=>{const{clientWidth:b,clientHeight:v}=n.value;let T=e.colorObj.hsv.s*b,x=(1-e.colorObj.hsv.v)*v;const k=10;switch(y.code){case"ArrowLeft":y.preventDefault(),T=Rt(T-k,0,b);break;case"ArrowRight":y.preventDefault(),T=Rt(T+k,0,b);break;case"ArrowUp":y.preventDefault(),x=Rt(x-k,0,v);break;case"ArrowDown":y.preventDefault(),x=Rt(x+k,0,v);break;default:return}u(null,T,x)},u=(y,b,v)=>{const{clientWidth:T,clientHeight:x}=n.value,k=b!==void 0?b:f(y),I=v!==void 0?v:m(y),C=k/T,M=1-I/x;p(e.colorObj.hsv.h,C,M,e.colorObj.hsv.a)},f=y=>{const b=n.value.getBoundingClientRect().left+window.pageXOffset,v=y.pageX||Cu(y,"PageX");return Rt(v-b,0,n.value.clientWidth)},m=y=>{const b=n.value.getBoundingClientRect().top+window.pageYOffset,v=y.pageY||Cu(y,"PageY");return Rt(v-b,0,n.value.clientHeight)},p=(y,b,v,T)=>{t("change",{h:y,s:b,v,a:T})};return()=>a.createVNode("div",{ref:n,tabindex:"0",class:"bk-color-picker-saturation",style:i.value,onKeydown:d,onMousedown:y=>{y.stopPropagation(),o(y)}},[a.createVNode("div",{class:"bk-color-picker-saturation-white"},null),a.createVNode("div",{class:"bk-color-picker-saturation-black"},null),a.createVNode("div",{class:"bk-color-picker-pointer",style:s.value},[a.createVNode("div",{class:"bk-color-picker-circle"},null)])])}});const ov={modelValue:g.string.def(""),disabled:g.bool.def(!1),readonly:g.bool.def(!1),transfer:g.bool.def(!1),size:g.size(["","small","large"]).def(""),showValue:g.bool.def(!0),recommend:g.oneOfType([g.array.def(()=>[]),g.bool.def(!0)]).def(!0),extCls:g.string.def(""),withValidate:g.bool.def(!0)},ts=yu("#FFFFFF");var cv=a.defineComponent({name:"ColorPicker",directives:{clickoutside:zn},props:ov,emits:["update:modelValue","change"],setup(e,{emit:t}){const n=Dn(),i=a.ref(!1),s=a.ref(""),o=a.reactive(JSON.parse(JSON.stringify(ts))),c=a.ref(null),d=a.ref(null),u=a.ref(null),f=a.computed(()=>ze({[`bk-color-picker-${e.size}`]:e.size,"bk-color-picker-show-dropdown":i.value,"bk-color-picker-show-value":e.showValue,"bk-color-picker-disabled":e.disabled||e.readonly},`bk-color-picker ${e.extCls}`)),m=a.computed(()=>Boolean(e.recommend===!0||Array.isArray(e.recommend)&&e.recommend.length));a.onBeforeMount(()=>{I({isCreated:!0})}),a.watch(()=>e.modelValue,()=>{var N;I(),e.withValidate&&((N=n==null?void 0:n.validate)==null||N.call(n,"change"))});const p=N=>{N.code==="Enter"||N.code==="NumpadEnter"?b():N.code==="Escape"&&k()},y=N=>{e.transfer&&p(N)},b=()=>{e.disabled||e.readonly||(i.value?k():x())},v=N=>{m.value||(N.preventDefault(),d.value.$el.focus())},T=N=>{N.preventDefault(),d.value.$el.focus()},x=()=>{var N;i.value=!0,(N=c.value)==null||N.updateDropdown(),setTimeout(()=>{c.value.$el.querySelector(".bk-color-picker-input-hex .bk-color-picker-input-value").select()},100)},k=()=>{var N;i.value&&(a.nextTick(()=>u.value.focus()),i.value=!1,(N=c.value)==null||N.destoryDropdown(),I())},I=({isCreated:N=!1}={})=>{if(e.modelValue===""){s.value!==""&&(s.value="",Object.assign(o,ts),t("update:modelValue",s.value));return}const L=yu(e.modelValue),j=L.rgba.a===1?L.hex:h3(L.rgba);if(j!==s.value){const z=qr(e.modelValue).isValid();N?z?(s.value=j.toLowerCase()===e.modelValue.toLowerCase()?e.modelValue:j,Object.assign(o,L)):(Object.assign(o,ts),t("change","")):z?j.toLowerCase()!==s.value.toLowerCase()&&(Object.assign(o,L),s.value=j):(s.value="",Object.assign(o,ts))}},C=N=>{if(N===""){s.value="",Object.assign(o,ts),t("update:modelValue",""),t("change","");return}const L=yu(N),j=L.rgba.a===1?L.hex:h3(L.rgba);s.value=j,Object.assign(o,L),t("update:modelValue",s.value),t("change",j)},M=()=>{i.value=!1};return()=>a.withDirectives(a.createVNode("div",{ref:u,tabindex:"0",class:f.value,onKeydown:p,onClick:b},[a.createVNode("div",{class:"bk-color-picker-color"},[a.createVNode("span",{class:`bk-color-picker-color-square ${!s.value&&"bk-color-picker-empty"}`,style:`background: ${s.value||"#FFF"}`},null)]),e.showValue?a.createVNode("div",{class:"bk-color-picker-text"},[a.createVNode("span",null,[s.value])]):void 0,a.createVNode("div",{class:"bk-color-picker-icon"},[a.createVNode(Wa,{class:"icon-angle-down"},null)]),a.createVNode(a.Transition,{name:"bk-fade-down-transition"},{default:()=>[a.withDirectives(a.createVNode(Zc,{ref:c,triggerRef:u.value},{default:()=>[a.createVNode("div",{class:"bk-color-dropdown-container"},[a.createVNode("div",{class:"bk-color-picker-dropdown",onClick:N=>{N.stopPropagation()},onMousedown:N=>{N.stopPropagation()},onKeydown:y},[a.createVNode(lv,{ref:d,colorObj:o,onChange:C},null),a.createVNode(iv,{colorObj:o,onChange:C},null),a.createVNode(tv,{colorObj:o,onTab:v,onChange:C},null),m.value?a.createVNode("div",{class:"bk-color-picker-recommend-container"},[a.createVNode(rv,{colorObj:o,recommend:e.recommend,onTab:T,onChange:C},null)]):void 0])])]}),[[a.vShow,i.value]])]})]),[[a.resolveDirective("clickoutside"),M]])}});const g3=He(cv),m3=He(qy);var vu=null;function uv(e){return vu||(vu=(window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(t){return setTimeout(t,16)}).bind(window)),vu(e)}var wu=null;function dv(e){wu||(wu=(window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||function(t){clearTimeout(t)}).bind(window)),wu(e)}function fv(e){var t=document.createElement("style");return t.styleSheet?t.styleSheet.cssText=e:t.appendChild(document.createTextNode(e)),(document.querySelector("head")||document.body).appendChild(t),t}function xl(e,t){t===void 0&&(t={});var n=document.createElement(e);return Object.keys(t).forEach(function(i){n[i]=t[i]}),n}function p3(e,t,n){var i=window.getComputedStyle(e,n||null)||{display:"none"};return i[t]}function Mu(e){if(!document.documentElement.contains(e))return{detached:!0,rendered:!1};for(var t=e;t!==document;){if(p3(t,"display")==="none")return{detached:!1,rendered:!1};t=t.parentNode}return{detached:!1,rendered:!0}}var hv='.resize-triggers{visibility:hidden;opacity:0;pointer-events:none}.resize-contract-trigger,.resize-contract-trigger:before,.resize-expand-trigger,.resize-triggers{content:"";position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden}.resize-contract-trigger,.resize-expand-trigger{background:#eee;overflow:auto}.resize-contract-trigger:before{width:200%;height:200%}',Iu=0,Sl=null;function gv(e,t){e.__resize_mutation_handler__||(e.__resize_mutation_handler__=bv.bind(e));var n=e.__resize_listeners__;if(!n){if(e.__resize_listeners__=[],window.ResizeObserver){var i=e.offsetWidth,s=e.offsetHeight,o=new ResizeObserver(function(){!e.__resize_observer_triggered__&&(e.__resize_observer_triggered__=!0,e.offsetWidth===i&&e.offsetHeight===s)||Dl(e)}),c=Mu(e),d=c.detached,u=c.rendered;e.__resize_observer_triggered__=d===!1&&u===!1,e.__resize_observer__=o,o.observe(e)}else if(e.attachEvent&&e.addEventListener)e.__resize_legacy_resize_handler__=function(){Dl(e)},e.attachEvent("onresize",e.__resize_legacy_resize_handler__),document.addEventListener("DOMSubtreeModified",e.__resize_mutation_handler__);else if(Iu||(Sl=fv(hv)),yv(e),e.__resize_rendered__=Mu(e).rendered,window.MutationObserver){var f=new MutationObserver(e.__resize_mutation_handler__);f.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),e.__resize_mutation_observer__=f}}e.__resize_listeners__.push(t),Iu++}function mv(e,t){var n=e.__resize_listeners__;if(!!n){if(t&&n.splice(n.indexOf(t),1),!n.length||!t){if(e.detachEvent&&e.removeEventListener){e.detachEvent("onresize",e.__resize_legacy_resize_handler__),document.removeEventListener("DOMSubtreeModified",e.__resize_mutation_handler__);return}e.__resize_observer__?(e.__resize_observer__.unobserve(e),e.__resize_observer__.disconnect(),e.__resize_observer__=null):(e.__resize_mutation_observer__&&(e.__resize_mutation_observer__.disconnect(),e.__resize_mutation_observer__=null),e.removeEventListener("scroll",Nu),e.removeChild(e.__resize_triggers__.triggers),e.__resize_triggers__=null),e.__resize_listeners__=null}!--Iu&&Sl&&Sl.parentNode.removeChild(Sl)}}function pv(e){var t=e.__resize_last__,n=t.width,i=t.height,s=e.offsetWidth,o=e.offsetHeight;return s!==n||o!==i?{width:s,height:o}:null}function bv(){var e=Mu(this),t=e.rendered,n=e.detached;t!==this.__resize_rendered__&&(!n&&this.__resize_triggers__&&(Lu(this),this.addEventListener("scroll",Nu,!0)),this.__resize_rendered__=t,Dl(this))}function Nu(){var e=this;Lu(this),this.__resize_raf__&&dv(this.__resize_raf__),this.__resize_raf__=uv(function(){var t=pv(e);t&&(e.__resize_last__=t,Dl(e))})}function Dl(e){!e||!e.__resize_listeners__||e.__resize_listeners__.forEach(function(t){t.call(e,e)})}function yv(e){var t=p3(e,"position");(!t||t==="static")&&(e.style.position="relative"),e.__resize_old_position__=t,e.__resize_last__={};var n=xl("div",{className:"resize-triggers"}),i=xl("div",{className:"resize-expand-trigger"}),s=xl("div"),o=xl("div",{className:"resize-contract-trigger"});i.appendChild(s),n.appendChild(i),n.appendChild(o),e.appendChild(n),e.__resize_triggers__={triggers:n,expand:i,expandChild:s,contract:o},Lu(e),e.addEventListener("scroll",Nu,!0),e.__resize_last__={width:e.offsetWidth,height:e.offsetHeight}}function Lu(e){var t=e.__resize_triggers__,n=t.expand,i=t.expandChild,s=t.contract,o=s.scrollWidth,c=s.scrollHeight,d=n.offsetWidth,u=n.offsetHeight,f=n.scrollWidth,m=n.scrollHeight;s.scrollLeft=o,s.scrollTop=c,i.style.width=d+1+"px",i.style.height=u+1+"px",n.scrollLeft=f,n.scrollTop=m}var Cv=a.defineComponent({name:"SearchSelectMenu",props:{list:{type:Array},hoverId:String,keyword:{type:String,default:""},multiple:{type:Boolean,default:!1},selected:{type:Array,default:()=>[]},conditions:{type:Array},footerBtns:{type:Array,default:()=>[{id:"confirm",name:"\u786E\u8BA4"},{id:"cancel",name:"\u53D6\u6D88",disabled:!1}]}},emits:["selectItem","selectCondition","footerClick"],setup(e,{emit:t}){function n(u){t("selectItem",u)}function i(u){t("selectCondition",u)}function s(u){t("footerClick",u)}const o=a.computed(()=>{var u,f;return(u=e.list)!=null&&u.length?(f=e.keyword)!=null&&f.length?e.list.filter(m=>m.name.toLocaleLowerCase().includes(e.keyword.toLocaleLowerCase())):e.list:[]});function c(u){if(!u)return u;let{keyword:f}=e;const m=f.length;if(!(f!=null&&f.trim().length)||!u.toLocaleLowerCase().includes(f.toLocaleLowerCase()))return u;const p=[];let y=-1;return f=f.replace(/([.*/]{1})/gmi,"\\$1"),u.replace(new RegExp(`${f}`,"igm"),(b,v)=>(p.length===0&&v!==0?p.push(u.slice(0,v)):y>=0&&p.push(u.slice(y+b.length,v)),p.push(a.createVNode("span",{class:"is-keyword"},[b])),y=v,b)),y>=0&&p.push(u.slice(y+m)),p.length?p:u}function d(u){var f;return(f=u.value)!=null&&f.name?[a.createVNode("span",{class:"menu-name"},[u.name,a.createTextVNode(":")]),u.value.name]:c(u.name)}return{handleClick:n,handleClickCondition:i,handleClickFooterBtn:s,filterList:o,getSearchNode:d}},render(){var e,t,n;return a.createVNode("div",{class:"bk-search-select-menu"},[!!((e=this.conditions)!=null&&e.length)&&a.createVNode("ul",{class:"menu-header"},[this.conditions.map(i=>a.createVNode("li",{key:i.id,class:`menu-header-item ${i.disabled?"is-disabled":""}`,onClick:()=>!i.disabled&&this.handleClickCondition(i)},[i.name]))]),a.createVNode("ul",{class:"menu-content"},[(t=this.list)==null?void 0:t.map(i=>a.createVNode("li",{class:`menu-item ${i.disabled?"is-disabled":""} ${this.hoverId===i.id&&!i.disabled?"is-hover":""}`,key:i.id,id:i.id,tabindex:"-1",onClick:()=>!i.disabled&&this.handleClick(i)},[this.$slots.default?this.$slots.default({item:i,list:this.list,multiple:!!this.multiple,hoverId:this.hoverId,getSearchNode:this.getSearchNode}):a.createVNode(a.Fragment,null,[this.getSearchNode(i),this.multiple&&this.selected.includes(i.id)&&a.createVNode(ia,{class:"is-selected"},null)])]))]),this.multiple&&((n=this.footerBtns)==null?void 0:n.length)&&a.createVNode("div",{class:"menu-footer"},[this.footerBtns.map(i=>a.createVNode("span",{class:`menu-footer-btn ${i.disabled?"is-disabled":""}`,key:i.id,onClick:()=>!i.disabled&&this.handleClickFooterBtn(i)},[i.name]))])])}});const b3=Symbol("SEARCH_SLECT_PROVIDER_KEY"),vv=e=>{a.provide(b3,e)},y3=()=>a.inject(b3);var ns=(e=>(e.DEFAULT="default",e.EDIT="edit",e))(ns||{});class qa{constructor(t,n="default"){this.searchItem=t,this.type=n,this.values=[],this.id=t.id,this.name=t.name}get multiple(){return!!this.searchItem.multiple}get placeholder(){return this.searchItem.placeholder||""}get children(){return this.searchItem.children||[]}get validate(){return!this.searchItem.noValidate}get inputInnerHtml(){var t;return this.isSpecialType()?this.name:`${this.keyInnerHtml}${((t=this.values)==null?void 0:t.map(n=>n.name).join("|"))||""}`}get inputInnerText(){var t;return this.isSpecialType()?this.name:`${this.keyInnerText}${((t=this.values)==null?void 0:t.map(n=>n.name).join("|"))||""}`}get keyInnerHtml(){return this.isSpecialType()?this.name:this.name?`${this.name}:\xA0`:""}get keyInnerText(){return this.isSpecialType()?this.name:this.name?`${this.name}: `:""}isSpecialType(){return["text","condition"].includes(this.type)}addValue(t){if(this.multiple){const n=this.values.findIndex(i=>i.id===t.id);if(n>-1){this.values.splice(n,1);return}this.values.push(t);return}this.values=[t]}toValue(){var n;const t={id:this.id,name:this.name};return(n=this.values)!=null&&n.length&&(t.values=this.values.map(i=>({id:i.id,name:i.name}))),this.type&&this.type!=="default"&&(t.type=this.type),t}toValueKey(){return JSON.stringify(this.toValue())}isInValueList(t){return this.children.some(n=>n.id===(t==null?void 0:t.id))}}var C3=a.defineComponent({name:"SearchSelectInput",directives:{clickoutside:zn},props:{data:{type:Array,required:!0},showInputBefore:Boolean,showCondition:Boolean,clickOutside:Function,conditions:{type:Array,default:()=>[]},defautUsingItem:Object,mode:{type:String,default:ns.DEFAULT},geMenuList:Function,validateValues:Function},emits:["focus","add","delete"],setup(e,{emit:t,expose:n}){const i=a.ref(null),s=a.ref(null),o=a.ref(""),c=a.ref(!1),d=a.ref(!1),u=a.ref(!1),f=a.ref(e.defautUsingItem),m=a.ref(""),p=a.ref(!1),y=js(300,Ne);let b=!1;const v=a.ref([]),T=a.ref([]),{editKey:x,onValidate:k}=y3();a.watch(x,()=>{e.mode===ns.DEFAULT&&x.value&&(u.value=!1)}),a.watchEffect(()=>{o.value||$()},{flush:"pre"}),a.watch([T,u],()=>{var A;((A=T.value)==null?void 0:A.some(H=>!H.disabled))&&u.value?b||(m.value="",b=!0,document.addEventListener("keydown",I)):(document.removeEventListener("keydown",I),b=!1,m.value="")});function I(A){switch(A.code){case"ArrowDown":case"ArrowUp":C(A);break;case"Enter":case"NumpadEnter":M(A);break}}function C(A){var ie;A.preventDefault(),(ie=i.value)==null||ie.blur();const H=T.value.length;let F=H,ee=T.value.findIndex(ae=>ae.id===m.value);for(;F>=0;){ee=A.code==="ArrowDown"?ee+1:ee-1,ee=ee>H-1?0:ee<0?H-1:ee;const ae=T.value[ee];if(!ae.disabled){F=-1;const me=document.getElementById(ae.id);me==null||me.focus(),m.value=ae.id;return}F-=1}}function M(A){if(b){A.preventDefault();const H=T.value.find(F=>F.id===m.value);H&&P(H)}}function N(A){var H,F;!((H=s.value)!=null&&H.contains(A.target))&&((F=e.clickOutside)==null?void 0:F.call(e,A.target,s.value))&&(u.value=!1,d.value=!1,t("focus",d.value))}function L(A){Ce(),A&&Ne()}function j(A){var F,ee,ie,ae,me,Le;he();let H=A.target.innerText;if(/(\r|\n)/gm.test(H)||/\s{2}/gm.test(H))A.preventDefault(),H=H.replace(/(\r|\n)/gm,"|").replace(/\s{2}/gm,""),i.value.innerText=H,Ce(),o.value=H,y();else if(!o.value&&H.length<(((ee=(F=f.value)==null?void 0:F.inputInnerText)==null?void 0:ee.length)||1)){const X=H.replace("\xA0"," ").replace(((ie=f.value)==null?void 0:ie.keyInnerText.replace("\xA0"," ").trim())||"","").trim();X&&(f.value=null),o.value=X?H:"",y()}else(me=(ae=f.value)==null?void 0:ae.values)!=null&&me.length||(o.value=H.replace("\xA0"," ").replace(((Le=f.value)==null?void 0:Le.keyInnerText.replace("\xA0"," "))||"","").trim(),Ce(),y())}function z(A){switch(A.code){case"Enter":case"NumpadEnter":O(A);break;case"Backspace":R();default:c.value=!1;break}}async function O(A){var ee;if(A==null||A.preventDefault(),!f.value){if(!o.value)return;const ie={id:o.value,name:o.value};if(!await ne(ie))return;t("add",new qa(ie,"text")),o.value="",Ne();return}const{values:H}=f.value;if(!(H!=null&&H.length)){if((ee=o.value)!=null&&ee.length){const ie={id:o.value,name:o.value};if(!await ne(ie))return;f.value.addValue(ie),t("add",f.value),o.value="",f.value=null;return}c.value=!0;return}!await ne()||fe()}function R(){var A,H;if(!f.value&&!o.value){t("delete");return}if((A=f.value)!=null&&A.values.length&&(((H=f.value)==null?void 0:H.multiple)||f.value.isInValueList(f.value.values[0]))){f.value.values.splice(-1,1),o.value="",Ce();return}k("")}async function P(A,H){var ee,ie,ae,me;if((ee=A.value)!=null&&ee.id){const Le=new qa(xe(Y({},A),{id:(ie=A.realId)!=null?ie:A.id}),H);Le.addValue(A.value),fe(Le);return}if(!f.value||!((ae=i==null?void 0:i.value)!=null&&ae.innerText)){f.value=new qa(A,H),o.value="";const Le=H==="condition";Le&&fe(),u.value=Le||!!f.value.children.length,Ce();return}if(((me=f.value)==null?void 0:me.type)==="condition"){f.value=new qa(A,H),fe();return}f.value.addValue(A),!!await ne(A)&&!f.value.multiple&&fe()}function Z(A){P(A,"condition")}function B(A){switch(A.id){case"confirm":O();break;case"cancel":f.value.values=[],Ce();break}}async function ne(A){if(!f.value)return await ue(null,[A]);const{searchItem:H,validate:F,values:ee}=f.value;return F&&typeof e.validateValues=="function"?await ue(H,A?[A]:ee):(k(""),!0)}async function ue(A,H){var ee;const F=await((ee=e.validateValues)==null?void 0:ee.call(e,A!=null?A:null,H).catch(()=>!1));return typeof F=="string"||F===!1?(k(F||"\u6821\u9A8C\u9519\u8BEF"),!1):(k(""),!0)}function Ce(){d.value=!0,u.value=!0,c.value=!1;const A=setTimeout(()=>{if(i.value){i.value.focus();const H=window.getSelection();H.focusOffset===0&&(H.selectAllChildren(i.value),H.collapseToEnd())}window.clearTimeout(A)},0);t("focus",d.value)}async function Ne(){var H,F,ee,ie,ae;let A=[];typeof e.geMenuList=="function"&&!((F=(H=f.value)==null?void 0:H.searchItem)!=null&&F.async)?(p.value=!0,A=await e.geMenuList((ee=f.value)==null?void 0:ee.searchItem,o.value).catch(()=>[]),p.value=!1):f!=null&&f.value?f.value.type==="condition"?A=e.conditions:(!((ae=f.value.values)!=null&&ae.length)||f.value.multiple||e.mode===ns.EDIT)&&(A=f.value.children.filter(me=>me.name.toLocaleLowerCase().includes(o.value.toLocaleLowerCase()))):(ie=o.value)!=null&&ie.length?e.data.forEach(me=>{var X,W;me.name.toLocaleLowerCase().includes(o.value.toLocaleLowerCase())?(A.push(me),(X=me.children)==null||X.forEach(Q=>{A.push(xe(Y({},me),{realId:me.id,id:Va(10),value:Q}))}),A.push(xe(Y({},me),{realId:me.id,id:Va(10),value:{id:o.value,name:o.value}}))):((W=me.children)==null||W.forEach(Q=>{Q.name.toLocaleLowerCase().includes(o.value.toLocaleLowerCase())&&A.push(xe(Y({},me),{realId:me.id,id:Va(10),value:Q}))}),A.push(xe(Y({},me),{value:{id:o.value,name:o.value}})))}):A=e.data.slice(),T.value=A}function fe(A){t("add",A!=null?A:f.value),f.value=null,o.value="",Ce()}function he(){const A=i.value.innerText;A[A.length-1]===`
172
+ `||A[0]==="\r"?($(A.slice(0,-1)),he()):(A[0]===`
173
+ `||A[0]==="\r")&&($(A.slice(1)),he())}function $(A=""){var H;i.value&&(i.value.innerHTML=A||((H=f.value)==null?void 0:H.inputInnerHtml)||"")}return n({handleInputFocus:L,isFocus:d}),{popoverRef:s,inputRef:i,keyword:o,loading:p,remoteMenuList:v,menuList:T,menuHoverId:m,isFocus:d,usingItem:f,showPopover:u,showNoSelectValueError:c,debounceSetMenuList:y,documentArrowEvent:C,handleClickOutside:N,handleInputFocus:L,handleInputChange:j,handleInputKeyup:z,handleSelectItem:P,handleSelectCondtionItem:Z,handleMenuFooterClick:B}},render(){var m,p;const{multiple:e,values:t,placeholder:n,inputInnerHtml:i}=this.usingItem||{},s=!((m=this.keyword)!=null&&m.length)&&!(t!=null&&t.length)&&n,o=this.loading||this.showNoSelectValueError||this.showPopover&&!!((p=this.menuList)!=null&&p.length),c=!this.usingItem&&this.showCondition,d=Object.assign({},this.$slots.menu?{default:y=>{var b,v;return(v=(b=this.$slots).menu)==null?void 0:v.call(b,y)}}:{}),u=()=>{var y;return a.withDirectives(a.createVNode("div",{ref:"inputRef",class:{"div-input":!0,"input-before":this.showInputBefore&&!((y=this.keyword)!=null&&y.length),"input-after":s},contenteditable:!0,"data-placeholder":!i&&!this.keyword?"\u8BF7\u9009\u62E9":"","data-tips":n||"",spellcheck:"false",onFocus:this.handleInputFocus,onInput:this.handleInputChange,onKeydown:this.handleInputKeyup},null),[[a.resolveDirective("clickoutside"),this.handleClickOutside]])},f=()=>{var y;return this.loading?a.createVNode("div",null,[a.createTextVNode("\u52A0\u8F7D\u4E2D...")]):this.showNoSelectValueError?a.createVNode("div",null,[a.createTextVNode("\u5305\u542B\u952E\u503C\u7684\u8FC7\u6EE4\u67E5\u8BE2\u5FC5\u987B\u6709\u4E00\u4E2A\u503C")]):(y=this.menuList)!=null&&y.length?a.createVNode("div",{ref:"popoverRef",class:"bk-search-select-popover"},[a.createVNode(Cv,{list:this.menuList,keyword:this.keyword,multiple:!!e,hoverId:this.menuHoverId,selected:(t==null?void 0:t.map(b=>b.id))||[],conditions:c?this.conditions:[],onSelectItem:this.handleSelectItem,onSelectCondition:this.handleSelectCondtionItem,onFooterClick:this.handleMenuFooterClick},Y({},d))]):void 0};return a.createVNode(pn,{trigger:"manual",theme:"light",placement:"bottom-start",arrow:!1,disableOutsideClick:!0,isShow:o},{default:u,content:f})}}),wv=a.defineComponent({name:"SearchSelected",props:{data:{type:Array,required:!0},selectedList:{type:Array,required:!0},overflowIndex:{type:Number,default:-1},conditions:{type:Array,default:()=>[]},geMenuList:Function,validateValues:Function},emits:["delete"],setup(e,{emit:t}){const n=a.ref(null),{onEditClick:i,onEditEnter:s,onEditBlur:o,editKey:c}=y3();function d(b){t("delete",b)}function u(b,v,T){b.preventDefault(),b.stopPropagation(),i(v,T),setTimeout(()=>n.value.handleInputFocus(),200)}function f(b,v){s(b,v)}function m(b){b||o()}function p(){return!0}function y(b){const v=new qa(b.searchItem,b.type);return v.values=b.values.slice(),v}return{inputRef:n,editKey:c,copySeletedItem:y,handleDeleteSelected:d,handleEditSeleted:u,handleInputOutside:p,handleAddSelected:f,handleInputFocus:m}},render(){const e=(t,n)=>this.editKey===`${t.id}_${n}`?a.createVNode("div",{class:"selected-input",key:this.editKey.toString()},[a.createVNode(C3,{ref:"inputRef",key:this.editKey.toString(),mode:ns.EDIT,data:this.data,showCondition:!1,conditions:this.conditions,defautUsingItem:this.copySeletedItem(t),clickOutside:this.handleInputOutside,geMenuList:this.geMenuList,validateValues:this.validateValues,onAdd:i=>this.handleAddSelected(i,n),onFocus:this.handleInputFocus},null)]):a.createVNode("li",{class:`search-container-selected ${(this.overflowIndex>=0?n<this.overflowIndex:n>=0)?"":"hidden-selected"}`,key:`${t.id}_${n}`},[a.createVNode("span",{class:"selected-name",onClick:i=>this.handleEditSeleted(i,t,n)},[t.inputInnerText]),a.createVNode(Ut,{class:"selected-clear",onClick:()=>this.handleDeleteSelected(n)},null)]);return a.createVNode(a.Fragment,null,[this.selectedList.map((t,n)=>[this.overflowIndex>=0&&n===this.overflowIndex&&a.createVNode("div",{class:"search-container-selected overflow-selected"},[a.createTextVNode("+"),this.selectedList.length-this.overflowIndex]),e(t,n)])])}});const ku=40,v3=6,Mv={data:{type:Array,default:()=>[]},modelValue:{type:Array,default:()=>[]},shrink:{type:Boolean,default:!0},maxHeight:{type:Number,default:120},minHeight:{type:Number,default:26},conditions:{type:Array,default:()=>[{id:"or",name:"\u6216"},{id:"and",name:"\u4E14"}]},clearable:{type:Boolean,default:!0},getMenuList:Function,validateValues:Function};var Iv=a.defineComponent({name:"SearchSelect",directives:{clickoutside:zn},props:Mv,emits:["update:modelValue"],setup(e,{emit:t}){const n=a.ref(null),i=a.ref(null),s=a.ref(!1),o=a.ref([]),c=a.ref(-1),d=js(32,v),u=a.ref(""),f=a.ref("");a.watch(()=>e.modelValue,N=>{if(!(N!=null&&N.length)){o.value=[];return}const L=[];N.forEach(j=>{var O;const z=o.value.find(R=>R.id===j.id&&R.name===j.name);if((z==null?void 0:z.toValueKey())===JSON.stringify(j))z.values=j.values||[],L.push(z);else{let R=e.data.find(B=>B.id===j.id),P="default";R||(R=e.conditions.find(B=>B.id===j.id),R&&(P="condition")),!R&&!((O=j.values)!=null&&O.length)&&(P="text");const Z=new qa(R||j,P);Z.values=j.values||[],L.push(Z)}}),o.value=L},{immediate:!0,deep:!0}),a.onMounted(()=>{gv(i.value.querySelector(".bk-search-select-container"),d)}),a.onBeforeUnmount(()=>{mv(i.value.querySelector(".bk-search-select-container"),d)}),vv({onEditClick:m,onEditEnter:p,onEditBlur:y,onValidate:b,editKey:u});function m(N,L){u.value=`${N.id}_${L}`}function p(N,L){const j=o.value.slice();j.splice(L,1,N),t("update:modelValue",j.map(z=>z.toValue())),u.value=""}function y(){u.value="",b("")}function b(N){f.value=N||""}function v(){if(s.value||o.value.length<1){c.value=-1;return}const N=i.value.querySelector(".bk-search-select-container"),L=i.value.querySelector(".search-container").clientWidth-v3-2,j=N.querySelectorAll(".search-container-selected:not(.overflow-selected)");let z=0,O=0,R=0;for(;O===0&&z<=L-ku&&R<=j.length-1;){const P=j[R];if(P.clientHeight>e.minHeight){c.value=R;return}z+=P?P.clientWidth+v3:0,z>=L-ku&&(O=R),R+=1}if(O===j.length-1&&z<=L){c.value=-1;return}c.value=z>=L-ku?O:O-1}function T(){u.value||n.value.handleInputFocus()}function x(){o.value=[],c.value=-1,t("update:modelValue",[])}function k(N){var L;return!((L=i.value)!=null&&L.contains(N))}function I(N){const L=o.value.slice();L.push(N),b(""),t("update:modelValue",L.map(j=>j.toValue()))}function C(N){const L=o.value.slice();L.splice(typeof N=="number"?N:o.value.length-1,1),b(""),t("update:modelValue",L.map(j=>j.toValue()))}function M(N){N&&(c.value=-1),s.value=N}return{inputRef:n,wrapRef:i,isFocus:s,selectedList:o,overflowIndex:c,validateStr:f,onEditClick:m,onEditEnter:p,handleWrapClick:T,handleInputFocus:M,handleResize:v,handleClearAll:x,handleInputOutside:k,handleAddSelected:I,handleDeleteSelected:C}},render(){var i,s;const e=`${!this.shrink||this.isFocus?this.maxHeight:this.minHeight}px`,t=!!this.selectedList.length&&this.selectedList.slice(-1)[0].type!=="condition",n=Object.assign({},this.$slots.menu?{menu:o=>{var c,d;return(d=(c=this.$slots).menu)==null?void 0:d.call(c,o)}}:{});return a.createVNode("div",{class:"bk-search-select",ref:"wrapRef"},[a.createVNode("div",{class:{"bk-search-select-container":!0,"is-focus":this.isFocus},onClick:this.handleWrapClick},[a.createVNode("div",{class:"search-prefix"},[(s=(i=this.$slots).prepend)==null?void 0:s.call(i)]),a.createVNode("div",{class:"search-container",style:{maxHeight:e}},[a.createVNode(wv,{data:this.data,conditions:this.conditions,selectedList:this.selectedList,overflowIndex:this.overflowIndex,geMenuList:this.getMenuList,validateValues:this.validateValues,onDelete:this.handleDeleteSelected},Y({},n)),a.createVNode("div",{class:"search-container-input"},[a.createVNode(C3,{ref:"inputRef",data:this.data,showInputBefore:!this.selectedList.length,showCondition:t,conditions:this.conditions,clickOutside:this.handleInputOutside,geMenuList:this.getMenuList,validateValues:this.validateValues,onAdd:this.handleAddSelected,onDelete:this.handleDeleteSelected,onFocus:this.handleInputFocus},Y({},n))])]),a.createVNode("div",{class:"search-nextfix"},[this.clearable&&!!this.selectedList.length&&a.createVNode(Ut,{class:"search-clear",onClick:this.handleClearAll},null),this.$slots.append?this.$slots.append():a.createVNode(Ha,{class:`search-nextfix-icon ${this.isFocus?"is-focus":""}`},null)])]),!!this.validateStr.length&&a.createVNode("div",{class:"bk-search-select-tips"},[this.$slots.validate?this.$slots.validate():a.createVNode(a.Fragment,null,[a.createVNode(Qs,{class:"select-tips"},null),this.validateStr||""])])])}});const w3=He(Iv);var Tu=Object.freeze(Object.defineProperty({__proto__:null,Alert:Jf,AnimateNumber:Qf,Affix:Rf,Backtop:_f,Badge:Wf,Breadcrumb:Hf,Button:At,Card:Ff,Checkbox:zi,Collapse:$f,Dialog:Xf,Exception:Fs,FixedNavbar:e0,Input:ra,Link:t0,Loading:Di,Modal:sa,Popover:pn,Popover2:R0,Progress:_r,Radio:F0,Rate:G0,Swiper:Z0,Select:Pc,Sideslider:q0,Steps:th,Switcher:nh,Table:Mh,TableColumn:Ih,Tag:rl,TagInput:kh,Divider:Th,Tab:Sh,Message:zh,InfoBox:Oh,Notify:Eh,Menu:Qh,Navigation:_h,DatePicker:b9,Transfer:y9,Tree:N9,VirtualRender:Wr,Form:T9,Pagination:Jc,Container:Cl,containerProps:Cl,Dropdown:x9,Cascader:z9,Slider:E9,ResizeLayout:P9,TimeLine:A9,Process:V9,Upload:F9,CodeDiff:d3,ColorPicker:g3,TimePicker:m3,SearchSelect:w3,$bkPopover:kc},Symbol.toStringTag,{value:"Module"}));const M3=(e="Bk")=>t=>{const n=t.config.globalProperties.bkUIPrefix||e;Object.keys(Tu).forEach(i=>{const s=Tu[i];"install"in s?t.use(s,{prefix:n}):t.component(n+i,Tu[i])})};var Nv={createInstall:M3,install:M3(),version:"0.0.1"};Me.$bkPopover=kc,Me.Affix=Rf,Me.Alert=Jf,Me.AnimateNumber=Qf,Me.Backtop=_f,Me.Badge=Wf,Me.Breadcrumb=Hf,Me.Button=At,Me.Card=Ff,Me.Cascader=z9,Me.Checkbox=zi,Me.CodeDiff=d3,Me.Collapse=$f,Me.ColorPicker=g3,Me.Container=Cl,Me.DatePicker=b9,Me.Dialog=Xf,Me.Divider=Th,Me.Dropdown=x9,Me.Exception=Fs,Me.FixedNavbar=e0,Me.Form=T9,Me.InfoBox=Oh,Me.Input=ra,Me.Link=t0,Me.Loading=Di,Me.Menu=Qh,Me.Message=zh,Me.Modal=sa,Me.Navigation=_h,Me.Notify=Eh,Me.Pagination=Jc,Me.Popover=pn,Me.Popover2=R0,Me.Process=V9,Me.Progress=_r,Me.Radio=F0,Me.Rate=G0,Me.ResizeLayout=P9,Me.SearchSelect=w3,Me.Select=Pc,Me.Sideslider=q0,Me.Slider=E9,Me.Steps=th,Me.Swiper=Z0,Me.Switcher=nh,Me.Tab=Sh,Me.Table=Mh,Me.TableColumn=Ih,Me.Tag=rl,Me.TagInput=kh,Me.TimeLine=A9,Me.TimePicker=m3,Me.Transfer=y9,Me.Tree=N9,Me.Upload=F9,Me.VirtualRender=Wr,Me.bkEllipsis=Qm,Me.bkEllipsisInstance=Tc,Me.bkTooltips=Mc,Me.clickoutside=zn,Me.containerProps=Cl,Me.default=Nv,Me.mousewheel=Om,Object.defineProperties(Me,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});