From b1b392c827f275ea79500a262e4d6e8a78d71cef Mon Sep 17 00:00:00 2001 From: Kirigaya <1193466151@qq.com> Date: Mon, 13 May 2024 22:08:51 +0800 Subject: [PATCH] remove dide viewer --- .gitignore | 3 +- CHANGELOG.md | 8 +- README.md | 17 +- package.json | 2 +- resources/dide-viewer/index.js | 3 - resources/dide-viewer/view/cpu.vcd | 8007 -------------- .../dide-viewer/view/css/app.520326c1.css | 1 - .../view/css/chunk-vendors.915d56aa.css | 1 - resources/dide-viewer/view/favicon.ico | Bin 4286 -> 0 bytes resources/dide-viewer/view/icon.png | Bin 20789 -> 0 bytes resources/dide-viewer/view/icon.svg | 42 - resources/dide-viewer/view/iconfont.css | 97 - resources/dide-viewer/view/iconfont.woff2 | Bin 3908 -> 0 bytes resources/dide-viewer/view/index.html | 13 - resources/dide-viewer/view/js/app.d35abdbf.js | 1 - .../view/js/chunk-vendors.9a8e8b73.js | 61 - resources/dide-viewer/view/ondark.css | 697 -- resources/dide-viewer/view/test.vcd | 9529 ----------------- resources/dide-viewer/view/vcd.css | 117 - resources/dide-viewer/view/vcd.js | 12 - resources/dide-viewer/view/vcd.wasm | Bin 126822 -> 0 bytes resources/dide-viewer/view/vscode.css | 149 - resources/hdlParser/parser.wasm | Bin 2927111 -> 2927116 bytes script/command/make_package.py | 1 + src/extension.ts | 2 +- src/function/dide-viewer/index.ts | 13 +- 26 files changed, 36 insertions(+), 18740 deletions(-) delete mode 100644 resources/dide-viewer/index.js delete mode 100644 resources/dide-viewer/view/cpu.vcd delete mode 100644 resources/dide-viewer/view/css/app.520326c1.css delete mode 100644 resources/dide-viewer/view/css/chunk-vendors.915d56aa.css delete mode 100644 resources/dide-viewer/view/favicon.ico delete mode 100644 resources/dide-viewer/view/icon.png delete mode 100644 resources/dide-viewer/view/icon.svg delete mode 100644 resources/dide-viewer/view/iconfont.css delete mode 100644 resources/dide-viewer/view/iconfont.woff2 delete mode 100644 resources/dide-viewer/view/index.html delete mode 100644 resources/dide-viewer/view/js/app.d35abdbf.js delete mode 100644 resources/dide-viewer/view/js/chunk-vendors.9a8e8b73.js delete mode 100644 resources/dide-viewer/view/ondark.css delete mode 100644 resources/dide-viewer/view/test.vcd delete mode 100644 resources/dide-viewer/view/vcd.css delete mode 100644 resources/dide-viewer/view/vcd.js delete mode 100644 resources/dide-viewer/view/vcd.wasm delete mode 100644 resources/dide-viewer/view/vscode.css diff --git a/.gitignore b/.gitignore index 2d7d2f7..72a70e0 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,5 @@ out-js/ *.pyc *.pyd resources/hdlParser/parser.js -resources/hdlParser/parser.wasm \ No newline at end of file +resources/hdlParser/parser.wasm +resources/dide-viewer/view/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 18452e0..3784e8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how Feature - 重做了文档化功能,并且添加了参数和接口的 diagram 可视化的渲染模块 -- 增加了波形显示器 - +- 增加了波形显示器,支持以下特性 + - 完整的 vcd 支持,对于 IEEE VCD 标准完全支持。 + - 基于 wasm 的 数据解析 和基于 webgl2 的渲染,拥有接近原生的运行速度。 + - 主线程渲染和渲染数据的加载实现了调度隔离,再大的 vcd 也不会造成卡顿。 + - 支持用户自定义调整波形颜色,移动灵敏度等等。 + - 支持用户自定义搜索信号名称。 Bug 修复 - Verilog 参数例化位置错误 diff --git a/README.md b/README.md index 6351990..813507f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ -# Digital IDE - version 0.3.2 +
+ +
-![](https://img.shields.io/badge/version-0.3.0-blue) +# Digital IDE - version 0.3.3 + +![](https://img.shields.io/badge/version-0.3.3-blue) ![](https://img.shields.io/badge/engine-wasm-blue) ![](https://img.shields.io/badge/Verilog-support-green) ![](https://img.shields.io/badge/VHDL-support-green) @@ -11,7 +15,6 @@ - [Video](https://www.bilibili.com/video/BV1t14y1179V/?spm_id_from=333.999.0.0) - --- ## Feature @@ -32,3 +35,11 @@ - 修复 iverilog 仿真功能中,将重复的路径作为编译参数编译的 bug - 修复 iverilog 仿真功能中,将 `include 加入或去除后,无法通过仿真编译的 bug (没有更新 instance 的 instModPathStatus 属性) - 修复其他已知 bug + +--- + +## develop + +```bash +python script/command/make_package.py +``` \ No newline at end of file diff --git a/package.json b/package.json index 50b041f..b0652d3 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "all in one vscode plugin for Verilog/VHDL development", "publisher": "sterben", "homepage": "https://digital-eda.github.io/DIDE-doc-Cn", - "version": "0.3.2", + "version": "0.3.3", "main": "./out/extension", "icon": "images/icon.png", "engines": { diff --git a/resources/dide-viewer/index.js b/resources/dide-viewer/index.js deleted file mode 100644 index d95f8ce..0000000 --- a/resources/dide-viewer/index.js +++ /dev/null @@ -1,3 +0,0 @@ -const fs = require("fs"); -const fspath = require("path"); -const vscode = require("vscode"); \ No newline at end of file diff --git a/resources/dide-viewer/view/cpu.vcd b/resources/dide-viewer/view/cpu.vcd deleted file mode 100644 index 753bedd..0000000 --- a/resources/dide-viewer/view/cpu.vcd +++ /dev/null @@ -1,8007 +0,0 @@ -$date - Mon Jan 4 17:57:07 2021 -$end -$version - Icarus Verilog -$end -$timescale - 1s -$end -$scope module ID_EX $end -$var wire 2 ! AluOp [1:0] $end -$var wire 1 " AluSrc $end -$var wire 1 # MemRead $end -$var wire 1 $ MemWrite $end -$var wire 1 % MemtoReg $end -$var wire 1 & RegWrite $end -$var wire 1 ' clk_i $end -$var wire 3 ( func3 [2:0] $end -$var wire 7 ) func7 [6:0] $end -$var wire 32 * imm_o [31:0] $end -$var wire 32 + rd_addr [31:0] $end -$var wire 32 , rs1_addr [31:0] $end -$var wire 32 - rs1_data [31:0] $end -$var wire 32 . rs2_addr [31:0] $end -$var wire 32 / rs2_data [31:0] $end -$var reg 2 0 ID_EX_AluOp [1:0] $end -$var reg 1 1 ID_EX_AluSrc $end -$var reg 32 2 ID_EX_IMM [31:0] $end -$var reg 1 3 ID_EX_MemRead $end -$var reg 1 4 ID_EX_MemWrite $end -$var reg 1 5 ID_EX_MemtoReg $end -$var reg 5 6 ID_EX_RD [4:0] $end -$var reg 5 7 ID_EX_RS1 [4:0] $end -$var reg 32 8 ID_EX_RS1data [31:0] $end -$var reg 5 9 ID_EX_RS2 [4:0] $end -$var reg 32 : ID_EX_RS2data [31:0] $end -$var reg 1 ; ID_EX_RegWrite $end -$var reg 3 < ID_EX_func3 [2:0] $end -$var reg 7 = ID_EX_func7 [6:0] $end -$upscope $end -$scope module testbench $end -$var wire 256 > mem_cpu_data [255:0] $end -$var wire 1 ? mem_cpu_ack $end -$var wire 1 @ cpu_mem_write $end -$var wire 1 A cpu_mem_enable $end -$var wire 256 B cpu_mem_data [255:0] $end -$var wire 32 C cpu_mem_addr [31:0] $end -$var reg 1 D Clk $end -$var reg 1 E Reset $end -$var reg 1 F Start $end -$var reg 27 G address [26:0] $end -$var reg 1 H flag $end -$var reg 4 I index [3:0] $end -$var reg 25 J tag [24:0] $end -$var integer 32 K counter [31:0] $end -$var integer 32 L i [31:0] $end -$var integer 32 M j [31:0] $end -$var integer 32 N outfile [31:0] $end -$var integer 32 O outfile2 [31:0] $end -$scope module CPU $end -$var wire 1 D clk_i $end -$var wire 1 E rst_i $end -$var wire 1 F start_i $end -$var wire 32 P wb_data [31:0] $end -$var wire 32 Q rs2_data [31:0] $end -$var wire 2 R rs2_ctrl [1:0] $end -$var wire 5 S rs2_addr [4:0] $end -$var wire 32 T rs1_data [31:0] $end -$var wire 2 U rs1_ctrl [1:0] $end -$var wire 5 V rs1_addr [4:0] $end -$var wire 5 W rd_addr [4:0] $end -$var wire 32 X pc_o [31:0] $end -$var wire 32 Y pc_i [31:0] $end -$var wire 32 Z pc_add4 [31:0] $end -$var wire 7 [ opcode [6:0] $end -$var wire 32 \ mux_o [31:0] $end -$var wire 1 @ mem_write_o $end -$var wire 1 A mem_enable_o $end -$var wire 256 ] mem_data_o [255:0] $end -$var wire 256 ^ mem_data_i [255:0] $end -$var wire 32 _ mem_addr_o [31:0] $end -$var wire 1 ? mem_ack_i $end -$var wire 32 ` instr [31:0] $end -$var wire 32 a imm_o [31:0] $end -$var wire 12 b imm_i [11:0] $end -$var wire 7 c func7 [6:0] $end -$var wire 3 d func3 [2:0] $end -$var wire 1 e cpu_stall_o $end -$var wire 1 f Stall $end -$var wire 1 g RegWrite $end -$var wire 1 h PcWrite $end -$var wire 32 i PC_Branch [31:0] $end -$var wire 1 j NoOp $end -$var wire 1 k MemtoReg $end -$var wire 1 l MemWrite $end -$var wire 1 m MemRead $end -$var wire 32 n MemData_o [31:0] $end -$var wire 32 o IF_ID_PC [31:0] $end -$var wire 32 p IF_ID_IR [31:0] $end -$var wire 1 q Flush $end -$var wire 1 r Branch $end -$var wire 1 s AluSrc $end -$var wire 2 t AluOp [1:0] $end -$var wire 3 u AluControl_o [2:0] $end -$var wire 32 v ALU_o [31:0] $end -$var wire 32 w ALU_RS2 [31:0] $end -$var wire 32 x ALU_RS1 [31:0] $end -$var reg 32 y EX_MEM_ALUout [31:0] $end -$var reg 1 z EX_MEM_MemRead $end -$var reg 1 { EX_MEM_MemWrite $end -$var reg 1 | EX_MEM_MemtoReg $end -$var reg 5 } EX_MEM_RD [4:0] $end -$var reg 1 ~ EX_MEM_RegWrite $end -$var reg 32 !" EX_MEM_WriteData [31:0] $end -$var reg 2 "" ID_EX_AluOp [1:0] $end -$var reg 1 #" ID_EX_AluSrc $end -$var reg 32 $" ID_EX_IMM [31:0] $end -$var reg 1 %" ID_EX_MemRead $end -$var reg 1 &" ID_EX_MemWrite $end -$var reg 1 '" ID_EX_MemtoReg $end -$var reg 5 (" ID_EX_RD [4:0] $end -$var reg 5 )" ID_EX_RS1 [4:0] $end -$var reg 32 *" ID_EX_RS1data [31:0] $end -$var reg 5 +" ID_EX_RS2 [4:0] $end -$var reg 32 ," ID_EX_RS2data [31:0] $end -$var reg 1 -" ID_EX_RegWrite $end -$var reg 3 ." ID_EX_func3 [2:0] $end -$var reg 7 /" ID_EX_func7 [6:0] $end -$var reg 32 0" MEM_WB_ALUout [31:0] $end -$var reg 32 1" MEM_WB_MEMout [31:0] $end -$var reg 1 2" MEM_WB_MemtoReg $end -$var reg 5 3" MEM_WB_RD [4:0] $end -$var reg 1 4" MEM_WB_RegWrite $end -$scope module ALU $end -$var wire 32 5" rs1_data [31:0] $end -$var wire 32 6" mux_o [31:0] $end -$var wire 3 7" AluControl [2:0] $end -$var reg 32 8" ALU_o [31:0] $end -$upscope $end -$scope module ALU_Control $end -$var wire 2 9" AluOp [1:0] $end -$var wire 3 :" func3 [2:0] $end -$var wire 7 ;" func7 [6:0] $end -$var reg 3 <" AluControl_o [2:0] $end -$upscope $end -$scope module ALU_Src_Mux $end -$var wire 1 #" ctrl_signal $end -$var wire 32 =" input1 [31:0] $end -$var wire 32 >" out [31:0] $end -$var wire 32 ?" input0 [31:0] $end -$upscope $end -$scope module Add4 $end -$var wire 32 @" pc_o [31:0] $end -$var wire 32 A" pc_i [31:0] $end -$upscope $end -$scope module Adder $end -$var wire 32 B" PC_Branch [31:0] $end -$var wire 32 C" IF_ID_PC [31:0] $end -$var wire 32 D" IF_ID_Imm [31:0] $end -$upscope $end -$scope module Control $end -$var wire 7 E" opcode [6:0] $end -$var wire 1 g RegWrite $end -$var wire 1 j NoOp $end -$var wire 1 k MemtoReg $end -$var wire 1 l MemWrite $end -$var wire 1 m MemRead $end -$var wire 1 r Branch $end -$var wire 1 s AluSrc $end -$var wire 2 F" AluOp [1:0] $end -$upscope $end -$scope module Forwarding_Unit $end -$var wire 5 G" EX_MEM_RD [4:0] $end -$var wire 1 ~ EX_MEM_RegWrite $end -$var wire 5 H" ID_EX_RS1 [4:0] $end -$var wire 5 I" ID_EX_RS2 [4:0] $end -$var wire 5 J" MEM_WB_RD [4:0] $end -$var wire 1 4" MEM_WB_RegWrite $end -$var wire 2 K" Forward_Control2 [1:0] $end -$var wire 2 L" Forward_Control1 [1:0] $end -$upscope $end -$scope module Hazard_Detection $end -$var wire 1 %" ID_EX_MemRead $end -$var wire 5 M" ID_EX_RD [4:0] $end -$var wire 5 N" rs1_addr [4:0] $end -$var wire 5 O" rs2_addr [4:0] $end -$var wire 1 f Stall_o $end -$var wire 1 h PcWrite_o $end -$var wire 1 j NoOp_o $end -$upscope $end -$scope module IF_ID $end -$var wire 1 q Flush $end -$var wire 1 f Stall $end -$var wire 1 D clk_i $end -$var wire 32 P" pc_o [31:0] $end -$var wire 32 Q" instr [31:0] $end -$var wire 1 e cpu_stall_o $end -$var reg 32 R" IF_ID_IR [31:0] $end -$var reg 32 S" IF_ID_PC [31:0] $end -$upscope $end -$scope module Instruction_Memory $end -$var wire 32 T" instr_o [31:0] $end -$var wire 32 U" addr_i [31:0] $end -$upscope $end -$scope module PC $end -$var wire 1 h PCWrite_i $end -$var wire 1 D clk_i $end -$var wire 1 E rst_i $end -$var wire 1 F start_i $end -$var wire 1 e stall_i $end -$var wire 32 V" pc_i [31:0] $end -$var reg 32 W" pc_o [31:0] $end -$upscope $end -$scope module PC_Mux $end -$var wire 1 q ctrl_signal $end -$var wire 32 X" input0 [31:0] $end -$var wire 32 Y" input1 [31:0] $end -$var wire 32 Z" out [31:0] $end -$upscope $end -$scope module RS1_Forwarding $end -$var wire 32 [" EX_MEM_ALUout [31:0] $end -$var wire 32 \" ID_EX_RS [31:0] $end -$var wire 2 ]" ctrl [1:0] $end -$var wire 32 ^" forword_out [31:0] $end -$var wire 32 _" WB_WBdata [31:0] $end -$upscope $end -$scope module RS2_Forwarding $end -$var wire 32 `" EX_MEM_ALUout [31:0] $end -$var wire 32 a" ID_EX_RS [31:0] $end -$var wire 2 b" ctrl [1:0] $end -$var wire 32 c" forword_out [31:0] $end -$var wire 32 d" WB_WBdata [31:0] $end -$upscope $end -$scope module Registers $end -$var wire 5 e" RDaddr_i [4:0] $end -$var wire 5 f" RS1addr_i [4:0] $end -$var wire 5 g" RS2addr_i [4:0] $end -$var wire 1 4" RegWrite_i $end -$var wire 1 D clk_i $end -$var wire 32 h" RS2data_o [31:0] $end -$var wire 32 i" RS1data_o [31:0] $end -$var wire 32 j" RDdata_i [31:0] $end -$upscope $end -$scope module Sign_Extend $end -$var wire 12 k" imm_i [11:0] $end -$var wire 32 l" imm_o [31:0] $end -$upscope $end -$scope module WB_Mux $end -$var wire 1 2" ctrl_signal $end -$var wire 32 m" input0 [31:0] $end -$var wire 32 n" input1 [31:0] $end -$var wire 32 o" out [31:0] $end -$upscope $end -$scope module dcache $end -$var wire 1 p" cache_dirty $end -$var wire 1 q" cache_sram_enable $end -$var wire 4 r" cache_sram_index [3:0] $end -$var wire 1 s" cache_sram_write $end -$var wire 1 D clk_i $end -$var wire 1 z cpu_MemRead_i $end -$var wire 1 { cpu_MemWrite_i $end -$var wire 32 t" cpu_addr_i [31:0] $end -$var wire 32 u" cpu_data_i [31:0] $end -$var wire 32 v" cpu_data_o [31:0] $end -$var wire 1 w" cpu_req $end -$var wire 1 e cpu_stall_o $end -$var wire 256 x" mem_data_o [255:0] $end -$var wire 1 A mem_enable_o $end -$var wire 1 @ mem_write_o $end -$var wire 256 y" r_hit_data [255:0] $end -$var wire 1 E rst_i $end -$var wire 1 z" write_hit $end -$var wire 1 {" sram_valid $end -$var wire 22 |" sram_tag [21:0] $end -$var wire 1 }" sram_dirty $end -$var wire 25 ~" sram_cache_tag [24:0] $end -$var wire 256 !# sram_cache_data [255:0] $end -$var wire 256 "# mem_data_i [255:0] $end -$var wire 32 ## mem_addr_o [31:0] $end -$var wire 1 ? mem_ack_i $end -$var wire 1 $# hit $end -$var wire 23 %# cpu_tag [22:0] $end -$var wire 5 &# cpu_offset [4:0] $end -$var wire 4 '# cpu_index [3:0] $end -$var wire 25 (# cache_sram_tag [24:0] $end -$var wire 256 )# cache_sram_data [255:0] $end -$var reg 1 *# cache_write $end -$var reg 32 +# cpu_data [31:0] $end -$var reg 1 ,# mem_enable $end -$var reg 1 -# mem_write $end -$var reg 3 .# state [2:0] $end -$var reg 256 /# w_hit_data [255:0] $end -$var reg 1 0# write_back $end -$scope module dcache_sram $end -$var wire 4 1# addr_i [3:0] $end -$var wire 1 D clk_i $end -$var wire 256 2# data_i [255:0] $end -$var wire 1 q" enable_i $end -$var wire 1 E rst_i $end -$var wire 25 3# tag_i [24:0] $end -$var wire 1 s" write_i $end -$var wire 25 4# tag_o [24:0] $end -$var wire 1 $# hit_o $end -$var wire 256 5# data_o [255:0] $end -$var wire 2 6# ctrl [1:0] $end -$var integer 32 7# i [31:0] $end -$var integer 32 8# j [31:0] $end -$scope module Hit $end -$var wire 25 9# cpu_tag [24:0] $end -$var wire 25 :# sram_tag1 [24:0] $end -$var wire 25 ;# sram_tag2 [24:0] $end -$var wire 2 <# ctrl [1:0] $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope module Data_Memory $end -$var wire 1 ? ack_o $end -$var wire 32 =# addr_i [31:0] $end -$var wire 1 D clk_i $end -$var wire 256 ># data_i [255:0] $end -$var wire 256 ?# data_o [255:0] $end -$var wire 1 A enable_i $end -$var wire 1 E rst_i $end -$var wire 1 @ write_i $end -$var wire 27 @# addr [26:0] $end -$var reg 4 A# count [3:0] $end -$var reg 256 B# data [255:0] $end -$var reg 2 C# state [1:0] $end -$upscope $end -$upscope $end -$enddefinitions $end -#0 -$dumpvars -b0 C# -bx B# -b0 A# -bx @# -bx ?# -bx ># -bx00000 =# -bx <# -bx ;# -bx :# -b1xxxxxxxxxxxxxxxxxxxxxxxx 9# -b10 8# -b10000 7# -bx 6# -bx 5# -bx 4# -b1xxxxxxxxxxxxxxxxxxxxxxxx 3# -bx 2# -bx 1# -00# -bx /# -b0 .# -0-# -0,# -bx +# -0*# -bx )# -b1xxxxxxxxxxxxxxxxxxxxxxxx (# -bx '# -bx &# -bx %# -x$# -bx00000 ## -bx "# -bx !# -bx ~" -x}" -bx |" -x{" -xz" -bx y" -bx x" -xw" -bx v" -bx u" -bx t" -xs" -bx r" -xq" -xp" -bx o" -bx n" -bx m" -bx l" -bx k" -bx j" -bx i" -bx h" -bx g" -bx f" -bx e" -bx d" -bx c" -b0 b" -bx a" -bx `" -bx _" -bx ^" -b0 ]" -bx \" -bx [" -bx Z" -bx Y" -b100 X" -b0 W" -bx V" -b0 U" -bx T" -bx S" -bx R" -bx Q" -b0 P" -bx O" -bx N" -bx M" -b0 L" -b0 K" -bx J" -bx I" -bx H" -bx G" -bx F" -bx E" -bx D" -bx C" -bx B" -b0 A" -b100 @" -bx ?" -bx >" -bx =" -bx <" -bx ;" -bx :" -bx 9" -bx 8" -bx 7" -bx 6" -bx 5" -x4" -bx 3" -x2" -bx 1" -bx 0" -bx /" -bx ." -x-" -bx ," -bx +" -bx *" -bx )" -bx (" -x'" -x&" -x%" -bx $" -x#" -bx "" -bx !" -x~ -bx } -x| -x{ -xz -bx y -bx x -bx w -bx v -bx u -bx t -xs -xr -xq -bx p -bx o -bx n -xm -xl -xk -xj -bx i -xh -xg -xf -xe -bx d -bx c -bx b -bx a -bx ` -bx00000 _ -bx ^ -bx ] -bx \ -bx [ -b100 Z -bx Y -b0 X -bx W -bx V -b0 U -bx T -bx S -b0 R -bx Q -bx P -bx O -bx N -bx M -bx L -b0 K -bx J -bx I -xH -bx G -0F -1E -0D -bx00000 C -bx B -0A -0@ -0? -bx > -bx = -bx < -x; -bx : -bx 9 -bx 8 -bx 7 -bx 6 -x5 -x4 -x3 -bx 2 -x1 -bx 0 -bz / -bz . -bz - -bz , -bz + -bz * -bz ) -bz ( -z' -z& -z% -z$ -z# -z" -bz ! -$end -#12 -b0 n -b0 v" -b0 +# -b100 Y -b100 V" -b100 Z" -b0 |" -b0 i -b0 B" -b0 Y" -0q -0}" -0{" -0$# -0g -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b0 ~" -b0 4# -b0 a -b0 D" -b0 l" -b0 b -b0 k" -b0 @# -b10 6# -b10 <# -1s -0r -0m -0l -0k -b0 t -b0 F" -b0 Q -b0 h" -0s" -0e -b0 C -b0 _ -b0 ## -b0 =# -1h -0f -0j -b0 v -b0 8" -b0 S -b0 O" -b0 g" -b0 T -b0 i" -b0 W -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -0p" -0z" -0q" -0w" -b0 /# -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -b0 %# -b0 :# -b0 ;# -b0 r" -b0 1# -b0 '# -b0 &# -b0 u -b0 7" -b0 <" -b0 \ -b0 6" -b0 >" -b0 w -b0 ?" -b0 c" -b0 x -b0 5" -b0 ^" -b0 c -b0 V -b0 N" -b0 f" -b0 d -b100 [ -b100 E" -02" -04" -b0 3" -b0 J" -b0 e" -b0 0" -b0 m" -b0 1" -b0 n" -0{ -0z -0| -0~ -b0 } -b0 G" -b0 !" -b0 u" -b0 y -b0 [" -b0 `" -b0 t" -0&" -0%" -0'" -0-" -0#" -b0 "" -b0 9" -b0 ." -b0 :" -b0 /" -b0 ;" -b0 $" -b0 =" -b0 ," -b0 a" -b0 *" -b0 \" -b0 +" -b0 I" -b0 )" -b0 H" -b0 (" -b0 M" -b0 o -b0 C" -b0 S" -b100 p -b100 R" -b101 O -b11 N -b10 M -b10010000000011 ` -b10010000000011 Q" -b10010000000011 T" -b1000000000 L -1F -0E -#25 -1g -1m -1k -b1000 W -b10 d -b11 [ -b11 E" -b10000000010010010000011 ` -b10000000010010010000011 Q" -b10000000010010010000011 T" -b1000 Y -b1000 V" -b1000 Z" -b10010000000011 p -b10010000000011 R" -1#" -b1000 Z -b1000 @" -b1000 X" -b100 X -b100 A" -b100 P" -b100 U" -b100 W" -b1 K -0H -1D -#50 -0D -#75 -1s -1g -1k -1m -1h -0f -0j -b100 a -b100 D" -b100 l" -b100 b -b100 k" -b1001 W -b100000000010010100000011 ` -b100000000010010100000011 Q" -b100000000010010100000011 T" -b1100 Y -b1100 V" -b1100 Z" -1%" -1'" -1-" -b10 ." -b10 :" -b1000 (" -b1000 M" -b1100 i -b1100 B" -b1100 Y" -b100 o -b100 C" -b100 S" -b10000000010010010000011 p -b10000000010010010000011 R" -b1100 Z -b1100 @" -b1100 X" -b1000 X -b1000 A" -b1000 P" -b1000 U" -b1000 W" -b10 K -1D -#100 -0D -#125 -b1000 a -b1000 D" -b1000 l" -b1000 b -b1000 k" -b1010 W -b100 v -b100 8" -1e -b100 \ -b100 6" -b100 >" -1q" -1w" -b110000000010010110000011 ` -b110000000010010110000011 Q" -b110000000010010110000011 T" -b10000 Y -b10000 V" -b10000 Z" -b11000 i -b11000 B" -b11000 Y" -b1000 o -b1000 C" -b1000 S" -b100000000010010100000011 p -b100000000010010100000011 R" -b100 $" -b100 =" -b1001 (" -b1001 M" -1z -1| -1~ -b1000 } -b1000 G" -b10000 Z -b10000 @" -b10000 X" -b1100 X -b1100 A" -b1100 P" -b1100 U" -b1100 W" -b11 K -1D -#150 -0D -#175 -b100 .# -b100 K -1H -1D -#200 -0D -#225 -b1 .# -1A -1,# -b101 K -1D -#250 -0D -#275 -b1 A# -b1 C# -b110 K -1D -#300 -0D -#325 -b10 A# -b111 K -1D -#350 -0D -#375 -b11 A# -b1000 K -1D -#400 -0D -#425 -b100 A# -b1001 K -1D -#450 -0D -#475 -b101 A# -b1010 K -1D -#500 -0D -#525 -b110 A# -b1011 K -1D -#550 -0D -#575 -b111 A# -b1100 K -1D -#600 -0D -#625 -b1000 A# -b1101 K -1D -#650 -0D -#675 -1? -b1001 A# -b1110 K -1D -#700 -0D -#725 -0? -1s" -b0 A# -b0 C# -b10 .# -0A -0,# -1*# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 > -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ^ -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 "# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ?# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B# -b1111 K -1D -#750 -0D -#775 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -0e -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110100000000000000000000000000000000 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110100000000000000000000000000000000 2# -1$# -b0 6# -b0 <# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110100000000000000000000000000000000 /# -1{" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -0s" -b1000000000000000000000000 :# -b0 .# -0*# -b10000 K -1D -#800 -0D -#825 -b11001100110011001101110111011101 n -b11001100110011001101110111011101 v" -b11001100110011001101110111011101 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110110000000000000000000000000000000011101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110110000000000000000000000000000000011101110111011101111111111111111 2# -b1100 a -b1100 D" -b1100 l" -b1100 b -b1100 k" -b1011 W -b1000 v -b1000 8" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110110000000000000000000000000000000011101110111011101111111111111111 /# -b1000 \ -b1000 6" -b1000 >" -b100 &# -b11101110111011101111111111111111 P -b11101110111011101111111111111111 _" -b11101110111011101111111111111111 d" -b11101110111011101111111111111111 j" -b11101110111011101111111111111111 o" -b1000000000010011000000011 ` -b1000000000010011000000011 Q" -b1000000000010011000000011 T" -b10100 Y -b10100 V" -b10100 Z" -b100100 i -b100100 B" -b100100 Y" -b1100 o -b1100 C" -b1100 S" -b110000000010010110000011 p -b110000000010010110000011 R" -b1000 $" -b1000 =" -b1010 (" -b1010 M" -b1001 } -b1001 G" -b100 y -b100 [" -b100 `" -b100 t" -12" -14" -b1000 3" -b1000 J" -b1000 e" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b10100 Z -b10100 @" -b10100 X" -b10000 X -b10000 A" -b10000 P" -b10000 U" -b10000 W" -b10001 K -0H -1D -#850 -0D -#875 -b10101010101010101011101110111011 n -b10101010101010101011101110111011 v" -b10101010101010101011101110111011 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001000000000000000000000000000000001100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001000000000000000000000000000000001100110011001100110111011101110111101110111011101111111111111111 2# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001000000000000000000000000000000001100110011001100110111011101110111101110111011101111111111111111 /# -b1100 v -b1100 8" -b10000 a -b10000 D" -b10000 l" -b10000 b -b10000 k" -b1100 W -b11001100110011001101110111011101 P -b11001100110011001101110111011101 _" -b11001100110011001101110111011101 d" -b11001100110011001101110111011101 j" -b11001100110011001101110111011101 o" -b1000 &# -b1100 \ -b1100 6" -b1100 >" -b1010000000010011010000011 ` -b1010000000010011010000011 Q" -b1010000000010011010000011 T" -b11000 Y -b11000 V" -b11000 Z" -b1001 3" -b1001 J" -b1001 e" -b100 0" -b100 m" -b11001100110011001101110111011101 1" -b11001100110011001101110111011101 n" -b1010 } -b1010 G" -b1000 y -b1000 [" -b1000 `" -b1000 t" -b1100 $" -b1100 =" -b1011 (" -b1011 M" -b110000 i -b110000 B" -b110000 Y" -b10000 o -b10000 C" -b10000 S" -b1000000000010011000000011 p -b1000000000010011000000011 R" -b11000 Z -b11000 @" -b11000 X" -b10100 X -b10100 A" -b10100 P" -b10100 U" -b10100 W" -b10010 K -1D -#900 -0D -#925 -b10001000100010001001100110011001 n -b10001000100010001001100110011001 v" -b10001000100010001001100110011001 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011100000000000000000000000000000000101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011100000000000000000000000000000000101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b10100 a -b10100 D" -b10100 l" -b10100 b -b10100 k" -b1101 W -b10000 v -b10000 8" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011100000000000000000000000000000000101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b10000 \ -b10000 6" -b10000 >" -b1100 &# -b10101010101010101011101110111011 P -b10101010101010101011101110111011 _" -b10101010101010101011101110111011 d" -b10101010101010101011101110111011 j" -b10101010101010101011101110111011 o" -b1100000000010011100000011 ` -b1100000000010011100000011 Q" -b1100000000010011100000011 T" -b11100 Y -b11100 V" -b11100 Z" -b111100 i -b111100 B" -b111100 Y" -b10100 o -b10100 C" -b10100 S" -b1010000000010011010000011 p -b1010000000010011010000011 R" -b10000 $" -b10000 =" -b1100 (" -b1100 M" -b1011 } -b1011 G" -b1100 y -b1100 [" -b1100 `" -b1100 t" -b1010 3" -b1010 J" -b1010 e" -b1000 0" -b1000 m" -b10101010101010101011101110111011 1" -b10101010101010101011101110111011 n" -b11100 Z -b11100 @" -b11100 X" -b11000 X -b11000 A" -b11000 P" -b11000 U" -b11000 W" -b10011 K -1D -#950 -0D -#975 -b1100110011001100111011101110111 n -b1100110011001100111011101110111 v" -b1100110011001100111011101110111 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b10100 v -b10100 8" -b11000 a -b11000 D" -b11000 l" -b11000 b -b11000 k" -b1110 W -b10001000100010001001100110011001 P -b10001000100010001001100110011001 _" -b10001000100010001001100110011001 d" -b10001000100010001001100110011001 j" -b10001000100010001001100110011001 o" -b10000 &# -b10100 \ -b10100 6" -b10100 >" -b1110000000010011110000011 ` -b1110000000010011110000011 Q" -b1110000000010011110000011 T" -b100000 Y -b100000 V" -b100000 Z" -b1011 3" -b1011 J" -b1011 e" -b1100 0" -b1100 m" -b10001000100010001001100110011001 1" -b10001000100010001001100110011001 n" -b1100 } -b1100 G" -b10000 y -b10000 [" -b10000 `" -b10000 t" -b10100 $" -b10100 =" -b1101 (" -b1101 M" -b1001000 i -b1001000 B" -b1001000 Y" -b11000 o -b11000 C" -b11000 S" -b1100000000010011100000011 p -b1100000000010011100000011 R" -b100000 Z -b100000 @" -b100000 X" -b11100 X -b11100 A" -b11100 P" -b11100 U" -b11100 W" -b10100 K -1D -#1000 -0D -#1025 -b1000100010001000101010101010101 n -b1000100010001000101010101010101 v" -b1000100010001000101010101010101 +# -b100010001000100100010001000100011001100110011000000000000000000000000000000000110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011000000000000000000000000000000000110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b11100 a -b11100 D" -b11100 l" -b11100 b -b11100 k" -b1111 W -b11000 v -b11000 8" -b100010001000100100010001000100011001100110011000000000000000000000000000000000110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b11000 \ -b11000 6" -b11000 >" -b10100 &# -b1100110011001100111011101110111 P -b1100110011001100111011101110111 _" -b1100110011001100111011101110111 d" -b1100110011001100111011101110111 j" -b1100110011001100111011101110111 o" -b10000000000010100000000011 ` -b10000000000010100000000011 Q" -b10000000000010100000000011 T" -b100100 Y -b100100 V" -b100100 Z" -b1010100 i -b1010100 B" -b1010100 Y" -b11100 o -b11100 C" -b11100 S" -b1110000000010011110000011 p -b1110000000010011110000011 R" -b11000 $" -b11000 =" -b1110 (" -b1110 M" -b1101 } -b1101 G" -b10100 y -b10100 [" -b10100 `" -b10100 t" -b1100 3" -b1100 J" -b1100 e" -b10000 0" -b10000 m" -b1100110011001100111011101110111 1" -b1100110011001100111011101110111 n" -b100100 Z -b100100 @" -b100100 X" -b100000 X -b100000 A" -b100000 P" -b100000 U" -b100000 W" -b10101 K -1D -#1050 -0D -#1075 -b100010001000100011001100110011 n -b100010001000100011001100110011 v" -b100010001000100011001100110011 +# -b100010001000100000000000000000000000000000000010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100000000000000000000000000000000010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b100010001000100000000000000000000000000000000010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b11100 v -b11100 8" -b100000 a -b100000 D" -b100000 l" -b100000 b -b100000 k" -b10000 W -b1000100010001000101010101010101 P -b1000100010001000101010101010101 _" -b1000100010001000101010101010101 d" -b1000100010001000101010101010101 j" -b1000100010001000101010101010101 o" -b11000 &# -b11100 \ -b11100 6" -b11100 >" -b1 c -b10010000000010100010000011 ` -b10010000000010100010000011 Q" -b10010000000010100010000011 T" -b101000 Y -b101000 V" -b101000 Z" -b1101 3" -b1101 J" -b1101 e" -b10100 0" -b10100 m" -b1000100010001000101010101010101 1" -b1000100010001000101010101010101 n" -b1110 } -b1110 G" -b11000 y -b11000 [" -b11000 `" -b11000 t" -b11100 $" -b11100 =" -b1111 (" -b1111 M" -b1100000 i -b1100000 B" -b1100000 Y" -b100000 o -b100000 C" -b100000 S" -b10000000000010100000000011 p -b10000000000010100000000011 R" -b101000 Z -b101000 @" -b101000 X" -b100100 X -b100100 A" -b100100 P" -b100100 U" -b100100 W" -b10110 K -1D -#1100 -0D -#1125 -b1000100010001 n -b1000100010001 v" -b1000100010001 +# -b100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b100100 a -b100100 D" -b100100 l" -b100100 b -b100100 k" -b10001 W -b100000 v -b100000 8" -b100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b100000 \ -b100000 6" -b100000 >" -b11100 &# -b100010001000100011001100110011 P -b100010001000100011001100110011 _" -b100010001000100011001100110011 d" -b100010001000100011001100110011 j" -b100010001000100011001100110011 o" -b10100000000010100100000011 ` -b10100000000010100100000011 Q" -b10100000000010100100000011 T" -b101100 Y -b101100 V" -b101100 Z" -b1101100 i -b1101100 B" -b1101100 Y" -b100100 o -b100100 C" -b100100 S" -b10010000000010100010000011 p -b10010000000010100010000011 R" -b1 /" -b1 ;" -b100000 $" -b100000 =" -b10000 (" -b10000 M" -b1111 } -b1111 G" -b11100 y -b11100 [" -b11100 `" -b11100 t" -b1110 3" -b1110 J" -b1110 e" -b11000 0" -b11000 m" -b100010001000100011001100110011 1" -b100010001000100011001100110011 n" -b101100 Z -b101100 @" -b101100 X" -b101000 X -b101000 A" -b101000 P" -b101000 U" -b101000 W" -b10111 K -1D -#1150 -0D -#1175 -b0 n -b0 v" -b0 +# -1e -0$# -b1 @# -b10 6# -b10 <# -0{" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b100000 C -b100000 _ -b100000 ## -b100000 =# -b0 ~" -b0 4# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b0 /# -b100100 v -b100100 8" -b101000 a -b101000 D" -b101000 l" -b101000 b -b101000 k" -b10010 W -b1000100010001 P -b1000100010001 _" -b1000100010001 d" -b1000100010001 j" -b1000100010001 o" -b0 :# -b1 r" -b1 1# -b1 '# -b0 &# -b100100 \ -b100100 6" -b100100 >" -b10110000000010100110000011 ` -b10110000000010100110000011 Q" -b10110000000010100110000011 T" -b110000 Y -b110000 V" -b110000 Z" -b1111 3" -b1111 J" -b1111 e" -b11100 0" -b11100 m" -b1000100010001 1" -b1000100010001 n" -b10000 } -b10000 G" -b100000 y -b100000 [" -b100000 `" -b100000 t" -b100100 $" -b100100 =" -b10001 (" -b10001 M" -b1111000 i -b1111000 B" -b1111000 Y" -b101000 o -b101000 C" -b101000 S" -b10100000000010100100000011 p -b10100000000010100100000011 R" -b110000 Z -b110000 @" -b110000 X" -b101100 X -b101100 A" -b101100 P" -b101100 U" -b101100 W" -b11000 K -1D -#1200 -0D -#1225 -b100 .# -b11001 K -1H -1D -#1250 -0D -#1275 -b1 .# -1A -1,# -b11010 K -1D -#1300 -0D -#1325 -b1 A# -b1 C# -b11011 K -1D -#1350 -0D -#1375 -b10 A# -b11100 K -1D -#1400 -0D -#1425 -b11 A# -b11101 K -1D -#1450 -0D -#1475 -b100 A# -b11110 K -1D -#1500 -0D -#1525 -b101 A# -b11111 K -1D -#1550 -0D -#1575 -b110 A# -b100000 K -1D -#1600 -0D -#1625 -b111 A# -b100001 K -1D -#1650 -0D -#1675 -b1000 A# -b100010 K -1D -#1700 -0D -#1725 -1? -b1001 A# -b100011 K -1D -#1750 -0D -#1775 -1s" -0? -b10 .# -0A -0,# -1*# -b0 A# -b0 C# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b100100 K -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 > -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ^ -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 "# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ?# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 B# -1D -#1800 -0D -#1825 -b10001000100010000000000000000 n -b10001000100010000000000000000 v" -b10001000100010000000000000000 +# -0e -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 2# -1$# -b0 6# -b0 <# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 /# -1{" -0s" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b0 .# -0*# -b1000000000000000000000000 :# -b100101 K -1D -#1850 -0D -#1875 -b110011001100110010001000100010 n -b110011001100110010001000100010 v" -b110011001100110010001000100010 +# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000000000000000000000000000000000000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000000000000000000000000000000000000010001000100010000000000000000 2# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000000000000000000000000000000000000010001000100010000000000000000 /# -b101000 v -b101000 8" -b101100 a -b101100 D" -b101100 l" -b101100 b -b101100 k" -b10011 W -b10001000100010000000000000000 P -b10001000100010000000000000000 _" -b10001000100010000000000000000 d" -b10001000100010000000000000000 j" -b10001000100010000000000000000 o" -b100 &# -b101000 \ -b101000 6" -b101000 >" -b11000000000010101000000011 ` -b11000000000010101000000011 Q" -b11000000000010101000000011 T" -b110100 Y -b110100 V" -b110100 Z" -b10000 3" -b10000 J" -b10000 e" -b100000 0" -b100000 m" -b10001000100010000000000000000 1" -b10001000100010000000000000000 n" -b10001 } -b10001 G" -b100100 y -b100100 [" -b100100 `" -b100100 t" -b101000 $" -b101000 =" -b10010 (" -b10010 M" -b10000100 i -b10000100 B" -b10000100 Y" -b101100 o -b101100 C" -b101100 S" -b10110000000010100110000011 p -b10110000000010100110000011 R" -b110100 Z -b110100 @" -b110100 X" -b110000 X -b110000 A" -b110000 P" -b110000 U" -b110000 W" -b100110 K -0H -1D -#1900 -0D -#1925 -b1010101010101010100010001000100 n -b1010101010101010100010001000100 v" -b1010101010101010100010001000100 +# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000011001100110011001000100010001000010001000100010000000000000000 2# -b110000 a -b110000 D" -b110000 l" -b110000 b -b110000 k" -b10100 W -b101100 v -b101100 8" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000011001100110011001000100010001000010001000100010000000000000000 /# -b101100 \ -b101100 6" -b101100 >" -b1000 &# -b110011001100110010001000100010 P -b110011001100110010001000100010 _" -b110011001100110010001000100010 d" -b110011001100110010001000100010 j" -b110011001100110010001000100010 o" -b11010000000010101010000011 ` -b11010000000010101010000011 Q" -b11010000000010101010000011 T" -b111000 Y -b111000 V" -b111000 Z" -b10010000 i -b10010000 B" -b10010000 Y" -b110000 o -b110000 C" -b110000 S" -b11000000000010101000000011 p -b11000000000010101000000011 R" -b101100 $" -b101100 =" -b10011 (" -b10011 M" -b10010 } -b10010 G" -b101000 y -b101000 [" -b101000 `" -b101000 t" -b10001 3" -b10001 J" -b10001 e" -b100100 0" -b100100 m" -b110011001100110010001000100010 1" -b110011001100110010001000100010 n" -b111000 Z -b111000 @" -b111000 X" -b110100 X -b110100 A" -b110100 P" -b110100 U" -b110100 W" -b100111 K -1D -#1950 -0D -#1975 -b1110111011101110110011001100110 n -b1110111011101110110011001100110 v" -b1110111011101110110011001100110 +# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100000000000000000000000000000000010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100000000000000000000000000000000010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100000000000000000000000000000000010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 /# -b110000 v -b110000 8" -b110100 a -b110100 D" -b110100 l" -b110100 b -b110100 k" -b10101 W -b1010101010101010100010001000100 P -b1010101010101010100010001000100 _" -b1010101010101010100010001000100 d" -b1010101010101010100010001000100 j" -b1010101010101010100010001000100 o" -b1100 &# -b110000 \ -b110000 6" -b110000 >" -b11100000000010101100000011 ` -b11100000000010101100000011 Q" -b11100000000010101100000011 T" -b111100 Y -b111100 V" -b111100 Z" -b10010 3" -b10010 J" -b10010 e" -b101000 0" -b101000 m" -b1010101010101010100010001000100 1" -b1010101010101010100010001000100 n" -b10011 } -b10011 G" -b101100 y -b101100 [" -b101100 `" -b101100 t" -b110000 $" -b110000 =" -b10100 (" -b10100 M" -b10011100 i -b10011100 B" -b10011100 Y" -b110100 o -b110100 C" -b110100 S" -b11010000000010101010000011 p -b11010000000010101010000011 R" -b111100 Z -b111100 @" -b111100 X" -b111000 X -b111000 A" -b111000 P" -b111000 U" -b111000 W" -b101000 K -1D -#2000 -0D -#2025 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111010000000000000000000000000000000001110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111010000000000000000000000000000000001110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b111000 a -b111000 D" -b111000 l" -b111000 b -b111000 k" -b10110 W -b110100 v -b110100 8" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111010000000000000000000000000000000001110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 /# -b110100 \ -b110100 6" -b110100 >" -b10000 &# -b1110111011101110110011001100110 P -b1110111011101110110011001100110 _" -b1110111011101110110011001100110 d" -b1110111011101110110011001100110 j" -b1110111011101110110011001100110 o" -b11110000000010101110000011 ` -b11110000000010101110000011 Q" -b11110000000010101110000011 T" -b1000000 Y -b1000000 V" -b1000000 Z" -b10101000 i -b10101000 B" -b10101000 Y" -b111000 o -b111000 C" -b111000 S" -b11100000000010101100000011 p -b11100000000010101100000011 R" -b110100 $" -b110100 =" -b10101 (" -b10101 M" -b10100 } -b10100 G" -b110000 y -b110000 [" -b110000 `" -b110000 t" -b10011 3" -b10011 J" -b10011 e" -b101100 0" -b101100 m" -b1110111011101110110011001100110 1" -b1110111011101110110011001100110 n" -b1000000 Z -b1000000 @" -b1000000 X" -b111100 X -b111100 A" -b111100 P" -b111100 U" -b111100 W" -b101001 K -1D -#2050 -0D -#2075 -b11001100110011001101110111011101 n -b11001100110011001101110111011101 v" -b11001100110011001101110111011101 +# -b1000100010001000100110011001100110101010101010101011101110111011000000000000000000000000000000001110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011000000000000000000000000000000001110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b1000100010001000100110011001100110101010101010101011101110111011000000000000000000000000000000001110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 /# -b111000 v -b111000 8" -b111100 a -b111100 D" -b111100 l" -b111100 b -b111100 k" -b10111 W -b11101110111011101111111111111111 P -b11101110111011101111111111111111 _" -b11101110111011101111111111111111 d" -b11101110111011101111111111111111 j" -b11101110111011101111111111111111 o" -b10100 &# -b111000 \ -b111000 6" -b111000 >" -b100000000000010110000000011 ` -b100000000000010110000000011 Q" -b100000000000010110000000011 T" -b1000100 Y -b1000100 V" -b1000100 Z" -b10100 3" -b10100 J" -b10100 e" -b110000 0" -b110000 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b10101 } -b10101 G" -b110100 y -b110100 [" -b110100 `" -b110100 t" -b111000 $" -b111000 =" -b10110 (" -b10110 M" -b10110100 i -b10110100 B" -b10110100 Y" -b111100 o -b111100 C" -b111100 S" -b11110000000010101110000011 p -b11110000000010101110000011 R" -b1000100 Z -b1000100 @" -b1000100 X" -b1000000 X -b1000000 A" -b1000000 P" -b1000000 U" -b1000000 W" -b101010 K -1D -#2100 -0D -#2125 -b10101010101010101011101110111011 n -b10101010101010101011101110111011 v" -b10101010101010101011101110111011 +# -b1000100010001000100110011001100100000000000000000000000000000000110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100100000000000000000000000000000000110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b1000000 a -b1000000 D" -b1000000 l" -b1000000 b -b1000000 k" -b11000 W -b111100 v -b111100 8" -b1000100010001000100110011001100100000000000000000000000000000000110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 /# -b10 c -b111100 \ -b111100 6" -b111100 >" -b11000 &# -b11001100110011001101110111011101 P -b11001100110011001101110111011101 _" -b11001100110011001101110111011101 d" -b11001100110011001101110111011101 j" -b11001100110011001101110111011101 o" -b100010000000010110010000011 ` -b100010000000010110010000011 Q" -b100010000000010110010000011 T" -b1001000 Y -b1001000 V" -b1001000 Z" -b11000000 i -b11000000 B" -b11000000 Y" -b1000000 o -b1000000 C" -b1000000 S" -b100000000000010110000000011 p -b100000000000010110000000011 R" -b111100 $" -b111100 =" -b10111 (" -b10111 M" -b10110 } -b10110 G" -b111000 y -b111000 [" -b111000 `" -b111000 t" -b10101 3" -b10101 J" -b10101 e" -b110100 0" -b110100 m" -b11001100110011001101110111011101 1" -b11001100110011001101110111011101 n" -b1001000 Z -b1001000 @" -b1001000 X" -b1000100 X -b1000100 A" -b1000100 P" -b1000100 U" -b1000100 W" -b101011 K -1D -#2150 -0D -#2175 -b10001000100010001001100110011001 n -b10001000100010001001100110011001 v" -b10001000100010001001100110011001 +# -b10101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b10101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b10101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 /# -b1000000 v -b1000000 8" -b1000100 a -b1000100 D" -b1000100 l" -b1000100 b -b1000100 k" -b11001 W -b10101010101010101011101110111011 P -b10101010101010101011101110111011 _" -b10101010101010101011101110111011 d" -b10101010101010101011101110111011 j" -b10101010101010101011101110111011 o" -b11100 &# -b1000000 \ -b1000000 6" -b1000000 >" -b100100000000010110100000011 ` -b100100000000010110100000011 Q" -b100100000000010110100000011 T" -b1001100 Y -b1001100 V" -b1001100 Z" -b10110 3" -b10110 J" -b10110 e" -b111000 0" -b111000 m" -b10101010101010101011101110111011 1" -b10101010101010101011101110111011 n" -b10111 } -b10111 G" -b111100 y -b111100 [" -b111100 `" -b111100 t" -b10 /" -b10 ;" -b1000000 $" -b1000000 =" -b11000 (" -b11000 M" -b11001100 i -b11001100 B" -b11001100 Y" -b1000100 o -b1000100 C" -b1000100 S" -b100010000000010110010000011 p -b100010000000010110010000011 R" -b1001100 Z -b1001100 @" -b1001100 X" -b1001000 X -b1001000 A" -b1001000 P" -b1001000 U" -b1001000 W" -b101100 K -1D -#2200 -0D -#2225 -b0 n -b0 v" -b0 +# -1e -0$# -b10 @# -b10 6# -b10 <# -0{" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 2# -b1001000 a -b1001000 D" -b1001000 l" -b1001000 b -b1001000 k" -b11010 W -b1000100 v -b1000100 8" -b1000000 C -b1000000 _ -b1000000 ## -b1000000 =# -b0 ~" -b0 4# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b0 /# -b1000100 \ -b1000100 6" -b1000100 >" -b0 :# -b10 r" -b10 1# -b10 '# -b0 &# -b10001000100010001001100110011001 P -b10001000100010001001100110011001 _" -b10001000100010001001100110011001 d" -b10001000100010001001100110011001 j" -b10001000100010001001100110011001 o" -b100110000000010110110000011 ` -b100110000000010110110000011 Q" -b100110000000010110110000011 T" -b1010000 Y -b1010000 V" -b1010000 Z" -b11011000 i -b11011000 B" -b11011000 Y" -b1001000 o -b1001000 C" -b1001000 S" -b100100000000010110100000011 p -b100100000000010110100000011 R" -b1000100 $" -b1000100 =" -b11001 (" -b11001 M" -b11000 } -b11000 G" -b1000000 y -b1000000 [" -b1000000 `" -b1000000 t" -b10111 3" -b10111 J" -b10111 e" -b111100 0" -b111100 m" -b10001000100010001001100110011001 1" -b10001000100010001001100110011001 n" -b1010000 Z -b1010000 @" -b1010000 X" -b1001100 X -b1001100 A" -b1001100 P" -b1001100 U" -b1001100 W" -b101101 K -1D -#2250 -0D -#2275 -b100 .# -b101110 K -1H -1D -#2300 -0D -#2325 -b1 .# -1A -1,# -b101111 K -1D -#2350 -0D -#2375 -b1 A# -b1 C# -b110000 K -1D -#2400 -0D -#2425 -b10 A# -b110001 K -1D -#2450 -0D -#2475 -b11 A# -b110010 K -1D -#2500 -0D -#2525 -b100 A# -b110011 K -1D -#2550 -0D -#2575 -b101 A# -b110100 K -1D -#2600 -0D -#2625 -b110 A# -b110101 K -1D -#2650 -0D -#2675 -b111 A# -b110110 K -1D -#2700 -0D -#2725 -b1000 A# -b110111 K -1D -#2750 -0D -#2775 -1? -b1001 A# -b111000 K -1D -#2800 -0D -#2825 -0? -1s" -b0 A# -b0 C# -b10 .# -0A -0,# -1*# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 > -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 ^ -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 "# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 ?# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 B# -b111001 K -1D -#2850 -0D -#2875 -b11101100111110101110110011111010 n -b11101100111110101110110011111010 v" -b11101100111110101110110011111010 +# -0e -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000 2# -1$# -b0 6# -b0 <# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000 /# -1{" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 y" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 B -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 ] -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 x" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 ># -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 !# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -0s" -b1000000000000000000000000 :# -b0 .# -0*# -b111010 K -1D -#2900 -0D -#2925 -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010 2# -b1001100 a -b1001100 D" -b1001100 l" -b1001100 b -b1001100 k" -b11011 W -b1001000 v -b1001000 8" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010 /# -b1001000 \ -b1001000 6" -b1001000 >" -b100 &# -b11101100111110101110110011111010 P -b11101100111110101110110011111010 _" -b11101100111110101110110011111010 d" -b11101100111110101110110011111010 j" -b11101100111110101110110011111010 o" -b101000000000010111000000011 ` -b101000000000010111000000011 Q" -b101000000000010111000000011 T" -b1010100 Y -b1010100 V" -b1010100 Z" -b11100100 i -b11100100 B" -b11100100 Y" -b1001100 o -b1001100 C" -b1001100 S" -b100110000000010110110000011 p -b100110000000010110110000011 R" -b1001000 $" -b1001000 =" -b11010 (" -b11010 M" -b11001 } -b11001 G" -b1000100 y -b1000100 [" -b1000100 `" -b1000100 t" -b11000 3" -b11000 J" -b11000 e" -b1000000 0" -b1000000 m" -b11101100111110101110110011111010 1" -b11101100111110101110110011111010 n" -b1010100 Z -b1010100 @" -b1010100 X" -b1010000 X -b1010000 A" -b1010000 P" -b1010000 U" -b1010000 W" -b111011 K -0H -1D -#2950 -0D -#2975 -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010 2# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010 /# -b1001100 v -b1001100 8" -b1010000 a -b1010000 D" -b1010000 l" -b1010000 b -b1010000 k" -b11100 W -b1000 &# -b1001100 \ -b1001100 6" -b1001100 >" -b101010000000010111010000011 ` -b101010000000010111010000011 Q" -b101010000000010111010000011 T" -b1011000 Y -b1011000 V" -b1011000 Z" -b11001 3" -b11001 J" -b11001 e" -b1000100 0" -b1000100 m" -b11010 } -b11010 G" -b1001000 y -b1001000 [" -b1001000 `" -b1001000 t" -b1001100 $" -b1001100 =" -b11011 (" -b11011 M" -b11110000 i -b11110000 B" -b11110000 Y" -b1010000 o -b1010000 C" -b1010000 S" -b101000000000010111000000011 p -b101000000000010111000000011 R" -b1011000 Z -b1011000 @" -b1011000 X" -b1010100 X -b1010100 A" -b1010100 P" -b1010100 U" -b1010100 W" -b111100 K -1D -#3000 -0D -#3025 -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1010100 a -b1010100 D" -b1010100 l" -b1010100 b -b1010100 k" -b11101 W -b1010000 v -b1010000 8" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 /# -b1010000 \ -b1010000 6" -b1010000 >" -b1100 &# -b101100000000010111100000011 ` -b101100000000010111100000011 Q" -b101100000000010111100000011 T" -b1011100 Y -b1011100 V" -b1011100 Z" -b11111100 i -b11111100 B" -b11111100 Y" -b1010100 o -b1010100 C" -b1010100 S" -b101010000000010111010000011 p -b101010000000010111010000011 R" -b1010000 $" -b1010000 =" -b11100 (" -b11100 M" -b11011 } -b11011 G" -b1001100 y -b1001100 [" -b1001100 `" -b1001100 t" -b11010 3" -b11010 J" -b11010 e" -b1001000 0" -b1001000 m" -b1011100 Z -b1011100 @" -b1011100 X" -b1011000 X -b1011000 A" -b1011000 P" -b1011000 U" -b1011000 W" -b111101 K -1D -#3050 -0D -#3075 -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110100000000000000000000000000000000011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 /# -b1010100 v -b1010100 8" -b1011000 a -b1011000 D" -b1011000 l" -b1011000 b -b1011000 k" -b11110 W -b10000 &# -b1010100 \ -b1010100 6" -b1010100 >" -b101110000000010111110000011 ` -b101110000000010111110000011 Q" -b101110000000010111110000011 T" -b1100000 Y -b1100000 V" -b1100000 Z" -b11011 3" -b11011 J" -b11011 e" -b1001100 0" -b1001100 m" -b11100 } -b11100 G" -b1010000 y -b1010000 [" -b1010000 `" -b1010000 t" -b1010100 $" -b1010100 =" -b11101 (" -b11101 M" -b100001000 i -b100001000 B" -b100001000 Y" -b1011000 o -b1011000 C" -b1011000 S" -b101100000000010111100000011 p -b101100000000010111100000011 R" -b1100000 Z -b1100000 @" -b1100000 X" -b1011100 X -b1011100 A" -b1011100 P" -b1011100 U" -b1011100 W" -b111110 K -1D -#3100 -0D -#3125 -b1110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1011100 a -b1011100 D" -b1011100 l" -b1011100 b -b1011100 k" -b11111 W -b1011000 v -b1011000 8" -b1110110011111010111011001111101011101100111110101110110011111010000000000000000000000000000000001110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 /# -b1011000 \ -b1011000 6" -b1011000 >" -b10100 &# -b1000000000000111010010011 ` -b1000000000000111010010011 Q" -b1000000000000111010010011 T" -b1100100 Y -b1100100 V" -b1100100 Z" -b100010100 i -b100010100 B" -b100010100 Y" -b1011100 o -b1011100 C" -b1011100 S" -b101110000000010111110000011 p -b101110000000010111110000011 R" -b1011000 $" -b1011000 =" -b11110 (" -b11110 M" -b11101 } -b11101 G" -b1010100 y -b1010100 [" -b1010100 `" -b1010100 t" -b11100 3" -b11100 J" -b11100 e" -b1010000 0" -b1010000 m" -b1100100 Z -b1100100 @" -b1100100 X" -b1100000 X -b1100000 A" -b1100000 P" -b1100000 U" -b1100000 W" -b111111 K -1D -#3150 -0D -#3175 -0m -0k -b1110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1110110011111010111011001111101000000000000000000000000000000000111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 /# -b1011100 v -b1011100 8" -b11101 W -b10000 a -b10000 D" -b10000 l" -b10000 b -b10000 k" -b11000 &# -b1011100 \ -b1011100 6" -b1011100 >" -b0 c -b0 d -b10011 [ -b10011 E" -b11110111101000111100110011 ` -b11110111101000111100110011 Q" -b11110111101000111100110011 T" -b1101000 Y -b1101000 V" -b1101000 Z" -b11101 3" -b11101 J" -b11101 e" -b1010100 0" -b1010100 m" -b11110 } -b11110 G" -b1011000 y -b1011000 [" -b1011000 `" -b1011000 t" -b1011100 $" -b1011100 =" -b11111 (" -b11111 M" -b10000000 i -b10000000 B" -b10000000 Y" -b1100000 o -b1100000 C" -b1100000 S" -b1000000000000111010010011 p -b1000000000000111010010011 R" -b1101000 Z -b1101000 @" -b1101000 X" -b1100100 X -b1100100 A" -b1100100 P" -b1100100 U" -b1100100 W" -b1000000 K -1D -#3200 -0D -#3225 -b111101 a -b111101 D" -b111101 l" -b111101 b -b111101 k" -1g -0s -b11101100111110101110110011111010 Q -b11101100111110101110110011111010 h" -b10 t -b10 F" -b11101 S -b11101 O" -b11101 g" -b11101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b11101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b11101100111110101110110011111010 T -b11101100111110101110110011111010 i" -b11110 W -b10000 v -b10000 8" -b11101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 /# -b1 c -b11101 V -b11101 N" -b11101 f" -b110011 [ -b110011 E" -b10000 \ -b10000 6" -b10000 >" -b11100 &# -b11110111110000111010110011 ` -b11110111110000111010110011 Q" -b11110111110000111010110011 T" -b1101100 Y -b1101100 V" -b1101100 Z" -b11011110 i -b11011110 B" -b11011110 Y" -b1100100 o -b1100100 C" -b1100100 S" -b11110111101000111100110011 p -b11110111101000111100110011 R" -0%" -0'" -b0 ." -b0 :" -b0 /" -b0 ;" -b10000 $" -b10000 =" -b11101 (" -b11101 M" -b11111 } -b11111 G" -b1011100 y -b1011100 [" -b1011100 `" -b1011100 t" -b11110 3" -b11110 J" -b11110 e" -b1011000 0" -b1011000 m" -b1101100 Z -b1101100 @" -b1101100 X" -b1101000 X -b1101000 A" -b1101000 P" -b1101000 U" -b1101000 W" -b1000001 K -1D -#3250 -0D -#3275 -b1100110011001100111011101110111 n -b1100110011001100111011101110111 v" -b1100110011001100111011101110111 +# -b0 @# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 2# -b10 U -b10 L" -b10 ]" -b10 R -b10 K" -b10 b" -b0 C -b0 _ -b0 ## -b0 =# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b100010001000100100010001000100011001100110011010001000100010001010101010101010000000000000000000000000000000010001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 /# -b100000000 v -b100000000 8" -b11101 W -0q" -0w" -b0 r" -b0 1# -b0 '# -b10000 &# -b10 u -b10 7" -b10 <" -b10000 \ -b10000 6" -b10000 >" -b10000 w -b10000 ?" -b10000 c" -b10000 x -b10000 5" -b10000 ^" -b11110 V -b11110 N" -b11110 f" -b1010101000000000111110010011 ` -b1010101000000000111110010011 Q" -b1010101000000000111110010011 T" -b1110000 Y -b1110000 V" -b1110000 Z" -b11111 3" -b11111 J" -b11111 e" -b1011100 0" -b1011100 m" -0z -0| -b11101 } -b11101 G" -b10000 y -b10000 [" -b10000 `" -b10000 t" -0#" -b10 "" -b10 9" -b1 /" -b1 ;" -b111101 $" -b111101 =" -b11101100111110101110110011111010 ," -b11101100111110101110110011111010 a" -b11101100111110101110110011111010 *" -b11101100111110101110110011111010 \" -b11101 +" -b11101 I" -b11101 )" -b11101 H" -b11110 (" -b11110 M" -b11100010 i -b11100010 B" -b11100010 Y" -b1101000 o -b1101000 C" -b1101000 S" -b11110111110000111010110011 p -b11110111110000111010110011 R" -b1110000 Z -b1110000 @" -b1110000 X" -b1101100 X -b1101100 A" -b1101100 P" -b1101100 U" -b1101100 W" -b1000010 K -1D -#3300 -0D -#3325 -b0 n -b0 v" -b0 +# -0$# -b10101010 a -b10101010 D" -b10101010 l" -b10101010 b -b10101010 k" -1s -b0 t -b0 F" -b1000 @# -b10 6# -b10 <# -b1000000000000 v -b1000000000000 8" -b10000 \ -b10000 6" -b10000 >" -0{" -b0 Q -b0 h" -b0 S -b0 O" -b0 g" -b0 T -b0 i" -b11111 W -b1 R -b1 K" -b1 b" -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b100000000 x -b100000000 5" -b100000000 ^" -b10000 w -b10000 ?" -b10000 c" -b100000000 C -b100000000 _ -b100000000 ## -b100000000 =# -b0 ~" -b0 4# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b101 c -b0 V -b0 N" -b0 f" -b10011 [ -b10011 E" -b10000 /# -b0 :# -b1000 r" -b1000 1# -b1000 '# -b0 &# -b10000 P -b10000 _" -b10000 d" -b10000 j" -b10000 o" -b11111011111000111110110011 ` -b11111011111000111110110011 Q" -b11111011111000111110110011 T" -b1110100 Y -b1110100 V" -b1110100 Z" -b111000000 i -b111000000 B" -b111000000 Y" -b1101100 o -b1101100 C" -b1101100 S" -b1010101000000000111110010011 p -b1010101000000000111110010011 R" -b11110 )" -b11110 H" -b11101 (" -b11101 M" -b11110 } -b11110 G" -b10000 !" -b10000 u" -b100000000 y -b100000000 [" -b100000000 `" -b100000000 t" -02" -b11101 3" -b11101 J" -b11101 e" -b10000 0" -b10000 m" -b1100110011001100111011101110111 1" -b1100110011001100111011101110111 n" -b1110100 Z -b1110100 @" -b1110100 X" -b1110000 X -b1110000 A" -b1110000 P" -b1110000 U" -b1110000 W" -b1000011 K -1D -#3350 -0D -#3375 -b111110 a -b111110 D" -b111110 l" -b111110 b -b111110 k" -1g -0s -b10000000 @# -b100000000 Q -b100000000 h" -b10 t -b10 F" -b0 w -b0 ?" -b0 c" -b0 R -b0 K" -b0 b" -b11110 S -b11110 O" -b11110 g" -b0 x -b0 5" -b0 ^" -b1000000000000 C -b1000000000000 _ -b1000000000000 ## -b1000000000000 =# -b10101010 v -b10101010 8" -b0 U -b0 L" -b0 ]" -b11101100111110101110110011111010 T -b11101100111110101110110011111010 i" -b100000000 P -b100000000 _" -b100000000 d" -b100000000 j" -b100000000 o" -b1000000000000000000001000 (# -b1000000000000000000001000 3# -b1000000000000000000001000 9# -b1000 %# -b1000000000000000000000000 :# -b0 r" -b0 1# -b0 '# -b10101010 \ -b10101010 6" -b10101010 >" -b0 u -b0 7" -b0 <" -b1 c -b11111 V -b11111 N" -b11111 f" -b110011 [ -b110011 E" -b1010101011111000111110010011 ` -b1010101011111000111110010011 Q" -b1010101011111000111110010011 T" -b1111000 Y -b1111000 V" -b1111000 Z" -b11110 3" -b11110 J" -b11110 e" -b100000000 0" -b100000000 m" -b0 1" -b0 n" -b11101 } -b11101 G" -b1000000000000 y -b1000000000000 [" -b1000000000000 `" -b1000000000000 t" -1#" -b0 "" -b0 9" -b101 /" -b101 ;" -b10101010 $" -b10101010 =" -b0 ," -b0 a" -b0 *" -b0 \" -b0 +" -b0 I" -b0 )" -b0 H" -b11111 (" -b11111 M" -b11101100 i -b11101100 B" -b11101100 Y" -b1110000 o -b1110000 C" -b1110000 S" -b11111011111000111110110011 p -b11111011111000111110110011 R" -b1111000 Z -b1111000 @" -b1111000 X" -b1110100 X -b1110100 A" -b1110100 P" -b1110100 U" -b1110100 W" -b1000100 K -1D -#3400 -0D -#3425 -b10101010 a -b10101010 D" -b10101010 l" -b10101010 b -b10101010 k" -1s -b0 t -b0 F" -b101 @# -b0 S -b0 O" -b0 g" -b1010101000000000 v -b1010101000000000 8" -b10 U -b10 L" -b10 ]" -b10100000 C -b10100000 _ -b10100000 ## -b10100000 =# -b0 Q -b0 h" -b101 c -b10011 [ -b10011 E" -b10 u -b10 7" -b10 <" -b100000000 \ -b100000000 6" -b100000000 >" -b100000000 w -b100000000 ?" -b100000000 c" -b10101010 x -b10101010 5" -b10101010 ^" -b0 /# -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -b0 %# -b0 :# -b101 r" -b101 1# -b101 '# -b1010 &# -b1000000000000 P -b1000000000000 _" -b1000000000000 d" -b1000000000000 j" -b1000000000000 o" -b11111011111000111110110011 ` -b11111011111000111110110011 Q" -b11111011111000111110110011 T" -b1111100 Y -b1111100 V" -b1111100 Z" -b111001000 i -b111001000 B" -b111001000 Y" -b1110100 o -b1110100 C" -b1110100 S" -b1010101011111000111110010011 p -b1010101011111000111110010011 R" -0#" -b10 "" -b10 9" -b1 /" -b1 ;" -b111110 $" -b111110 =" -b100000000 ," -b100000000 a" -b11101100111110101110110011111010 *" -b11101100111110101110110011111010 \" -b11110 +" -b11110 I" -b11111 )" -b11111 H" -b11111 } -b11111 G" -b0 !" -b0 u" -b10101010 y -b10101010 [" -b10101010 `" -b10101010 t" -b11101 3" -b11101 J" -b11101 e" -b1000000000000 0" -b1000000000000 m" -b1111100 Z -b1111100 @" -b1111100 X" -b1111000 X -b1111000 A" -b1111000 P" -b1111000 U" -b1111000 W" -b1000101 K -1D -#3450 -0D -#3475 -b111110 a -b111110 D" -b111110 l" -b111110 b -b111110 k" -1g -0s -b10101010000 @# -b100000000 Q -b100000000 h" -b10 t -b10 F" -b10101010 T -b10101010 i" -b11110 S -b11110 O" -b11110 g" -b1010101000000000 x -b1010101000000000 5" -b1010101000000000 ^" -b1010101000000000 C -b1010101000000000 _ -b1010101000000000 ## -b1010101000000000 =# -b1010101010101010 v -b1010101010101010 8" -b10101010 P -b10101010 _" -b10101010 d" -b10101010 j" -b10101010 o" -b100000000 /# -b1000000000000000001010101 (# -b1000000000000000001010101 3# -b1000000000000000001010101 9# -b1010101 %# -b1000000000000000000000000 :# -b0 r" -b0 1# -b0 '# -b0 &# -b10101010 \ -b10101010 6" -b10101010 >" -b0 u -b0 7" -b0 <" -b0 w -b0 ?" -b0 c" -b1 c -b110011 [ -b110011 E" -b1010101011111000111110010011 ` -b1010101011111000111110010011 Q" -b1010101011111000111110010011 T" -b10000000 Y -b10000000 V" -b10000000 Z" -b11111 3" -b11111 J" -b11111 e" -b10101010 0" -b10101010 m" -b100000000 !" -b100000000 u" -b1010101000000000 y -b1010101000000000 [" -b1010101000000000 `" -b1010101000000000 t" -1#" -b0 "" -b0 9" -b101 /" -b101 ;" -b10101010 $" -b10101010 =" -b0 ," -b0 a" -b0 +" -b0 I" -b11110100 i -b11110100 B" -b11110100 Y" -b1111000 o -b1111000 C" -b1111000 S" -b11111011111000111110110011 p -b11111011111000111110110011 R" -b10000000 Z -b10000000 @" -b10000000 X" -b1111100 X -b1111100 A" -b1111100 P" -b1111100 U" -b1111100 W" -b1000110 K -1D -#3500 -0D -#3525 -b10101010 a -b10101010 D" -b10101010 l" -b10101010 b -b10101010 k" -1s -b0 t -b0 F" -b10101010101 @# -b0 Q -b0 h" -b0 S -b0 O" -b0 g" -b101010101010101000000000 v -b101010101010101000000000 8" -b1010101010101010 x -b1010101010101010 5" -b1010101010101010 ^" -b1010101010100000 C -b1010101010100000 _ -b1010101010100000 ## -b1010101010100000 =# -b1010101000000000 T -b1010101000000000 i" -b101 c -b10011 [ -b10011 E" -b10 u -b10 7" -b10 <" -b100000000 \ -b100000000 6" -b100000000 >" -b100000000 w -b100000000 ?" -b100000000 c" -b0 /# -b0 :# -b101 r" -b101 1# -b101 '# -b1010 &# -b1010101000000000 P -b1010101000000000 _" -b1010101000000000 d" -b1010101000000000 j" -b1010101000000000 o" -b11111011111000111110110011 ` -b11111011111000111110110011 Q" -b11111011111000111110110011 T" -b10000100 Y -b10000100 V" -b10000100 Z" -b111010000 i -b111010000 B" -b111010000 Y" -b1111100 o -b1111100 C" -b1111100 S" -b1010101011111000111110010011 p -b1010101011111000111110010011 R" -0#" -b10 "" -b10 9" -b1 /" -b1 ;" -b111110 $" -b111110 =" -b100000000 ," -b100000000 a" -b10101010 *" -b10101010 \" -b11110 +" -b11110 I" -b0 !" -b0 u" -b1010101010101010 y -b1010101010101010 [" -b1010101010101010 `" -b1010101010101010 t" -b1010101000000000 0" -b1010101000000000 m" -b10000100 Z -b10000100 @" -b10000100 X" -b10000000 X -b10000000 A" -b10000000 P" -b10000000 U" -b10000000 W" -b1000111 K -1D -#3550 -0D -#3575 -b111110 a -b111110 D" -b111110 l" -b111110 b -b111110 k" -1g -0s -b1010101010101010000 @# -b100000000 Q -b100000000 h" -b10 t -b10 F" -b11110 S -b11110 O" -b11110 g" -b1010101010101010 T -b1010101010101010 i" -b101010101010101000000000 x -b101010101010101000000000 5" -b101010101010101000000000 ^" -b101010101010101000000000 C -b101010101010101000000000 _ -b101010101010101000000000 ## -b101010101010101000000000 =# -b101010101010101010101010 v -b101010101010101010101010 8" -b1010101010101010 P -b1010101010101010 _" -b1010101010101010 d" -b1010101010101010 j" -b1010101010101010 o" -b100000000 /# -b1000000000101010101010101 (# -b1000000000101010101010101 3# -b1000000000101010101010101 9# -b101010101010101 %# -b1000000000000000000000000 :# -b0 r" -b0 1# -b0 '# -b0 &# -b10101010 \ -b10101010 6" -b10101010 >" -b0 u -b0 7" -b0 <" -b0 w -b0 ?" -b0 c" -b1 c -b110011 [ -b110011 E" -b1010101011111000111110010011 ` -b1010101011111000111110010011 Q" -b1010101011111000111110010011 T" -b10001000 Y -b10001000 V" -b10001000 Z" -b1010101010101010 0" -b1010101010101010 m" -b100000000 !" -b100000000 u" -b101010101010101000000000 y -b101010101010101000000000 [" -b101010101010101000000000 `" -b101010101010101000000000 t" -1#" -b0 "" -b0 9" -b101 /" -b101 ;" -b10101010 $" -b10101010 =" -b0 ," -b0 a" -b1010101000000000 *" -b1010101000000000 \" -b0 +" -b0 I" -b11111100 i -b11111100 B" -b11111100 Y" -b10000000 o -b10000000 C" -b10000000 S" -b11111011111000111110110011 p -b11111011111000111110110011 R" -b10001000 Z -b10001000 @" -b10001000 X" -b10000100 X -b10000100 A" -b10000100 P" -b10000100 U" -b10000100 W" -b1001000 K -1D -#3600 -0D -#3625 -b10101010 a -b10101010 D" -b10101010 l" -b10101010 b -b10101010 k" -1s -b0 t -b0 F" -b1010101010101010101 @# -b0 Q -b0 h" -b0 S -b0 O" -b0 g" -b10101010101010101010101000000000 v -b10101010101010101010101000000000 8" -b101010101010101010101010 x -b101010101010101010101010 5" -b101010101010101010101010 ^" -b101010101010101010100000 C -b101010101010101010100000 _ -b101010101010101010100000 ## -b101010101010101010100000 =# -b101010101010101000000000 T -b101010101010101000000000 i" -b101 c -b10011 [ -b10011 E" -b10 u -b10 7" -b10 <" -b100000000 \ -b100000000 6" -b100000000 >" -b100000000 w -b100000000 ?" -b100000000 c" -b0 /# -b0 :# -b101 r" -b101 1# -b101 '# -b1010 &# -b101010101010101000000000 P -b101010101010101000000000 _" -b101010101010101000000000 d" -b101010101010101000000000 j" -b101010101010101000000000 o" -b1111101000111010000110011 ` -b1111101000111010000110011 Q" -b1111101000111010000110011 T" -b10001100 Y -b10001100 V" -b10001100 Z" -b111011000 i -b111011000 B" -b111011000 Y" -b10000100 o -b10000100 C" -b10000100 S" -b1010101011111000111110010011 p -b1010101011111000111110010011 R" -0#" -b10 "" -b10 9" -b1 /" -b1 ;" -b111110 $" -b111110 =" -b100000000 ," -b100000000 a" -b1010101010101010 *" -b1010101010101010 \" -b11110 +" -b11110 I" -b0 !" -b0 u" -b101010101010101010101010 y -b101010101010101010101010 [" -b101010101010101010101010 `" -b101010101010101010101010 t" -b101010101010101000000000 0" -b101010101010101000000000 m" -b10001100 Z -b10001100 @" -b10001100 X" -b10001000 X -b10001000 A" -b10001000 P" -b10001000 U" -b10001000 W" -b1001001 K -1D -#3650 -0D -#3675 -b11111 a -b11111 D" -b11111 l" -b11111 b -b11111 k" -1g -0s -b101010101010101010101010000 @# -b101010101010101010101010 Q -b101010101010101010101010 h" -b10 t -b10 F" -b11111 S -b11111 O" -b11111 g" -b11101110111011101111111111111111 T -b11101110111011101111111111111111 i" -b10101010101010101010101000000000 x -b10101010101010101010101000000000 5" -b10101010101010101010101000000000 ^" -b10101010101010101010101000000000 C -b10101010101010101010101000000000 _ -b10101010101010101010101000000000 ## -b10101010101010101010101000000000 =# -b10101010101010101010101010101010 v -b10101010101010101010101010101010 8" -b1000 W -b101010101010101010101010 P -b101010101010101010101010 _" -b101010101010101010101010 d" -b101010101010101010101010 j" -b101010101010101010101010 o" -b100000000 /# -b1010101010101010101010101 (# -b1010101010101010101010101 3# -b1010101010101010101010101 9# -b10101010101010101010101 %# -b1000000000000000000000000 :# -b0 r" -b0 1# -b0 '# -b0 &# -b10101010 \ -b10101010 6" -b10101010 >" -b0 u -b0 7" -b0 <" -b0 w -b0 ?" -b0 c" -b0 c -b1000 V -b1000 N" -b1000 f" -b111 d -b110011 [ -b110011 E" -b1111101001111010010110011 ` -b1111101001111010010110011 Q" -b1111101001111010010110011 T" -b10010000 Y -b10010000 V" -b10010000 Z" -b101010101010101010101010 0" -b101010101010101010101010 m" -b100000000 !" -b100000000 u" -b10101010101010101010101000000000 y -b10101010101010101010101000000000 [" -b10101010101010101010101000000000 `" -b10101010101010101010101000000000 t" -1#" -b0 "" -b0 9" -b101 /" -b101 ;" -b10101010 $" -b10101010 =" -b0 ," -b0 a" -b101010101010101000000000 *" -b101010101010101000000000 \" -b0 +" -b0 I" -b11000110 i -b11000110 B" -b11000110 Y" -b10001000 o -b10001000 C" -b10001000 S" -b1111101000111010000110011 p -b1111101000111010000110011 R" -b10010000 Z -b10010000 @" -b10010000 X" -b10001100 X -b10001100 A" -b10001100 P" -b10001100 U" -b10001100 W" -b1001010 K -1D -#3700 -0D -#3725 -b101010101010101010101010101 @# -b11001100110011001101110111011101 T -b11001100110011001101110111011101 i" -b1001 W -b10101010101010101010101010101010 v -b10101010101010101010101010101010 8" -b10 R -b10 K" -b10 b" -b0 U -b0 L" -b0 ]" -b11101110111011101111111111111111 x -b11101110111011101111111111111111 5" -b11101110111011101111111111111111 ^" -b10101010101010101010101010100000 C -b10101010101010101010101010100000 _ -b10101010101010101010101010100000 ## -b10101010101010101010101010100000 =# -b10101010101010101010101000000000 Q -b10101010101010101010101000000000 h" -b1001 V -b1001 N" -b1001 f" -b11 u -b11 7" -b11 <" -b10101010101010101010101010101010 \ -b10101010101010101010101010101010 6" -b10101010101010101010101010101010 >" -b10101010101010101010101010101010 w -b10101010101010101010101010101010 ?" -b10101010101010101010101010101010 c" -b0 /# -b0 :# -b101 r" -b101 1# -b101 '# -b1010 &# -b10101010101010101010101000000000 P -b10101010101010101010101000000000 _" -b10101010101010101010101000000000 d" -b10101010101010101010101000000000 j" -b10101010101010101010101000000000 o" -b1111101010111010100110011 ` -b1111101010111010100110011 Q" -b1111101010111010100110011 T" -b10010100 Y -b10010100 V" -b10010100 Z" -b11001010 i -b11001010 B" -b11001010 Y" -b10001100 o -b10001100 C" -b10001100 S" -b1111101001111010010110011 p -b1111101001111010010110011 R" -0#" -b10 "" -b10 9" -b111 ." -b111 :" -b0 /" -b0 ;" -b11111 $" -b11111 =" -b101010101010101010101010 ," -b101010101010101010101010 a" -b11101110111011101111111111111111 *" -b11101110111011101111111111111111 \" -b11111 +" -b11111 I" -b1000 )" -b1000 H" -b1000 (" -b1000 M" -b0 !" -b0 u" -b10101010101010101010101010101010 y -b10101010101010101010101010101010 [" -b10101010101010101010101010101010 `" -b10101010101010101010101010101010 t" -b10101010101010101010101000000000 0" -b10101010101010101010101000000000 m" -b10010100 Z -b10010100 @" -b10010100 X" -b10010000 X -b10010000 A" -b10010000 P" -b10010000 U" -b10010000 W" -b1001011 K -1D -#3750 -0D -#3775 -b10101010101010101010101010101010 Q -b10101010101010101010101010101010 h" -b1 R -b1 K" -b1 b" -b10001000100010001000100010001000 v -b10001000100010001000100010001000 8" -b10101010101010101011101110111011 T -b10101010101010101011101110111011 i" -b1010 W -b10101010101010101010101010101010 P -b10101010101010101010101010101010 _" -b10101010101010101010101010101010 d" -b10101010101010101010101010101010 j" -b10101010101010101010101010101010 o" -b1010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000 /# -b11001100110011001101110111011101 x -b11001100110011001101110111011101 5" -b11001100110011001101110111011101 ^" -b1010 V -b1010 N" -b1010 f" -b1111101011111010110110011 ` -b1111101011111010110110011 Q" -b1111101011111010110110011 T" -b10011000 Y -b10011000 V" -b10011000 Z" -b10101010101010101010101010101010 0" -b10101010101010101010101010101010 m" -b1000 } -b1000 G" -b10101010101010101010101010101010 !" -b10101010101010101010101010101010 u" -b10101010101010101010101000000000 ," -b10101010101010101010101000000000 a" -b11001100110011001101110111011101 *" -b11001100110011001101110111011101 \" -b1001 )" -b1001 H" -b1001 (" -b1001 M" -b11001110 i -b11001110 B" -b11001110 Y" -b10010000 o -b10010000 C" -b10010000 S" -b1111101010111010100110011 p -b1111101010111010100110011 R" -b10011000 Z -b10011000 @" -b10011000 X" -b10010100 X -b10010100 A" -b10010100 P" -b10010100 U" -b10010100 W" -b1001100 K -1D -#3800 -0D -#3825 -b100010001000100010001000100 @# -b0 R -b0 K" -b0 b" -b10001000100010001001100110011001 T -b10001000100010001001100110011001 i" -b1011 W -b10101010101010101010101010101010 v -b10101010101010101010101010101010 8" -b10001000100010001000100010000000 C -b10001000100010001000100010000000 _ -b10001000100010001000100010000000 ## -b10001000100010001000100010000000 =# -b101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000 /# -b1011 V -b1011 N" -b1011 f" -b10101010101010101011101110111011 x -b10101010101010101011101110111011 5" -b10101010101010101011101110111011 ^" -b1010001000100010001000100 (# -b1010001000100010001000100 3# -b1010001000100010001000100 9# -b10001000100010001000100 %# -b100 r" -b100 1# -b100 '# -b1000 &# -b1111101100111011000110011 ` -b1111101100111011000110011 Q" -b1111101100111011000110011 T" -b10011100 Y -b10011100 V" -b10011100 Z" -b11010010 i -b11010010 B" -b11010010 Y" -b10010100 o -b10010100 C" -b10010100 S" -b1111101011111010110110011 p -b1111101011111010110110011 R" -b10101010101010101010101010101010 ," -b10101010101010101010101010101010 a" -b10101010101010101011101110111011 *" -b10101010101010101011101110111011 \" -b1010 )" -b1010 H" -b1010 (" -b1010 M" -b1001 } -b1001 G" -b10001000100010001000100010001000 y -b10001000100010001000100010001000 [" -b10001000100010001000100010001000 `" -b10001000100010001000100010001000 t" -b1000 3" -b1000 J" -b1000 e" -b10011100 Z -b10011100 @" -b10011100 X" -b10011000 X -b10011000 A" -b10011000 P" -b10011000 U" -b10011000 W" -b1001101 K -1D -#3850 -0D -#3875 -b101010101010101010101010101 @# -b10101010101010101010101010100000 C -b10101010101010101010101010100000 _ -b10101010101010101010101010100000 ## -b10101010101010101010101010100000 =# -b1010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000 /# -b10001000100010001000100010001000 v -b10001000100010001000100010001000 8" -b1100110011001100111011101110111 T -b1100110011001100111011101110111 i" -b1100 W -b10001000100010001000100010001000 P -b10001000100010001000100010001000 _" -b10001000100010001000100010001000 d" -b10001000100010001000100010001000 j" -b10001000100010001000100010001000 o" -b1010101010101010101010101 (# -b1010101010101010101010101 3# -b1010101010101010101010101 9# -b10101010101010101010101 %# -b101 r" -b101 1# -b101 '# -b1010 &# -b10001000100010001001100110011001 x -b10001000100010001001100110011001 5" -b10001000100010001001100110011001 ^" -b1100 V -b1100 N" -b1100 f" -b1111101101111011010110011 ` -b1111101101111011010110011 Q" -b1111101101111011010110011 T" -b10100000 Y -b10100000 V" -b10100000 Z" -b1001 3" -b1001 J" -b1001 e" -b10001000100010001000100010001000 0" -b10001000100010001000100010001000 m" -b1010 } -b1010 G" -b10101010101010101010101010101010 y -b10101010101010101010101010101010 [" -b10101010101010101010101010101010 `" -b10101010101010101010101010101010 t" -b10001000100010001001100110011001 *" -b10001000100010001001100110011001 \" -b1011 )" -b1011 H" -b1011 (" -b1011 M" -b11010110 i -b11010110 B" -b11010110 Y" -b10011000 o -b10011000 C" -b10011000 S" -b1111101100111011000110011 p -b1111101100111011000110011 R" -b10100000 Z -b10100000 @" -b10100000 X" -b10011100 X -b10011100 A" -b10011100 P" -b10011100 U" -b10011100 W" -b1001110 K -1D -#3900 -0D -#3925 -b100010001000100010001000100 @# -b1000100010001000101010101010101 T -b1000100010001000101010101010101 i" -b1101 W -b100010001000100010001000100010 v -b100010001000100010001000100010 8" -b10001000100010001000100010000000 C -b10001000100010001000100010000000 _ -b10001000100010001000100010000000 ## -b10001000100010001000100010000000 =# -b101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000 /# -b1101 V -b1101 N" -b1101 f" -b1100110011001100111011101110111 x -b1100110011001100111011101110111 5" -b1100110011001100111011101110111 ^" -b1010001000100010001000100 (# -b1010001000100010001000100 3# -b1010001000100010001000100 9# -b10001000100010001000100 %# -b100 r" -b100 1# -b100 '# -b1000 &# -b10101010101010101010101010101010 P -b10101010101010101010101010101010 _" -b10101010101010101010101010101010 d" -b10101010101010101010101010101010 j" -b10101010101010101010101010101010 o" -b1111101110111011100110011 ` -b1111101110111011100110011 Q" -b1111101110111011100110011 T" -b10100100 Y -b10100100 V" -b10100100 Z" -b11011010 i -b11011010 B" -b11011010 Y" -b10011100 o -b10011100 C" -b10011100 S" -b1111101101111011010110011 p -b1111101101111011010110011 R" -b1100110011001100111011101110111 *" -b1100110011001100111011101110111 \" -b1100 )" -b1100 H" -b1100 (" -b1100 M" -b1011 } -b1011 G" -b10001000100010001000100010001000 y -b10001000100010001000100010001000 [" -b10001000100010001000100010001000 `" -b10001000100010001000100010001000 t" -b1010 3" -b1010 J" -b1010 e" -b10101010101010101010101010101010 0" -b10101010101010101010101010101010 m" -b10100100 Z -b10100100 @" -b10100100 X" -b10100000 X -b10100000 A" -b10100000 P" -b10100000 U" -b10100000 W" -b1001111 K -1D -#3950 -0D -#3975 -b1000100010001000100010001 @# -b100010001000100010001000100000 C -b100010001000100010001000100000 _ -b100010001000100010001000100000 ## -b100010001000100010001000100000 =# -b101010101010101010101010101010100000000000000000 /# -b0 v -b0 8" -b100010001000100011001100110011 T -b100010001000100011001100110011 i" -b1110 W -b10001000100010001000100010001000 P -b10001000100010001000100010001000 _" -b10001000100010001000100010001000 d" -b10001000100010001000100010001000 j" -b10001000100010001000100010001000 o" -b1000100010001000100010001 (# -b1000100010001000100010001 3# -b1000100010001000100010001 9# -b100010001000100010001 %# -b1000000000000000000000000 :# -b1 r" -b1 1# -b1 '# -b10 &# -b1000100010001000101010101010101 x -b1000100010001000101010101010101 5" -b1000100010001000101010101010101 ^" -b1110 V -b1110 N" -b1110 f" -b1111101111111011110110011 ` -b1111101111111011110110011 Q" -b1111101111111011110110011 T" -b10101000 Y -b10101000 V" -b10101000 Z" -b1011 3" -b1011 J" -b1011 e" -b10001000100010001000100010001000 0" -b10001000100010001000100010001000 m" -b1100 } -b1100 G" -b100010001000100010001000100010 y -b100010001000100010001000100010 [" -b100010001000100010001000100010 `" -b100010001000100010001000100010 t" -b1000100010001000101010101010101 *" -b1000100010001000101010101010101 \" -b1101 )" -b1101 H" -b1101 (" -b1101 M" -b11011110 i -b11011110 B" -b11011110 Y" -b10100000 o -b10100000 C" -b10100000 S" -b1111101110111011100110011 p -b1111101110111011100110011 R" -b10101000 Z -b10101000 @" -b10101000 X" -b10100100 X -b10100100 A" -b10100100 P" -b10100100 U" -b10100100 W" -b1010000 K -1D -#4000 -0D -#4025 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 2# -1{" -1$# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b0 6# -b0 <# -b0 @# -b1000100010001 T -b1000100010001 i" -b1111 W -b100010001000100010001000100010 v -b100010001000100010001000100010 8" -b0 C -b0 _ -b0 ## -b0 =# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 /# -b1111 V -b1111 N" -b1111 f" -b100010001000100011001100110011 x -b100010001000100011001100110011 5" -b100010001000100011001100110011 ^" -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -b0 %# -b0 r" -b0 1# -b0 '# -b0 &# -b100010001000100010001000100010 P -b100010001000100010001000100010 _" -b100010001000100010001000100010 d" -b100010001000100010001000100010 j" -b100010001000100010001000100010 o" -b1111110000111100000110011 ` -b1111110000111100000110011 Q" -b1111110000111100000110011 T" -b10101100 Y -b10101100 V" -b10101100 Z" -b11100010 i -b11100010 B" -b11100010 Y" -b10100100 o -b10100100 C" -b10100100 S" -b1111101111111011110110011 p -b1111101111111011110110011 R" -b100010001000100011001100110011 *" -b100010001000100011001100110011 \" -b1110 )" -b1110 H" -b1110 (" -b1110 M" -b1101 } -b1101 G" -b0 y -b0 [" -b0 `" -b0 t" -b1100 3" -b1100 J" -b1100 e" -b100010001000100010001000100010 0" -b100010001000100010001000100010 m" -b10101100 Z -b10101100 @" -b10101100 X" -b10101000 X -b10101000 A" -b10101000 P" -b10101000 U" -b10101000 W" -b1010001 K -1D -#4050 -0D -#4075 -b0 n -b0 v" -b0 +# -0{" -0$# -b0 ~" -b0 4# -b10 6# -b10 <# -b1000100010001000100010001 @# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b100010001000100010001000100000 C -b100010001000100010001000100000 _ -b100010001000100010001000100000 ## -b100010001000100010001000100000 =# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b101010101010101010101010101010100000000000000000 /# -b0 v -b0 8" -b10001000100010000000000000000 T -b10001000100010000000000000000 i" -b10000 W -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -b1000100010001000100010001 (# -b1000100010001000100010001 3# -b1000100010001000100010001 9# -b100010001000100010001 %# -b1 r" -b1 1# -b1 '# -b10 &# -b1000100010001 x -b1000100010001 5" -b1000100010001 ^" -b10000 V -b10000 N" -b10000 f" -b1111110001111100010110011 ` -b1111110001111100010110011 Q" -b1111110001111100010110011 T" -b10110000 Y -b10110000 V" -b10110000 Z" -b1101 3" -b1101 J" -b1101 e" -b0 0" -b0 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b1110 } -b1110 G" -b100010001000100010001000100010 y -b100010001000100010001000100010 [" -b100010001000100010001000100010 `" -b100010001000100010001000100010 t" -b1000100010001 *" -b1000100010001 \" -b1111 )" -b1111 H" -b1111 (" -b1111 M" -b11100110 i -b11100110 B" -b11100110 Y" -b10101000 o -b10101000 C" -b10101000 S" -b1111110000111100000110011 p -b1111110000111100000110011 R" -b10110000 Z -b10110000 @" -b10110000 X" -b10101100 X -b10101100 A" -b10101100 P" -b10101100 U" -b10101100 W" -b1010010 K -1D -#4100 -0D -#4125 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 2# -1{" -1$# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b0 6# -b0 <# -b0 @# -b110011001100110010001000100010 T -b110011001100110010001000100010 i" -b10001 W -b0 C -b0 _ -b0 ## -b0 =# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 /# -b10001 V -b10001 N" -b10001 f" -b10001000100010000000000000000 x -b10001000100010000000000000000 5" -b10001000100010000000000000000 ^" -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -b0 %# -b0 r" -b0 1# -b0 '# -b0 &# -b100010001000100010001000100010 P -b100010001000100010001000100010 _" -b100010001000100010001000100010 d" -b100010001000100010001000100010 j" -b100010001000100010001000100010 o" -b1111110010111100100110011 ` -b1111110010111100100110011 Q" -b1111110010111100100110011 T" -b10110100 Y -b10110100 V" -b10110100 Z" -b11101010 i -b11101010 B" -b11101010 Y" -b10101100 o -b10101100 C" -b10101100 S" -b1111110001111100010110011 p -b1111110001111100010110011 R" -b10001000100010000000000000000 *" -b10001000100010000000000000000 \" -b10000 )" -b10000 H" -b10000 (" -b10000 M" -b1111 } -b1111 G" -b0 y -b0 [" -b0 `" -b0 t" -b1110 3" -b1110 J" -b1110 e" -b100010001000100010001000100010 0" -b100010001000100010001000100010 m" -b0 1" -b0 n" -b10110100 Z -b10110100 @" -b10110100 X" -b10110000 X -b10110000 A" -b10110000 P" -b10110000 U" -b10110000 W" -b1010011 K -1D -#4150 -0D -#4175 -b100010001000100010001000100010 v -b100010001000100010001000100010 8" -b1010101010101010100010001000100 T -b1010101010101010100010001000100 i" -b10010 W -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -b110011001100110010001000100010 x -b110011001100110010001000100010 5" -b110011001100110010001000100010 ^" -b10010 V -b10010 N" -b10010 f" -b1111110011111100110110011 ` -b1111110011111100110110011 Q" -b1111110011111100110110011 T" -b10111000 Y -b10111000 V" -b10111000 Z" -b1111 3" -b1111 J" -b1111 e" -b0 0" -b0 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b10000 } -b10000 G" -b110011001100110010001000100010 *" -b110011001100110010001000100010 \" -b10001 )" -b10001 H" -b10001 (" -b10001 M" -b11101110 i -b11101110 B" -b11101110 Y" -b10110000 o -b10110000 C" -b10110000 S" -b1111110010111100100110011 p -b1111110010111100100110011 R" -b10111000 Z -b10111000 @" -b10111000 X" -b10110100 X -b10110100 A" -b10110100 P" -b10110100 U" -b10110100 W" -b1010100 K -1D -#4200 -0D -#4225 -b0 n -b0 v" -b0 +# -0{" -0$# -b0 ~" -b0 4# -b10 6# -b10 <# -b1000100010001000100010001 @# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b1110111011101110110011001100110 T -b1110111011101110110011001100110 i" -b10011 W -b0 v -b0 8" -b100010001000100010001000100000 C -b100010001000100010001000100000 _ -b100010001000100010001000100000 ## -b100010001000100010001000100000 =# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b101010101010101010101010101010100000000000000000 /# -b10011 V -b10011 N" -b10011 f" -b1010101010101010100010001000100 x -b1010101010101010100010001000100 5" -b1010101010101010100010001000100 ^" -b1000100010001000100010001 (# -b1000100010001000100010001 3# -b1000100010001000100010001 9# -b100010001000100010001 %# -b1 r" -b1 1# -b1 '# -b10 &# -b1111110100111101000110011 ` -b1111110100111101000110011 Q" -b1111110100111101000110011 T" -b10111100 Y -b10111100 V" -b10111100 Z" -b11110010 i -b11110010 B" -b11110010 Y" -b10110100 o -b10110100 C" -b10110100 S" -b1111110011111100110110011 p -b1111110011111100110110011 R" -b1010101010101010100010001000100 *" -b1010101010101010100010001000100 \" -b10010 )" -b10010 H" -b10010 (" -b10010 M" -b10001 } -b10001 G" -b100010001000100010001000100010 y -b100010001000100010001000100010 [" -b100010001000100010001000100010 `" -b100010001000100010001000100010 t" -b10000 3" -b10000 J" -b10000 e" -b10111100 Z -b10111100 @" -b10111100 X" -b10111000 X -b10111000 A" -b10111000 P" -b10111000 U" -b10111000 W" -b1010101 K -1D -#4250 -0D -#4275 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 2# -1{" -1$# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b0 6# -b0 <# -b0 @# -b0 C -b0 _ -b0 ## -b0 =# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 /# -b100010001000100010001000100010 v -b100010001000100010001000100010 8" -b11101110111011101111111111111111 T -b11101110111011101111111111111111 i" -b10100 W -b100010001000100010001000100010 P -b100010001000100010001000100010 _" -b100010001000100010001000100010 d" -b100010001000100010001000100010 j" -b100010001000100010001000100010 o" -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -b0 %# -b0 r" -b0 1# -b0 '# -b0 &# -b1110111011101110110011001100110 x -b1110111011101110110011001100110 5" -b1110111011101110110011001100110 ^" -b10100 V -b10100 N" -b10100 f" -b1111110101111101010110011 ` -b1111110101111101010110011 Q" -b1111110101111101010110011 T" -b11000000 Y -b11000000 V" -b11000000 Z" -b10001 3" -b10001 J" -b10001 e" -b100010001000100010001000100010 0" -b100010001000100010001000100010 m" -b0 1" -b0 n" -b10010 } -b10010 G" -b0 y -b0 [" -b0 `" -b0 t" -b1110111011101110110011001100110 *" -b1110111011101110110011001100110 \" -b10011 )" -b10011 H" -b10011 (" -b10011 M" -b11110110 i -b11110110 B" -b11110110 Y" -b10111000 o -b10111000 C" -b10111000 S" -b1111110100111101000110011 p -b1111110100111101000110011 R" -b11000000 Z -b11000000 @" -b11000000 X" -b10111100 X -b10111100 A" -b10111100 P" -b10111100 U" -b10111100 W" -b1010110 K -1D -#4300 -0D -#4325 -b0 n -b0 v" -b0 +# -0{" -0$# -b0 ~" -b0 4# -b10 6# -b10 <# -b1000100010001000100010001 @# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 )# -b1110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010111011001111101011101100111110101110110011111010 2# -b11001100110011001101110111011101 T -b11001100110011001101110111011101 i" -b10101 W -b10101010101010101010101010101010 v -b10101010101010101010101010101010 8" -b100010001000100010001000100000 C -b100010001000100010001000100000 _ -b100010001000100010001000100000 ## -b100010001000100010001000100000 =# -b0 y" -b0 B -b0 ] -b0 x" -b0 ># -b0 !# -b0 5# -b101010101010101010101010101010100000000000000000 /# -b10101 V -b10101 N" -b10101 f" -b11101110111011101111111111111111 x -b11101110111011101111111111111111 5" -b11101110111011101111111111111111 ^" -b1000100010001000100010001 (# -b1000100010001000100010001 3# -b1000100010001000100010001 9# -b100010001000100010001 %# -b1 r" -b1 1# -b1 '# -b10 &# -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -b1111110110111101100110011 ` -b1111110110111101100110011 Q" -b1111110110111101100110011 T" -b11000100 Y -b11000100 V" -b11000100 Z" -b11111010 i -b11111010 B" -b11111010 Y" -b10111100 o -b10111100 C" -b10111100 S" -b1111110101111101010110011 p -b1111110101111101010110011 R" -b11101110111011101111111111111111 *" -b11101110111011101111111111111111 \" -b10100 )" -b10100 H" -b10100 (" -b10100 M" -b10011 } -b10011 G" -b100010001000100010001000100010 y -b100010001000100010001000100010 [" -b100010001000100010001000100010 `" -b100010001000100010001000100010 t" -b10010 3" -b10010 J" -b10010 e" -b0 0" -b0 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b11000100 Z -b11000100 @" -b11000100 X" -b11000000 X -b11000000 A" -b11000000 P" -b11000000 U" -b11000000 W" -b1010111 K -1D -#4350 -0D -#4375 -b101010101010101010101010101 @# -b10101010101010101010101010100000 C -b10101010101010101010101010100000 _ -b10101010101010101010101010100000 ## -b10101010101010101010101010100000 =# -b1010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000 /# -b10001000100010001000100010001000 v -b10001000100010001000100010001000 8" -b10101010101010101011101110111011 T -b10101010101010101011101110111011 i" -b10110 W -b100010001000100010001000100010 P -b100010001000100010001000100010 _" -b100010001000100010001000100010 d" -b100010001000100010001000100010 j" -b100010001000100010001000100010 o" -b1010101010101010101010101 (# -b1010101010101010101010101 3# -b1010101010101010101010101 9# -b10101010101010101010101 %# -b0 :# -b101 r" -b101 1# -b101 '# -b1010 &# -b11001100110011001101110111011101 x -b11001100110011001101110111011101 5" -b11001100110011001101110111011101 ^" -b10110 V -b10110 N" -b10110 f" -b1111110111111101110110011 ` -b1111110111111101110110011 Q" -b1111110111111101110110011 T" -b11001000 Y -b11001000 V" -b11001000 Z" -b10011 3" -b10011 J" -b10011 e" -b100010001000100010001000100010 0" -b100010001000100010001000100010 m" -b0 1" -b0 n" -b10100 } -b10100 G" -b10101010101010101010101010101010 y -b10101010101010101010101010101010 [" -b10101010101010101010101010101010 `" -b10101010101010101010101010101010 t" -b11001100110011001101110111011101 *" -b11001100110011001101110111011101 \" -b10101 )" -b10101 H" -b10101 (" -b10101 M" -b11111110 i -b11111110 B" -b11111110 Y" -b11000000 o -b11000000 C" -b11000000 S" -b1111110110111101100110011 p -b1111110110111101100110011 R" -b11001000 Z -b11001000 @" -b11001000 X" -b11000100 X -b11000100 A" -b11000100 P" -b11000100 U" -b11000100 W" -b1011000 K -1D -#4400 -0D -#4425 -b100010001000100010001000100 @# -b10001000100010001001100110011001 T -b10001000100010001001100110011001 i" -b10111 W -b10101010101010101010101010101010 v -b10101010101010101010101010101010 8" -b10001000100010001000100010000000 C -b10001000100010001000100010000000 _ -b10001000100010001000100010000000 ## -b10001000100010001000100010000000 =# -b101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000 /# -b10111 V -b10111 N" -b10111 f" -b10101010101010101011101110111011 x -b10101010101010101011101110111011 5" -b10101010101010101011101110111011 ^" -b1010001000100010001000100 (# -b1010001000100010001000100 3# -b1010001000100010001000100 9# -b10001000100010001000100 %# -b100 r" -b100 1# -b100 '# -b1000 &# -b10101010101010101010101010101010 P -b10101010101010101010101010101010 _" -b10101010101010101010101010101010 d" -b10101010101010101010101010101010 j" -b10101010101010101010101010101010 o" -b100000000010000000100011 ` -b100000000010000000100011 Q" -b100000000010000000100011 T" -b11001100 Y -b11001100 V" -b11001100 Z" -b100000010 i -b100000010 B" -b100000010 Y" -b11000100 o -b11000100 C" -b11000100 S" -b1111110111111101110110011 p -b1111110111111101110110011 R" -b10101010101010101011101110111011 *" -b10101010101010101011101110111011 \" -b10110 )" -b10110 H" -b10110 (" -b10110 M" -b10101 } -b10101 G" -b10001000100010001000100010001000 y -b10001000100010001000100010001000 [" -b10001000100010001000100010001000 `" -b10001000100010001000100010001000 t" -b10100 3" -b10100 J" -b10100 e" -b10101010101010101010101010101010 0" -b10101010101010101010101010101010 m" -b11001100 Z -b11001100 @" -b11001100 X" -b11001000 X -b11001000 A" -b11001000 P" -b11001000 U" -b11001000 W" -b1011001 K -1D -#4450 -0D -#4475 -0g -1s -b101010101010101010101010101 @# -1l -b0 t -b0 F" -b0 a -b0 D" -b0 l" -b0 b -b0 k" -b10101010101010101010101010100000 C -b10101010101010101010101010100000 _ -b10101010101010101010101010100000 ## -b10101010101010101010101010100000 =# -b1010101010101010101010101010101000000000000000000000000000000000000000000000000000000000000000000000000000000000 /# -b10001000100010001000100010001000 v -b10001000100010001000100010001000 8" -b1000 S -b1000 O" -b1000 g" -b0 T -b0 i" -b0 W -b10001000100010001000100010001000 P -b10001000100010001000100010001000 _" -b10001000100010001000100010001000 d" -b10001000100010001000100010001000 j" -b10001000100010001000100010001000 o" -b1010101010101010101010101 (# -b1010101010101010101010101 3# -b1010101010101010101010101 9# -b10101010101010101010101 %# -b101 r" -b101 1# -b101 '# -b1010 &# -b10001000100010001001100110011001 x -b10001000100010001001100110011001 5" -b10001000100010001001100110011001 ^" -b0 V -b0 N" -b0 f" -b10 d -b100011 [ -b100011 E" -b100100000010001000100011 ` -b100100000010001000100011 Q" -b100100000010001000100011 T" -b11010000 Y -b11010000 V" -b11010000 Z" -b10101 3" -b10101 J" -b10101 e" -b10001000100010001000100010001000 0" -b10001000100010001000100010001000 m" -b10110 } -b10110 G" -b10101010101010101010101010101010 y -b10101010101010101010101010101010 [" -b10101010101010101010101010101010 `" -b10101010101010101010101010101010 t" -b10001000100010001001100110011001 *" -b10001000100010001001100110011001 \" -b10111 )" -b10111 H" -b10111 (" -b10111 M" -b11001000 i -b11001000 B" -b11001000 Y" -b11001000 o -b11001000 C" -b11001000 S" -b100000000010000000100011 p -b100000000010000000100011 R" -b11010000 Z -b11010000 @" -b11010000 X" -b11001100 X -b11001100 A" -b11001100 P" -b11001100 U" -b11001100 W" -b1011010 K -1D -#4500 -0D -#4525 -b100010001000100010001000100 @# -b100 a -b100 D" -b100 l" -b100 b -b100 k" -b10001000100010001000100010001000 Q -b10001000100010001000100010001000 h" -b1001 S -b1001 O" -b1001 g" -b0 v -b0 8" -b10001000100010001000100010000000 C -b10001000100010001000100010000000 _ -b10001000100010001000100010000000 ## -b10001000100010001000100010000000 =# -b101010101010101010101010101010100000000000000000000000000000000000000000000000000000000000000000 /# -b0 \ -b0 6" -b0 >" -b0 u -b0 7" -b0 <" -b0 x -b0 5" -b0 ^" -b1010001000100010001000100 (# -b1010001000100010001000100 3# -b1010001000100010001000100 9# -b10001000100010001000100 %# -b100 r" -b100 1# -b100 '# -b1000 &# -b10101010101010101010101010101010 P -b10101010101010101010101010101010 _" -b10101010101010101010101010101010 d" -b10101010101010101010101010101010 j" -b10101010101010101010101010101010 o" -b101000000010010000100011 ` -b101000000010010000100011 Q" -b101000000010010000100011 T" -b11010100 Y -b11010100 V" -b11010100 Z" -b11010100 i -b11010100 B" -b11010100 Y" -b11001100 o -b11001100 C" -b11001100 S" -b100100000010001000100011 p -b100100000010001000100011 R" -1&" -0-" -1#" -b0 "" -b0 9" -b10 ." -b10 :" -b0 $" -b0 =" -b0 *" -b0 \" -b1000 +" -b1000 I" -b0 )" -b0 H" -b0 (" -b0 M" -b10111 } -b10111 G" -b10001000100010001000100010001000 y -b10001000100010001000100010001000 [" -b10001000100010001000100010001000 `" -b10001000100010001000100010001000 t" -b10110 3" -b10110 J" -b10110 e" -b10101010101010101010101010101010 0" -b10101010101010101010101010101010 m" -b11010100 Z -b11010100 @" -b11010100 X" -b11010000 X -b11010000 A" -b11010000 P" -b11010000 U" -b11010000 W" -b1011011 K -1D -#4550 -0D -#4575 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -1s" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 2# -1p" -1z" -1{" -1$# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110111101110111011101111111111111111 5# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b0 @# -b0 6# -b0 <# -b1000 a -b1000 D" -b1000 l" -b1000 b -b1000 k" -b10101010101010101010101010101010 Q -b10101010101010101010101010101010 h" -0e -b0 U -b0 L" -b0 ]" -b0 C -b0 _ -b0 ## -b0 =# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 /# -b100 v -b100 8" -b1010 S -b1010 O" -b1010 g" -b10001000100010001000100010001000 P -b10001000100010001000100010001000 _" -b10001000100010001000100010001000 d" -b10001000100010001000100010001000 j" -b10001000100010001000100010001000 o" -1q" -1w" -b1100000000000000000000000 (# -b1100000000000000000000000 3# -b1100000000000000000000000 9# -b0 %# -b1000000000000000000000000 :# -b0 r" -b0 1# -b0 '# -b0 &# -b100 \ -b100 6" -b100 >" -b10001000100010001000100010001000 w -b10001000100010001000100010001000 ?" -b10001000100010001000100010001000 c" -b101100000010011000100011 ` -b101100000010011000100011 Q" -b101100000010011000100011 T" -b11011000 Y -b11011000 V" -b11011000 Z" -b10111 3" -b10111 J" -b10111 e" -b10001000100010001000100010001000 0" -b10001000100010001000100010001000 m" -1{ -0~ -b0 } -b0 G" -b0 y -b0 [" -b0 `" -b0 t" -b100 $" -b100 =" -b10001000100010001000100010001000 ," -b10001000100010001000100010001000 a" -b1001 +" -b1001 I" -b11100000 i -b11100000 B" -b11100000 Y" -b11010000 o -b11010000 C" -b11010000 S" -b101000000010010000100011 p -b101000000010010000100011 R" -b11011000 Z -b11011000 @" -b11011000 X" -b11010100 X -b11010100 A" -b11010100 P" -b11010100 U" -b11010100 W" -b1011100 K -1D -#4600 -0D -#4625 -b11001100110011001101110111011101 n -b11001100110011001101110111011101 v" -b11001100110011001101110111011101 +# -b1100 a -b1100 D" -b1100 l" -b1100 b -b1100 k" -b10001000100010001000100010001000 Q -b10001000100010001000100010001000 h" -b0 U -b0 L" -b0 ]" -b1011 S -b1011 O" -b1011 g" -b1000 v -b1000 8" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 2# -1}" -b1000 \ -b1000 6" -b1000 >" -b10101010101010101010101010101010 w -b10101010101010101010101010101010 ?" -b10101010101010101010101010101010 c" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 /# -b100 &# -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111100110011001100110111011101110110101010101010101010101010101010 5# -b1100000000000000000000000 ~" -b1100000000000000000000000 4# -b110000000010100000100011 ` -b110000000010100000100011 Q" -b110000000010100000100011 T" -b11011100 Y -b11011100 V" -b11011100 Z" -b11101100 i -b11101100 B" -b11101100 Y" -b11010100 o -b11010100 C" -b11010100 S" -b101100000010011000100011 p -b101100000010011000100011 R" -b1000 $" -b1000 =" -b10101010101010101010101010101010 ," -b10101010101010101010101010101010 a" -b1010 +" -b1010 I" -b10001000100010001000100010001000 !" -b10001000100010001000100010001000 u" -b100 y -b100 [" -b100 `" -b100 t" -04" -b0 3" -b0 J" -b0 e" -b0 0" -b0 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b1100000000000000000000000 :# -b11011100 Z -b11011100 @" -b11011100 X" -b11011000 X -b11011000 A" -b11011000 P" -b11011000 U" -b11011000 W" -b1011101 K -1D -#4650 -0D -#4675 -b10101010101010101011101110111011 n -b10101010101010101011101110111011 v" -b10101010101010101011101110111011 +# -b10000 a -b10000 D" -b10000 l" -b10000 b -b10000 k" -b100010001000100010001000100010 Q -b100010001000100010001000100010 h" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b1100 v -b1100 8" -b1100 S -b1100 O" -b1100 g" -b100 P -b100 _" -b100 d" -b100 j" -b100 o" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b1000 &# -b1100 \ -b1100 6" -b1100 >" -b10001000100010001000100010001000 w -b10001000100010001000100010001000 ?" -b10001000100010001000100010001000 c" -b110100000010101000100011 ` -b110100000010101000100011 Q" -b110100000010101000100011 T" -b11100000 Y -b11100000 V" -b11100000 Z" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010111011101110111000100010001000100010001000100010101010101010101010101010101010 5# -b100 0" -b100 m" -b11001100110011001101110111011101 1" -b11001100110011001101110111011101 n" -b10101010101010101010101010101010 !" -b10101010101010101010101010101010 u" -b1000 y -b1000 [" -b1000 `" -b1000 t" -b1100 $" -b1100 =" -b10001000100010001000100010001000 ," -b10001000100010001000100010001000 a" -b1011 +" -b1011 I" -b11111000 i -b11111000 B" -b11111000 Y" -b11011000 o -b11011000 C" -b11011000 S" -b110000000010100000100011 p -b110000000010100000100011 R" -b11100000 Z -b11100000 @" -b11100000 X" -b11011100 X -b11011100 A" -b11011100 P" -b11011100 U" -b11011100 W" -b1011110 K -1D -#4700 -0D -#4725 -b10001000100010001001100110011001 n -b10001000100010001001100110011001 v" -b10001000100010001001100110011001 +# -b10100 a -b10100 D" -b10100 l" -b10100 b -b10100 k" -b0 Q -b0 h" -b1101 S -b1101 O" -b1101 g" -b10000 v -b10000 8" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b10000 \ -b10000 6" -b10000 >" -b100010001000100010001000100010 w -b100010001000100010001000100010 ?" -b100010001000100010001000100010 c" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b1100 &# -b1000 P -b1000 _" -b1000 d" -b1000 j" -b1000 o" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001001100110011001101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b111000000010110000100011 ` -b111000000010110000100011 Q" -b111000000010110000100011 T" -b11100100 Y -b11100100 V" -b11100100 Z" -b100000100 i -b100000100 B" -b100000100 Y" -b11011100 o -b11011100 C" -b11011100 S" -b110100000010101000100011 p -b110100000010101000100011 R" -b10000 $" -b10000 =" -b100010001000100010001000100010 ," -b100010001000100010001000100010 a" -b1100 +" -b1100 I" -b10001000100010001000100010001000 !" -b10001000100010001000100010001000 u" -b1100 y -b1100 [" -b1100 `" -b1100 t" -b1000 0" -b1000 m" -b10101010101010101011101110111011 1" -b10101010101010101011101110111011 n" -b11100100 Z -b11100100 @" -b11100100 X" -b11100000 X -b11100000 A" -b11100000 P" -b11100000 U" -b11100000 W" -b1011111 K -1D -#4750 -0D -#4775 -b1100110011001100111011101110111 n -b1100110011001100111011101110111 v" -b1100110011001100111011101110111 +# -b11000 a -b11000 D" -b11000 l" -b11000 b -b11000 k" -b100010001000100010001000100010 Q -b100010001000100010001000100010 h" -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b10100 v -b10100 8" -b1110 S -b1110 O" -b1110 g" -b1100 P -b1100 _" -b1100 d" -b1100 j" -b1100 o" -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b10000 &# -b10100 \ -b10100 6" -b10100 >" -b0 w -b0 ?" -b0 c" -b111100000010111000100011 ` -b111100000010111000100011 Q" -b111100000010111000100011 T" -b11101000 Y -b11101000 V" -b11101000 Z" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010110011001100110011101110111011110001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b1100 0" -b1100 m" -b10001000100010001001100110011001 1" -b10001000100010001001100110011001 n" -b100010001000100010001000100010 !" -b100010001000100010001000100010 u" -b10000 y -b10000 [" -b10000 `" -b10000 t" -b10100 $" -b10100 =" -b0 ," -b0 a" -b1101 +" -b1101 I" -b100010000 i -b100010000 B" -b100010000 Y" -b11100000 o -b11100000 C" -b11100000 S" -b111000000010110000100011 p -b111000000010110000100011 R" -b11101000 Z -b11101000 @" -b11101000 X" -b11100100 X -b11100100 A" -b11100100 P" -b11100100 U" -b11100100 W" -b1100000 K -1D -#4800 -0D -#4825 -b1000100010001000101010101010101 n -b1000100010001000101010101010101 v" -b1000100010001000101010101010101 +# -b11100 a -b11100 D" -b11100 l" -b11100 b -b11100 k" -b0 Q -b0 h" -b1111 S -b1111 O" -b1111 g" -b11000 v -b11000 8" -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b11000 \ -b11000 6" -b11000 >" -b100010001000100010001000100010 w -b100010001000100010001000100010 ?" -b100010001000100010001000100010 c" -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b10100 &# -b10000 P -b10000 _" -b10000 d" -b10000 j" -b10000 o" -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011010001000100010001010101010101010010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b11000000000010000000100011 ` -b11000000000010000000100011 Q" -b11000000000010000000100011 T" -b11101100 Y -b11101100 V" -b11101100 Z" -b100011100 i -b100011100 B" -b100011100 Y" -b11100100 o -b11100100 C" -b11100100 S" -b111100000010111000100011 p -b111100000010111000100011 R" -b11000 $" -b11000 =" -b100010001000100010001000100010 ," -b100010001000100010001000100010 a" -b1110 +" -b1110 I" -b0 !" -b0 u" -b10100 y -b10100 [" -b10100 `" -b10100 t" -b10000 0" -b10000 m" -b1100110011001100111011101110111 1" -b1100110011001100111011101110111 n" -b11101100 Z -b11101100 @" -b11101100 X" -b11101000 X -b11101000 A" -b11101000 P" -b11101000 U" -b11101000 W" -b1100001 K -1D -#4850 -0D -#4875 -b100010001000100011001100110011 n -b100010001000100011001100110011 v" -b100010001000100011001100110011 +# -b100000 a -b100000 D" -b100000 l" -b100000 b -b100000 k" -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b11100 v -b11100 8" -b10000 S -b10000 O" -b10000 g" -b10100 P -b10100 _" -b10100 d" -b10100 j" -b10100 o" -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b11000 &# -b11100 \ -b11100 6" -b11100 >" -b0 w -b0 ?" -b0 c" -b1 c -b11000100000010001000100011 ` -b11000100000010001000100011 Q" -b11000100000010001000100011 T" -b11110000 Y -b11110000 V" -b11110000 Z" -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100011001100110011000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b10100 0" -b10100 m" -b1000100010001000101010101010101 1" -b1000100010001000101010101010101 n" -b100010001000100010001000100010 !" -b100010001000100010001000100010 u" -b11000 y -b11000 [" -b11000 `" -b11000 t" -b11100 $" -b11100 =" -b0 ," -b0 a" -b1111 +" -b1111 I" -b100101000 i -b100101000 B" -b100101000 Y" -b11101000 o -b11101000 C" -b11101000 S" -b11000000000010000000100011 p -b11000000000010000000100011 R" -b11110000 Z -b11110000 @" -b11110000 X" -b11101100 X -b11101100 A" -b11101100 P" -b11101100 U" -b11101100 W" -b1100010 K -1D -#4900 -0D -#4925 -b1000100010001 n -b1000100010001 v" -b1000100010001 +# -b100100 a -b100100 D" -b100100 l" -b100100 b -b100100 k" -b100010001000100010001000100010 Q -b100010001000100010001000100010 h" -b10001 S -b10001 O" -b10001 g" -b100000 v -b100000 8" -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 )# -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 2# -b100000 \ -b100000 6" -b100000 >" -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 /# -b11100 &# -b11000 P -b11000 _" -b11000 d" -b11000 j" -b11000 o" -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b11001000000010010000100011 ` -b11001000000010010000100011 Q" -b11001000000010010000100011 T" -b11110100 Y -b11110100 V" -b11110100 Z" -b100110100 i -b100110100 B" -b100110100 Y" -b11101100 o -b11101100 C" -b11101100 S" -b11000100000010001000100011 p -b11000100000010001000100011 R" -b1 /" -b1 ;" -b100000 $" -b100000 =" -b10000 +" -b10000 I" -b0 !" -b0 u" -b11100 y -b11100 [" -b11100 `" -b11100 t" -b11000 0" -b11000 m" -b100010001000100011001100110011 1" -b100010001000100011001100110011 n" -b11110100 Z -b11110100 @" -b11110100 X" -b11110000 X -b11110000 A" -b11110000 P" -b11110000 U" -b11110000 W" -b1100011 K -1D -#4950 -0D -#4975 -b10001000100010000000000000000 n -b10001000100010000000000000000 v" -b10001000100010000000000000000 +# -b1 @# -0}" -b101000 a -b101000 D" -b101000 l" -b101000 b -b101000 k" -b0 Q -b0 h" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 2# -b100000 C -b100000 _ -b100000 ## -b100000 =# -b1000000000000000000000000 ~" -b1000000000000000000000000 4# -b100100 v -b100100 8" -b10010 S -b10010 O" -b10010 g" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 /# -b11100 P -b11100 _" -b11100 d" -b11100 j" -b11100 o" -b1000000000000000000000000 :# -b1 r" -b1 1# -b1 '# -b0 &# -b100100 \ -b100100 6" -b100100 >" -b100010001000100010001000100010 w -b100010001000100010001000100010 ?" -b100010001000100010001000100010 c" -b11001100000010011000100011 ` -b11001100000010011000100011 Q" -b11001100000010011000100011 T" -b11111000 Y -b11111000 V" -b11111000 Z" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000010001000100010000000000000000 5# -b11100 0" -b11100 m" -b1000100010001 1" -b1000100010001 n" -b100000 y -b100000 [" -b100000 `" -b100000 t" -b100100 $" -b100100 =" -b100010001000100010001000100010 ," -b100010001000100010001000100010 a" -b10001 +" -b10001 I" -b101000000 i -b101000000 B" -b101000000 Y" -b11110000 o -b11110000 C" -b11110000 S" -b11001000000010010000100011 p -b11001000000010010000100011 R" -b11111000 Z -b11111000 @" -b11111000 X" -b11110100 X -b11110100 A" -b11110100 P" -b11110100 U" -b11110100 W" -b1100100 K -1D -#5000 -0D -#5025 -b110011001100110010001000100010 n -b110011001100110010001000100010 v" -b110011001100110010001000100010 +# -b101100 a -b101100 D" -b101100 l" -b101100 b -b101100 k" -b100010001000100010001000100010 Q -b100010001000100010001000100010 h" -b10011 S -b10011 O" -b10011 g" -b101000 v -b101000 8" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 2# -1}" -b101000 \ -b101000 6" -b101000 >" -b0 w -b0 ?" -b0 c" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 /# -b100 &# -b100000 P -b100000 _" -b100000 d" -b100000 j" -b100000 o" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000011001100110011001000100010001000000000000000000000000000000000 5# -b1100000000000000000000000 ~" -b1100000000000000000000000 4# -b11010000000010100000100011 ` -b11010000000010100000100011 Q" -b11010000000010100000100011 T" -b11111100 Y -b11111100 V" -b11111100 Z" -b101001100 i -b101001100 B" -b101001100 Y" -b11110100 o -b11110100 C" -b11110100 S" -b11001100000010011000100011 p -b11001100000010011000100011 R" -b101000 $" -b101000 =" -b0 ," -b0 a" -b10010 +" -b10010 I" -b100010001000100010001000100010 !" -b100010001000100010001000100010 u" -b100100 y -b100100 [" -b100100 `" -b100100 t" -b100000 0" -b100000 m" -b10001000100010000000000000000 1" -b10001000100010000000000000000 n" -b1100000000000000000000000 :# -b11111100 Z -b11111100 @" -b11111100 X" -b11111000 X -b11111000 A" -b11111000 P" -b11111000 U" -b11111000 W" -b1100101 K -1D -#5050 -0D -#5075 -b1010101010101010100010001000100 n -b1010101010101010100010001000100 v" -b1010101010101010100010001000100 +# -b110000 a -b110000 D" -b110000 l" -b110000 b -b110000 k" -b10101010101010101010101010101010 Q -b10101010101010101010101010101010 h" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b101100 v -b101100 8" -b10100 S -b10100 O" -b10100 g" -b100100 P -b100100 _" -b100100 d" -b100100 j" -b100100 o" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b1000 &# -b101100 \ -b101100 6" -b101100 >" -b100010001000100010001000100010 w -b100010001000100010001000100010 ?" -b100010001000100010001000100010 c" -b11010100000010101000100011 ` -b11010100000010101000100011 Q" -b11010100000010101000100011 T" -b100000000 Y -b100000000 V" -b100000000 Z" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110010101010101010101000100010001000010001000100010001000100010001000000000000000000000000000000000 5# -b100100 0" -b100100 m" -b110011001100110010001000100010 1" -b110011001100110010001000100010 n" -b0 !" -b0 u" -b101000 y -b101000 [" -b101000 `" -b101000 t" -b101100 $" -b101100 =" -b100010001000100010001000100010 ," -b100010001000100010001000100010 a" -b10011 +" -b10011 I" -b101011000 i -b101011000 B" -b101011000 Y" -b11111000 o -b11111000 C" -b11111000 S" -b11010000000010100000100011 p -b11010000000010100000100011 R" -b100000000 Z -b100000000 @" -b100000000 X" -b11111100 X -b11111100 A" -b11111100 P" -b11111100 U" -b11111100 W" -b1100110 K -1D -#5100 -0D -#5125 -b1110111011101110110011001100110 n -b1110111011101110110011001100110 v" -b1110111011101110110011001100110 +# -b110100 a -b110100 D" -b110100 l" -b110100 b -b110100 k" -b10001000100010001000100010001000 Q -b10001000100010001000100010001000 h" -b10101 S -b10101 O" -b10101 g" -b110000 v -b110000 8" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b110000 \ -b110000 6" -b110000 >" -b10101010101010101010101010101010 w -b10101010101010101010101010101010 ?" -b10101010101010101010101010101010 c" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b1100 &# -b101000 P -b101000 _" -b101000 d" -b101000 j" -b101000 o" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111101110111011101110110011001100110000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 5# -b11011000000010110000100011 ` -b11011000000010110000100011 Q" -b11011000000010110000100011 T" -b100000100 Y -b100000100 V" -b100000100 Z" -b101100100 i -b101100100 B" -b101100100 Y" -b11111100 o -b11111100 C" -b11111100 S" -b11010100000010101000100011 p -b11010100000010101000100011 R" -b110000 $" -b110000 =" -b10101010101010101010101010101010 ," -b10101010101010101010101010101010 a" -b10100 +" -b10100 I" -b100010001000100010001000100010 !" -b100010001000100010001000100010 u" -b101100 y -b101100 [" -b101100 `" -b101100 t" -b101000 0" -b101000 m" -b1010101010101010100010001000100 1" -b1010101010101010100010001000100 n" -b100000100 Z -b100000100 @" -b100000100 X" -b100000000 X -b100000000 A" -b100000000 P" -b100000000 U" -b100000000 W" -b1100111 K -1D -#5150 -0D -#5175 -b11101110111011101111111111111111 n -b11101110111011101111111111111111 v" -b11101110111011101111111111111111 +# -b111000 a -b111000 D" -b111000 l" -b111000 b -b111000 k" -b10101010101010101010101010101010 Q -b10101010101010101010101010101010 h" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b110100 v -b110100 8" -b10110 S -b10110 O" -b10110 g" -b101100 P -b101100 _" -b101100 d" -b101100 j" -b101100 o" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b10000 &# -b110100 \ -b110100 6" -b110100 >" -b10001000100010001000100010001000 w -b10001000100010001000100010001000 ?" -b10001000100010001000100010001000 c" -b11011100000010111000100011 ` -b11011100000010111000100011 Q" -b11011100000010111000100011 T" -b100001000 Y -b100001000 V" -b100001000 Z" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011110111011101110111111111111111100100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 5# -b101100 0" -b101100 m" -b1110111011101110110011001100110 1" -b1110111011101110110011001100110 n" -b10101010101010101010101010101010 !" -b10101010101010101010101010101010 u" -b110000 y -b110000 [" -b110000 `" -b110000 t" -b110100 $" -b110100 =" -b10001000100010001000100010001000 ," -b10001000100010001000100010001000 a" -b10101 +" -b10101 I" -b101110000 i -b101110000 B" -b101110000 Y" -b100000000 o -b100000000 C" -b100000000 S" -b11011000000010110000100011 p -b11011000000010110000100011 R" -b100001000 Z -b100001000 @" -b100001000 X" -b100000100 X -b100000100 A" -b100000100 P" -b100000100 U" -b100000100 W" -b1101000 K -1D -#5200 -0D -#5225 -b11001100110011001101110111011101 n -b11001100110011001101110111011101 v" -b11001100110011001101110111011101 +# -b111100 a -b111100 D" -b111100 l" -b111100 b -b111100 k" -b10001000100010001000100010001000 Q -b10001000100010001000100010001000 h" -b10111 S -b10111 O" -b10111 g" -b111000 v -b111000 8" -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b111000 \ -b111000 6" -b111000 >" -b10101010101010101010101010101010 w -b10101010101010101010101010101010 ?" -b10101010101010101010101010101010 c" -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b10100 &# -b110000 P -b110000 _" -b110000 d" -b110000 j" -b110000 o" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011110011001100110011011101110111011010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 5# -b0 ` -b0 Q" -b0 T" -b100001100 Y -b100001100 V" -b100001100 Z" -b101111100 i -b101111100 B" -b101111100 Y" -b100000100 o -b100000100 C" -b100000100 S" -b11011100000010111000100011 p -b11011100000010111000100011 R" -b111000 $" -b111000 =" -b10101010101010101010101010101010 ," -b10101010101010101010101010101010 a" -b10110 +" -b10110 I" -b10001000100010001000100010001000 !" -b10001000100010001000100010001000 u" -b110100 y -b110100 [" -b110100 `" -b110100 t" -b110000 0" -b110000 m" -b11101110111011101111111111111111 1" -b11101110111011101111111111111111 n" -b100001100 Z -b100001100 @" -b100001100 X" -b100001000 X -b100001000 A" -b100001000 P" -b100001000 U" -b100001000 W" -b1101001 K -1D -#5250 -0D -#5275 -b10101010101010101011101110111011 n -b10101010101010101011101110111011 v" -b10101010101010101011101110111011 +# -0l -b0 Q -b0 h" -b0 a -b0 D" -b0 l" -b0 b -b0 k" -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b111100 v -b111100 8" -b0 S -b0 O" -b0 g" -b110100 P -b110100 _" -b110100 d" -b110100 j" -b110100 o" -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b11000 &# -b111100 \ -b111100 6" -b111100 >" -b10001000100010001000100010001000 w -b10001000100010001000100010001000 ?" -b10001000100010001000100010001000 c" -b0 c -b0 d -b0 [ -b0 E" -b100010000 Y -b100010000 V" -b100010000 Z" -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101011101110111011100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 5# -b110100 0" -b110100 m" -b11001100110011001101110111011101 1" -b11001100110011001101110111011101 n" -b10101010101010101010101010101010 !" -b10101010101010101010101010101010 u" -b111000 y -b111000 [" -b111000 `" -b111000 t" -b111100 $" -b111100 =" -b10001000100010001000100010001000 ," -b10001000100010001000100010001000 a" -b10111 +" -b10111 I" -b0 i -b0 B" -b0 Y" -b0 o -b0 C" -b0 S" -b0 p -b0 R" -b100010000 Z -b100010000 @" -b100010000 X" -b100001100 X -b100001100 A" -b100001100 P" -b100001100 U" -b100001100 W" -b1101010 K -1D -#5300 -0D -#5325 -b10001000100010001001100110011001 n -b10001000100010001001100110011001 v" -b10001000100010001001100110011001 +# -b0 v -b0 8" -b1000100010001000100010001000100010101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 )# -b1000100010001000100010001000100010101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 2# -b0 \ -b0 6" -b0 >" -b0 w -b0 ?" -b0 c" -b1000100010001000100010001000100010101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 /# -b11100 &# -b111000 P -b111000 _" -b111000 d" -b111000 j" -b111000 o" -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 y" -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 B -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ] -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 x" -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 ># -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 !# -b1000100010001000100110011001100110101010101010101010101010101010100010001000100010001000100010001010101010101010101010101010101000100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001000000000000000000000000000000000 5# -b100010100 Y -b100010100 V" -b100010100 Z" -0&" -b0 ." -b0 :" -b0 /" -b0 ;" -b0 $" -b0 =" -b0 ," -b0 a" -b0 +" -b0 I" -b10001000100010001000100010001000 !" -b10001000100010001000100010001000 u" -b111100 y -b111100 [" -b111100 `" -b111100 t" -b111000 0" -b111000 m" -b10101010101010101011101110111011 1" -b10101010101010101011101110111011 n" -b100010100 Z -b100010100 @" -b100010100 X" -b100010000 X -b100010000 A" -b100010000 P" -b100010000 U" -b100010000 W" -b1101011 K -1D -#5350 -0D -#5375 -b10101010101010101010101010101010 n -b10101010101010101010101010101010 v" -b10101010101010101010101010101010 +# -b0 @# -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100000000000000000000000000000000000 )# -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100000000000000000000000000000000000 2# -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100000000000000000000000000000000000 /# -0s" -b0 C -b0 _ -b0 ## -b0 =# -b111100 P -b111100 _" -b111100 d" -b111100 j" -b111100 o" -0q" -0w" -b1000000000000000000000000 (# -b1000000000000000000000000 3# -b1000000000000000000000000 9# -0p" -0z" -b0 r" -b0 1# -b0 '# -b0 &# -b100011000 Y -b100011000 V" -b100011000 Z" -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 y" -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 B -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ] -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 x" -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 ># -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 !# -b100010001000100010001000100010000000000000000000000000000000000010001000100010001000100010001010001000100010001000100010001000101010101010101010101010101010101000100010001000100010001000100010101010101010101010101010101010 5# -b111100 0" -b111100 m" -b10001000100010001001100110011001 1" -b10001000100010001001100110011001 n" -0{ -b0 !" -b0 u" -b0 y -b0 [" -b0 `" -b0 t" -b100011000 Z -b100011000 @" -b100011000 X" -b100010100 X -b100010100 A" -b100010100 P" -b100010100 U" -b100010100 W" -b1101100 K -1D -#5400 -0D -#5425 -b0 P -b0 _" -b0 d" -b0 j" -b0 o" -b100011100 Y -b100011100 V" -b100011100 Z" -b0 0" -b0 m" -b10101010101010101010101010101010 1" -b10101010101010101010101010101010 n" -b100011100 Z -b100011100 @" -b100011100 X" -b100011000 X -b100011000 A" -b100011000 P" -b100011000 U" -b100011000 W" -b1101101 K -1D -#5450 -0D -#5475 -b100100000 Y -b100100000 V" -b100100000 Z" -b100100000 Z -b100100000 @" -b100100000 X" -b100011100 X -b100011100 A" -b100011100 P" -b100011100 U" -b100011100 W" -b1101110 K -1D -#5500 -0D -#5525 -b100100100 Y -b100100100 V" -b100100100 Z" -b100100100 Z -b100100100 @" -b100100100 X" -b100100000 X -b100100000 A" -b100100000 P" -b100100000 U" -b100100000 W" -b1101111 K -1D -#5550 -0D -#5575 -b100101000 Y -b100101000 V" -b100101000 Z" -b100101000 Z -b100101000 @" -b100101000 X" -b100100100 X -b100100100 A" -b100100100 P" -b100100100 U" -b100100100 W" -b1110000 K -1D -#5600 -0D -#5625 -b100101100 Y -b100101100 V" -b100101100 Z" -b100101100 Z -b100101100 @" -b100101100 X" -b100101000 X -b100101000 A" -b100101000 P" -b100101000 U" -b100101000 W" -b1110001 K -1D -#5650 -0D -#5675 -b100110000 Y -b100110000 V" -b100110000 Z" -b100110000 Z -b100110000 @" -b100110000 X" -b100101100 X -b100101100 A" -b100101100 P" -b100101100 U" -b100101100 W" -b1110010 K -1D -#5700 -0D -#5725 -b100110100 Y -b100110100 V" -b100110100 Z" -b100110100 Z -b100110100 @" -b100110100 X" -b100110000 X -b100110000 A" -b100110000 P" -b100110000 U" -b100110000 W" -b1110011 K -1D -#5750 -0D -#5775 -b100111000 Y -b100111000 V" -b100111000 Z" -b100111000 Z -b100111000 @" -b100111000 X" -b100110100 X -b100110100 A" -b100110100 P" -b100110100 U" -b100110100 W" -b1110100 K -1D -#5800 -0D -#5825 -b100111100 Y -b100111100 V" -b100111100 Z" -b100111100 Z -b100111100 @" -b100111100 X" -b100111000 X -b100111000 A" -b100111000 P" -b100111000 U" -b100111000 W" -b1110101 K -1D -#5850 -0D -#5875 -b101000000 Y -b101000000 V" -b101000000 Z" -b101000000 Z -b101000000 @" -b101000000 X" -b100111100 X -b100111100 A" -b100111100 P" -b100111100 U" -b100111100 W" -b1110110 K -1D -#5900 -0D -#5925 -b101000100 Y -b101000100 V" -b101000100 Z" -b101000100 Z -b101000100 @" -b101000100 X" -b101000000 X -b101000000 A" -b101000000 P" -b101000000 U" -b101000000 W" -b1110111 K -1D -#5950 -0D -#5975 -b101001000 Y -b101001000 V" -b101001000 Z" -b101001000 Z -b101001000 @" -b101001000 X" -b101000100 X -b101000100 A" -b101000100 P" -b101000100 U" -b101000100 W" -b1111000 K -1D -#6000 -0D -#6025 -b101001100 Y -b101001100 V" -b101001100 Z" -b101001100 Z -b101001100 @" -b101001100 X" -b101001000 X -b101001000 A" -b101001000 P" -b101001000 U" -b101001000 W" -b1111001 K -1D -#6050 -0D -#6075 -b101010000 Y -b101010000 V" -b101010000 Z" -b101010000 Z -b101010000 @" -b101010000 X" -b101001100 X -b101001100 A" -b101001100 P" -b101001100 U" -b101001100 W" -b1111010 K -1D -#6100 -0D -#6125 -b101010100 Y -b101010100 V" -b101010100 Z" -b101010100 Z -b101010100 @" -b101010100 X" -b101010000 X -b101010000 A" -b101010000 P" -b101010000 U" -b101010000 W" -b1111011 K -1D -#6150 -0D -#6175 -b101011000 Y -b101011000 V" -b101011000 Z" -b101011000 Z -b101011000 @" -b101011000 X" -b101010100 X -b101010100 A" -b101010100 P" -b101010100 U" -b101010100 W" -b1111100 K -1D -#6200 -0D -#6225 -b101011100 Y -b101011100 V" -b101011100 Z" -b101011100 Z -b101011100 @" -b101011100 X" -b101011000 X -b101011000 A" -b101011000 P" -b101011000 U" -b101011000 W" -b1111101 K -1D -#6250 -0D -#6275 -b101100000 Y -b101100000 V" -b101100000 Z" -b101100000 Z -b101100000 @" -b101100000 X" -b101011100 X -b101011100 A" -b101011100 P" -b101011100 U" -b101011100 W" -b1111110 K -1D -#6300 -0D -#6325 -b101100100 Y -b101100100 V" -b101100100 Z" -b101100100 Z -b101100100 @" -b101100100 X" -b101100000 X -b101100000 A" -b101100000 P" -b101100000 U" -b101100000 W" -b1111111 K -1D -#6350 -0D -#6375 -b101101000 Y -b101101000 V" -b101101000 Z" -b101101000 Z -b101101000 @" -b101101000 X" -b101100100 X -b101100100 A" -b101100100 P" -b101100100 U" -b101100100 W" -b10000000 K -1D -#6400 -0D -#6425 -b101101100 Y -b101101100 V" -b101101100 Z" -b101101100 Z -b101101100 @" -b101101100 X" -b101101000 X -b101101000 A" -b101101000 P" -b101101000 U" -b101101000 W" -b10000001 K -1D -#6450 -0D -#6475 -b101110000 Y -b101110000 V" -b101110000 Z" -b101110000 Z -b101110000 @" -b101110000 X" -b101101100 X -b101101100 A" -b101101100 P" -b101101100 U" -b101101100 W" -b10000010 K -1D -#6500 -0D -#6525 -b101110100 Y -b101110100 V" -b101110100 Z" -b101110100 Z -b101110100 @" -b101110100 X" -b101110000 X -b101110000 A" -b101110000 P" -b101110000 U" -b101110000 W" -b10000011 K -1D -#6550 -0D -#6575 -b101111000 Y -b101111000 V" -b101111000 Z" -b101111000 Z -b101111000 @" -b101111000 X" -b101110100 X -b101110100 A" -b101110100 P" -b101110100 U" -b101110100 W" -b10000100 K -1D -#6600 -0D -#6625 -b101111100 Y -b101111100 V" -b101111100 Z" -b101111100 Z -b101111100 @" -b101111100 X" -b101111000 X -b101111000 A" -b101111000 P" -b101111000 U" -b101111000 W" -b10000101 K -1D -#6650 -0D -#6675 -b110000000 Y -b110000000 V" -b110000000 Z" -b110000000 Z -b110000000 @" -b110000000 X" -b101111100 X -b101111100 A" -b101111100 P" -b101111100 U" -b101111100 W" -b10000110 K -1D -#6700 -0D -#6725 -b110000100 Y -b110000100 V" -b110000100 Z" -b110000100 Z -b110000100 @" -b110000100 X" -b110000000 X -b110000000 A" -b110000000 P" -b110000000 U" -b110000000 W" -b10000111 K -1D -#6750 -0D -#6775 -b110001000 Y -b110001000 V" -b110001000 Z" -b110001000 Z -b110001000 @" -b110001000 X" -b110000100 X -b110000100 A" -b110000100 P" -b110000100 U" -b110000100 W" -b10001000 K -1D -#6800 -0D -#6825 -b110001100 Y -b110001100 V" -b110001100 Z" -b110001100 Z -b110001100 @" -b110001100 X" -b110001000 X -b110001000 A" -b110001000 P" -b110001000 U" -b110001000 W" -b10001001 K -1D -#6850 -0D -#6875 -b110010000 Y -b110010000 V" -b110010000 Z" -b110010000 Z -b110010000 @" -b110010000 X" -b110001100 X -b110001100 A" -b110001100 P" -b110001100 U" -b110001100 W" -b10001010 K -1D -#6900 -0D -#6925 -b110010100 Y -b110010100 V" -b110010100 Z" -b110010100 Z -b110010100 @" -b110010100 X" -b110010000 X -b110010000 A" -b110010000 P" -b110010000 U" -b110010000 W" -b10001011 K -1D -#6950 -0D -#6975 -b110011000 Y -b110011000 V" -b110011000 Z" -b110011000 Z -b110011000 @" -b110011000 X" -b110010100 X -b110010100 A" -b110010100 P" -b110010100 U" -b110010100 W" -b10001100 K -1D -#7000 -0D -#7025 -b110011100 Y -b110011100 V" -b110011100 Z" -b110011100 Z -b110011100 @" -b110011100 X" -b110011000 X -b110011000 A" -b110011000 P" -b110011000 U" -b110011000 W" -b10001101 K -1D -#7050 -0D -#7075 -b110100000 Y -b110100000 V" -b110100000 Z" -b110100000 Z -b110100000 @" -b110100000 X" -b110011100 X -b110011100 A" -b110011100 P" -b110011100 U" -b110011100 W" -b10001110 K -1D -#7100 -0D -#7125 -b110100100 Y -b110100100 V" -b110100100 Z" -b110100100 Z -b110100100 @" -b110100100 X" -b110100000 X -b110100000 A" -b110100000 P" -b110100000 U" -b110100000 W" -b10001111 K -1D -#7150 -0D -#7175 -b110101000 Y -b110101000 V" -b110101000 Z" -b110101000 Z -b110101000 @" -b110101000 X" -b110100100 X -b110100100 A" -b110100100 P" -b110100100 U" -b110100100 W" -b10010000 K -1D -#7200 -0D -#7225 -b110101100 Y -b110101100 V" -b110101100 Z" -b110101100 Z -b110101100 @" -b110101100 X" -b110101000 X -b110101000 A" -b110101000 P" -b110101000 U" -b110101000 W" -b10010001 K -1D -#7250 -0D -#7275 -b110110000 Y -b110110000 V" -b110110000 Z" -b110110000 Z -b110110000 @" -b110110000 X" -b110101100 X -b110101100 A" -b110101100 P" -b110101100 U" -b110101100 W" -b10010010 K -1D -#7300 -0D -#7325 -b110110100 Y -b110110100 V" -b110110100 Z" -b110110100 Z -b110110100 @" -b110110100 X" -b110110000 X -b110110000 A" -b110110000 P" -b110110000 U" -b110110000 W" -b10010011 K -1D -#7350 -0D -#7375 -b110111000 Y -b110111000 V" -b110111000 Z" -b110111000 Z -b110111000 @" -b110111000 X" -b110110100 X -b110110100 A" -b110110100 P" -b110110100 U" -b110110100 W" -b10010100 K -1D -#7400 -0D -#7425 -b110111100 Y -b110111100 V" -b110111100 Z" -b110111100 Z -b110111100 @" -b110111100 X" -b110111000 X -b110111000 A" -b110111000 P" -b110111000 U" -b110111000 W" -b10010101 K -1D -#7450 -0D -#7475 -b111000000 Y -b111000000 V" -b111000000 Z" -b111000000 Z -b111000000 @" -b111000000 X" -b110111100 X -b110111100 A" -b110111100 P" -b110111100 U" -b110111100 W" -b10010110 K -1D -#7500 -0D -#7525 -b111000100 Y -b111000100 V" -b111000100 Z" -b111000100 Z -b111000100 @" -b111000100 X" -b111000000 X -b111000000 A" -b111000000 P" -b111000000 U" -b111000000 W" -b10010111 K -1D -#7550 -0D -#7575 -b111001000 Y -b111001000 V" -b111001000 Z" -b111001000 Z -b111001000 @" -b111001000 X" -b111000100 X -b111000100 A" -b111000100 P" -b111000100 U" -b111000100 W" -b10011000 K -1D -#7600 -0D -#7625 -b111001100 Y -b111001100 V" -b111001100 Z" -b111001100 Z -b111001100 @" -b111001100 X" -b111001000 X -b111001000 A" -b111001000 P" -b111001000 U" -b111001000 W" -b10011001 K -1D -#7650 -0D -#7675 -b111010000 Y -b111010000 V" -b111010000 Z" -b111010000 Z -b111010000 @" -b111010000 X" -b111001100 X -b111001100 A" -b111001100 P" -b111001100 U" -b111001100 W" -b10011010 K -1D -#7700 -0D -#7725 -b111010100 Y -b111010100 V" -b111010100 Z" -b111010100 Z -b111010100 @" -b111010100 X" -b111010000 X -b111010000 A" -b111010000 P" -b111010000 U" -b111010000 W" -b10011011 K -1D -#7750 -0D -#7775 -b111011000 Y -b111011000 V" -b111011000 Z" -b111011000 Z -b111011000 @" -b111011000 X" -b111010100 X -b111010100 A" -b111010100 P" -b111010100 U" -b111010100 W" -b10011100 K -1D -#7800 -0D -#7825 -b111011100 Y -b111011100 V" -b111011100 Z" -b111011100 Z -b111011100 @" -b111011100 X" -b111011000 X -b111011000 A" -b111011000 P" -b111011000 U" -b111011000 W" -b10011101 K -1D -#7850 -0D -#7875 -b111100000 Y -b111100000 V" -b111100000 Z" -b111100000 Z -b111100000 @" -b111100000 X" -b111011100 X -b111011100 A" -b111011100 P" -b111011100 U" -b111011100 W" -b10011110 K -1D -#7900 -0D -#7925 -b111100100 Y -b111100100 V" -b111100100 Z" -b111100100 Z -b111100100 @" -b111100100 X" -b111100000 X -b111100000 A" -b111100000 P" -b111100000 U" -b111100000 W" -b10011111 K -1D -#7950 -0D -#7975 -b111101000 Y -b111101000 V" -b111101000 Z" -b111101000 Z -b111101000 @" -b111101000 X" -b111100100 X -b111100100 A" -b111100100 P" -b111100100 U" -b111100100 W" -b10100000 K -1D -#8000 -0D -#8025 -b111101100 Y -b111101100 V" -b111101100 Z" -b111101100 Z -b111101100 @" -b111101100 X" -b111101000 X -b111101000 A" -b111101000 P" -b111101000 U" -b111101000 W" -b10100001 K -1D -#8050 -0D -#8075 -b111110000 Y -b111110000 V" -b111110000 Z" -b111110000 Z -b111110000 @" -b111110000 X" -b111101100 X -b111101100 A" -b111101100 P" -b111101100 U" -b111101100 W" -b10100010 K -1D -#8100 -0D -#8125 -b111110100 Y -b111110100 V" -b111110100 Z" -b111110100 Z -b111110100 @" -b111110100 X" -b111110000 X -b111110000 A" -b111110000 P" -b111110000 U" -b111110000 W" -b10100011 K -1D -#8150 -0D -#8175 -b111111000 Y -b111111000 V" -b111111000 Z" -b111111000 Z -b111111000 @" -b111111000 X" -b111110100 X -b111110100 A" -b111110100 P" -b111110100 U" -b111110100 W" -b10100100 K -1D -#8200 -0D -#8225 -b111111100 Y -b111111100 V" -b111111100 Z" -b111111100 Z -b111111100 @" -b111111100 X" -b111111000 X -b111111000 A" -b111111000 P" -b111111000 U" -b111111000 W" -b10100101 K -1D -#8250 -0D -#8275 -b1000000000 Y -b1000000000 V" -b1000000000 Z" -b1000000000 Z -b1000000000 @" -b1000000000 X" -b111111100 X -b111111100 A" -b111111100 P" -b111111100 U" -b111111100 W" -b10100110 K -1D -#8300 -0D -#8325 -b1000000100 Y -b1000000100 V" -b1000000100 Z" -b1000000100 Z -b1000000100 @" -b1000000100 X" -b1000000000 X -b1000000000 A" -b1000000000 P" -b1000000000 U" -b1000000000 W" -b10100111 K -1D -#8350 -0D -#8375 -b1000001000 Y -b1000001000 V" -b1000001000 Z" -b1000001000 Z -b1000001000 @" -b1000001000 X" -b1000000100 X -b1000000100 A" -b1000000100 P" -b1000000100 U" -b1000000100 W" -b10101000 K -1D -#8400 -0D -#8425 -b1000001100 Y -b1000001100 V" -b1000001100 Z" -b1000001100 Z -b1000001100 @" -b1000001100 X" -b1000001000 X -b1000001000 A" -b1000001000 P" -b1000001000 U" -b1000001000 W" -b10101001 K -1D -#8450 -0D -#8475 -b1000010000 Y -b1000010000 V" -b1000010000 Z" -b1000010000 Z -b1000010000 @" -b1000010000 X" -b1000001100 X -b1000001100 A" -b1000001100 P" -b1000001100 U" -b1000001100 W" -b10101010 K -1D -#8500 -0D -#8525 -b1000010100 Y -b1000010100 V" -b1000010100 Z" -b1000010100 Z -b1000010100 @" -b1000010100 X" -b1000010000 X -b1000010000 A" -b1000010000 P" -b1000010000 U" -b1000010000 W" -b10101011 K -1D -#8550 -0D -#8575 -b1000011000 Y -b1000011000 V" -b1000011000 Z" -b1000011000 Z -b1000011000 @" -b1000011000 X" -b1000010100 X -b1000010100 A" -b1000010100 P" -b1000010100 U" -b1000010100 W" -b10101100 K -1D -#8600 -0D -#8625 -b1000011100 Y -b1000011100 V" -b1000011100 Z" -b1000011100 Z -b1000011100 @" -b1000011100 X" -b1000011000 X -b1000011000 A" -b1000011000 P" -b1000011000 U" -b1000011000 W" -b10101101 K -1D -#8650 -0D -#8675 -b1000100000 Y -b1000100000 V" -b1000100000 Z" -b1000100000 Z -b1000100000 @" -b1000100000 X" -b1000011100 X -b1000011100 A" -b1000011100 P" -b1000011100 U" -b1000011100 W" -b10101110 K -1D -#8700 -0D -#8725 -b1000100100 Y -b1000100100 V" -b1000100100 Z" -b1000100100 Z -b1000100100 @" -b1000100100 X" -b1000100000 X -b1000100000 A" -b1000100000 P" -b1000100000 U" -b1000100000 W" -b10101111 K -1D -#8750 -0D -#8775 -b1000101000 Y -b1000101000 V" -b1000101000 Z" -b1000101000 Z -b1000101000 @" -b1000101000 X" -b1000100100 X -b1000100100 A" -b1000100100 P" -b1000100100 U" -b1000100100 W" -b10110000 K -1D -#8800 -0D -#8825 -b1000101100 Y -b1000101100 V" -b1000101100 Z" -b1000101100 Z -b1000101100 @" -b1000101100 X" -b1000101000 X -b1000101000 A" -b1000101000 P" -b1000101000 U" -b1000101000 W" -b10110001 K -1D -#8850 -0D -#8875 -b1000110000 Y -b1000110000 V" -b1000110000 Z" -b1000110000 Z -b1000110000 @" -b1000110000 X" -b1000101100 X -b1000101100 A" -b1000101100 P" -b1000101100 U" -b1000101100 W" -b10110010 K -1D -#8900 -0D -#8925 -b1000110100 Y -b1000110100 V" -b1000110100 Z" -b1000110100 Z -b1000110100 @" -b1000110100 X" -b1000110000 X -b1000110000 A" -b1000110000 P" -b1000110000 U" -b1000110000 W" -b10110011 K -1D -#8950 -0D -#8975 -b1000111000 Y -b1000111000 V" -b1000111000 Z" -b1000111000 Z -b1000111000 @" -b1000111000 X" -b1000110100 X -b1000110100 A" -b1000110100 P" -b1000110100 U" -b1000110100 W" -b10110100 K -1D -#9000 -0D -#9025 -b1000111100 Y -b1000111100 V" -b1000111100 Z" -b1000111100 Z -b1000111100 @" -b1000111100 X" -b1000111000 X -b1000111000 A" -b1000111000 P" -b1000111000 U" -b1000111000 W" -b10110101 K -1D -#9050 -0D -#9075 -b1001000000 Y -b1001000000 V" -b1001000000 Z" -b1001000000 Z -b1001000000 @" -b1001000000 X" -b1000111100 X -b1000111100 A" -b1000111100 P" -b1000111100 U" -b1000111100 W" -b10110110 K -1D -#9100 -0D -#9125 -b1001000100 Y -b1001000100 V" -b1001000100 Z" -b1001000100 Z -b1001000100 @" -b1001000100 X" -b1001000000 X -b1001000000 A" -b1001000000 P" -b1001000000 U" -b1001000000 W" -b10110111 K -1D -#9150 -0D -#9175 -b1001001000 Y -b1001001000 V" -b1001001000 Z" -b1001001000 Z -b1001001000 @" -b1001001000 X" -b1001000100 X -b1001000100 A" -b1001000100 P" -b1001000100 U" -b1001000100 W" -b10111000 K -1D -#9200 -0D -#9225 -b1001001100 Y -b1001001100 V" -b1001001100 Z" -b1001001100 Z -b1001001100 @" -b1001001100 X" -b1001001000 X -b1001001000 A" -b1001001000 P" -b1001001000 U" -b1001001000 W" -b10111001 K -1D -#9250 -0D -#9275 -b1001010000 Y -b1001010000 V" -b1001010000 Z" -b1001010000 Z -b1001010000 @" -b1001010000 X" -b1001001100 X -b1001001100 A" -b1001001100 P" -b1001001100 U" -b1001001100 W" -b10111010 K -1D -#9300 -0D -#9325 -b1001010100 Y -b1001010100 V" -b1001010100 Z" -b1001010100 Z -b1001010100 @" -b1001010100 X" -b1001010000 X -b1001010000 A" -b1001010000 P" -b1001010000 U" -b1001010000 W" -b10111011 K -1D -#9350 -0D -#9375 -b1001011000 Y -b1001011000 V" -b1001011000 Z" -b1001011000 Z -b1001011000 @" -b1001011000 X" -b1001010100 X -b1001010100 A" -b1001010100 P" -b1001010100 U" -b1001010100 W" -b10111100 K -1D -#9400 -0D -#9425 -b1001011100 Y -b1001011100 V" -b1001011100 Z" -b1001011100 Z -b1001011100 @" -b1001011100 X" -b1001011000 X -b1001011000 A" -b1001011000 P" -b1001011000 U" -b1001011000 W" -b10111101 K -1D -#9450 -0D -#9475 -b1001100000 Y -b1001100000 V" -b1001100000 Z" -b1001100000 Z -b1001100000 @" -b1001100000 X" -b1001011100 X -b1001011100 A" -b1001011100 P" -b1001011100 U" -b1001011100 W" -b10111110 K -1D -#9500 -0D -#9525 -b1001100100 Y -b1001100100 V" -b1001100100 Z" -b1001100100 Z -b1001100100 @" -b1001100100 X" -b1001100000 X -b1001100000 A" -b1001100000 P" -b1001100000 U" -b1001100000 W" -b10111111 K -1D -#9550 -0D -#9575 -b1001101000 Y -b1001101000 V" -b1001101000 Z" -b1001101000 Z -b1001101000 @" -b1001101000 X" -b1001100100 X -b1001100100 A" -b1001100100 P" -b1001100100 U" -b1001100100 W" -b11000000 K -1D -#9600 -0D -#9625 -b1001101100 Y -b1001101100 V" -b1001101100 Z" -b1001101100 Z -b1001101100 @" -b1001101100 X" -b1001101000 X -b1001101000 A" -b1001101000 P" -b1001101000 U" -b1001101000 W" -b11000001 K -1D -#9650 -0D -#9675 -b1001110000 Y -b1001110000 V" -b1001110000 Z" -b1001110000 Z -b1001110000 @" -b1001110000 X" -b1001101100 X -b1001101100 A" -b1001101100 P" -b1001101100 U" -b1001101100 W" -b11000010 K -1D -#9700 -0D -#9725 -b1001110100 Y -b1001110100 V" -b1001110100 Z" -b1001110100 Z -b1001110100 @" -b1001110100 X" -b1001110000 X -b1001110000 A" -b1001110000 P" -b1001110000 U" -b1001110000 W" -b11000011 K -1D -#9750 -0D -#9775 -b1001111000 Y -b1001111000 V" -b1001111000 Z" -b1001111000 Z -b1001111000 @" -b1001111000 X" -b1001110100 X -b1001110100 A" -b1001110100 P" -b1001110100 U" -b1001110100 W" -b11000100 K -1D -#9800 -0D -#9825 -b1001111100 Y -b1001111100 V" -b1001111100 Z" -b1001111100 Z -b1001111100 @" -b1001111100 X" -b1001111000 X -b1001111000 A" -b1001111000 P" -b1001111000 U" -b1001111000 W" -b11000101 K -1D -#9850 -0D -#9875 -b1010000000 Y -b1010000000 V" -b1010000000 Z" -b1010000000 Z -b1010000000 @" -b1010000000 X" -b1001111100 X -b1001111100 A" -b1001111100 P" -b1001111100 U" -b1001111100 W" -b11000110 K -1D -#9900 -0D -#9925 -b1010000100 Y -b1010000100 V" -b1010000100 Z" -b1010000100 Z -b1010000100 @" -b1010000100 X" -b1010000000 X -b1010000000 A" -b1010000000 P" -b1010000000 U" -b1010000000 W" -b11000111 K -1D -#9950 -0D -#9975 -b1010001000 Y -b1010001000 V" -b1010001000 Z" -b1010001000 Z -b1010001000 @" -b1010001000 X" -b1010000100 X -b1010000100 A" -b1010000100 P" -b1010000100 U" -b1010000100 W" -b11001000 K -1D -#10000 -0D -#10025 -b1010001100 Y -b1010001100 V" -b1010001100 Z" -b1010001100 Z -b1010001100 @" -b1010001100 X" -b1010001000 X -b1010001000 A" -b1010001000 P" -b1010001000 U" -b1010001000 W" -b11001001 K -b1111 G -b1111 I -b0 J -b10000 L -b10 M -1D -#10050 -0D -#10075 -b1010010000 Y -b1010010000 V" -b1010010000 Z" -b1010010000 Z -b1010010000 @" -b1010010000 X" -b1010001100 X -b1010001100 A" -b1010001100 P" -b1010001100 U" -b1010001100 W" -1D diff --git a/resources/dide-viewer/view/css/app.520326c1.css b/resources/dide-viewer/view/css/app.520326c1.css deleted file mode 100644 index f946963..0000000 --- a/resources/dide-viewer/view/css/app.520326c1.css +++ /dev/null @@ -1 +0,0 @@ -.vcd-sidebar-wrapper{position:absolute;top:0;left:0;z-index:60}.add-signal-button{margin-top:10px;padding:10px 25px;background-color:var(--main-color);border-radius:0 0 .8em .8em;color:var(--sidebar);cursor:pointer;display:flex;justify-content:space-around}.add-signal-button>span{font-size:30px}.display-signal-wrapper{background-color:var(--sidebar);border:solid 1px var(--sidebar-border);min-width:var(--sidebar-width);height:calc(100vh - 90px);box-shadow:0 0 15px 1px #101010;overflow:hidden}.display-signal-item{border-radius:.5em;background-color:var(--background);height:var(--display-signal-info-height);display:flex;cursor:pointer}.display-signal-item::-moz-selection{background-color:none}.display-signal-item::selection{background-color:none}.signal-color-vendor{width:30px;height:100%;margin:0 10px 0 0;border-radius:.4em 0 0 .4em;background-color:#7ca532;display:flex;justify-content:space-around;align-items:center}.signal-color-vendor>span{font-size:15px;color:var(--background)}.signal-info{width:90%;display:flex;justify-content:space-between;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.signal-info-name{cursor:pointer;max-width:100px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;flex-direction:column}.signal-info-tooltip-wrapper{display:flex;align-items:center;justify-content:space-around}.signal-info-width{margin-left:10px}.signal-info-caption{width:-moz-fit-content;width:fit-content;color:var(--sidebar-item-text);border-radius:.5em;background-color:#7ca532;padding:5px;font-size:16px}.signal-info-current-value-wrapper{margin-left:10px;width:60px;display:flex;justify-content:space-around}.signal-info-current-value{cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.signal-info::-moz-selection{background:none;cursor:none}.signal-info::selection{background:none;cursor:none}.signal-parent-info{font-size:.8rem;border-radius:.5em;padding:2px 5px;color:var(--sidebar);background-color:var(--main-color);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-view-search-wrapper{min-height:30px;padding:10px;transition:flex .5s ease-in-out}.search-result-wrapper{position:absolute;padding:10px;margin:10px;background-color:var(--sidebar);border:1.5px solid var(--main-color);color:var(--sidebar-item-text);border-radius:.5em;min-width:500px;z-index:10}.search-result{overflow-x:scroll;overflow-y:scroll;max-height:80vh;max-width:600px;padding-right:5px}.search-result-item{display:flex;align-items:center;height:25px;margin:3px;width:800px;padding-left:3px;cursor:pointer}.search-result-item:hover{background-color:var(--sidebar-item-selected);border-radius:.3em}.dep-arrow{height:7px;width:7px;border-top:solid 1.7px var(--sidebar-item-text);border-left:solid 1.7px var(--sidebar-item-text);transform:rotate(135deg);margin-right:8px;margin-left:3px}.icon-memory-chip{color:#ff7043}.module{text-align:left}.vcd-subtree-wrapper{display:flex;width:100%}.vcd-treeview-item{color:var(--sidebar-item-text);cursor:pointer;height:27px;display:flex;align-items:center;white-space:nowrap;text-overflow:ellipsis}.vcd-treeview-item::-moz-selection{background:none}.vcd-treeview-item::selection{background:none}.vcd-treeview-item:hover{background-color:var(--sidebar-item-selected);border-radius:.3em}.vcd-treeview-selected{background-color:var(--button-active)!important;border-radius:.3em}.module-tag-status{width:25px;height:25px;align-items:center;justify-content:space-around;display:flex}.expand-tag{transform:rotate(225deg)}.collapse-tag,.expand-tag{height:7px;width:7px;border-top:solid 1.7px var(--sidebar-item-text);border-left:solid 1.7px var(--sidebar-item-text)}.collapse-tag{transform:rotate(135deg)}.vcd-signal-title{margin-left:5px}.icon-wave-square{color:var(--signal-default-color)}.icon-brackets{color:#75bedf}.icon-register{color:#885dff}.icon-integer{color:#c76b3c}.icon-string{color:#8cc265}.icon-real{color:#5fb4d8}.icon-task{color:orange}.vcd-signal-signals-display{color:var(--sidebar-item-text);padding:0 8px;height:90vh;overflow-x:scroll}.vcd-signal-signal-item{margin:3px;display:flex;justify-content:space-between;height:23px;padding-left:3px;cursor:pointer;align-items:center}.vcd-signal-signal-item::-moz-selection{background:none}.vcd-signal-signal-item::selection{background:none}.vcd-signal-signal-item:hover{background-color:var(--sidebar-item-selected);border-radius:.3em}.vcd-signal-signal-caption{color:var(--sidebar-item-text);border-radius:.5em;background-color:var(--color-deepPurple);padding:3px;font-size:12px}.vcd-module-info{width:-moz-fit-content;width:fit-content;padding-right:5px}.vcd-module-wires{width:300px}.vcd-module-display-wrapper{height:90vh;overflow:scroll}.vcd-treeview{background-color:var(--sidebar);padding:10px 10px 10px 10px;height:98vh;border-radius:1em;display:flex;flex-direction:column;transition:height .5s ease-in-out}.vcd-module-wrapper{flex:1;display:flex;z-index:5;max-height:99vh;transition:flex .5s ease-in-out}.setting-wrapper{width:-moz-fit-content;width:fit-content;padding:10px}.setting-container{overflow-y:scroll;height:99vh}.setting-section{padding:10px;margin:10px;border-radius:.3em;min-height:50px}.setting-option{margin:5px;padding:8px 12px;height:40px;width:-moz-fit-content;width:fit-content;border-radius:.5em;background-color:var(--background);display:flex;align-items:center;font-size:.9rem}.option-title{min-width:80px;margin-right:12px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.el-slider__button,.el-switch__core .el-switch__action{background-color:var(--background)!important}.el-slider__stop{background-color:var(--sidebar-item-text)!important}.icon-help{cursor:pointer}.icon-help,.icon-help:hover{transition:var(--animation-3s);-webkit-transition:var(--animation-3s)}.icon-help:hover{color:var(--main-color)}.about-wrapper{margin-top:10px;width:450px}.version-caption{display:flex;width:100%!important;font-size:1.1rem;justify-content:space-evenly}.copyright-caption,.version-caption{padding:10px;margin:10px;align-items:center}.copyright-caption{width:50%!important;line-height:30px;font-size:.9rem}.icon-caption{display:flex;align-items:center;justify-content:space-around;cursor:pointer}.version-wrapper{border-radius:.5em;color:#fff;background-color:var(--color-deepPurple);padding:5px}.usermanual{margin:10px;margin-top:0;padding:10px;padding-top:0}.usermanual-item{display:flex;justify-content:space-between;padding:5px;margin:5px;font-size:.9rem}.usermanual-item .iconfont{font-size:1.1rem!important;color:var(--sidebar-text-item)}.vcd-right-nav{display:flex;position:fixed;top:0;right:0;z-index:60}.vcd-function-panel{display:flex}.vcd-function-option,.vcd-function-panel{background-color:var(--sidebar);height:100vh;box-shadow:0 0 15px 1px #101010}.vcd-function-option{width:-moz-fit-content;width:fit-content}.vcd-control-panel-wrapper{width:var(--right-nav-width);height:var(--right-nav-width);display:flex;align-items:center;justify-content:space-around;cursor:pointer;margin-top:10px}.vcd-control-panel-wrapper:hover{color:var(--vscode-icon-foreground)}.vcd-control-panel-icon{width:50px;height:50px;font-size:35px}.vcd-control-panel-active{color:var(--main-color)}.vertical-cursor-wrapper{position:absolute;height:100vh;padding:0;top:0;cursor:crosshair;z-index:55;display:flex;flex-direction:column;align-items:center;justify-content:center}.current-display-cursor-down,.current-display-cursor-up{height:var(--time-scale-height);width:50px;display:flex;align-items:center;justify-content:space-around;color:var(--sidebar-item-text);font-size:14px;position:relative}.current-time-value{border-radius:.4em;background-color:var(--color-deepPurple);color:var(--sidebar-item-text);padding:5px;width:-moz-fit-content;width:fit-content;white-space:nowrap}.cursor-down-arrow{transform:rotate(225deg);bottom:0}.cursor-down-arrow,.cursor-up-arrow{border-left:5px solid var(--color-deepPurple);border-top:5px solid var(--color-deepPurple);position:absolute;width:10px;height:10px;left:17.93px}.cursor-up-arrow{transform:rotate(45deg);top:0}.fix-vertical-line,.vertical-line{width:1px;height:calc(100vh - var(--time-scale-height)*2)}.fix-vertical-line{background-color:var(--color-deepPurple)}.fix-current-display-cursor-down,.fix-current-display-cursor-up{height:var(--time-scale-height);width:50px;background-color:var(--color-deepPurple);border-radius:.5em .5em .5em .5em;display:flex;align-items:center;justify-content:space-around;color:var(--sidebar-item-text);font-size:14px}.time-scale-up-wrapper{top:0;left:calc(var(--sidebar-width) + 20px);width:calc(100vw - var(--sidebar-width) - var(--right-nav-width) - 20px)}.time-scale-down-wrapper,.time-scale-up-wrapper{position:absolute;height:var(--time-scale-height);background-color:var(--sidebar);z-index:50;cursor:crosshair}.time-scale-down-wrapper{bottom:0;left:0;width:calc(100vw - var(--right-nav-width))}.time-scale-down{bottom:0}.time-scale-down,.time-scale-up{position:absolute;width:1px;height:10px;border:1px solid var(--scrollbar-hover);background-color:var(--scrollbar-hover)}.time-scale-up{top:0}.time-scale-wrapper{position:absolute;height:100vh;padding:0;top:0;cursor:crosshair;z-index:55;display:flex;flex-direction:column;align-items:center;justify-content:center}.time-scale-line{width:1px;background-color:var(--scrollbar-hover);height:calc(100vh - var(--time-scale-height)*2)}.vcd-render-wrapper{height:98vh;width:98vw;cursor:crosshair;padding:10px;transition:.3s ease-out}.vcd-container{--right-panel-width:0px;width:calc(100% - var(--right-panel-width));transition:width .3s ease-out;top:0;bottom:0;left:0;right:0}.vcd-container,.vcd-vline{position:absolute}.vcd-values,.vcd-view,.wd-waveql{position:absolute;top:var(--vcd-render-padding);bottom:var(--vcd-render-padding)}.wd-waveql{width:100%;transition:width .3s ease-out}.vcd-cursor{position:absolute;pointer-events:none}.vcd-values text{font-size:14px;text-anchor:middle;fill:#fff}line.wd-cursor-line{stroke-dasharray:12 4;stroke:var(--main-color);stroke-width:1px}line.wd-grid-time{stroke:#333;stroke-width:1px}line.gap{stroke:#fff;stroke-dasharray:4 3}text.wd-grid-time{text-anchor:middle;fill:var(--sidebar-item-text)}text.wd-cursor-time{font-size:20px;fill:var(--sidebar);text-anchor:middle;z-index:55}rect.wd-cursor-time{fill:var(--main-color)}.wd-progress{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}text.common{fill:var(--sidebar-item-text)}text.high-impedance{fill:red}text.unknown{fill:#db57ff}text.pc{text-anchor:start}tspan.pc-addr{fill:#6bc9ff}#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} \ No newline at end of file diff --git a/resources/dide-viewer/view/css/chunk-vendors.915d56aa.css b/resources/dide-viewer/view/css/chunk-vendors.915d56aa.css deleted file mode 100644 index da242fe..0000000 --- a/resources/dide-viewer/view/css/chunk-vendors.915d56aa.css +++ /dev/null @@ -1 +0,0 @@ -@charset "UTF-8";:root{--el-color-primary-rgb:64,158,255;--el-color-success-rgb:103,194,58;--el-color-warning-rgb:230,162,60;--el-color-danger-rgb:245,108,108;--el-color-error-rgb:245,108,108;--el-color-info-rgb:144,147,153;--el-font-size-extra-large:20px;--el-font-size-large:18px;--el-font-size-medium:16px;--el-font-size-base:14px;--el-font-size-small:13px;--el-font-size-extra-small:12px;--el-font-family:"Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;--el-font-weight-primary:500;--el-font-line-height-primary:24px;--el-index-normal:1;--el-index-top:1000;--el-index-popper:2000;--el-border-radius-base:4px;--el-border-radius-small:2px;--el-border-radius-round:20px;--el-border-radius-circle:100%;--el-transition-duration:0.3s;--el-transition-duration-fast:0.2s;--el-transition-function-ease-in-out-bezier:cubic-bezier(0.645,0.045,0.355,1);--el-transition-function-fast-bezier:cubic-bezier(0.23,1,0.32,1);--el-transition-all:all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);--el-transition-fade:opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-md-fade:transform var(--el-transition-duration) var(--el-transition-function-fast-bezier),opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-fade-linear:opacity var(--el-transition-duration-fast) linear;--el-transition-border:border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-box-shadow:box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-color:color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-component-size-large:40px;--el-component-size:32px;--el-component-size-small:24px;color-scheme:light;--el-color-white:#fff;--el-color-black:#000;--el-color-primary:#409eff;--el-color-primary-light-3:#79bbff;--el-color-primary-light-5:#a0cfff;--el-color-primary-light-7:#c6e2ff;--el-color-primary-light-8:#d9ecff;--el-color-primary-light-9:#ecf5ff;--el-color-primary-dark-2:#337ecc;--el-color-success:#67c23a;--el-color-success-light-3:#95d475;--el-color-success-light-5:#b3e19d;--el-color-success-light-7:#d1edc4;--el-color-success-light-8:#e1f3d8;--el-color-success-light-9:#f0f9eb;--el-color-success-dark-2:#529b2e;--el-color-warning:#e6a23c;--el-color-warning-light-3:#eebe77;--el-color-warning-light-5:#f3d19e;--el-color-warning-light-7:#f8e3c5;--el-color-warning-light-8:#faecd8;--el-color-warning-light-9:#fdf6ec;--el-color-warning-dark-2:#b88230;--el-color-danger:#f56c6c;--el-color-danger-light-3:#f89898;--el-color-danger-light-5:#fab6b6;--el-color-danger-light-7:#fcd3d3;--el-color-danger-light-8:#fde2e2;--el-color-danger-light-9:#fef0f0;--el-color-danger-dark-2:#c45656;--el-color-error:#f56c6c;--el-color-error-light-3:#f89898;--el-color-error-light-5:#fab6b6;--el-color-error-light-7:#fcd3d3;--el-color-error-light-8:#fde2e2;--el-color-error-light-9:#fef0f0;--el-color-error-dark-2:#c45656;--el-color-info:#909399;--el-color-info-light-3:#b1b3b8;--el-color-info-light-5:#c8c9cc;--el-color-info-light-7:#dedfe0;--el-color-info-light-8:#e9e9eb;--el-color-info-light-9:#f4f4f5;--el-color-info-dark-2:#73767a;--el-bg-color:#fff;--el-bg-color-page:#f2f3f5;--el-bg-color-overlay:#fff;--el-text-color-primary:#303133;--el-text-color-regular:#606266;--el-text-color-secondary:#909399;--el-text-color-placeholder:#a8abb2;--el-text-color-disabled:#c0c4cc;--el-border-color:#dcdfe6;--el-border-color-light:#e4e7ed;--el-border-color-lighter:#ebeef5;--el-border-color-extra-light:#f2f6fc;--el-border-color-dark:#d4d7de;--el-border-color-darker:#cdd0d6;--el-fill-color:#f0f2f5;--el-fill-color-light:#f5f7fa;--el-fill-color-lighter:#fafafa;--el-fill-color-extra-light:#fafcff;--el-fill-color-dark:#ebedf0;--el-fill-color-darker:#e6e8eb;--el-fill-color-blank:#fff;--el-box-shadow:0px 12px 32px 4px rgba(0,0,0,.04),0px 8px 20px rgba(0,0,0,.08);--el-box-shadow-light:0px 0px 12px rgba(0,0,0,.12);--el-box-shadow-lighter:0px 0px 6px rgba(0,0,0,.12);--el-box-shadow-dark:0px 16px 48px 16px rgba(0,0,0,.08),0px 12px 32px rgba(0,0,0,.12),0px 8px 16px -8px rgba(0,0,0,.16);--el-disabled-bg-color:var(--el-fill-color-light);--el-disabled-text-color:var(--el-text-color-placeholder);--el-disabled-border-color:var(--el-border-color-light);--el-overlay-color:rgba(0,0,0,.8);--el-overlay-color-light:rgba(0,0,0,.7);--el-overlay-color-lighter:rgba(0,0,0,.5);--el-mask-color:hsla(0,0%,100%,.9);--el-mask-color-extra-light:hsla(0,0%,100%,.3);--el-border-width:1px;--el-border-style:solid;--el-border-color-hover:var(--el-text-color-disabled);--el-border:var(--el-border-width) var(--el-border-style) var(--el-border-color);--el-svg-monochrome-grey:var(--el-border-color)}.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-fade-in-enter-from,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transition:var(--el-transition-md-fade);transform-origin:center top}.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--el-transition-md-fade);transform-origin:center bottom}.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;transform:scale(1);transition:var(--el-transition-md-fade);transform-origin:top left}.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active{opacity:0;transform:scale(.45)}.collapse-transition{transition:var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.el-collapse-transition-enter-active,.el-collapse-transition-leave-active{transition:var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{transition:all 1s}.el-list-enter-from,.el-list-leave-to{opacity:0;transform:translateY(-30px)}.el-list-leave-active{position:absolute!important}.el-opacity-transition{transition:opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-icon-loading{animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.el-icon{--color:inherit;height:1em;width:1em;line-height:1em;display:inline-flex;justify-content:center;align-items:center;position:relative;fill:currentColor;color:var(--color);font-size:inherit}.el-icon.is-loading{animation:rotating 2s linear infinite}.el-icon svg{height:1em;width:1em}.el-affix--fixed{position:fixed}.el-alert{--el-alert-padding:8px 16px;--el-alert-border-radius-base:var(--el-border-radius-base);--el-alert-title-font-size:13px;--el-alert-description-font-size:12px;--el-alert-close-font-size:12px;--el-alert-close-customed-font-size:13px;--el-alert-icon-size:16px;--el-alert-icon-large-size:28px;width:100%;padding:var(--el-alert-padding);margin:0;box-sizing:border-box;border-radius:var(--el-alert-border-radius-base);position:relative;background-color:var(--el-color-white);overflow:hidden;opacity:1;display:flex;align-items:center;transition:opacity var(--el-transition-duration-fast)}.el-alert.is-light .el-alert__close-btn{color:var(--el-text-color-placeholder)}.el-alert.is-dark .el-alert__close-btn,.el-alert.is-dark .el-alert__description{color:var(--el-color-white)}.el-alert.is-center{justify-content:center}.el-alert--success{--el-alert-bg-color:var(--el-color-success-light-9)}.el-alert--success.is-light{background-color:var(--el-alert-bg-color)}.el-alert--success.is-light,.el-alert--success.is-light .el-alert__description{color:var(--el-color-success)}.el-alert--success.is-dark{background-color:var(--el-color-success);color:var(--el-color-white)}.el-alert--info{--el-alert-bg-color:var(--el-color-info-light-9)}.el-alert--info.is-light{background-color:var(--el-alert-bg-color)}.el-alert--info.is-light,.el-alert--info.is-light .el-alert__description{color:var(--el-color-info)}.el-alert--info.is-dark{background-color:var(--el-color-info);color:var(--el-color-white)}.el-alert--warning{--el-alert-bg-color:var(--el-color-warning-light-9)}.el-alert--warning.is-light{background-color:var(--el-alert-bg-color)}.el-alert--warning.is-light,.el-alert--warning.is-light .el-alert__description{color:var(--el-color-warning)}.el-alert--warning.is-dark{background-color:var(--el-color-warning);color:var(--el-color-white)}.el-alert--error{--el-alert-bg-color:var(--el-color-error-light-9)}.el-alert--error.is-light{background-color:var(--el-alert-bg-color)}.el-alert--error.is-light,.el-alert--error.is-light .el-alert__description{color:var(--el-color-error)}.el-alert--error.is-dark{background-color:var(--el-color-error);color:var(--el-color-white)}.el-alert__content{display:table-cell;padding:0 8px}.el-alert .el-alert__icon{font-size:var(--el-alert-icon-size);width:var(--el-alert-icon-size)}.el-alert .el-alert__icon.is-big{font-size:var(--el-alert-icon-large-size);width:var(--el-alert-icon-large-size)}.el-alert__title{font-size:var(--el-alert-title-font-size);line-height:18px;vertical-align:text-top}.el-alert__title.is-bold{font-weight:700}.el-alert .el-alert__description{font-size:var(--el-alert-description-font-size);margin:5px 0 0 0}.el-alert .el-alert__close-btn{font-size:var(--el-alert-close-font-size);opacity:1;position:absolute;top:12px;right:15px;cursor:pointer}.el-alert .el-alert__close-btn.is-customed{font-style:normal;font-size:var(--el-alert-close-customed-font-size);top:9px}.el-alert-fade-enter-from,.el-alert-fade-leave-active{opacity:0}.el-aside{overflow:auto;box-sizing:border-box;flex-shrink:0;width:var(--el-aside-width,300px)}.el-autocomplete{position:relative;display:inline-block}.el-autocomplete__popper.el-popper{background:var(--el-bg-color-overlay);box-shadow:var(--el-box-shadow-light)}.el-autocomplete__popper.el-popper,.el-autocomplete__popper.el-popper .el-popper__arrow:before{border:1px solid var(--el-border-color-light)}.el-autocomplete__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent;border-left-color:transparent}.el-autocomplete__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent;border-right-color:transparent}.el-autocomplete__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent;border-bottom-color:transparent}.el-autocomplete__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent;border-top-color:transparent}.el-autocomplete-suggestion{border-radius:var(--el-border-radius-base);box-sizing:border-box}.el-autocomplete-suggestion__wrap{max-height:280px;padding:10px 0;box-sizing:border-box}.el-autocomplete-suggestion__list{margin:0;padding:0}.el-autocomplete-suggestion li{padding:0 20px;margin:0;line-height:34px;cursor:pointer;color:var(--el-text-color-regular);font-size:var(--el-font-size-base);list-style:none;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-autocomplete-suggestion li.highlighted,.el-autocomplete-suggestion li:hover{background-color:var(--el-fill-color-light)}.el-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid var(--el-color-black)}.el-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.el-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:var(--el-text-color-secondary)}.el-autocomplete-suggestion.is-loading li:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-autocomplete-suggestion.is-loading li:hover{background-color:var(--el-bg-color-overlay)}.el-autocomplete-suggestion.is-loading .el-icon-loading{vertical-align:middle}.el-avatar{--el-avatar-text-color:var(--el-color-white);--el-avatar-bg-color:var(--el-text-color-disabled);--el-avatar-text-size:14px;--el-avatar-icon-size:18px;--el-avatar-border-radius:var(--el-border-radius-base);--el-avatar-size-large:56px;--el-avatar-size-small:24px;--el-avatar-size:40px;display:inline-flex;justify-content:center;align-items:center;box-sizing:border-box;text-align:center;overflow:hidden;color:var(--el-avatar-text-color);background:var(--el-avatar-bg-color);width:var(--el-avatar-size);height:var(--el-avatar-size);font-size:var(--el-avatar-text-size)}.el-avatar>img{display:block;width:100%;height:100%}.el-avatar--circle{border-radius:50%}.el-avatar--square{border-radius:var(--el-avatar-border-radius)}.el-avatar--icon{font-size:var(--el-avatar-icon-size)}.el-avatar--small{--el-avatar-size:24px}.el-avatar--large{--el-avatar-size:56px}.el-backtop{--el-backtop-bg-color:var(--el-bg-color-overlay);--el-backtop-text-color:var(--el-color-primary);--el-backtop-hover-bg-color:var(--el-border-color-extra-light);position:fixed;background-color:var(--el-backtop-bg-color);width:40px;height:40px;border-radius:50%;color:var(--el-backtop-text-color);display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:var(--el-box-shadow-lighter);cursor:pointer;z-index:5}.el-backtop:hover{background-color:var(--el-backtop-hover-bg-color)}.el-backtop__icon{font-size:20px}.el-badge{--el-badge-bg-color:var(--el-color-danger);--el-badge-radius:10px;--el-badge-font-size:12px;--el-badge-padding:6px;--el-badge-size:18px;position:relative;vertical-align:middle;display:inline-block;width:-moz-fit-content;width:fit-content}.el-badge__content{background-color:var(--el-badge-bg-color);border-radius:var(--el-badge-radius);color:var(--el-color-white);display:inline-flex;justify-content:center;align-items:center;font-size:var(--el-badge-font-size);height:var(--el-badge-size);padding:0 var(--el-badge-padding);white-space:nowrap;border:1px solid var(--el-bg-color)}.el-badge__content.is-fixed{position:absolute;top:0;right:calc(1px + var(--el-badge-size)/2);transform:translateY(-50%) translateX(100%);z-index:var(--el-index-normal)}.el-badge__content.is-fixed.is-dot{right:5px}.el-badge__content.is-dot{height:8px;width:8px;padding:0;right:0;border-radius:50%}.el-badge__content--primary{background-color:var(--el-color-primary)}.el-badge__content--success{background-color:var(--el-color-success)}.el-badge__content--warning{background-color:var(--el-color-warning)}.el-badge__content--info{background-color:var(--el-color-info)}.el-badge__content--danger{background-color:var(--el-color-danger)}.el-breadcrumb{font-size:14px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;content:""}.el-breadcrumb:after{clear:both}.el-breadcrumb__separator{margin:0 9px;font-weight:700;color:var(--el-text-color-placeholder)}.el-breadcrumb__separator.el-icon{margin:0 6px;font-weight:400}.el-breadcrumb__separator.el-icon svg{vertical-align:middle}.el-breadcrumb__item{float:left;display:inline-flex;align-items:center}.el-breadcrumb__inner{color:var(--el-text-color-regular)}.el-breadcrumb__inner a,.el-breadcrumb__inner.is-link{font-weight:700;text-decoration:none;transition:var(--el-transition-color);color:var(--el-text-color-primary)}.el-breadcrumb__inner a:hover,.el-breadcrumb__inner.is-link:hover{color:var(--el-color-primary);cursor:pointer}.el-breadcrumb__item:last-child .el-breadcrumb__inner,.el-breadcrumb__item:last-child .el-breadcrumb__inner a,.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover{font-weight:400;color:var(--el-text-color-regular);cursor:text}.el-breadcrumb__item:last-child .el-breadcrumb__separator{display:none}.el-button-group{display:inline-block;vertical-align:middle}.el-button-group:after,.el-button-group:before{display:table;content:""}.el-button-group:after{clear:both}.el-button-group>.el-button{float:left;position:relative}.el-button-group>.el-button+.el-button{margin-left:0}.el-button-group>.el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.el-button:first-child:last-child{border-top-right-radius:var(--el-border-radius-base);border-bottom-right-radius:var(--el-border-radius-base);border-top-left-radius:var(--el-border-radius-base);border-bottom-left-radius:var(--el-border-radius-base)}.el-button-group>.el-button:first-child:last-child.is-round{border-radius:var(--el-border-radius-round)}.el-button-group>.el-button:first-child:last-child.is-circle{border-radius:50%}.el-button-group>.el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group>.el-button:not(:last-child){margin-right:-1px}.el-button-group>.el-button.is-active,.el-button-group>.el-button:active,.el-button-group>.el-button:focus,.el-button-group>.el-button:hover{z-index:1}.el-button-group>.el-dropdown>.el-button{border-top-left-radius:0;border-bottom-left-radius:0;border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--primary:first-child{border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--primary:last-child{border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:var(--el-button-divide-border-color);border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--success:first-child{border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--success:last-child{border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:var(--el-button-divide-border-color);border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--warning:first-child{border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--warning:last-child{border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:var(--el-button-divide-border-color);border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--danger:first-child{border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--danger:last-child{border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:var(--el-button-divide-border-color);border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--info:first-child{border-right-color:var(--el-button-divide-border-color)}.el-button-group .el-button--info:last-child{border-left-color:var(--el-button-divide-border-color)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:var(--el-button-divide-border-color);border-right-color:var(--el-button-divide-border-color)}.el-button{--el-button-font-weight:var(--el-font-weight-primary);--el-button-border-color:var(--el-border-color);--el-button-bg-color:var(--el-fill-color-blank);--el-button-text-color:var(--el-text-color-regular);--el-button-disabled-text-color:var(--el-disabled-text-color);--el-button-disabled-bg-color:var(--el-fill-color-blank);--el-button-disabled-border-color:var(--el-border-color-light);--el-button-divide-border-color:hsla(0,0%,100%,.5);--el-button-hover-text-color:var(--el-color-primary);--el-button-hover-bg-color:var(--el-color-primary-light-9);--el-button-hover-border-color:var(--el-color-primary-light-7);--el-button-active-text-color:var(--el-button-hover-text-color);--el-button-active-border-color:var(--el-color-primary);--el-button-active-bg-color:var(--el-button-hover-bg-color);--el-button-outline-color:var(--el-color-primary-light-5);--el-button-hover-link-text-color:var(--el-color-info);--el-button-active-color:var(--el-text-color-primary);display:inline-flex;justify-content:center;align-items:center;line-height:1;height:32px;white-space:nowrap;cursor:pointer;color:var(--el-button-text-color);text-align:center;box-sizing:border-box;outline:0;transition:.1s;font-weight:var(--el-button-font-weight);-webkit-user-select:none;user-select:none;vertical-align:middle;-webkit-appearance:none;background-color:var(--el-button-bg-color);border:var(--el-border);border-color:var(--el-button-border-color);padding:8px 15px;font-size:var(--el-font-size-base);border-radius:var(--el-border-radius-base)}.el-button:focus,.el-button:hover{color:var(--el-button-hover-text-color);border-color:var(--el-button-hover-border-color);background-color:var(--el-button-hover-bg-color);outline:0}.el-button:active{color:var(--el-button-active-text-color);border-color:var(--el-button-active-border-color);background-color:var(--el-button-active-bg-color);outline:0}.el-button:focus-visible{outline:2px solid var(--el-button-outline-color);outline-offset:1px}.el-button>span{display:inline-flex;align-items:center}.el-button+.el-button{margin-left:12px}.el-button.is-round{padding:8px 15px}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon]+span{margin-left:6px}.el-button [class*=el-icon] svg{vertical-align:bottom}.el-button.is-plain{--el-button-hover-text-color:var(--el-color-primary);--el-button-hover-bg-color:var(--el-fill-color-blank);--el-button-hover-border-color:var(--el-color-primary)}.el-button.is-active{color:var(--el-button-active-text-color);border-color:var(--el-button-active-border-color);background-color:var(--el-button-active-bg-color);outline:0}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:var(--el-button-disabled-text-color);cursor:not-allowed;background-image:none;background-color:var(--el-button-disabled-bg-color);border-color:var(--el-button-disabled-border-color)}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{z-index:1;pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:var(--el-mask-color-extra-light)}.el-button.is-round{border-radius:var(--el-border-radius-round)}.el-button.is-circle{width:32px;border-radius:50%;padding:8px}.el-button.is-text{color:var(--el-button-text-color);border:0 solid transparent;background-color:transparent}.el-button.is-text.is-disabled{color:var(--el-button-disabled-text-color);background-color:transparent!important}.el-button.is-text:not(.is-disabled):focus,.el-button.is-text:not(.is-disabled):hover{background-color:var(--el-fill-color-light)}.el-button.is-text:not(.is-disabled):focus-visible{outline:2px solid var(--el-button-outline-color);outline-offset:1px}.el-button.is-text:not(.is-disabled):active{background-color:var(--el-fill-color)}.el-button.is-text:not(.is-disabled).is-has-bg{background-color:var(--el-fill-color-light)}.el-button.is-text:not(.is-disabled).is-has-bg:focus,.el-button.is-text:not(.is-disabled).is-has-bg:hover{background-color:var(--el-fill-color)}.el-button.is-text:not(.is-disabled).is-has-bg:active{background-color:var(--el-fill-color-dark)}.el-button__text--expand{letter-spacing:.3em;margin-right:-.3em}.el-button.is-link{border-color:transparent;color:var(--el-button-text-color);background:0 0;padding:2px;height:auto}.el-button.is-link:focus,.el-button.is-link:hover{color:var(--el-button-hover-link-text-color)}.el-button.is-link.is-disabled{color:var(--el-button-disabled-text-color);background-color:transparent!important;border-color:transparent!important}.el-button.is-link:not(.is-disabled):active,.el-button.is-link:not(.is-disabled):focus,.el-button.is-link:not(.is-disabled):hover{border-color:transparent;background-color:transparent}.el-button.is-link:not(.is-disabled):active{color:var(--el-button-active-color)}.el-button--text{border-color:transparent;background:0 0;color:var(--el-color-primary);padding-left:0;padding-right:0}.el-button--text.is-disabled{color:var(--el-button-disabled-text-color);background-color:transparent!important;border-color:transparent!important}.el-button--text:not(.is-disabled):focus,.el-button--text:not(.is-disabled):hover{color:var(--el-color-primary-light-3);border-color:transparent;background-color:transparent}.el-button--text:not(.is-disabled):active{color:var(--el-color-primary-dark-2);border-color:transparent;background-color:transparent}.el-button__link--expand{letter-spacing:.3em;margin-right:-.3em}.el-button--primary{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-primary);--el-button-border-color:var(--el-color-primary);--el-button-outline-color:var(--el-color-primary-light-5);--el-button-active-color:var(--el-color-primary-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-primary-light-5);--el-button-hover-bg-color:var(--el-color-primary-light-3);--el-button-hover-border-color:var(--el-color-primary-light-3);--el-button-active-bg-color:var(--el-color-primary-dark-2);--el-button-active-border-color:var(--el-color-primary-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-primary-light-5);--el-button-disabled-border-color:var(--el-color-primary-light-5)}.el-button--primary.is-link,.el-button--primary.is-plain,.el-button--primary.is-text{--el-button-text-color:var(--el-color-primary);--el-button-bg-color:var(--el-color-primary-light-9);--el-button-border-color:var(--el-color-primary-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-primary);--el-button-hover-border-color:var(--el-color-primary);--el-button-active-text-color:var(--el-color-white)}.el-button--primary.is-link.is-disabled,.el-button--primary.is-link.is-disabled:active,.el-button--primary.is-link.is-disabled:focus,.el-button--primary.is-link.is-disabled:hover,.el-button--primary.is-plain.is-disabled,.el-button--primary.is-plain.is-disabled:active,.el-button--primary.is-plain.is-disabled:focus,.el-button--primary.is-plain.is-disabled:hover,.el-button--primary.is-text.is-disabled,.el-button--primary.is-text.is-disabled:active,.el-button--primary.is-text.is-disabled:focus,.el-button--primary.is-text.is-disabled:hover{color:var(--el-color-primary-light-5);background-color:var(--el-color-primary-light-9);border-color:var(--el-color-primary-light-8)}.el-button--success{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-success);--el-button-border-color:var(--el-color-success);--el-button-outline-color:var(--el-color-success-light-5);--el-button-active-color:var(--el-color-success-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-success-light-5);--el-button-hover-bg-color:var(--el-color-success-light-3);--el-button-hover-border-color:var(--el-color-success-light-3);--el-button-active-bg-color:var(--el-color-success-dark-2);--el-button-active-border-color:var(--el-color-success-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-success-light-5);--el-button-disabled-border-color:var(--el-color-success-light-5)}.el-button--success.is-link,.el-button--success.is-plain,.el-button--success.is-text{--el-button-text-color:var(--el-color-success);--el-button-bg-color:var(--el-color-success-light-9);--el-button-border-color:var(--el-color-success-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-success);--el-button-hover-border-color:var(--el-color-success);--el-button-active-text-color:var(--el-color-white)}.el-button--success.is-link.is-disabled,.el-button--success.is-link.is-disabled:active,.el-button--success.is-link.is-disabled:focus,.el-button--success.is-link.is-disabled:hover,.el-button--success.is-plain.is-disabled,.el-button--success.is-plain.is-disabled:active,.el-button--success.is-plain.is-disabled:focus,.el-button--success.is-plain.is-disabled:hover,.el-button--success.is-text.is-disabled,.el-button--success.is-text.is-disabled:active,.el-button--success.is-text.is-disabled:focus,.el-button--success.is-text.is-disabled:hover{color:var(--el-color-success-light-5);background-color:var(--el-color-success-light-9);border-color:var(--el-color-success-light-8)}.el-button--warning{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-warning);--el-button-border-color:var(--el-color-warning);--el-button-outline-color:var(--el-color-warning-light-5);--el-button-active-color:var(--el-color-warning-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-warning-light-5);--el-button-hover-bg-color:var(--el-color-warning-light-3);--el-button-hover-border-color:var(--el-color-warning-light-3);--el-button-active-bg-color:var(--el-color-warning-dark-2);--el-button-active-border-color:var(--el-color-warning-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-warning-light-5);--el-button-disabled-border-color:var(--el-color-warning-light-5)}.el-button--warning.is-link,.el-button--warning.is-plain,.el-button--warning.is-text{--el-button-text-color:var(--el-color-warning);--el-button-bg-color:var(--el-color-warning-light-9);--el-button-border-color:var(--el-color-warning-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-warning);--el-button-hover-border-color:var(--el-color-warning);--el-button-active-text-color:var(--el-color-white)}.el-button--warning.is-link.is-disabled,.el-button--warning.is-link.is-disabled:active,.el-button--warning.is-link.is-disabled:focus,.el-button--warning.is-link.is-disabled:hover,.el-button--warning.is-plain.is-disabled,.el-button--warning.is-plain.is-disabled:active,.el-button--warning.is-plain.is-disabled:focus,.el-button--warning.is-plain.is-disabled:hover,.el-button--warning.is-text.is-disabled,.el-button--warning.is-text.is-disabled:active,.el-button--warning.is-text.is-disabled:focus,.el-button--warning.is-text.is-disabled:hover{color:var(--el-color-warning-light-5);background-color:var(--el-color-warning-light-9);border-color:var(--el-color-warning-light-8)}.el-button--danger{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-danger);--el-button-border-color:var(--el-color-danger);--el-button-outline-color:var(--el-color-danger-light-5);--el-button-active-color:var(--el-color-danger-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-danger-light-5);--el-button-hover-bg-color:var(--el-color-danger-light-3);--el-button-hover-border-color:var(--el-color-danger-light-3);--el-button-active-bg-color:var(--el-color-danger-dark-2);--el-button-active-border-color:var(--el-color-danger-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-danger-light-5);--el-button-disabled-border-color:var(--el-color-danger-light-5)}.el-button--danger.is-link,.el-button--danger.is-plain,.el-button--danger.is-text{--el-button-text-color:var(--el-color-danger);--el-button-bg-color:var(--el-color-danger-light-9);--el-button-border-color:var(--el-color-danger-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-danger);--el-button-hover-border-color:var(--el-color-danger);--el-button-active-text-color:var(--el-color-white)}.el-button--danger.is-link.is-disabled,.el-button--danger.is-link.is-disabled:active,.el-button--danger.is-link.is-disabled:focus,.el-button--danger.is-link.is-disabled:hover,.el-button--danger.is-plain.is-disabled,.el-button--danger.is-plain.is-disabled:active,.el-button--danger.is-plain.is-disabled:focus,.el-button--danger.is-plain.is-disabled:hover,.el-button--danger.is-text.is-disabled,.el-button--danger.is-text.is-disabled:active,.el-button--danger.is-text.is-disabled:focus,.el-button--danger.is-text.is-disabled:hover{color:var(--el-color-danger-light-5);background-color:var(--el-color-danger-light-9);border-color:var(--el-color-danger-light-8)}.el-button--info{--el-button-text-color:var(--el-color-white);--el-button-bg-color:var(--el-color-info);--el-button-border-color:var(--el-color-info);--el-button-outline-color:var(--el-color-info-light-5);--el-button-active-color:var(--el-color-info-dark-2);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-link-text-color:var(--el-color-info-light-5);--el-button-hover-bg-color:var(--el-color-info-light-3);--el-button-hover-border-color:var(--el-color-info-light-3);--el-button-active-bg-color:var(--el-color-info-dark-2);--el-button-active-border-color:var(--el-color-info-dark-2);--el-button-disabled-text-color:var(--el-color-white);--el-button-disabled-bg-color:var(--el-color-info-light-5);--el-button-disabled-border-color:var(--el-color-info-light-5)}.el-button--info.is-link,.el-button--info.is-plain,.el-button--info.is-text{--el-button-text-color:var(--el-color-info);--el-button-bg-color:var(--el-color-info-light-9);--el-button-border-color:var(--el-color-info-light-5);--el-button-hover-text-color:var(--el-color-white);--el-button-hover-bg-color:var(--el-color-info);--el-button-hover-border-color:var(--el-color-info);--el-button-active-text-color:var(--el-color-white)}.el-button--info.is-link.is-disabled,.el-button--info.is-link.is-disabled:active,.el-button--info.is-link.is-disabled:focus,.el-button--info.is-link.is-disabled:hover,.el-button--info.is-plain.is-disabled,.el-button--info.is-plain.is-disabled:active,.el-button--info.is-plain.is-disabled:focus,.el-button--info.is-plain.is-disabled:hover,.el-button--info.is-text.is-disabled,.el-button--info.is-text.is-disabled:active,.el-button--info.is-text.is-disabled:focus,.el-button--info.is-text.is-disabled:hover{color:var(--el-color-info-light-5);background-color:var(--el-color-info-light-9);border-color:var(--el-color-info-light-8)}.el-button--large{--el-button-size:40px;height:var(--el-button-size);padding:12px 19px;font-size:var(--el-font-size-base);border-radius:var(--el-border-radius-base)}.el-button--large [class*=el-icon]+span{margin-left:8px}.el-button--large.is-round{padding:12px 19px}.el-button--large.is-circle{width:var(--el-button-size);padding:12px}.el-button--small{--el-button-size:24px;height:var(--el-button-size);padding:5px 11px;font-size:12px;border-radius:calc(var(--el-border-radius-base) - 1px)}.el-button--small [class*=el-icon]+span{margin-left:4px}.el-button--small.is-round{padding:5px 11px}.el-button--small.is-circle{width:var(--el-button-size);padding:5px}.el-calendar{--el-calendar-border:var(--el-table-border,1px solid var(--el-border-color-lighter));--el-calendar-header-border-bottom:var(--el-calendar-border);--el-calendar-selected-bg-color:var(--el-color-primary-light-9);--el-calendar-cell-width:85px;background-color:var(--el-fill-color-blank)}.el-calendar__header{display:flex;justify-content:space-between;padding:12px 20px;border-bottom:var(--el-calendar-header-border-bottom)}.el-calendar__title{color:var(--el-text-color);align-self:center}.el-calendar__body{padding:12px 20px 35px}.el-calendar-table{table-layout:fixed;width:100%}.el-calendar-table thead th{padding:12px 0;color:var(--el-text-color-regular);font-weight:400}.el-calendar-table:not(.is-range) td.next,.el-calendar-table:not(.is-range) td.prev{color:var(--el-text-color-placeholder)}.el-calendar-table td{border-bottom:var(--el-calendar-border);border-right:var(--el-calendar-border);vertical-align:top;transition:background-color var(--el-transition-duration-fast) ease}.el-calendar-table td.is-selected{background-color:var(--el-calendar-selected-bg-color)}.el-calendar-table td.is-today{color:var(--el-color-primary)}.el-calendar-table tr:first-child td{border-top:var(--el-calendar-border)}.el-calendar-table tr td:first-child{border-left:var(--el-calendar-border)}.el-calendar-table tr.el-calendar-table__row--hide-border td{border-top:none}.el-calendar-table .el-calendar-day{box-sizing:border-box;padding:8px;height:var(--el-calendar-cell-width)}.el-calendar-table .el-calendar-day:hover{cursor:pointer;background-color:var(--el-calendar-selected-bg-color)}.el-card{--el-card-border-color:var(--el-border-color-light);--el-card-border-radius:4px;--el-card-padding:20px;--el-card-bg-color:var(--el-fill-color-blank);border-radius:var(--el-card-border-radius);border:1px solid var(--el-card-border-color);background-color:var(--el-card-bg-color);overflow:hidden;color:var(--el-text-color-primary);transition:var(--el-transition-duration)}.el-card.is-always-shadow,.el-card.is-hover-shadow:focus,.el-card.is-hover-shadow:hover{box-shadow:var(--el-box-shadow-light)}.el-card__header{padding:calc(var(--el-card-padding) - 2px) var(--el-card-padding);border-bottom:1px solid var(--el-card-border-color);box-sizing:border-box}.el-card__body{padding:var(--el-card-padding)}.el-card__footer{padding:calc(var(--el-card-padding) - 2px) var(--el-card-padding);border-top:1px solid var(--el-card-border-color);box-sizing:border-box}.el-carousel__item{position:absolute;top:0;left:0;width:100%;height:100%;display:inline-block;overflow:hidden}.el-carousel__item,.el-carousel__item.is-active{z-index:calc(var(--el-index-normal) - 1)}.el-carousel__item--card,.el-carousel__item.is-animating{transition:transform .4s ease-in-out}.el-carousel__item--card{width:50%}.el-carousel__item--card.is-in-stage{cursor:pointer;z-index:var(--el-index-normal)}.el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask,.el-carousel__item--card.is-in-stage:hover .el-carousel__mask{opacity:.12}.el-carousel__item--card.is-active{z-index:calc(var(--el-index-normal) + 1)}.el-carousel__item--card-vertical{width:100%;height:50%}.el-carousel__mask{position:absolute;width:100%;height:100%;top:0;left:0;background-color:var(--el-color-white);opacity:.24;transition:var(--el-transition-duration-fast)}.el-carousel{--el-carousel-arrow-font-size:12px;--el-carousel-arrow-size:36px;--el-carousel-arrow-background:rgba(31,45,61,.11);--el-carousel-arrow-hover-background:rgba(31,45,61,.23);--el-carousel-indicator-width:30px;--el-carousel-indicator-height:2px;--el-carousel-indicator-padding-horizontal:4px;--el-carousel-indicator-padding-vertical:12px;--el-carousel-indicator-out-color:var(--el-border-color-hover);position:relative}.el-carousel--horizontal,.el-carousel--vertical{overflow:hidden}.el-carousel__container{position:relative;height:300px}.el-carousel__arrow{border:none;outline:0;padding:0;margin:0;height:var(--el-carousel-arrow-size);width:var(--el-carousel-arrow-size);cursor:pointer;transition:var(--el-transition-duration);border-radius:50%;background-color:var(--el-carousel-arrow-background);color:#fff;position:absolute;top:50%;z-index:10;transform:translateY(-50%);text-align:center;font-size:var(--el-carousel-arrow-font-size);display:inline-flex;justify-content:center;align-items:center}.el-carousel__arrow--left{left:16px}.el-carousel__arrow--right{right:16px}.el-carousel__arrow:hover{background-color:var(--el-carousel-arrow-hover-background)}.el-carousel__arrow i{cursor:pointer}.el-carousel__indicators{position:absolute;list-style:none;margin:0;padding:0;z-index:calc(var(--el-index-normal) + 1)}.el-carousel__indicators--horizontal{bottom:0;left:50%;transform:translateX(-50%)}.el-carousel__indicators--vertical{right:0;top:50%;transform:translateY(-50%)}.el-carousel__indicators--outside{bottom:calc(var(--el-carousel-indicator-height) + var(--el-carousel-indicator-padding-vertical)*2);text-align:center;position:static;transform:none}.el-carousel__indicators--outside .el-carousel__indicator:hover button{opacity:.64}.el-carousel__indicators--outside button{background-color:var(--el-carousel-indicator-out-color);opacity:.24}.el-carousel__indicators--right{right:0}.el-carousel__indicators--labels{left:0;right:0;transform:none;text-align:center}.el-carousel__indicators--labels .el-carousel__button{height:auto;width:auto;padding:2px 18px;font-size:12px;color:#000}.el-carousel__indicators--labels .el-carousel__indicator{padding:6px 4px}.el-carousel__indicator{background-color:transparent;cursor:pointer}.el-carousel__indicator:hover button{opacity:.72}.el-carousel__indicator--horizontal{display:inline-block;padding:var(--el-carousel-indicator-padding-vertical) var(--el-carousel-indicator-padding-horizontal)}.el-carousel__indicator--vertical{padding:var(--el-carousel-indicator-padding-horizontal) var(--el-carousel-indicator-padding-vertical)}.el-carousel__indicator--vertical .el-carousel__button{width:var(--el-carousel-indicator-height);height:calc(var(--el-carousel-indicator-width)/2)}.el-carousel__indicator.is-active button{opacity:1}.el-carousel__button{display:block;opacity:.48;width:var(--el-carousel-indicator-width);height:var(--el-carousel-indicator-height);background-color:#fff;border:none;outline:0;padding:0;margin:0;cursor:pointer;transition:var(--el-transition-duration)}.carousel-arrow-left-enter-from,.carousel-arrow-left-leave-active{transform:translateY(-50%) translateX(-10px);opacity:0}.carousel-arrow-right-enter-from,.carousel-arrow-right-leave-active{transform:translateY(-50%) translateX(10px);opacity:0}.el-cascader-panel{--el-cascader-menu-text-color:var(--el-text-color-regular);--el-cascader-menu-selected-text-color:var(--el-color-primary);--el-cascader-menu-fill:var(--el-bg-color-overlay);--el-cascader-menu-font-size:var(--el-font-size-base);--el-cascader-menu-radius:var(--el-border-radius-base);--el-cascader-menu-border:solid 1px var(--el-border-color-light);--el-cascader-menu-shadow:var(--el-box-shadow-light);--el-cascader-node-background-hover:var(--el-fill-color-light);--el-cascader-node-color-disabled:var(--el-text-color-placeholder);--el-cascader-color-empty:var(--el-text-color-placeholder);--el-cascader-tag-background:var(--el-fill-color);display:flex;border-radius:var(--el-cascader-menu-radius);font-size:var(--el-cascader-menu-font-size)}.el-cascader-panel.is-bordered{border:var(--el-cascader-menu-border);border-radius:var(--el-cascader-menu-radius)}.el-cascader-menu{min-width:180px;box-sizing:border-box;color:var(--el-cascader-menu-text-color);border-right:var(--el-cascader-menu-border)}.el-cascader-menu:last-child{border-right:none}.el-cascader-menu:last-child .el-cascader-node{padding-right:20px}.el-cascader-menu__wrap.el-scrollbar__wrap{height:204px}.el-cascader-menu__list{position:relative;min-height:100%;margin:0;padding:6px 0;list-style:none;box-sizing:border-box}.el-cascader-menu__hover-zone{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.el-cascader-menu__empty-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;color:var(--el-cascader-color-empty)}.el-cascader-menu__empty-text .is-loading{margin-right:2px}.el-cascader-node{position:relative;display:flex;align-items:center;padding:0 30px 0 20px;height:34px;line-height:34px;outline:0}.el-cascader-node.is-selectable.in-active-path{color:var(--el-cascader-menu-text-color)}.el-cascader-node.in-active-path,.el-cascader-node.is-active,.el-cascader-node.is-selectable.in-checked-path{color:var(--el-cascader-menu-selected-text-color);font-weight:700}.el-cascader-node:not(.is-disabled){cursor:pointer}.el-cascader-node:not(.is-disabled):focus,.el-cascader-node:not(.is-disabled):hover{background:var(--el-cascader-node-background-hover)}.el-cascader-node.is-disabled{color:var(--el-cascader-node-color-disabled);cursor:not-allowed}.el-cascader-node__prefix{position:absolute;left:10px}.el-cascader-node__postfix{position:absolute;right:10px}.el-cascader-node__label{flex:1;text-align:left;padding:0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-cascader-node>.el-checkbox,.el-cascader-node>.el-radio{margin-right:0}.el-cascader-node>.el-radio .el-radio__label{padding-left:0}.el-cascader{--el-cascader-menu-text-color:var(--el-text-color-regular);--el-cascader-menu-selected-text-color:var(--el-color-primary);--el-cascader-menu-fill:var(--el-bg-color-overlay);--el-cascader-menu-font-size:var(--el-font-size-base);--el-cascader-menu-radius:var(--el-border-radius-base);--el-cascader-menu-border:solid 1px var(--el-border-color-light);--el-cascader-menu-shadow:var(--el-box-shadow-light);--el-cascader-node-background-hover:var(--el-fill-color-light);--el-cascader-node-color-disabled:var(--el-text-color-placeholder);--el-cascader-color-empty:var(--el-text-color-placeholder);--el-cascader-tag-background:var(--el-fill-color);display:inline-block;vertical-align:middle;position:relative;font-size:var(--el-font-size-base);line-height:32px;outline:0}.el-cascader:not(.is-disabled):hover .el-input__wrapper{cursor:pointer;box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-cascader .el-input{display:flex;cursor:pointer}.el-cascader .el-input .el-input__inner{text-overflow:ellipsis;cursor:pointer}.el-cascader .el-input .el-input__suffix-inner .el-icon{height:calc(100% - 2px)}.el-cascader .el-input .el-input__suffix-inner .el-icon svg{vertical-align:middle}.el-cascader .el-input .icon-arrow-down{transition:transform var(--el-transition-duration);font-size:14px}.el-cascader .el-input .icon-arrow-down.is-reverse{transform:rotate(180deg)}.el-cascader .el-input .icon-circle-close:hover{color:var(--el-input-clear-hover-color,var(--el-text-color-secondary))}.el-cascader .el-input.is-focus .el-input__wrapper{box-shadow:0 0 0 1px var(--el-input-focus-border-color,var(--el-color-primary)) inset}.el-cascader--large{font-size:14px;line-height:40px}.el-cascader--small{font-size:12px;line-height:24px}.el-cascader.is-disabled .el-cascader__label{z-index:calc(var(--el-index-normal) + 1);color:var(--el-disabled-text-color)}.el-cascader__dropdown{--el-cascader-menu-text-color:var(--el-text-color-regular);--el-cascader-menu-selected-text-color:var(--el-color-primary);--el-cascader-menu-fill:var(--el-bg-color-overlay);--el-cascader-menu-font-size:var(--el-font-size-base);--el-cascader-menu-radius:var(--el-border-radius-base);--el-cascader-menu-border:solid 1px var(--el-border-color-light);--el-cascader-menu-shadow:var(--el-box-shadow-light);--el-cascader-node-background-hover:var(--el-fill-color-light);--el-cascader-node-color-disabled:var(--el-text-color-placeholder);--el-cascader-color-empty:var(--el-text-color-placeholder);--el-cascader-tag-background:var(--el-fill-color);font-size:var(--el-cascader-menu-font-size);border-radius:var(--el-cascader-menu-radius)}.el-cascader__dropdown.el-popper{background:var(--el-cascader-menu-fill)}.el-cascader__dropdown.el-popper,.el-cascader__dropdown.el-popper .el-popper__arrow:before{border:var(--el-cascader-menu-border)}.el-cascader__dropdown.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent;border-left-color:transparent}.el-cascader__dropdown.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent;border-right-color:transparent}.el-cascader__dropdown.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent;border-bottom-color:transparent}.el-cascader__dropdown.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent;border-top-color:transparent}.el-cascader__dropdown.el-popper{box-shadow:var(--el-cascader-menu-shadow)}.el-cascader__tags{position:absolute;left:0;right:30px;top:50%;transform:translateY(-50%);display:flex;flex-wrap:wrap;line-height:normal;text-align:left;box-sizing:border-box}.el-cascader__tags .el-tag{display:inline-flex;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:var(--el-cascader-tag-background)}.el-cascader__tags .el-tag:not(.is-hit){border-color:transparent}.el-cascader__tags .el-tag>span{flex:1;overflow:hidden;text-overflow:ellipsis}.el-cascader__tags .el-tag .el-icon-close{flex:none;background-color:var(--el-text-color-placeholder);color:var(--el-color-white)}.el-cascader__tags .el-tag .el-icon-close:hover{background-color:var(--el-text-color-secondary)}.el-cascader__collapse-tags{white-space:normal;z-index:var(--el-index-normal)}.el-cascader__collapse-tags .el-tag{display:inline-flex;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:var(--el-fill-color)}.el-cascader__collapse-tags .el-tag:not(.is-hit){border-color:transparent}.el-cascader__collapse-tags .el-tag>span{flex:1;overflow:hidden;text-overflow:ellipsis}.el-cascader__collapse-tags .el-tag .el-icon-close{flex:none;background-color:var(--el-text-color-placeholder);color:var(--el-color-white)}.el-cascader__collapse-tags .el-tag .el-icon-close:hover{background-color:var(--el-text-color-secondary)}.el-cascader__suggestion-panel{border-radius:var(--el-cascader-menu-radius)}.el-cascader__suggestion-list{max-height:204px;margin:0;padding:6px 0;font-size:var(--el-font-size-base);color:var(--el-cascader-menu-text-color);text-align:center}.el-cascader__suggestion-item{display:flex;justify-content:space-between;align-items:center;height:34px;padding:0 15px;text-align:left;outline:0;cursor:pointer}.el-cascader__suggestion-item:focus,.el-cascader__suggestion-item:hover{background:var(--el-cascader-node-background-hover)}.el-cascader__suggestion-item.is-checked{color:var(--el-cascader-menu-selected-text-color);font-weight:700}.el-cascader__suggestion-item>span{margin-right:10px}.el-cascader__empty-text{margin:10px 0;color:var(--el-cascader-color-empty)}.el-cascader__search-input{flex:1;height:24px;min-width:60px;margin:2px 0 2px 11px;padding:0;color:var(--el-cascader-menu-text-color);border:none;outline:0;box-sizing:border-box;background:0 0}.el-cascader__search-input::placeholder{color:transparent}.el-check-tag{background-color:var(--el-color-info-light-9);border-radius:var(--el-border-radius-base);color:var(--el-color-info);cursor:pointer;display:inline-block;font-size:var(--el-font-size-base);line-height:var(--el-font-size-base);padding:7px 15px;transition:var(--el-transition-all);font-weight:700}.el-check-tag:hover{background-color:var(--el-color-info-light-7)}.el-check-tag.is-checked.el-check-tag--primary{background-color:var(--el-color-primary-light-8);color:var(--el-color-primary)}.el-check-tag.is-checked.el-check-tag--primary:hover{background-color:var(--el-color-primary-light-7)}.el-check-tag.is-checked.el-check-tag--success{background-color:var(--el-color-success-light-8);color:var(--el-color-success)}.el-check-tag.is-checked.el-check-tag--success:hover{background-color:var(--el-color-success-light-7)}.el-check-tag.is-checked.el-check-tag--warning{background-color:var(--el-color-warning-light-8);color:var(--el-color-warning)}.el-check-tag.is-checked.el-check-tag--warning:hover{background-color:var(--el-color-warning-light-7)}.el-check-tag.is-checked.el-check-tag--danger{background-color:var(--el-color-danger-light-8);color:var(--el-color-danger)}.el-check-tag.is-checked.el-check-tag--danger:hover{background-color:var(--el-color-danger-light-7)}.el-check-tag.is-checked.el-check-tag--error{background-color:var(--el-color-error-light-8);color:var(--el-color-error)}.el-check-tag.is-checked.el-check-tag--error:hover{background-color:var(--el-color-error-light-7)}.el-check-tag.is-checked.el-check-tag--info{background-color:var(--el-color-info-light-8);color:var(--el-color-info)}.el-check-tag.is-checked.el-check-tag--info:hover{background-color:var(--el-color-info-light-7)}.el-checkbox-button{--el-checkbox-button-checked-bg-color:var(--el-color-primary);--el-checkbox-button-checked-text-color:var(--el-color-white);--el-checkbox-button-checked-border-color:var(--el-color-primary);position:relative;display:inline-block}.el-checkbox-button__inner{display:inline-block;line-height:1;font-weight:var(--el-checkbox-font-weight);white-space:nowrap;vertical-align:middle;cursor:pointer;background:var(--el-button-bg-color,var(--el-fill-color-blank));border:var(--el-border);border-left-color:transparent;color:var(--el-button-text-color,var(--el-text-color-regular));-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;position:relative;transition:var(--el-transition-all);-webkit-user-select:none;user-select:none;padding:8px 15px;font-size:var(--el-font-size-base);border-radius:0}.el-checkbox-button__inner.is-round{padding:8px 15px}.el-checkbox-button__inner:hover{color:var(--el-color-primary)}.el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;z-index:-1}.el-checkbox-button.is-checked .el-checkbox-button__inner{color:var(--el-checkbox-button-checked-text-color);background-color:var(--el-checkbox-button-checked-bg-color);border-color:var(--el-checkbox-button-checked-border-color);box-shadow:-1px 0 0 0 var(--el-color-primary-light-7)}.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner{border-left-color:var(--el-checkbox-button-checked-border-color)}.el-checkbox-button.is-disabled .el-checkbox-button__inner{color:var(--el-disabled-text-color);cursor:not-allowed;background-image:none;background-color:var(--el-button-disabled-bg-color,var(--el-fill-color-blank));border-color:var(--el-button-disabled-border-color,var(--el-border-color-light));box-shadow:none}.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner{border-left-color:var(--el-button-disabled-border-color,var(--el-border-color-light))}.el-checkbox-button:first-child .el-checkbox-button__inner{border-left:var(--el-border);border-top-left-radius:var(--el-border-radius-base);border-bottom-left-radius:var(--el-border-radius-base);box-shadow:none!important}.el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:var(--el-checkbox-button-checked-border-color)}.el-checkbox-button:last-child .el-checkbox-button__inner{border-top-right-radius:var(--el-border-radius-base);border-bottom-right-radius:var(--el-border-radius-base)}.el-checkbox-button--large .el-checkbox-button__inner{padding:12px 19px;font-size:var(--el-font-size-base);border-radius:0}.el-checkbox-button--large .el-checkbox-button__inner.is-round{padding:12px 19px}.el-checkbox-button--small .el-checkbox-button__inner{padding:5px 11px;font-size:12px;border-radius:0}.el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:5px 11px}.el-checkbox-group{font-size:0;line-height:0}.el-checkbox{--el-checkbox-font-size:14px;--el-checkbox-font-weight:var(--el-font-weight-primary);--el-checkbox-text-color:var(--el-text-color-regular);--el-checkbox-input-height:14px;--el-checkbox-input-width:14px;--el-checkbox-border-radius:var(--el-border-radius-small);--el-checkbox-bg-color:var(--el-fill-color-blank);--el-checkbox-input-border:var(--el-border);--el-checkbox-disabled-border-color:var(--el-border-color);--el-checkbox-disabled-input-fill:var(--el-fill-color-light);--el-checkbox-disabled-icon-color:var(--el-text-color-placeholder);--el-checkbox-disabled-checked-input-fill:var(--el-border-color-extra-light);--el-checkbox-disabled-checked-input-border-color:var(--el-border-color);--el-checkbox-disabled-checked-icon-color:var(--el-text-color-placeholder);--el-checkbox-checked-text-color:var(--el-color-primary);--el-checkbox-checked-input-border-color:var(--el-color-primary);--el-checkbox-checked-bg-color:var(--el-color-primary);--el-checkbox-checked-icon-color:var(--el-color-white);--el-checkbox-input-border-color-hover:var(--el-color-primary);color:var(--el-checkbox-text-color);font-weight:var(--el-checkbox-font-weight);font-size:var(--el-font-size-base);position:relative;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;-webkit-user-select:none;user-select:none;margin-right:30px;height:var(--el-checkbox-height,32px)}.el-checkbox.is-disabled{cursor:not-allowed}.el-checkbox.is-bordered{padding:0 15px 0 9px;border-radius:var(--el-border-radius-base);border:var(--el-border);box-sizing:border-box}.el-checkbox.is-bordered.is-checked{border-color:var(--el-color-primary)}.el-checkbox.is-bordered.is-disabled{border-color:var(--el-border-color-lighter)}.el-checkbox.is-bordered.el-checkbox--large{padding:0 19px 0 11px;border-radius:var(--el-border-radius-base)}.el-checkbox.is-bordered.el-checkbox--large .el-checkbox__label{font-size:var(--el-font-size-base)}.el-checkbox.is-bordered.el-checkbox--large .el-checkbox__inner{height:14px;width:14px}.el-checkbox.is-bordered.el-checkbox--small{padding:0 11px 0 7px;border-radius:calc(var(--el-border-radius-base) - 1px)}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{font-size:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner:after{height:6px;width:2px}.el-checkbox input:focus-visible+.el-checkbox__inner{outline:2px solid var(--el-checkbox-input-border-color-hover);outline-offset:1px;border-radius:var(--el-checkbox-border-radius)}.el-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-flex;position:relative}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:var(--el-checkbox-disabled-input-fill);border-color:var(--el-checkbox-disabled-border-color);cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner:after{cursor:not-allowed;border-color:var(--el-checkbox-disabled-icon-color)}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:var(--el-checkbox-disabled-checked-input-fill);border-color:var(--el-checkbox-disabled-checked-input-border-color)}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after{border-color:var(--el-checkbox-disabled-checked-icon-color)}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:var(--el-checkbox-disabled-checked-input-fill);border-color:var(--el-checkbox-disabled-checked-input-border-color)}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before{background-color:var(--el-checkbox-disabled-checked-icon-color);border-color:var(--el-checkbox-disabled-checked-icon-color)}.el-checkbox__input.is-disabled+span.el-checkbox__label{color:var(--el-disabled-text-color);cursor:not-allowed}.el-checkbox__input.is-checked .el-checkbox__inner{background-color:var(--el-checkbox-checked-bg-color);border-color:var(--el-checkbox-checked-input-border-color)}.el-checkbox__input.is-checked .el-checkbox__inner:after{transform:rotate(45deg) scaleY(1);border-color:var(--el-checkbox-checked-icon-color)}.el-checkbox__input.is-checked+.el-checkbox__label{color:var(--el-checkbox-checked-text-color)}.el-checkbox__input.is-focus:not(.is-checked) .el-checkbox__original:not(:focus-visible){border-color:var(--el-checkbox-input-border-color-hover)}.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:var(--el-checkbox-checked-bg-color);border-color:var(--el-checkbox-checked-input-border-color)}.el-checkbox__input.is-indeterminate .el-checkbox__inner:before{content:"";position:absolute;display:block;background-color:var(--el-checkbox-checked-icon-color);height:2px;transform:scale(.5);left:0;right:0;top:5px}.el-checkbox__input.is-indeterminate .el-checkbox__inner:after{display:none}.el-checkbox__inner{display:inline-block;position:relative;border:var(--el-checkbox-input-border);border-radius:var(--el-checkbox-border-radius);box-sizing:border-box;width:var(--el-checkbox-input-width);height:var(--el-checkbox-input-height);background-color:var(--el-checkbox-bg-color);z-index:var(--el-index-normal);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46),outline .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:var(--el-checkbox-input-border-color-hover)}.el-checkbox__inner:after{box-sizing:content-box;content:"";border:1px solid transparent;border-left:0;border-top:0;height:7px;left:4px;position:absolute;top:1px;transform:rotate(45deg) scaleY(0);width:3px;transition:transform .15s ease-in 50ms;transform-origin:center}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.el-checkbox__label{display:inline-block;padding-left:8px;line-height:1;font-size:var(--el-checkbox-font-size)}.el-checkbox.el-checkbox--large{height:40px}.el-checkbox.el-checkbox--large .el-checkbox__label{font-size:14px}.el-checkbox.el-checkbox--large .el-checkbox__inner{width:14px;height:14px}.el-checkbox.el-checkbox--small{height:24px}.el-checkbox.el-checkbox--small .el-checkbox__label{font-size:12px}.el-checkbox.el-checkbox--small .el-checkbox__inner{width:12px;height:12px}.el-checkbox.el-checkbox--small .el-checkbox__input.is-indeterminate .el-checkbox__inner:before{top:4px}.el-checkbox.el-checkbox--small .el-checkbox__inner:after{width:2px;height:6px}.el-checkbox:last-of-type{margin-right:0}[class*=el-col-]{box-sizing:border-box}[class*=el-col-].is-guttered{display:block;min-height:1px}.el-col-0,.el-col-0.is-guttered{display:none}.el-col-0{max-width:0;flex:0 0 0%}.el-col-offset-0{margin-left:0}.el-col-pull-0{position:relative;right:0}.el-col-push-0{position:relative;left:0}.el-col-1{max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-offset-1{margin-left:4.1666666667%}.el-col-pull-1{position:relative;right:4.1666666667%}.el-col-push-1{position:relative;left:4.1666666667%}.el-col-2{max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-offset-2{margin-left:8.3333333333%}.el-col-pull-2{position:relative;right:8.3333333333%}.el-col-push-2{position:relative;left:8.3333333333%}.el-col-3{max-width:12.5%;flex:0 0 12.5%}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{position:relative;right:12.5%}.el-col-push-3{position:relative;left:12.5%}.el-col-4{max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-offset-4{margin-left:16.6666666667%}.el-col-pull-4{position:relative;right:16.6666666667%}.el-col-push-4{position:relative;left:16.6666666667%}.el-col-5{max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-offset-5{margin-left:20.8333333333%}.el-col-pull-5{position:relative;right:20.8333333333%}.el-col-push-5{position:relative;left:20.8333333333%}.el-col-6{max-width:25%;flex:0 0 25%}.el-col-offset-6{margin-left:25%}.el-col-pull-6{position:relative;right:25%}.el-col-push-6{position:relative;left:25%}.el-col-7{max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-offset-7{margin-left:29.1666666667%}.el-col-pull-7{position:relative;right:29.1666666667%}.el-col-push-7{position:relative;left:29.1666666667%}.el-col-8{max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-offset-8{margin-left:33.3333333333%}.el-col-pull-8{position:relative;right:33.3333333333%}.el-col-push-8{position:relative;left:33.3333333333%}.el-col-9{max-width:37.5%;flex:0 0 37.5%}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{position:relative;right:37.5%}.el-col-push-9{position:relative;left:37.5%}.el-col-10{max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-offset-10{margin-left:41.6666666667%}.el-col-pull-10{position:relative;right:41.6666666667%}.el-col-push-10{position:relative;left:41.6666666667%}.el-col-11{max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-offset-11{margin-left:45.8333333333%}.el-col-pull-11{position:relative;right:45.8333333333%}.el-col-push-11{position:relative;left:45.8333333333%}.el-col-12{max-width:50%;flex:0 0 50%}.el-col-offset-12{margin-left:50%}.el-col-pull-12{position:relative;right:50%}.el-col-push-12{position:relative;left:50%}.el-col-13{max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-offset-13{margin-left:54.1666666667%}.el-col-pull-13{position:relative;right:54.1666666667%}.el-col-push-13{position:relative;left:54.1666666667%}.el-col-14{max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-offset-14{margin-left:58.3333333333%}.el-col-pull-14{position:relative;right:58.3333333333%}.el-col-push-14{position:relative;left:58.3333333333%}.el-col-15{max-width:62.5%;flex:0 0 62.5%}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{position:relative;right:62.5%}.el-col-push-15{position:relative;left:62.5%}.el-col-16{max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-offset-16{margin-left:66.6666666667%}.el-col-pull-16{position:relative;right:66.6666666667%}.el-col-push-16{position:relative;left:66.6666666667%}.el-col-17{max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-offset-17{margin-left:70.8333333333%}.el-col-pull-17{position:relative;right:70.8333333333%}.el-col-push-17{position:relative;left:70.8333333333%}.el-col-18{max-width:75%;flex:0 0 75%}.el-col-offset-18{margin-left:75%}.el-col-pull-18{position:relative;right:75%}.el-col-push-18{position:relative;left:75%}.el-col-19{max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-offset-19{margin-left:79.1666666667%}.el-col-pull-19{position:relative;right:79.1666666667%}.el-col-push-19{position:relative;left:79.1666666667%}.el-col-20{max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-offset-20{margin-left:83.3333333333%}.el-col-pull-20{position:relative;right:83.3333333333%}.el-col-push-20{position:relative;left:83.3333333333%}.el-col-21{max-width:87.5%;flex:0 0 87.5%}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{position:relative;right:87.5%}.el-col-push-21{position:relative;left:87.5%}.el-col-22{max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-offset-22{margin-left:91.6666666667%}.el-col-pull-22{position:relative;right:91.6666666667%}.el-col-push-22{position:relative;left:91.6666666667%}.el-col-23{max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-offset-23{margin-left:95.8333333333%}.el-col-pull-23{position:relative;right:95.8333333333%}.el-col-push-23{position:relative;left:95.8333333333%}.el-col-24{max-width:100%;flex:0 0 100%}.el-col-offset-24{margin-left:100%}.el-col-pull-24{position:relative;right:100%}.el-col-push-24{position:relative;left:100%}@media only screen and (max-width:767px){.el-col-xs-0,.el-col-xs-0.is-guttered{display:none}.el-col-xs-0{max-width:0;flex:0 0 0%}.el-col-xs-offset-0{margin-left:0}.el-col-xs-pull-0{position:relative;right:0}.el-col-xs-push-0{position:relative;left:0}.el-col-xs-1{display:block;max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-xs-offset-1{margin-left:4.1666666667%}.el-col-xs-pull-1{position:relative;right:4.1666666667%}.el-col-xs-push-1{position:relative;left:4.1666666667%}.el-col-xs-2{display:block;max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-xs-offset-2{margin-left:8.3333333333%}.el-col-xs-pull-2{position:relative;right:8.3333333333%}.el-col-xs-push-2{position:relative;left:8.3333333333%}.el-col-xs-3{display:block;max-width:12.5%;flex:0 0 12.5%}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{position:relative;left:12.5%}.el-col-xs-4{display:block;max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-xs-offset-4{margin-left:16.6666666667%}.el-col-xs-pull-4{position:relative;right:16.6666666667%}.el-col-xs-push-4{position:relative;left:16.6666666667%}.el-col-xs-5{display:block;max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-xs-offset-5{margin-left:20.8333333333%}.el-col-xs-pull-5{position:relative;right:20.8333333333%}.el-col-xs-push-5{position:relative;left:20.8333333333%}.el-col-xs-6{display:block;max-width:25%;flex:0 0 25%}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{position:relative;left:25%}.el-col-xs-7{display:block;max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-xs-offset-7{margin-left:29.1666666667%}.el-col-xs-pull-7{position:relative;right:29.1666666667%}.el-col-xs-push-7{position:relative;left:29.1666666667%}.el-col-xs-8{display:block;max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-xs-offset-8{margin-left:33.3333333333%}.el-col-xs-pull-8{position:relative;right:33.3333333333%}.el-col-xs-push-8{position:relative;left:33.3333333333%}.el-col-xs-9{display:block;max-width:37.5%;flex:0 0 37.5%}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{position:relative;left:37.5%}.el-col-xs-10{display:block;max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-xs-offset-10{margin-left:41.6666666667%}.el-col-xs-pull-10{position:relative;right:41.6666666667%}.el-col-xs-push-10{position:relative;left:41.6666666667%}.el-col-xs-11{display:block;max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-xs-offset-11{margin-left:45.8333333333%}.el-col-xs-pull-11{position:relative;right:45.8333333333%}.el-col-xs-push-11{position:relative;left:45.8333333333%}.el-col-xs-12{display:block;max-width:50%;flex:0 0 50%}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{position:relative;left:50%}.el-col-xs-13{display:block;max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-xs-offset-13{margin-left:54.1666666667%}.el-col-xs-pull-13{position:relative;right:54.1666666667%}.el-col-xs-push-13{position:relative;left:54.1666666667%}.el-col-xs-14{display:block;max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-xs-offset-14{margin-left:58.3333333333%}.el-col-xs-pull-14{position:relative;right:58.3333333333%}.el-col-xs-push-14{position:relative;left:58.3333333333%}.el-col-xs-15{display:block;max-width:62.5%;flex:0 0 62.5%}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{position:relative;left:62.5%}.el-col-xs-16{display:block;max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-xs-offset-16{margin-left:66.6666666667%}.el-col-xs-pull-16{position:relative;right:66.6666666667%}.el-col-xs-push-16{position:relative;left:66.6666666667%}.el-col-xs-17{display:block;max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-xs-offset-17{margin-left:70.8333333333%}.el-col-xs-pull-17{position:relative;right:70.8333333333%}.el-col-xs-push-17{position:relative;left:70.8333333333%}.el-col-xs-18{display:block;max-width:75%;flex:0 0 75%}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{position:relative;left:75%}.el-col-xs-19{display:block;max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-xs-offset-19{margin-left:79.1666666667%}.el-col-xs-pull-19{position:relative;right:79.1666666667%}.el-col-xs-push-19{position:relative;left:79.1666666667%}.el-col-xs-20{display:block;max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-xs-offset-20{margin-left:83.3333333333%}.el-col-xs-pull-20{position:relative;right:83.3333333333%}.el-col-xs-push-20{position:relative;left:83.3333333333%}.el-col-xs-21{display:block;max-width:87.5%;flex:0 0 87.5%}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{position:relative;left:87.5%}.el-col-xs-22{display:block;max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-xs-offset-22{margin-left:91.6666666667%}.el-col-xs-pull-22{position:relative;right:91.6666666667%}.el-col-xs-push-22{position:relative;left:91.6666666667%}.el-col-xs-23{display:block;max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-xs-offset-23{margin-left:95.8333333333%}.el-col-xs-pull-23{position:relative;right:95.8333333333%}.el-col-xs-push-23{position:relative;left:95.8333333333%}.el-col-xs-24{display:block;max-width:100%;flex:0 0 100%}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{position:relative;left:100%}}@media only screen and (min-width:768px){.el-col-sm-0,.el-col-sm-0.is-guttered{display:none}.el-col-sm-0{max-width:0;flex:0 0 0%}.el-col-sm-offset-0{margin-left:0}.el-col-sm-pull-0{position:relative;right:0}.el-col-sm-push-0{position:relative;left:0}.el-col-sm-1{display:block;max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-sm-offset-1{margin-left:4.1666666667%}.el-col-sm-pull-1{position:relative;right:4.1666666667%}.el-col-sm-push-1{position:relative;left:4.1666666667%}.el-col-sm-2{display:block;max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-sm-offset-2{margin-left:8.3333333333%}.el-col-sm-pull-2{position:relative;right:8.3333333333%}.el-col-sm-push-2{position:relative;left:8.3333333333%}.el-col-sm-3{display:block;max-width:12.5%;flex:0 0 12.5%}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{position:relative;left:12.5%}.el-col-sm-4{display:block;max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-sm-offset-4{margin-left:16.6666666667%}.el-col-sm-pull-4{position:relative;right:16.6666666667%}.el-col-sm-push-4{position:relative;left:16.6666666667%}.el-col-sm-5{display:block;max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-sm-offset-5{margin-left:20.8333333333%}.el-col-sm-pull-5{position:relative;right:20.8333333333%}.el-col-sm-push-5{position:relative;left:20.8333333333%}.el-col-sm-6{display:block;max-width:25%;flex:0 0 25%}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{position:relative;left:25%}.el-col-sm-7{display:block;max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-sm-offset-7{margin-left:29.1666666667%}.el-col-sm-pull-7{position:relative;right:29.1666666667%}.el-col-sm-push-7{position:relative;left:29.1666666667%}.el-col-sm-8{display:block;max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-sm-offset-8{margin-left:33.3333333333%}.el-col-sm-pull-8{position:relative;right:33.3333333333%}.el-col-sm-push-8{position:relative;left:33.3333333333%}.el-col-sm-9{display:block;max-width:37.5%;flex:0 0 37.5%}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{position:relative;left:37.5%}.el-col-sm-10{display:block;max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-sm-offset-10{margin-left:41.6666666667%}.el-col-sm-pull-10{position:relative;right:41.6666666667%}.el-col-sm-push-10{position:relative;left:41.6666666667%}.el-col-sm-11{display:block;max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-sm-offset-11{margin-left:45.8333333333%}.el-col-sm-pull-11{position:relative;right:45.8333333333%}.el-col-sm-push-11{position:relative;left:45.8333333333%}.el-col-sm-12{display:block;max-width:50%;flex:0 0 50%}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{position:relative;left:50%}.el-col-sm-13{display:block;max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-sm-offset-13{margin-left:54.1666666667%}.el-col-sm-pull-13{position:relative;right:54.1666666667%}.el-col-sm-push-13{position:relative;left:54.1666666667%}.el-col-sm-14{display:block;max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-sm-offset-14{margin-left:58.3333333333%}.el-col-sm-pull-14{position:relative;right:58.3333333333%}.el-col-sm-push-14{position:relative;left:58.3333333333%}.el-col-sm-15{display:block;max-width:62.5%;flex:0 0 62.5%}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{position:relative;left:62.5%}.el-col-sm-16{display:block;max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-sm-offset-16{margin-left:66.6666666667%}.el-col-sm-pull-16{position:relative;right:66.6666666667%}.el-col-sm-push-16{position:relative;left:66.6666666667%}.el-col-sm-17{display:block;max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-sm-offset-17{margin-left:70.8333333333%}.el-col-sm-pull-17{position:relative;right:70.8333333333%}.el-col-sm-push-17{position:relative;left:70.8333333333%}.el-col-sm-18{display:block;max-width:75%;flex:0 0 75%}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{position:relative;left:75%}.el-col-sm-19{display:block;max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-sm-offset-19{margin-left:79.1666666667%}.el-col-sm-pull-19{position:relative;right:79.1666666667%}.el-col-sm-push-19{position:relative;left:79.1666666667%}.el-col-sm-20{display:block;max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-sm-offset-20{margin-left:83.3333333333%}.el-col-sm-pull-20{position:relative;right:83.3333333333%}.el-col-sm-push-20{position:relative;left:83.3333333333%}.el-col-sm-21{display:block;max-width:87.5%;flex:0 0 87.5%}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{position:relative;left:87.5%}.el-col-sm-22{display:block;max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-sm-offset-22{margin-left:91.6666666667%}.el-col-sm-pull-22{position:relative;right:91.6666666667%}.el-col-sm-push-22{position:relative;left:91.6666666667%}.el-col-sm-23{display:block;max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-sm-offset-23{margin-left:95.8333333333%}.el-col-sm-pull-23{position:relative;right:95.8333333333%}.el-col-sm-push-23{position:relative;left:95.8333333333%}.el-col-sm-24{display:block;max-width:100%;flex:0 0 100%}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{position:relative;left:100%}}@media only screen and (min-width:992px){.el-col-md-0,.el-col-md-0.is-guttered{display:none}.el-col-md-0{max-width:0;flex:0 0 0%}.el-col-md-offset-0{margin-left:0}.el-col-md-pull-0{position:relative;right:0}.el-col-md-push-0{position:relative;left:0}.el-col-md-1{display:block;max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-md-offset-1{margin-left:4.1666666667%}.el-col-md-pull-1{position:relative;right:4.1666666667%}.el-col-md-push-1{position:relative;left:4.1666666667%}.el-col-md-2{display:block;max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-md-offset-2{margin-left:8.3333333333%}.el-col-md-pull-2{position:relative;right:8.3333333333%}.el-col-md-push-2{position:relative;left:8.3333333333%}.el-col-md-3{display:block;max-width:12.5%;flex:0 0 12.5%}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{position:relative;left:12.5%}.el-col-md-4{display:block;max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-md-offset-4{margin-left:16.6666666667%}.el-col-md-pull-4{position:relative;right:16.6666666667%}.el-col-md-push-4{position:relative;left:16.6666666667%}.el-col-md-5{display:block;max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-md-offset-5{margin-left:20.8333333333%}.el-col-md-pull-5{position:relative;right:20.8333333333%}.el-col-md-push-5{position:relative;left:20.8333333333%}.el-col-md-6{display:block;max-width:25%;flex:0 0 25%}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{position:relative;left:25%}.el-col-md-7{display:block;max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-md-offset-7{margin-left:29.1666666667%}.el-col-md-pull-7{position:relative;right:29.1666666667%}.el-col-md-push-7{position:relative;left:29.1666666667%}.el-col-md-8{display:block;max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-md-offset-8{margin-left:33.3333333333%}.el-col-md-pull-8{position:relative;right:33.3333333333%}.el-col-md-push-8{position:relative;left:33.3333333333%}.el-col-md-9{display:block;max-width:37.5%;flex:0 0 37.5%}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{position:relative;left:37.5%}.el-col-md-10{display:block;max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-md-offset-10{margin-left:41.6666666667%}.el-col-md-pull-10{position:relative;right:41.6666666667%}.el-col-md-push-10{position:relative;left:41.6666666667%}.el-col-md-11{display:block;max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-md-offset-11{margin-left:45.8333333333%}.el-col-md-pull-11{position:relative;right:45.8333333333%}.el-col-md-push-11{position:relative;left:45.8333333333%}.el-col-md-12{display:block;max-width:50%;flex:0 0 50%}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{position:relative;left:50%}.el-col-md-13{display:block;max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-md-offset-13{margin-left:54.1666666667%}.el-col-md-pull-13{position:relative;right:54.1666666667%}.el-col-md-push-13{position:relative;left:54.1666666667%}.el-col-md-14{display:block;max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-md-offset-14{margin-left:58.3333333333%}.el-col-md-pull-14{position:relative;right:58.3333333333%}.el-col-md-push-14{position:relative;left:58.3333333333%}.el-col-md-15{display:block;max-width:62.5%;flex:0 0 62.5%}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{position:relative;left:62.5%}.el-col-md-16{display:block;max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-md-offset-16{margin-left:66.6666666667%}.el-col-md-pull-16{position:relative;right:66.6666666667%}.el-col-md-push-16{position:relative;left:66.6666666667%}.el-col-md-17{display:block;max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-md-offset-17{margin-left:70.8333333333%}.el-col-md-pull-17{position:relative;right:70.8333333333%}.el-col-md-push-17{position:relative;left:70.8333333333%}.el-col-md-18{display:block;max-width:75%;flex:0 0 75%}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{position:relative;left:75%}.el-col-md-19{display:block;max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-md-offset-19{margin-left:79.1666666667%}.el-col-md-pull-19{position:relative;right:79.1666666667%}.el-col-md-push-19{position:relative;left:79.1666666667%}.el-col-md-20{display:block;max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-md-offset-20{margin-left:83.3333333333%}.el-col-md-pull-20{position:relative;right:83.3333333333%}.el-col-md-push-20{position:relative;left:83.3333333333%}.el-col-md-21{display:block;max-width:87.5%;flex:0 0 87.5%}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{position:relative;left:87.5%}.el-col-md-22{display:block;max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-md-offset-22{margin-left:91.6666666667%}.el-col-md-pull-22{position:relative;right:91.6666666667%}.el-col-md-push-22{position:relative;left:91.6666666667%}.el-col-md-23{display:block;max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-md-offset-23{margin-left:95.8333333333%}.el-col-md-pull-23{position:relative;right:95.8333333333%}.el-col-md-push-23{position:relative;left:95.8333333333%}.el-col-md-24{display:block;max-width:100%;flex:0 0 100%}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{position:relative;left:100%}}@media only screen and (min-width:1200px){.el-col-lg-0,.el-col-lg-0.is-guttered{display:none}.el-col-lg-0{max-width:0;flex:0 0 0%}.el-col-lg-offset-0{margin-left:0}.el-col-lg-pull-0{position:relative;right:0}.el-col-lg-push-0{position:relative;left:0}.el-col-lg-1{display:block;max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-lg-offset-1{margin-left:4.1666666667%}.el-col-lg-pull-1{position:relative;right:4.1666666667%}.el-col-lg-push-1{position:relative;left:4.1666666667%}.el-col-lg-2{display:block;max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-lg-offset-2{margin-left:8.3333333333%}.el-col-lg-pull-2{position:relative;right:8.3333333333%}.el-col-lg-push-2{position:relative;left:8.3333333333%}.el-col-lg-3{display:block;max-width:12.5%;flex:0 0 12.5%}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{position:relative;left:12.5%}.el-col-lg-4{display:block;max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-lg-offset-4{margin-left:16.6666666667%}.el-col-lg-pull-4{position:relative;right:16.6666666667%}.el-col-lg-push-4{position:relative;left:16.6666666667%}.el-col-lg-5{display:block;max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-lg-offset-5{margin-left:20.8333333333%}.el-col-lg-pull-5{position:relative;right:20.8333333333%}.el-col-lg-push-5{position:relative;left:20.8333333333%}.el-col-lg-6{display:block;max-width:25%;flex:0 0 25%}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{position:relative;left:25%}.el-col-lg-7{display:block;max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-lg-offset-7{margin-left:29.1666666667%}.el-col-lg-pull-7{position:relative;right:29.1666666667%}.el-col-lg-push-7{position:relative;left:29.1666666667%}.el-col-lg-8{display:block;max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-lg-offset-8{margin-left:33.3333333333%}.el-col-lg-pull-8{position:relative;right:33.3333333333%}.el-col-lg-push-8{position:relative;left:33.3333333333%}.el-col-lg-9{display:block;max-width:37.5%;flex:0 0 37.5%}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{position:relative;left:37.5%}.el-col-lg-10{display:block;max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-lg-offset-10{margin-left:41.6666666667%}.el-col-lg-pull-10{position:relative;right:41.6666666667%}.el-col-lg-push-10{position:relative;left:41.6666666667%}.el-col-lg-11{display:block;max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-lg-offset-11{margin-left:45.8333333333%}.el-col-lg-pull-11{position:relative;right:45.8333333333%}.el-col-lg-push-11{position:relative;left:45.8333333333%}.el-col-lg-12{display:block;max-width:50%;flex:0 0 50%}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{position:relative;left:50%}.el-col-lg-13{display:block;max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-lg-offset-13{margin-left:54.1666666667%}.el-col-lg-pull-13{position:relative;right:54.1666666667%}.el-col-lg-push-13{position:relative;left:54.1666666667%}.el-col-lg-14{display:block;max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-lg-offset-14{margin-left:58.3333333333%}.el-col-lg-pull-14{position:relative;right:58.3333333333%}.el-col-lg-push-14{position:relative;left:58.3333333333%}.el-col-lg-15{display:block;max-width:62.5%;flex:0 0 62.5%}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{position:relative;left:62.5%}.el-col-lg-16{display:block;max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-lg-offset-16{margin-left:66.6666666667%}.el-col-lg-pull-16{position:relative;right:66.6666666667%}.el-col-lg-push-16{position:relative;left:66.6666666667%}.el-col-lg-17{display:block;max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-lg-offset-17{margin-left:70.8333333333%}.el-col-lg-pull-17{position:relative;right:70.8333333333%}.el-col-lg-push-17{position:relative;left:70.8333333333%}.el-col-lg-18{display:block;max-width:75%;flex:0 0 75%}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{position:relative;left:75%}.el-col-lg-19{display:block;max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-lg-offset-19{margin-left:79.1666666667%}.el-col-lg-pull-19{position:relative;right:79.1666666667%}.el-col-lg-push-19{position:relative;left:79.1666666667%}.el-col-lg-20{display:block;max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-lg-offset-20{margin-left:83.3333333333%}.el-col-lg-pull-20{position:relative;right:83.3333333333%}.el-col-lg-push-20{position:relative;left:83.3333333333%}.el-col-lg-21{display:block;max-width:87.5%;flex:0 0 87.5%}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{position:relative;left:87.5%}.el-col-lg-22{display:block;max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-lg-offset-22{margin-left:91.6666666667%}.el-col-lg-pull-22{position:relative;right:91.6666666667%}.el-col-lg-push-22{position:relative;left:91.6666666667%}.el-col-lg-23{display:block;max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-lg-offset-23{margin-left:95.8333333333%}.el-col-lg-pull-23{position:relative;right:95.8333333333%}.el-col-lg-push-23{position:relative;left:95.8333333333%}.el-col-lg-24{display:block;max-width:100%;flex:0 0 100%}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{position:relative;left:100%}}@media only screen and (min-width:1920px){.el-col-xl-0,.el-col-xl-0.is-guttered{display:none}.el-col-xl-0{max-width:0;flex:0 0 0%}.el-col-xl-offset-0{margin-left:0}.el-col-xl-pull-0{position:relative;right:0}.el-col-xl-push-0{position:relative;left:0}.el-col-xl-1{display:block;max-width:4.1666666667%;flex:0 0 4.1666666667%}.el-col-xl-offset-1{margin-left:4.1666666667%}.el-col-xl-pull-1{position:relative;right:4.1666666667%}.el-col-xl-push-1{position:relative;left:4.1666666667%}.el-col-xl-2{display:block;max-width:8.3333333333%;flex:0 0 8.3333333333%}.el-col-xl-offset-2{margin-left:8.3333333333%}.el-col-xl-pull-2{position:relative;right:8.3333333333%}.el-col-xl-push-2{position:relative;left:8.3333333333%}.el-col-xl-3{display:block;max-width:12.5%;flex:0 0 12.5%}.el-col-xl-offset-3{margin-left:12.5%}.el-col-xl-pull-3{position:relative;right:12.5%}.el-col-xl-push-3{position:relative;left:12.5%}.el-col-xl-4{display:block;max-width:16.6666666667%;flex:0 0 16.6666666667%}.el-col-xl-offset-4{margin-left:16.6666666667%}.el-col-xl-pull-4{position:relative;right:16.6666666667%}.el-col-xl-push-4{position:relative;left:16.6666666667%}.el-col-xl-5{display:block;max-width:20.8333333333%;flex:0 0 20.8333333333%}.el-col-xl-offset-5{margin-left:20.8333333333%}.el-col-xl-pull-5{position:relative;right:20.8333333333%}.el-col-xl-push-5{position:relative;left:20.8333333333%}.el-col-xl-6{display:block;max-width:25%;flex:0 0 25%}.el-col-xl-offset-6{margin-left:25%}.el-col-xl-pull-6{position:relative;right:25%}.el-col-xl-push-6{position:relative;left:25%}.el-col-xl-7{display:block;max-width:29.1666666667%;flex:0 0 29.1666666667%}.el-col-xl-offset-7{margin-left:29.1666666667%}.el-col-xl-pull-7{position:relative;right:29.1666666667%}.el-col-xl-push-7{position:relative;left:29.1666666667%}.el-col-xl-8{display:block;max-width:33.3333333333%;flex:0 0 33.3333333333%}.el-col-xl-offset-8{margin-left:33.3333333333%}.el-col-xl-pull-8{position:relative;right:33.3333333333%}.el-col-xl-push-8{position:relative;left:33.3333333333%}.el-col-xl-9{display:block;max-width:37.5%;flex:0 0 37.5%}.el-col-xl-offset-9{margin-left:37.5%}.el-col-xl-pull-9{position:relative;right:37.5%}.el-col-xl-push-9{position:relative;left:37.5%}.el-col-xl-10{display:block;max-width:41.6666666667%;flex:0 0 41.6666666667%}.el-col-xl-offset-10{margin-left:41.6666666667%}.el-col-xl-pull-10{position:relative;right:41.6666666667%}.el-col-xl-push-10{position:relative;left:41.6666666667%}.el-col-xl-11{display:block;max-width:45.8333333333%;flex:0 0 45.8333333333%}.el-col-xl-offset-11{margin-left:45.8333333333%}.el-col-xl-pull-11{position:relative;right:45.8333333333%}.el-col-xl-push-11{position:relative;left:45.8333333333%}.el-col-xl-12{display:block;max-width:50%;flex:0 0 50%}.el-col-xl-offset-12{margin-left:50%}.el-col-xl-pull-12{position:relative;right:50%}.el-col-xl-push-12{position:relative;left:50%}.el-col-xl-13{display:block;max-width:54.1666666667%;flex:0 0 54.1666666667%}.el-col-xl-offset-13{margin-left:54.1666666667%}.el-col-xl-pull-13{position:relative;right:54.1666666667%}.el-col-xl-push-13{position:relative;left:54.1666666667%}.el-col-xl-14{display:block;max-width:58.3333333333%;flex:0 0 58.3333333333%}.el-col-xl-offset-14{margin-left:58.3333333333%}.el-col-xl-pull-14{position:relative;right:58.3333333333%}.el-col-xl-push-14{position:relative;left:58.3333333333%}.el-col-xl-15{display:block;max-width:62.5%;flex:0 0 62.5%}.el-col-xl-offset-15{margin-left:62.5%}.el-col-xl-pull-15{position:relative;right:62.5%}.el-col-xl-push-15{position:relative;left:62.5%}.el-col-xl-16{display:block;max-width:66.6666666667%;flex:0 0 66.6666666667%}.el-col-xl-offset-16{margin-left:66.6666666667%}.el-col-xl-pull-16{position:relative;right:66.6666666667%}.el-col-xl-push-16{position:relative;left:66.6666666667%}.el-col-xl-17{display:block;max-width:70.8333333333%;flex:0 0 70.8333333333%}.el-col-xl-offset-17{margin-left:70.8333333333%}.el-col-xl-pull-17{position:relative;right:70.8333333333%}.el-col-xl-push-17{position:relative;left:70.8333333333%}.el-col-xl-18{display:block;max-width:75%;flex:0 0 75%}.el-col-xl-offset-18{margin-left:75%}.el-col-xl-pull-18{position:relative;right:75%}.el-col-xl-push-18{position:relative;left:75%}.el-col-xl-19{display:block;max-width:79.1666666667%;flex:0 0 79.1666666667%}.el-col-xl-offset-19{margin-left:79.1666666667%}.el-col-xl-pull-19{position:relative;right:79.1666666667%}.el-col-xl-push-19{position:relative;left:79.1666666667%}.el-col-xl-20{display:block;max-width:83.3333333333%;flex:0 0 83.3333333333%}.el-col-xl-offset-20{margin-left:83.3333333333%}.el-col-xl-pull-20{position:relative;right:83.3333333333%}.el-col-xl-push-20{position:relative;left:83.3333333333%}.el-col-xl-21{display:block;max-width:87.5%;flex:0 0 87.5%}.el-col-xl-offset-21{margin-left:87.5%}.el-col-xl-pull-21{position:relative;right:87.5%}.el-col-xl-push-21{position:relative;left:87.5%}.el-col-xl-22{display:block;max-width:91.6666666667%;flex:0 0 91.6666666667%}.el-col-xl-offset-22{margin-left:91.6666666667%}.el-col-xl-pull-22{position:relative;right:91.6666666667%}.el-col-xl-push-22{position:relative;left:91.6666666667%}.el-col-xl-23{display:block;max-width:95.8333333333%;flex:0 0 95.8333333333%}.el-col-xl-offset-23{margin-left:95.8333333333%}.el-col-xl-pull-23{position:relative;right:95.8333333333%}.el-col-xl-push-23{position:relative;left:95.8333333333%}.el-col-xl-24{display:block;max-width:100%;flex:0 0 100%}.el-col-xl-offset-24{margin-left:100%}.el-col-xl-pull-24{position:relative;right:100%}.el-col-xl-push-24{position:relative;left:100%}}.el-collapse{--el-collapse-border-color:var(--el-border-color-lighter);--el-collapse-header-height:48px;--el-collapse-header-bg-color:var(--el-fill-color-blank);--el-collapse-header-text-color:var(--el-text-color-primary);--el-collapse-header-font-size:13px;--el-collapse-content-bg-color:var(--el-fill-color-blank);--el-collapse-content-font-size:13px;--el-collapse-content-text-color:var(--el-text-color-primary);border-top:1px solid var(--el-collapse-border-color);border-bottom:1px solid var(--el-collapse-border-color)}.el-collapse-item.is-disabled .el-collapse-item__header{color:var(--el-text-color-disabled);cursor:not-allowed}.el-collapse-item__header{width:100%;padding:0;border:none;display:flex;align-items:center;height:var(--el-collapse-header-height);line-height:var(--el-collapse-header-height);background-color:var(--el-collapse-header-bg-color);color:var(--el-collapse-header-text-color);cursor:pointer;border-bottom:1px solid var(--el-collapse-border-color);font-size:var(--el-collapse-header-font-size);font-weight:500;transition:border-bottom-color var(--el-transition-duration);outline:0}.el-collapse-item__arrow{margin:0 8px 0 auto;transition:transform var(--el-transition-duration);font-weight:300}.el-collapse-item__arrow.is-active{transform:rotate(90deg)}.el-collapse-item__header.focusing:focus:not(:hover){color:var(--el-color-primary)}.el-collapse-item__header.is-active{border-bottom-color:transparent}.el-collapse-item__wrap{will-change:height;background-color:var(--el-collapse-content-bg-color);overflow:hidden;box-sizing:border-box;border-bottom:1px solid var(--el-collapse-border-color)}.el-collapse-item__content{padding-bottom:25px;font-size:var(--el-collapse-content-font-size);color:var(--el-collapse-content-text-color);line-height:1.7692307692}.el-collapse-item:last-child{margin-bottom:-1px}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap}.el-color-predefine__color-selector{margin:0 0 8px 8px;width:20px;height:20px;border-radius:4px;cursor:pointer}.el-color-predefine__color-selector:nth-child(10n+1){margin-left:0}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--el-color-primary)}.el-color-predefine__color-selector>div{display:flex;height:100%;border-radius:3px}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px;float:right}.el-color-hue-slider__bar{position:relative;background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red);height:100%}.el-color-hue-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid var(--el-border-color-lighter);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-svpanel{position:relative;width:280px;height:180px}.el-color-svpanel__black,.el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.el-color-svpanel__white{background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.el-color-svpanel__black{background:linear-gradient(0deg,#000,transparent)}.el-color-svpanel__cursor{position:absolute}.el-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;transform:translate(-2px,-2px)}.el-color-alpha-slider{position:relative;box-sizing:border-box;width:280px;height:12px;background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-size:12px 12px;background-position:0 0,6px 0,6px -6px,0 6px}.el-color-alpha-slider__bar{position:relative;background:linear-gradient(to right,hsla(0,0%,100%,0) 0,var(--el-bg-color) 100%);height:100%}.el-color-alpha-slider__thumb{position:absolute;cursor:pointer;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid var(--el-border-color-lighter);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-alpha-slider.is-vertical{width:20px;height:180px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-dropdown{width:300px}.el-color-dropdown__main-wrapper{margin-bottom:6px}.el-color-dropdown__main-wrapper:after{content:"";display:table;clear:both}.el-color-dropdown__btns{margin-top:12px;text-align:right}.el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.el-color-picker{display:inline-block;position:relative;line-height:normal;outline:0}.el-color-picker:hover:not(.is-disabled,.is-focused) .el-color-picker__trigger{border-color:var(--el-border-color-hover)}.el-color-picker:focus-visible:not(.is-disabled) .el-color-picker__trigger{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-picker.is-focused .el-color-picker__trigger{border-color:var(--el-color-primary)}.el-color-picker.is-disabled .el-color-picker__trigger{cursor:not-allowed}.el-color-picker--large{height:40px}.el-color-picker--large .el-color-picker__trigger{height:40px;width:40px}.el-color-picker--large .el-color-picker__mask{height:38px;width:38px}.el-color-picker--small{height:24px}.el-color-picker--small .el-color-picker__trigger{height:24px;width:24px}.el-color-picker--small .el-color-picker__mask{height:22px;width:22px}.el-color-picker--small .el-color-picker__empty,.el-color-picker--small .el-color-picker__icon{transform:scale(.8)}.el-color-picker__mask{height:30px;width:30px;border-radius:4px;position:absolute;top:1px;left:1px;z-index:1;cursor:not-allowed;background-color:hsla(0,0%,100%,.7)}.el-color-picker__trigger{display:inline-flex;justify-content:center;align-items:center;box-sizing:border-box;height:32px;width:32px;padding:4px;border:1px solid var(--el-border-color);border-radius:4px;font-size:0;position:relative;cursor:pointer}.el-color-picker__color{position:relative;display:block;box-sizing:border-box;border:1px solid var(--el-text-color-secondary);border-radius:var(--el-border-radius-small);width:100%;height:100%;text-align:center}.el-color-picker__color.is-alpha{background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-size:12px 12px;background-position:0 0,6px 0,6px -6px,0 6px}.el-color-picker__color-inner{display:inline-flex;justify-content:center;align-items:center;width:100%;height:100%}.el-color-picker .el-color-picker__empty{font-size:12px;color:var(--el-text-color-secondary)}.el-color-picker .el-color-picker__icon{display:inline-flex;justify-content:center;align-items:center;color:#fff;font-size:12px}.el-color-picker__panel{position:absolute;z-index:10;padding:6px;box-sizing:content-box;background-color:#fff;border-radius:var(--el-border-radius-base);box-shadow:var(--el-box-shadow-light)}.el-color-picker__panel.el-popper{border:1px solid var(--el-border-color-lighter)}.el-color-picker,.el-color-picker__panel{--el-color-picker-alpha-bg-a:#ccc;--el-color-picker-alpha-bg-b:transparent}.dark .el-color-picker,.dark .el-color-picker__panel{--el-color-picker-alpha-bg-a:#333}.el-container{display:flex;flex-direction:row;flex:1;flex-basis:auto;box-sizing:border-box;min-width:0}.el-container.is-vertical{flex-direction:column}.el-date-table{font-size:12px;-webkit-user-select:none;user-select:none}.el-date-table.is-week-mode .el-date-table__row:hover .el-date-table-cell{background-color:var(--el-datepicker-inrange-bg-color)}.el-date-table.is-week-mode .el-date-table__row:hover td.available:hover{color:var(--el-datepicker-text-color)}.el-date-table.is-week-mode .el-date-table__row:hover td:first-child .el-date-table-cell{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table.is-week-mode .el-date-table__row:hover td:last-child .el-date-table-cell{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table.is-week-mode .el-date-table__row.current .el-date-table-cell{background-color:var(--el-datepicker-inrange-bg-color)}.el-date-table td{width:32px;height:30px;padding:4px 0;box-sizing:border-box;text-align:center;cursor:pointer;position:relative}.el-date-table td .el-date-table-cell{height:30px;padding:3px 0;box-sizing:border-box}.el-date-table td .el-date-table-cell .el-date-table-cell__text{width:24px;height:24px;display:block;margin:0 auto;line-height:24px;position:absolute;left:50%;transform:translateX(-50%);border-radius:50%}.el-date-table td.next-month,.el-date-table td.prev-month{color:var(--el-datepicker-off-text-color)}.el-date-table td.today{position:relative}.el-date-table td.today .el-date-table-cell__text{color:var(--el-color-primary);font-weight:700}.el-date-table td.today.end-date .el-date-table-cell__text,.el-date-table td.today.start-date .el-date-table-cell__text{color:#fff}.el-date-table td.available:hover{color:var(--el-datepicker-hover-text-color)}.el-date-table td.in-range .el-date-table-cell{background-color:var(--el-datepicker-inrange-bg-color)}.el-date-table td.in-range .el-date-table-cell:hover{background-color:var(--el-datepicker-inrange-hover-bg-color)}.el-date-table td.current:not(.disabled) .el-date-table-cell__text{color:#fff;background-color:var(--el-datepicker-active-color)}.el-date-table td.current:not(.disabled):focus-visible .el-date-table-cell__text{outline:2px solid var(--el-datepicker-active-color);outline-offset:1px}.el-date-table td.end-date .el-date-table-cell,.el-date-table td.start-date .el-date-table-cell{color:#fff}.el-date-table td.end-date .el-date-table-cell__text,.el-date-table td.start-date .el-date-table-cell__text{background-color:var(--el-datepicker-active-color)}.el-date-table td.start-date .el-date-table-cell{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table td.end-date .el-date-table-cell{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table td.disabled .el-date-table-cell{background-color:var(--el-fill-color-light);opacity:1;cursor:not-allowed;color:var(--el-text-color-placeholder)}.el-date-table td.selected .el-date-table-cell{margin-left:5px;margin-right:5px;background-color:var(--el-datepicker-inrange-bg-color);border-radius:15px}.el-date-table td.selected .el-date-table-cell:hover{background-color:var(--el-datepicker-inrange-hover-bg-color)}.el-date-table td.selected .el-date-table-cell__text{background-color:var(--el-datepicker-active-color);color:#fff;border-radius:15px}.el-date-table td.week{font-size:80%;color:var(--el-datepicker-header-text-color)}.el-date-table td:focus{outline:0}.el-date-table th{padding:5px;color:var(--el-datepicker-header-text-color);font-weight:400;border-bottom:solid 1px var(--el-border-color-lighter)}.el-month-table{font-size:12px;margin:-1px;border-collapse:collapse}.el-month-table td{text-align:center;padding:8px 0;cursor:pointer}.el-month-table td div{height:48px;padding:6px 0;box-sizing:border-box}.el-month-table td.today .cell{color:var(--el-color-primary);font-weight:700}.el-month-table td.today.end-date .cell,.el-month-table td.today.start-date .cell{color:#fff}.el-month-table td.disabled .cell{background-color:var(--el-fill-color-light);cursor:not-allowed}.el-month-table td.disabled .cell,.el-month-table td.disabled .cell:hover{color:var(--el-text-color-placeholder)}.el-month-table td .cell{width:60px;height:36px;display:block;line-height:36px;color:var(--el-datepicker-text-color);margin:0 auto;border-radius:18px}.el-month-table td .cell:hover{color:var(--el-datepicker-hover-text-color)}.el-month-table td.in-range div{background-color:var(--el-datepicker-inrange-bg-color)}.el-month-table td.in-range div:hover{background-color:var(--el-datepicker-inrange-hover-bg-color)}.el-month-table td.end-date div,.el-month-table td.start-date div{color:#fff}.el-month-table td.end-date .cell,.el-month-table td.start-date .cell{color:#fff;background-color:var(--el-datepicker-active-color)}.el-month-table td.start-date div{border-top-left-radius:24px;border-bottom-left-radius:24px}.el-month-table td.end-date div{border-top-right-radius:24px;border-bottom-right-radius:24px}.el-month-table td.current:not(.disabled) .cell{color:var(--el-datepicker-active-color)}.el-month-table td:focus-visible{outline:0}.el-month-table td:focus-visible .cell{outline:2px solid var(--el-datepicker-active-color)}.el-year-table{font-size:12px;margin:-1px;border-collapse:collapse}.el-year-table .el-icon{color:var(--el-datepicker-icon-color)}.el-year-table td{text-align:center;padding:20px 3px;cursor:pointer}.el-year-table td.today .cell{color:var(--el-color-primary);font-weight:700}.el-year-table td.disabled .cell{background-color:var(--el-fill-color-light);cursor:not-allowed}.el-year-table td.disabled .cell,.el-year-table td.disabled .cell:hover{color:var(--el-text-color-placeholder)}.el-year-table td .cell{width:48px;height:36px;display:block;line-height:36px;color:var(--el-datepicker-text-color);border-radius:18px;margin:0 auto}.el-year-table td .cell:hover{color:var(--el-datepicker-hover-text-color)}.el-year-table td.current:not(.disabled) .cell{color:var(--el-datepicker-active-color)}.el-year-table td:focus-visible{outline:0}.el-year-table td:focus-visible .cell{outline:2px solid var(--el-datepicker-active-color)}.el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33.3%}.el-time-spinner__wrapper{max-height:192px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.el-time-spinner__wrapper.el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.el-time-spinner__wrapper.is-arrow{box-sizing:border-box;text-align:center;overflow:hidden}.el-time-spinner__wrapper.is-arrow .el-time-spinner__list{transform:translateY(-32px)}.el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.is-disabled):not(.is-active){background:var(--el-fill-color-light);cursor:default}.el-time-spinner__arrow{font-size:12px;color:var(--el-text-color-secondary);position:absolute;left:0;width:100%;z-index:var(--el-index-normal);text-align:center;height:30px;line-height:30px;cursor:pointer}.el-time-spinner__arrow:hover{color:var(--el-color-primary)}.el-time-spinner__arrow.arrow-up{top:10px}.el-time-spinner__arrow.arrow-down{bottom:10px}.el-time-spinner__input.el-input{width:70%}.el-time-spinner__input.el-input .el-input__inner,.el-time-spinner__list{padding:0;text-align:center}.el-time-spinner__list{margin:0;list-style:none}.el-time-spinner__list:after,.el-time-spinner__list:before{content:"";display:block;width:100%;height:80px}.el-time-spinner__item{height:32px;line-height:32px;font-size:12px;color:var(--el-text-color-regular)}.el-time-spinner__item:hover:not(.is-disabled):not(.is-active){background:var(--el-fill-color-light);cursor:pointer}.el-time-spinner__item.is-active:not(.is-disabled){color:var(--el-text-color-primary);font-weight:700}.el-time-spinner__item.is-disabled{color:var(--el-text-color-placeholder);cursor:not-allowed}.el-picker__popper{--el-datepicker-border-color:var(--el-disabled-border-color)}.el-picker__popper.el-popper{background:var(--el-bg-color-overlay);box-shadow:var(--el-box-shadow-light)}.el-picker__popper.el-popper,.el-picker__popper.el-popper .el-popper__arrow:before{border:1px solid var(--el-datepicker-border-color)}.el-picker__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent;border-left-color:transparent}.el-picker__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent;border-right-color:transparent}.el-picker__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent;border-bottom-color:transparent}.el-picker__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent;border-top-color:transparent}.el-date-editor{--el-date-editor-width:220px;--el-date-editor-monthrange-width:300px;--el-date-editor-daterange-width:350px;--el-date-editor-datetimerange-width:400px;--el-input-text-color:var(--el-text-color-regular);--el-input-border:var(--el-border);--el-input-hover-border:var(--el-border-color-hover);--el-input-focus-border:var(--el-color-primary);--el-input-transparent-border:0 0 0 1px transparent inset;--el-input-border-color:var(--el-border-color);--el-input-border-radius:var(--el-border-radius-base);--el-input-bg-color:var(--el-fill-color-blank);--el-input-icon-color:var(--el-text-color-placeholder);--el-input-placeholder-color:var(--el-text-color-placeholder);--el-input-hover-border-color:var(--el-border-color-hover);--el-input-clear-hover-color:var(--el-text-color-secondary);--el-input-focus-border-color:var(--el-color-primary);--el-input-width:100%;position:relative;text-align:left;vertical-align:middle}.el-date-editor.el-input__wrapper{box-shadow:0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset}.el-date-editor.el-input__wrapper:hover{box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-date-editor.el-input,.el-date-editor.el-input__wrapper{width:var(--el-date-editor-width);height:var(--el-input-height,var(--el-component-size))}.el-date-editor--monthrange{--el-date-editor-width:var(--el-date-editor-monthrange-width)}.el-date-editor--daterange,.el-date-editor--timerange{--el-date-editor-width:var(--el-date-editor-daterange-width)}.el-date-editor--datetimerange{--el-date-editor-width:var(--el-date-editor-datetimerange-width)}.el-date-editor--dates .el-input__wrapper{text-overflow:ellipsis;white-space:nowrap}.el-date-editor .clear-icon,.el-date-editor .close-icon{cursor:pointer}.el-date-editor .clear-icon:hover{color:var(--el-text-color-secondary)}.el-date-editor .el-range__icon{height:inherit;font-size:14px;color:var(--el-text-color-placeholder);float:left}.el-date-editor .el-range__icon svg{vertical-align:middle}.el-date-editor .el-range-input{-webkit-appearance:none;appearance:none;border:none;outline:0;display:inline-block;height:30px;line-height:30px;margin:0;padding:0;width:39%;text-align:center;font-size:var(--el-font-size-base);color:var(--el-text-color-regular);background-color:transparent}.el-date-editor .el-range-input::placeholder{color:var(--el-text-color-placeholder)}.el-date-editor .el-range-separator{flex:1;display:inline-flex;justify-content:center;align-items:center;height:100%;padding:0 5px;margin:0;font-size:14px;overflow-wrap:break-word;color:var(--el-text-color-primary)}.el-date-editor .el-range__close-icon{font-size:14px;color:var(--el-text-color-placeholder);height:inherit;width:unset;cursor:pointer}.el-date-editor .el-range__close-icon:hover{color:var(--el-text-color-secondary)}.el-date-editor .el-range__close-icon svg{vertical-align:middle}.el-date-editor .el-range__close-icon--hidden{opacity:0;visibility:hidden}.el-range-editor.el-input__wrapper{display:inline-flex;align-items:center;padding:0 10px}.el-range-editor.is-active,.el-range-editor.is-active:hover{box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset}.el-range-editor--large{line-height:var(--el-component-size-large)}.el-range-editor--large.el-input__wrapper{height:var(--el-component-size-large)}.el-range-editor--large .el-range-separator{line-height:40px;font-size:14px}.el-range-editor--large .el-range-input{height:38px;line-height:38px;font-size:14px}.el-range-editor--small{line-height:var(--el-component-size-small)}.el-range-editor--small.el-input__wrapper{height:var(--el-component-size-small)}.el-range-editor--small .el-range-separator{line-height:24px;font-size:12px}.el-range-editor--small .el-range-input{height:22px;line-height:22px;font-size:12px}.el-range-editor.is-disabled{background-color:var(--el-disabled-bg-color);color:var(--el-disabled-text-color);cursor:not-allowed}.el-range-editor.is-disabled,.el-range-editor.is-disabled:focus,.el-range-editor.is-disabled:hover{border-color:var(--el-disabled-border-color)}.el-range-editor.is-disabled input{background-color:var(--el-disabled-bg-color);color:var(--el-disabled-text-color);cursor:not-allowed}.el-range-editor.is-disabled input::placeholder{color:var(--el-text-color-placeholder)}.el-range-editor.is-disabled .el-range-separator{color:var(--el-disabled-text-color)}.el-picker-panel{color:var(--el-text-color-regular);background:var(--el-bg-color-overlay);border-radius:var(--el-border-radius-base);line-height:30px}.el-picker-panel .el-time-panel{margin:5px 0;border:solid 1px var(--el-datepicker-border-color);background-color:var(--el-bg-color-overlay);box-shadow:var(--el-box-shadow-light)}.el-picker-panel__body-wrapper:after,.el-picker-panel__body:after{content:"";display:table;clear:both}.el-picker-panel__content{position:relative;margin:15px}.el-picker-panel__footer{border-top:1px solid var(--el-datepicker-inner-border-color);padding:4px 12px;text-align:right;background-color:var(--el-bg-color-overlay);position:relative;font-size:0}.el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:var(--el-datepicker-text-color);padding-left:12px;text-align:left;outline:0;cursor:pointer}.el-picker-panel__shortcut:hover{color:var(--el-datepicker-hover-text-color)}.el-picker-panel__shortcut.active{background-color:#e6f1fe;color:var(--el-datepicker-active-color)}.el-picker-panel__btn{border:1px solid var(--el-fill-color-darker);color:var(--el-text-color-primary);line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-picker-panel__btn[disabled]{color:var(--el-text-color-disabled);cursor:not-allowed}.el-picker-panel__icon-btn{font-size:12px;color:var(--el-datepicker-icon-color);border:0;background:0 0;cursor:pointer;outline:0;margin-top:8px}.el-picker-panel__icon-btn:hover{color:var(--el-datepicker-hover-text-color)}.el-picker-panel__icon-btn:focus-visible{color:var(--el-datepicker-hover-text-color)}.el-picker-panel__icon-btn.is-disabled{color:var(--el-text-color-disabled)}.el-picker-panel__icon-btn.is-disabled:hover{cursor:not-allowed}.el-picker-panel__icon-btn .el-icon{cursor:pointer;font-size:inherit}.el-picker-panel__link-btn{vertical-align:middle}.el-picker-panel [slot=sidebar],.el-picker-panel__sidebar{position:absolute;top:0;bottom:0;width:110px;border-right:1px solid var(--el-datepicker-inner-border-color);box-sizing:border-box;padding-top:6px;background-color:var(--el-bg-color-overlay);overflow:auto}.el-picker-panel [slot=sidebar]+.el-picker-panel__body,.el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.el-date-picker{--el-datepicker-text-color:var(--el-text-color-regular);--el-datepicker-off-text-color:var(--el-text-color-placeholder);--el-datepicker-header-text-color:var(--el-text-color-regular);--el-datepicker-icon-color:var(--el-text-color-primary);--el-datepicker-border-color:var(--el-disabled-border-color);--el-datepicker-inner-border-color:var(--el-border-color-light);--el-datepicker-inrange-bg-color:var(--el-border-color-extra-light);--el-datepicker-inrange-hover-bg-color:var(--el-border-color-extra-light);--el-datepicker-active-color:var(--el-color-primary);--el-datepicker-hover-text-color:var(--el-color-primary);width:322px}.el-date-picker.has-sidebar.has-time{width:434px}.el-date-picker.has-sidebar{width:438px}.el-date-picker.has-time .el-picker-panel__body-wrapper{position:relative}.el-date-picker .el-picker-panel__content{width:292px}.el-date-picker table{table-layout:fixed;width:100%}.el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-picker__time-header{position:relative;border-bottom:1px solid var(--el-datepicker-inner-border-color);font-size:12px;padding:8px 5px 5px;display:table;width:100%;box-sizing:border-box}.el-date-picker__header{margin:12px;text-align:center}.el-date-picker__header--bordered{margin-bottom:0;padding-bottom:12px;border-bottom:solid 1px var(--el-border-color-lighter)}.el-date-picker__header--bordered+.el-picker-panel__content{margin-top:0}.el-date-picker__header-label{font-size:16px;font-weight:500;padding:0 5px;line-height:22px;text-align:center;cursor:pointer;color:var(--el-text-color-regular)}.el-date-picker__header-label:hover{color:var(--el-datepicker-hover-text-color)}.el-date-picker__header-label:focus-visible{outline:0;color:var(--el-datepicker-hover-text-color)}.el-date-picker__header-label.active{color:var(--el-datepicker-active-color)}.el-date-picker__prev-btn{float:left}.el-date-picker__next-btn{float:right}.el-date-picker__time-wrap{padding:10px;text-align:center}.el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.el-date-picker .el-time-panel{position:absolute}.el-date-range-picker{--el-datepicker-text-color:var(--el-text-color-regular);--el-datepicker-off-text-color:var(--el-text-color-placeholder);--el-datepicker-header-text-color:var(--el-text-color-regular);--el-datepicker-icon-color:var(--el-text-color-primary);--el-datepicker-border-color:var(--el-disabled-border-color);--el-datepicker-inner-border-color:var(--el-border-color-light);--el-datepicker-inrange-bg-color:var(--el-border-color-extra-light);--el-datepicker-inrange-hover-bg-color:var(--el-border-color-extra-light);--el-datepicker-active-color:var(--el-color-primary);--el-datepicker-hover-text-color:var(--el-color-primary);width:646px}.el-date-range-picker.has-sidebar{width:756px}.el-date-range-picker.has-time .el-picker-panel__body-wrapper{position:relative}.el-date-range-picker table{table-layout:fixed;width:100%}.el-date-range-picker .el-picker-panel__body{min-width:513px}.el-date-range-picker .el-picker-panel__content{margin:0}.el-date-range-picker__header{position:relative;text-align:center;height:28px}.el-date-range-picker__header [class*=arrow-left]{float:left}.el-date-range-picker__header [class*=arrow-right]{float:right}.el-date-range-picker__header div{font-size:16px;font-weight:500;margin-right:50px}.el-date-range-picker__content{float:left;width:50%;box-sizing:border-box;margin:0;padding:16px}.el-date-range-picker__content.is-left{border-right:1px solid var(--el-datepicker-inner-border-color)}.el-date-range-picker__content .el-date-range-picker__header div{margin-left:50px;margin-right:50px}.el-date-range-picker__editors-wrap{box-sizing:border-box;display:table-cell}.el-date-range-picker__editors-wrap.is-right{text-align:right}.el-date-range-picker__time-header{position:relative;border-bottom:1px solid var(--el-datepicker-inner-border-color);font-size:12px;padding:8px 5px 5px 5px;display:table;width:100%;box-sizing:border-box}.el-date-range-picker__time-header>.el-icon-arrow-right{font-size:20px;vertical-align:middle;display:table-cell;color:var(--el-datepicker-icon-color)}.el-date-range-picker__time-picker-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-range-picker__time-picker-wrap .el-picker-panel{position:absolute;top:13px;right:0;z-index:1;background:#fff}.el-date-range-picker__time-picker-wrap .el-time-panel{position:absolute}.el-time-range-picker{width:354px;overflow:visible}.el-time-range-picker__content{position:relative;text-align:center;padding:10px;z-index:1}.el-time-range-picker__cell{box-sizing:border-box;margin:0;padding:4px 7px 7px;width:50%;display:inline-block}.el-time-range-picker__header{margin-bottom:5px;text-align:center;font-size:14px}.el-time-range-picker__body{border-radius:2px;border:1px solid var(--el-datepicker-border-color)}.el-time-panel{border-radius:2px;position:relative;width:180px;left:0;z-index:var(--el-index-top);-webkit-user-select:none;user-select:none;box-sizing:content-box}.el-time-panel__content{font-size:0;position:relative;overflow:hidden}.el-time-panel__content:after,.el-time-panel__content:before{content:"";top:50%;position:absolute;margin-top:-16px;height:32px;z-index:-1;left:0;right:0;box-sizing:border-box;padding-top:6px;text-align:left}.el-time-panel__content:after{left:50%;margin-left:12%;margin-right:12%}.el-time-panel__content:before{padding-left:50%;margin-right:12%;margin-left:12%;border-top:1px solid var(--el-border-color-light);border-bottom:1px solid var(--el-border-color-light)}.el-time-panel__content.has-seconds:after{left:66.6666666667%}.el-time-panel__content.has-seconds:before{padding-left:33.3333333333%}.el-time-panel__footer{border-top:1px solid var(--el-timepicker-inner-border-color,var(--el-border-color-light));padding:4px;height:36px;line-height:25px;text-align:right;box-sizing:border-box}.el-time-panel__btn{border:none;line-height:28px;padding:0 5px;margin:0 5px;cursor:pointer;background-color:transparent;outline:0;font-size:12px;color:var(--el-text-color-primary)}.el-time-panel__btn.confirm{font-weight:800;color:var(--el-timepicker-active-color,var(--el-color-primary))}.el-descriptions{--el-descriptions-table-border:1px solid var(--el-border-color-lighter);--el-descriptions-item-bordered-label-background:var(--el-fill-color-light);box-sizing:border-box;font-size:var(--el-font-size-base);color:var(--el-text-color-primary)}.el-descriptions__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}.el-descriptions__title{color:var(--el-text-color-primary);font-size:16px;font-weight:700}.el-descriptions__body{background-color:var(--el-fill-color-blank)}.el-descriptions__body .el-descriptions__table{border-collapse:collapse;width:100%}.el-descriptions__body .el-descriptions__table .el-descriptions__cell{box-sizing:border-box;text-align:left;font-weight:400;line-height:23px;font-size:14px}.el-descriptions__body .el-descriptions__table .el-descriptions__cell.is-left{text-align:left}.el-descriptions__body .el-descriptions__table .el-descriptions__cell.is-center{text-align:center}.el-descriptions__body .el-descriptions__table .el-descriptions__cell.is-right{text-align:right}.el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell{border:var(--el-descriptions-table-border);padding:8px 11px}.el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell{padding-bottom:12px}.el-descriptions--large{font-size:14px}.el-descriptions--large .el-descriptions__header{margin-bottom:20px}.el-descriptions--large .el-descriptions__header .el-descriptions__title{font-size:16px}.el-descriptions--large .el-descriptions__body .el-descriptions__table .el-descriptions__cell{font-size:14px}.el-descriptions--large .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell{padding:12px 15px}.el-descriptions--large .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell{padding-bottom:16px}.el-descriptions--small{font-size:12px}.el-descriptions--small .el-descriptions__header{margin-bottom:12px}.el-descriptions--small .el-descriptions__header .el-descriptions__title{font-size:14px}.el-descriptions--small .el-descriptions__body .el-descriptions__table .el-descriptions__cell{font-size:12px}.el-descriptions--small .el-descriptions__body .el-descriptions__table.is-bordered .el-descriptions__cell{padding:4px 7px}.el-descriptions--small .el-descriptions__body .el-descriptions__table:not(.is-bordered) .el-descriptions__cell{padding-bottom:8px}.el-descriptions__label.el-descriptions__cell.is-bordered-label{font-weight:700;color:var(--el-text-color-regular);background:var(--el-descriptions-item-bordered-label-background)}.el-descriptions__label:not(.is-bordered-label){color:var(--el-text-color-primary);margin-right:16px}.el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label{padding-bottom:6px}.el-descriptions__content.el-descriptions__cell.is-bordered-content{color:var(--el-text-color-primary)}.el-descriptions__content:not(.is-bordered-label){color:var(--el-text-color-regular)}.el-descriptions--large .el-descriptions__label:not(.is-bordered-label){margin-right:16px}.el-descriptions--large .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label{padding-bottom:8px}.el-descriptions--small .el-descriptions__label:not(.is-bordered-label){margin-right:12px}.el-descriptions--small .el-descriptions__label.el-descriptions__cell:not(.is-bordered-label).is-vertical-label{padding-bottom:4px}:root{--el-popup-modal-bg-color:var(--el-color-black);--el-popup-modal-opacity:0.5}.v-modal-enter{animation:v-modal-in var(--el-transition-duration-fast) ease}.v-modal-leave{animation:v-modal-out var(--el-transition-duration-fast) ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:var(--el-popup-modal-opacity);background:var(--el-popup-modal-bg-color)}.el-popup-parent--hidden{overflow:hidden}.el-dialog{--el-dialog-width:50%;--el-dialog-margin-top:15vh;--el-dialog-bg-color:var(--el-bg-color);--el-dialog-box-shadow:var(--el-box-shadow);--el-dialog-title-font-size:var(--el-font-size-large);--el-dialog-content-font-size:14px;--el-dialog-font-line-height:var(--el-font-line-height-primary);--el-dialog-padding-primary:16px;--el-dialog-border-radius:var(--el-border-radius-small);position:relative;margin:var(--el-dialog-margin-top,15vh) auto 50px;background:var(--el-dialog-bg-color);border-radius:var(--el-dialog-border-radius);box-shadow:var(--el-dialog-box-shadow);box-sizing:border-box;padding:var(--el-dialog-padding-primary);width:var(--el-dialog-width,50%);overflow-wrap:break-word}.el-dialog:focus{outline:0!important}.el-dialog.is-align-center{margin:auto}.el-dialog.is-fullscreen{--el-dialog-width:100%;--el-dialog-margin-top:0;margin-bottom:0;height:100%;overflow:auto}.el-dialog__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.el-dialog.is-draggable .el-dialog__header{cursor:move;-webkit-user-select:none;user-select:none}.el-dialog__header{padding-bottom:var(--el-dialog-padding-primary)}.el-dialog__header.show-close{padding-right:calc(var(--el-dialog-padding-primary) + var(--el-message-close-size,16px))}.el-dialog__headerbtn{position:absolute;top:0;right:0;padding:0;width:48px;height:48px;background:0 0;border:none;outline:0;cursor:pointer;font-size:var(--el-message-close-size,16px)}.el-dialog__headerbtn .el-dialog__close{color:var(--el-color-info);font-size:inherit}.el-dialog__headerbtn:focus .el-dialog__close,.el-dialog__headerbtn:hover .el-dialog__close{color:var(--el-color-primary)}.el-dialog__title{line-height:var(--el-dialog-font-line-height);font-size:var(--el-dialog-title-font-size);color:var(--el-text-color-primary)}.el-dialog__body{color:var(--el-text-color-regular);font-size:var(--el-dialog-content-font-size)}.el-dialog__footer{padding-top:var(--el-dialog-padding-primary);text-align:right;box-sizing:border-box}.el-dialog--center{text-align:center}.el-dialog--center .el-dialog__body{text-align:initial}.el-dialog--center .el-dialog__footer{text-align:inherit}.el-overlay-dialog{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto}.dialog-fade-enter-active{animation:modal-fade-in var(--el-transition-duration)}.dialog-fade-enter-active .el-overlay-dialog{animation:dialog-fade-in var(--el-transition-duration)}.dialog-fade-leave-active{animation:modal-fade-out var(--el-transition-duration)}.dialog-fade-leave-active .el-overlay-dialog{animation:dialog-fade-out var(--el-transition-duration)}@keyframes dialog-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes dialog-fade-out{0%{transform:translateZ(0);opacity:1}to{transform:translate3d(0,-20px,0);opacity:0}}@keyframes modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes modal-fade-out{0%{opacity:1}to{opacity:0}}.el-divider{position:relative}.el-divider--horizontal{display:block;height:1px;width:100%;margin:24px 0;border-top:1px var(--el-border-color) var(--el-border-style)}.el-divider--vertical{display:inline-block;width:1px;height:1em;margin:0 8px;vertical-align:middle;position:relative;border-left:1px var(--el-border-color) var(--el-border-style)}.el-divider__text{position:absolute;background-color:var(--el-bg-color);padding:0 20px;font-weight:500;color:var(--el-text-color-primary);font-size:14px}.el-divider__text.is-left{left:20px;transform:translateY(-50%)}.el-divider__text.is-center{left:50%;transform:translateX(-50%) translateY(-50%)}.el-divider__text.is-right{right:20px;transform:translateY(-50%)}.el-drawer{--el-drawer-bg-color:var(--el-dialog-bg-color,var(--el-bg-color));--el-drawer-padding-primary:var(--el-dialog-padding-primary,20px);position:absolute;box-sizing:border-box;background-color:var(--el-drawer-bg-color);display:flex;flex-direction:column;box-shadow:var(--el-box-shadow-dark);overflow:hidden;transition:all var(--el-transition-duration)}.el-drawer .btt,.el-drawer .ltr,.el-drawer .rtl,.el-drawer .ttb{transform:translate(0)}.el-drawer__sr-focus:focus{outline:0!important}.el-drawer__header{align-items:center;color:#72767b;display:flex;margin-bottom:32px;padding:var(--el-drawer-padding-primary);padding-bottom:0}.el-drawer__header>:first-child{flex:1}.el-drawer__title{margin:0;flex:1;line-height:inherit;font-size:1rem}.el-drawer__footer{padding:var(--el-drawer-padding-primary);padding-top:10px;text-align:right}.el-drawer__close-btn{display:inline-flex;border:none;cursor:pointer;font-size:var(--el-font-size-extra-large);color:inherit;background-color:transparent;outline:0}.el-drawer__close-btn:focus i,.el-drawer__close-btn:hover i{color:var(--el-color-primary)}.el-drawer__body{flex:1;padding:var(--el-drawer-padding-primary);overflow:auto}.el-drawer__body>*{box-sizing:border-box}.el-drawer.ltr,.el-drawer.rtl{height:100%;top:0;bottom:0}.el-drawer.btt,.el-drawer.ttb{width:100%;left:0;right:0}.el-drawer.ltr{left:0}.el-drawer.rtl{right:0}.el-drawer.ttb{top:0}.el-drawer.btt{bottom:0}.el-drawer-fade-enter-active,.el-drawer-fade-leave-active{transition:all var(--el-transition-duration)}.el-drawer-fade-enter-active,.el-drawer-fade-enter-from,.el-drawer-fade-enter-to,.el-drawer-fade-leave-active,.el-drawer-fade-leave-from,.el-drawer-fade-leave-to{overflow:hidden!important}.el-drawer-fade-enter-from,.el-drawer-fade-leave-to{opacity:0}.el-drawer-fade-enter-to,.el-drawer-fade-leave-from{opacity:1}.el-drawer-fade-enter-from .rtl,.el-drawer-fade-leave-to .rtl{transform:translateX(100%)}.el-drawer-fade-enter-from .ltr,.el-drawer-fade-leave-to .ltr{transform:translateX(-100%)}.el-drawer-fade-enter-from .ttb,.el-drawer-fade-leave-to .ttb{transform:translateY(-100%)}.el-drawer-fade-enter-from .btt,.el-drawer-fade-leave-to .btt{transform:translateY(100%)}.el-dropdown{--el-dropdown-menu-box-shadow:var(--el-box-shadow-light);--el-dropdown-menuItem-hover-fill:var(--el-color-primary-light-9);--el-dropdown-menuItem-hover-color:var(--el-color-primary);--el-dropdown-menu-index:10;display:inline-flex;position:relative;color:var(--el-text-color-regular);font-size:var(--el-font-size-base);line-height:1;vertical-align:top}.el-dropdown.is-disabled{color:var(--el-text-color-placeholder);cursor:not-allowed}.el-dropdown__popper{--el-dropdown-menu-box-shadow:var(--el-box-shadow-light);--el-dropdown-menuItem-hover-fill:var(--el-color-primary-light-9);--el-dropdown-menuItem-hover-color:var(--el-color-primary);--el-dropdown-menu-index:10}.el-dropdown__popper.el-popper{background:var(--el-bg-color-overlay);box-shadow:var(--el-dropdown-menu-box-shadow)}.el-dropdown__popper.el-popper,.el-dropdown__popper.el-popper .el-popper__arrow:before{border:1px solid var(--el-border-color-light)}.el-dropdown__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent;border-left-color:transparent}.el-dropdown__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent;border-right-color:transparent}.el-dropdown__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent;border-bottom-color:transparent}.el-dropdown__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent;border-top-color:transparent}.el-dropdown__popper .el-dropdown-menu{border:none}.el-dropdown__popper .el-dropdown__popper-selfdefine{outline:0}.el-dropdown__popper .el-scrollbar__bar{z-index:calc(var(--el-dropdown-menu-index) + 1)}.el-dropdown__popper .el-dropdown__list{list-style:none;padding:0;margin:0;box-sizing:border-box}.el-dropdown .el-dropdown__caret-button{padding-left:0;padding-right:0;display:inline-flex;justify-content:center;align-items:center;width:32px;border-left:none}.el-dropdown .el-dropdown__caret-button>span{display:inline-flex}.el-dropdown .el-dropdown__caret-button:before{content:"";position:absolute;display:block;width:1px;top:-1px;bottom:-1px;left:0;background:var(--el-overlay-color-lighter)}.el-dropdown .el-dropdown__caret-button.el-button:before{background:var(--el-border-color);opacity:.5}.el-dropdown .el-dropdown__caret-button .el-dropdown__icon{font-size:inherit;padding-left:0}.el-dropdown .el-dropdown-selfdefine{outline:0}.el-dropdown--large .el-dropdown__caret-button{width:40px}.el-dropdown--small .el-dropdown__caret-button{width:24px}.el-dropdown-menu{position:relative;top:0;left:0;z-index:var(--el-dropdown-menu-index);padding:5px 0;margin:0;background-color:var(--el-bg-color-overlay);border:none;border-radius:var(--el-border-radius-base);box-shadow:none;list-style:none}.el-dropdown-menu__item{display:flex;align-items:center;white-space:nowrap;list-style:none;line-height:22px;padding:5px 16px;margin:0;font-size:var(--el-font-size-base);color:var(--el-text-color-regular);cursor:pointer;outline:0}.el-dropdown-menu__item:not(.is-disabled):focus{background-color:var(--el-dropdown-menuItem-hover-fill);color:var(--el-dropdown-menuItem-hover-color)}.el-dropdown-menu__item i{margin-right:5px}.el-dropdown-menu__item--divided{margin:6px 0;border-top:1px solid var(--el-border-color-lighter)}.el-dropdown-menu__item.is-disabled{cursor:not-allowed;color:var(--el-text-color-disabled)}.el-dropdown-menu--large{padding:7px 0}.el-dropdown-menu--large .el-dropdown-menu__item{padding:7px 20px;line-height:22px;font-size:14px}.el-dropdown-menu--large .el-dropdown-menu__item--divided{margin:8px 0}.el-dropdown-menu--small{padding:3px 0}.el-dropdown-menu--small .el-dropdown-menu__item{padding:2px 12px;line-height:20px;font-size:12px}.el-dropdown-menu--small .el-dropdown-menu__item--divided{margin:4px 0}.el-empty{--el-empty-padding:40px 0;--el-empty-image-width:160px;--el-empty-description-margin-top:20px;--el-empty-bottom-margin-top:20px;--el-empty-fill-color-0:var(--el-color-white);--el-empty-fill-color-1:#fcfcfd;--el-empty-fill-color-2:#f8f9fb;--el-empty-fill-color-3:#f7f8fc;--el-empty-fill-color-4:#eeeff3;--el-empty-fill-color-5:#edeef2;--el-empty-fill-color-6:#e9ebef;--el-empty-fill-color-7:#e5e7e9;--el-empty-fill-color-8:#e0e3e9;--el-empty-fill-color-9:#d5d7de;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center;box-sizing:border-box;padding:var(--el-empty-padding)}.el-empty__image{width:var(--el-empty-image-width)}.el-empty__image img{-webkit-user-select:none;user-select:none;width:100%;height:100%;vertical-align:top;object-fit:contain}.el-empty__image svg{color:var(--el-svg-monochrome-grey);fill:currentColor;width:100%;height:100%;vertical-align:top}.el-empty__description{margin-top:var(--el-empty-description-margin-top)}.el-empty__description p{margin:0;font-size:var(--el-font-size-base);color:var(--el-text-color-secondary)}.el-empty__bottom{margin-top:var(--el-empty-bottom-margin-top)}.el-footer{--el-footer-padding:0 20px;--el-footer-height:60px;padding:var(--el-footer-padding);box-sizing:border-box;flex-shrink:0;height:var(--el-footer-height)}.el-form{--el-form-label-font-size:var(--el-font-size-base);--el-form-inline-content-width:220px}.el-form--label-left .el-form-item__label{justify-content:flex-start}.el-form--label-top .el-form-item{display:block}.el-form--label-top .el-form-item .el-form-item__label{display:block;height:auto;text-align:left;margin-bottom:8px;line-height:22px}.el-form--inline .el-form-item{display:inline-flex;vertical-align:middle;margin-right:32px}.el-form--inline.el-form--label-top{display:flex;flex-wrap:wrap}.el-form--inline.el-form--label-top .el-form-item{display:block}.el-form--large.el-form--label-top .el-form-item .el-form-item__label{margin-bottom:12px;line-height:22px}.el-form--default.el-form--label-top .el-form-item .el-form-item__label{margin-bottom:8px;line-height:22px}.el-form--small.el-form--label-top .el-form-item .el-form-item__label{margin-bottom:4px;line-height:20px}.el-form-item{display:flex;--font-size:14px;margin-bottom:18px}.el-form-item .el-form-item{margin-bottom:0}.el-form-item .el-input__validateIcon{display:none}.el-form-item--large{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:22px}.el-form-item--large .el-form-item__label{height:40px;line-height:40px}.el-form-item--large .el-form-item__content{line-height:40px}.el-form-item--large .el-form-item__error{padding-top:4px}.el-form-item--default{--font-size:14px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--default .el-form-item__label{height:32px;line-height:32px}.el-form-item--default .el-form-item__content{line-height:32px}.el-form-item--default .el-form-item__error{padding-top:2px}.el-form-item--small{--font-size:12px;--el-form-label-font-size:var(--font-size);margin-bottom:18px}.el-form-item--small .el-form-item__label{height:24px;line-height:24px}.el-form-item--small .el-form-item__content{line-height:24px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item__label-wrap{display:flex}.el-form-item__label{display:inline-flex;justify-content:flex-end;align-items:flex-start;flex:0 0 auto;font-size:var(--el-form-label-font-size);color:var(--el-text-color-regular);height:32px;line-height:32px;padding:0 12px 0 0;box-sizing:border-box}.el-form-item__content{display:flex;flex-wrap:wrap;align-items:center;flex:1;line-height:32px;position:relative;font-size:var(--font-size);min-width:0}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:var(--el-color-danger);font-size:12px;line-height:1;padding-top:2px;position:absolute;top:100%;left:0}.el-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before{content:"*";color:var(--el-color-danger);margin-right:4px}.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label-wrap>.el-form-item__label:after,.el-form-item.is-required:not(.is-no-asterisk).asterisk-right>.el-form-item__label:after{content:"*";color:var(--el-color-danger);margin-left:4px}.el-form-item.is-error .el-input__wrapper,.el-form-item.is-error .el-input__wrapper.is-focus,.el-form-item.is-error .el-input__wrapper:focus,.el-form-item.is-error .el-input__wrapper:hover,.el-form-item.is-error .el-select__wrapper,.el-form-item.is-error .el-select__wrapper.is-focus,.el-form-item.is-error .el-select__wrapper:focus,.el-form-item.is-error .el-select__wrapper:hover,.el-form-item.is-error .el-textarea__inner,.el-form-item.is-error .el-textarea__inner.is-focus,.el-form-item.is-error .el-textarea__inner:focus,.el-form-item.is-error .el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-form-item.is-error .el-input-group__append .el-input__wrapper,.el-form-item.is-error .el-input-group__prepend .el-input__wrapper{box-shadow:inset 0 0 0 1px transparent}.el-form-item.is-error .el-input__validateIcon{color:var(--el-color-danger)}.el-form-item--feedback .el-input__validateIcon{display:inline-flex}.el-header{--el-header-padding:0 20px;--el-header-height:60px;padding:var(--el-header-padding);box-sizing:border-box;flex-shrink:0;height:var(--el-header-height)}.el-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.el-image-viewer__btn{position:absolute;z-index:1;display:flex;align-items:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;box-sizing:border-box;-webkit-user-select:none;user-select:none}.el-image-viewer__btn .el-icon{font-size:inherit;cursor:pointer}.el-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:40px}.el-image-viewer__canvas{position:static;width:100%;height:100%;display:flex;justify-content:center;align-items:center;-webkit-user-select:none;user-select:none}.el-image-viewer__actions{left:50%;bottom:30px;transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:var(--el-text-color-regular);border-color:#fff;border-radius:22px}.el-image-viewer__actions__inner{width:100%;height:100%;cursor:default;font-size:23px;color:#fff;display:flex;align-items:center;justify-content:space-around}.el-image-viewer__prev{left:40px}.el-image-viewer__next,.el-image-viewer__prev{top:50%;transform:translateY(-50%);width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--el-text-color-regular);border-color:#fff}.el-image-viewer__next{right:40px;text-indent:2px}.el-image-viewer__close{width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--el-text-color-regular);border-color:#fff}.el-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{animation:viewer-fade-in var(--el-transition-duration)}.viewer-fade-leave-active{animation:viewer-fade-out var(--el-transition-duration)}@keyframes viewer-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes viewer-fade-out{0%{transform:translateZ(0);opacity:1}to{transform:translate3d(0,-20px,0);opacity:0}}.el-image__error,.el-image__inner,.el-image__placeholder,.el-image__wrapper{width:100%;height:100%}.el-image{position:relative;display:inline-block;overflow:hidden}.el-image__inner{vertical-align:top;opacity:1}.el-image__inner.is-loading{opacity:0}.el-image__wrapper{position:absolute;top:0;left:0}.el-image__error,.el-image__placeholder{background:var(--el-fill-color-light)}.el-image__error{display:flex;justify-content:center;align-items:center;font-size:14px;color:var(--el-text-color-placeholder);vertical-align:middle}.el-image__preview{cursor:pointer}.el-input-number{position:relative;display:inline-flex;width:150px;line-height:30px}.el-input-number .el-input__wrapper{padding-left:42px;padding-right:42px}.el-input-number .el-input__inner{-webkit-appearance:none;-moz-appearance:textfield;text-align:center;line-height:1}.el-input-number .el-input__inner::-webkit-inner-spin-button,.el-input-number .el-input__inner::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.el-input-number__decrease,.el-input-number__increase{display:flex;justify-content:center;align-items:center;height:auto;position:absolute;z-index:1;top:1px;bottom:1px;width:32px;background:var(--el-fill-color-light);color:var(--el-text-color-regular);cursor:pointer;font-size:13px;-webkit-user-select:none;user-select:none}.el-input-number__decrease:hover,.el-input-number__increase:hover{color:var(--el-color-primary)}.el-input-number__decrease:hover~.el-input:not(.is-disabled) .el-input__wrapper,.el-input-number__increase:hover~.el-input:not(.is-disabled) .el-input__wrapper{box-shadow:0 0 0 1px var(--el-input-focus-border-color,var(--el-color-primary)) inset}.el-input-number__decrease.is-disabled,.el-input-number__increase.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-input-number__increase{right:1px;border-radius:0 var(--el-border-radius-base) var(--el-border-radius-base) 0;border-left:var(--el-border)}.el-input-number__decrease{left:1px;border-radius:var(--el-border-radius-base) 0 0 var(--el-border-radius-base);border-right:var(--el-border)}.el-input-number.is-disabled .el-input-number__decrease,.el-input-number.is-disabled .el-input-number__increase{border-color:var(--el-disabled-border-color);color:var(--el-disabled-border-color)}.el-input-number.is-disabled .el-input-number__decrease:hover,.el-input-number.is-disabled .el-input-number__increase:hover{color:var(--el-disabled-border-color);cursor:not-allowed}.el-input-number--large{width:180px;line-height:38px}.el-input-number--large .el-input-number__decrease,.el-input-number--large .el-input-number__increase{width:40px;font-size:14px}.el-input-number--large .el-input__wrapper{padding-left:47px;padding-right:47px}.el-input-number--small{width:120px;line-height:22px}.el-input-number--small .el-input-number__decrease,.el-input-number--small .el-input-number__increase{width:24px;font-size:12px}.el-input-number--small .el-input__wrapper{padding-left:31px;padding-right:31px}.el-input-number--small .el-input-number__decrease [class*=el-icon],.el-input-number--small .el-input-number__increase [class*=el-icon]{transform:scale(.9)}.el-input-number.is-without-controls .el-input__wrapper{padding-left:15px;padding-right:15px}.el-input-number.is-controls-right .el-input__wrapper{padding-left:15px;padding-right:42px}.el-input-number.is-controls-right .el-input-number__decrease,.el-input-number.is-controls-right .el-input-number__increase{--el-input-number-controls-height:15px;height:var(--el-input-number-controls-height);line-height:var(--el-input-number-controls-height)}.el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{transform:scale(.8)}.el-input-number.is-controls-right .el-input-number__increase{bottom:auto;left:auto;border-radius:0 var(--el-border-radius-base) 0 0;border-bottom:var(--el-border)}.el-input-number.is-controls-right .el-input-number__decrease{right:1px;top:auto;left:auto;border-right:none;border-left:var(--el-border);border-radius:0 0 var(--el-border-radius-base) 0}.el-input-number.is-controls-right[class*=large] [class*=decrease],.el-input-number.is-controls-right[class*=large] [class*=increase]{--el-input-number-controls-height:19px}.el-input-number.is-controls-right[class*=small] [class*=decrease],.el-input-number.is-controls-right[class*=small] [class*=increase]{--el-input-number-controls-height:11px}.el-textarea{--el-input-text-color:var(--el-text-color-regular);--el-input-border:var(--el-border);--el-input-hover-border:var(--el-border-color-hover);--el-input-focus-border:var(--el-color-primary);--el-input-transparent-border:0 0 0 1px transparent inset;--el-input-border-color:var(--el-border-color);--el-input-border-radius:var(--el-border-radius-base);--el-input-bg-color:var(--el-fill-color-blank);--el-input-icon-color:var(--el-text-color-placeholder);--el-input-placeholder-color:var(--el-text-color-placeholder);--el-input-hover-border-color:var(--el-border-color-hover);--el-input-clear-hover-color:var(--el-text-color-secondary);--el-input-focus-border-color:var(--el-color-primary);--el-input-width:100%;position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--el-font-size-base)}.el-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;font-family:inherit;color:var(--el-input-text-color,var(--el-text-color-regular));background-color:var(--el-input-bg-color,var(--el-fill-color-blank));background-image:none;-webkit-appearance:none;box-shadow:0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset;border-radius:var(--el-input-border-radius,var(--el-border-radius-base));transition:var(--el-transition-box-shadow);border:none}.el-textarea__inner::placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-textarea__inner:hover{box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-textarea__inner:focus{outline:0;box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset}.el-textarea .el-input__count{color:var(--el-color-info);background:var(--el-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{box-shadow:0 0 0 1px var(--el-disabled-border-color) inset;background-color:var(--el-disabled-bg-color);color:var(--el-disabled-text-color);cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:var(--el-text-color-placeholder)}.el-textarea.is-exceed .el-textarea__inner{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-textarea.is-exceed .el-input__count{color:var(--el-color-danger)}.el-input{--el-input-text-color:var(--el-text-color-regular);--el-input-border:var(--el-border);--el-input-hover-border:var(--el-border-color-hover);--el-input-focus-border:var(--el-color-primary);--el-input-transparent-border:0 0 0 1px transparent inset;--el-input-border-color:var(--el-border-color);--el-input-border-radius:var(--el-border-radius-base);--el-input-bg-color:var(--el-fill-color-blank);--el-input-icon-color:var(--el-text-color-placeholder);--el-input-placeholder-color:var(--el-text-color-placeholder);--el-input-hover-border-color:var(--el-border-color-hover);--el-input-clear-hover-color:var(--el-text-color-secondary);--el-input-focus-border-color:var(--el-color-primary);--el-input-width:100%;--el-input-height:var(--el-component-size);position:relative;font-size:var(--el-font-size-base);display:inline-flex;width:var(--el-input-width);line-height:var(--el-input-height);box-sizing:border-box;vertical-align:middle}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:var(--el-text-color-disabled)}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:var(--el-fill-color-blank)}.el-input::-webkit-scrollbar-track-piece{background:var(--el-fill-color-blank);width:6px}.el-input .el-input__clear,.el-input .el-input__password{color:var(--el-input-icon-color);font-size:14px;cursor:pointer}.el-input .el-input__clear:hover,.el-input .el-input__password:hover{color:var(--el-input-clear-hover-color)}.el-input .el-input__count{height:100%;display:inline-flex;align-items:center;color:var(--el-color-info);font-size:12px}.el-input .el-input__count .el-input__count-inner{background:var(--el-fill-color-blank);line-height:normal;display:inline-block;padding-left:8px}.el-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--el-input-bg-color,var(--el-fill-color-blank));background-image:none;border-radius:var(--el-input-border-radius,var(--el-border-radius-base));cursor:text;transition:var(--el-transition-box-shadow);transform:translateZ(0);box-shadow:0 0 0 1px var(--el-input-border-color,var(--el-border-color)) inset}.el-input__wrapper:hover{box-shadow:0 0 0 1px var(--el-input-hover-border-color) inset}.el-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset}.el-input__inner{--el-input-inner-height:calc(var(--el-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--el-input-text-color,var(--el-text-color-regular));font-size:inherit;height:var(--el-input-inner-height);line-height:var(--el-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.el-input__inner:focus{outline:0}.el-input__inner::placeholder{color:var(--el-input-placeholder-color,var(--el-text-color-placeholder))}.el-input__inner[type=password]::-ms-reveal{display:none}.el-input__inner[type=number]{line-height:1}.el-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--el-input-icon-color,var(--el-text-color-placeholder));transition:all var(--el-transition-duration);pointer-events:none}.el-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.el-input__prefix-inner>:last-child{margin-right:8px}.el-input__prefix-inner>:first-child,.el-input__prefix-inner>:first-child.el-input__icon{margin-left:0}.el-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--el-input-icon-color,var(--el-text-color-placeholder));transition:all var(--el-transition-duration);pointer-events:none}.el-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.el-input__suffix-inner>:first-child{margin-left:8px}.el-input .el-input__icon{height:inherit;line-height:inherit;display:flex;justify-content:center;align-items:center;transition:all var(--el-transition-duration);margin-left:8px}.el-input__validateIcon{pointer-events:none}.el-input.is-active .el-input__wrapper{box-shadow:0 0 0 1px var(--el-input-focus-color,) inset}.el-input.is-disabled{cursor:not-allowed}.el-input.is-disabled .el-input__wrapper{background-color:var(--el-disabled-bg-color);box-shadow:0 0 0 1px var(--el-disabled-border-color) inset}.el-input.is-disabled .el-input__inner{color:var(--el-disabled-text-color);-webkit-text-fill-color:var(--el-disabled-text-color);cursor:not-allowed}.el-input.is-disabled .el-input__inner::placeholder{color:var(--el-text-color-placeholder)}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__wrapper{box-shadow:0 0 0 1px var(--el-color-danger) inset}.el-input.is-exceed .el-input__suffix .el-input__count{color:var(--el-color-danger)}.el-input--large{--el-input-height:var(--el-component-size-large);font-size:14px}.el-input--large .el-input__wrapper{padding:1px 15px}.el-input--large .el-input__inner{--el-input-inner-height:calc(var(--el-input-height, 40px) - 2px)}.el-input--small{--el-input-height:var(--el-component-size-small);font-size:12px}.el-input--small .el-input__wrapper{padding:1px 7px}.el-input--small .el-input__inner{--el-input-inner-height:calc(var(--el-input-height, 24px) - 2px)}.el-input-group{display:inline-flex;width:100%;align-items:stretch}.el-input-group__append,.el-input-group__prepend{background-color:var(--el-fill-color-light);color:var(--el-color-info);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--el-input-border-radius);padding:0 20px;white-space:nowrap}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:0 -20px}.el-input-group__append button.el-button,.el-input-group__append button.el-button:hover,.el-input-group__append div.el-select .el-select__wrapper,.el-input-group__append div.el-select:hover .el-select__wrapper,.el-input-group__prepend button.el-button,.el-input-group__prepend button.el-button:hover,.el-input-group__prepend div.el-select .el-select__wrapper,.el-input-group__prepend div.el-select:hover .el-select__wrapper{border-color:transparent;background-color:transparent;color:inherit}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0;box-shadow:1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset}.el-input-group__append{border-left:0;box-shadow:0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset}.el-input-group--prepend>.el-input__wrapper,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--prepend .el-input-group__prepend .el-select .el-select__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;box-shadow:1px 0 0 0 var(--el-input-border-color) inset,0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset}.el-input-group--append>.el-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group--append .el-input-group__append .el-select .el-select__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;box-shadow:0 1px 0 0 var(--el-input-border-color) inset,0 -1px 0 0 var(--el-input-border-color) inset,-1px 0 0 0 var(--el-input-border-color) inset}.el-link{--el-link-font-size:var(--el-font-size-base);--el-link-font-weight:var(--el-font-weight-primary);--el-link-text-color:var(--el-text-color-regular);--el-link-hover-text-color:var(--el-color-primary);--el-link-disabled-text-color:var(--el-text-color-placeholder);display:inline-flex;flex-direction:row;align-items:center;justify-content:center;vertical-align:middle;position:relative;text-decoration:none;outline:0;cursor:pointer;padding:0;font-size:var(--el-link-font-size);font-weight:var(--el-link-font-weight);color:var(--el-link-text-color)}.el-link:hover{color:var(--el-link-hover-text-color)}.el-link.is-underline:hover:after{content:"";position:absolute;left:0;right:0;height:0;bottom:0;border-bottom:1px solid var(--el-link-hover-text-color)}.el-link.is-disabled{color:var(--el-link-disabled-text-color);cursor:not-allowed}.el-link [class*=el-icon-]+span{margin-left:5px}.el-link.el-link--default:after{border-color:var(--el-link-hover-text-color)}.el-link__inner{display:inline-flex;justify-content:center;align-items:center}.el-link.el-link--primary{--el-link-text-color:var(--el-color-primary);--el-link-hover-text-color:var(--el-color-primary-light-3);--el-link-disabled-text-color:var(--el-color-primary-light-5)}.el-link.el-link--primary.is-underline:hover:after,.el-link.el-link--primary:after{border-color:var(--el-link-text-color)}.el-link.el-link--success{--el-link-text-color:var(--el-color-success);--el-link-hover-text-color:var(--el-color-success-light-3);--el-link-disabled-text-color:var(--el-color-success-light-5)}.el-link.el-link--success.is-underline:hover:after,.el-link.el-link--success:after{border-color:var(--el-link-text-color)}.el-link.el-link--warning{--el-link-text-color:var(--el-color-warning);--el-link-hover-text-color:var(--el-color-warning-light-3);--el-link-disabled-text-color:var(--el-color-warning-light-5)}.el-link.el-link--warning.is-underline:hover:after,.el-link.el-link--warning:after{border-color:var(--el-link-text-color)}.el-link.el-link--danger{--el-link-text-color:var(--el-color-danger);--el-link-hover-text-color:var(--el-color-danger-light-3);--el-link-disabled-text-color:var(--el-color-danger-light-5)}.el-link.el-link--danger.is-underline:hover:after,.el-link.el-link--danger:after{border-color:var(--el-link-text-color)}.el-link.el-link--error{--el-link-text-color:var(--el-color-error);--el-link-hover-text-color:var(--el-color-error-light-3);--el-link-disabled-text-color:var(--el-color-error-light-5)}.el-link.el-link--error.is-underline:hover:after,.el-link.el-link--error:after{border-color:var(--el-link-text-color)}.el-link.el-link--info{--el-link-text-color:var(--el-color-info);--el-link-hover-text-color:var(--el-color-info-light-3);--el-link-disabled-text-color:var(--el-color-info-light-5)}.el-link.el-link--info.is-underline:hover:after,.el-link.el-link--info:after{border-color:var(--el-link-text-color)}:root{--el-loading-spinner-size:42px;--el-loading-fullscreen-spinner-size:50px}.el-loading-parent--relative{position:relative!important}.el-loading-parent--hidden{overflow:hidden!important}.el-loading-mask{position:absolute;z-index:2000;background-color:var(--el-mask-color);margin:0;top:0;right:0;bottom:0;left:0;transition:opacity var(--el-transition-duration)}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:calc((0px - var(--el-loading-fullscreen-spinner-size))/2)}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:var(--el-loading-fullscreen-spinner-size);width:var(--el-loading-fullscreen-spinner-size)}.el-loading-spinner{top:50%;margin-top:calc((0px - var(--el-loading-spinner-size))/2);width:100%;text-align:center;position:absolute}.el-loading-spinner .el-loading-text{color:var(--el-color-primary);margin:3px 0;font-size:14px}.el-loading-spinner .circular{display:inline;height:var(--el-loading-spinner-size);width:var(--el-loading-spinner-size);animation:loading-rotate 2s linear infinite}.el-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:var(--el-color-primary);stroke-linecap:round}.el-loading-spinner i{color:var(--el-color-primary)}.el-loading-fade-enter-from,.el-loading-fade-leave-to{opacity:0}@keyframes loading-rotate{to{transform:rotate(1turn)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}.el-main{--el-main-padding:20px;display:block;flex:1;flex-basis:auto;overflow:auto;box-sizing:border-box;padding:var(--el-main-padding)}:root{--el-menu-active-color:var(--el-color-primary);--el-menu-text-color:var(--el-text-color-primary);--el-menu-hover-text-color:var(--el-color-primary);--el-menu-bg-color:var(--el-fill-color-blank);--el-menu-hover-bg-color:var(--el-color-primary-light-9);--el-menu-item-height:56px;--el-menu-sub-item-height:calc(var(--el-menu-item-height) - 6px);--el-menu-horizontal-height:60px;--el-menu-horizontal-sub-item-height:36px;--el-menu-item-font-size:var(--el-font-size-base);--el-menu-item-hover-fill:var(--el-color-primary-light-9);--el-menu-border-color:var(--el-border-color);--el-menu-base-level-padding:20px;--el-menu-level-padding:20px;--el-menu-icon-width:24px}.el-menu{border-right:solid 1px var(--el-menu-border-color);list-style:none;position:relative;margin:0;padding-left:0;background-color:var(--el-menu-bg-color);box-sizing:border-box}.el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-menu-item,.el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-menu-item-group__title,.el-menu--vertical:not(.el-menu--collapse):not(.el-menu--popup-container) .el-sub-menu__title{white-space:nowrap;padding-left:calc(var(--el-menu-base-level-padding) + var(--el-menu-level)*var(--el-menu-level-padding))}.el-menu:not(.el-menu--collapse) .el-sub-menu__title{padding-right:calc(var(--el-menu-base-level-padding) + var(--el-menu-icon-width))}.el-menu--horizontal{display:flex;flex-wrap:nowrap;border-right:none;height:var(--el-menu-horizontal-height)}.el-menu--horizontal.el-menu--popup-container{height:unset}.el-menu--horizontal.el-menu{border-bottom:solid 1px var(--el-menu-border-color)}.el-menu--horizontal>.el-menu-item{display:inline-flex;justify-content:center;align-items:center;height:100%;margin:0;border-bottom:2px solid transparent;color:var(--el-menu-text-color)}.el-menu--horizontal>.el-menu-item a,.el-menu--horizontal>.el-menu-item a:hover{color:inherit}.el-menu--horizontal>.el-sub-menu:focus,.el-menu--horizontal>.el-sub-menu:hover{outline:0}.el-menu--horizontal>.el-sub-menu:hover .el-sub-menu__title{color:var(--el-menu-hover-text-color)}.el-menu--horizontal>.el-sub-menu.is-active .el-sub-menu__title{border-bottom:2px solid var(--el-menu-active-color);color:var(--el-menu-active-color)}.el-menu--horizontal>.el-sub-menu .el-sub-menu__title{height:100%;border-bottom:2px solid transparent;color:var(--el-menu-text-color)}.el-menu--horizontal>.el-sub-menu .el-sub-menu__title:hover{background-color:var(--el-menu-bg-color)}.el-menu--horizontal .el-menu .el-menu-item,.el-menu--horizontal .el-menu .el-sub-menu__title{background-color:var(--el-menu-bg-color);display:flex;align-items:center;height:var(--el-menu-horizontal-sub-item-height);line-height:var(--el-menu-horizontal-sub-item-height);padding:0 10px;color:var(--el-menu-text-color)}.el-menu--horizontal .el-menu .el-sub-menu__title{padding-right:40px}.el-menu--horizontal .el-menu .el-menu-item.is-active,.el-menu--horizontal .el-menu .el-sub-menu.is-active>.el-sub-menu__title{color:var(--el-menu-active-color)}.el-menu--horizontal .el-menu-item:not(.is-disabled):focus,.el-menu--horizontal .el-menu-item:not(.is-disabled):hover{outline:0;color:var(--el-menu-hover-text-color);background-color:var(--el-menu-hover-bg-color)}.el-menu--horizontal>.el-menu-item.is-active{border-bottom:2px solid var(--el-menu-active-color);color:var(--el-menu-active-color)!important}.el-menu--collapse{width:calc(var(--el-menu-icon-width) + var(--el-menu-base-level-padding)*2)}.el-menu--collapse>.el-menu-item [class^=el-icon],.el-menu--collapse>.el-menu-item-group>ul>.el-sub-menu>.el-sub-menu__title [class^=el-icon],.el-menu--collapse>.el-sub-menu>.el-sub-menu__title [class^=el-icon]{margin:0;vertical-align:middle;width:var(--el-menu-icon-width);text-align:center}.el-menu--collapse>.el-menu-item .el-sub-menu__icon-arrow,.el-menu--collapse>.el-menu-item-group>ul>.el-sub-menu>.el-sub-menu__title .el-sub-menu__icon-arrow,.el-menu--collapse>.el-sub-menu>.el-sub-menu__title .el-sub-menu__icon-arrow{display:none}.el-menu--collapse>.el-menu-item-group>ul>.el-sub-menu>.el-sub-menu__title>span,.el-menu--collapse>.el-menu-item>span,.el-menu--collapse>.el-sub-menu>.el-sub-menu__title>span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.el-menu--collapse>.el-menu-item.is-active i{color:inherit}.el-menu--collapse .el-menu .el-sub-menu{min-width:200px}.el-menu--collapse .el-sub-menu.is-active .el-sub-menu__title{color:var(--el-menu-active-color)}.el-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;border-radius:var(--el-border-radius-small);box-shadow:var(--el-box-shadow-light)}.el-menu .el-icon{flex-shrink:0}.el-menu-item{display:flex;align-items:center;height:var(--el-menu-item-height);line-height:var(--el-menu-item-height);font-size:var(--el-menu-item-font-size);color:var(--el-menu-text-color);padding:0 var(--el-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--el-transition-duration),background-color var(--el-transition-duration),color var(--el-transition-duration);box-sizing:border-box;white-space:nowrap}.el-menu-item *{vertical-align:bottom}.el-menu-item i{color:inherit}.el-menu-item:focus,.el-menu-item:hover{outline:0}.el-menu-item:hover{background-color:var(--el-menu-hover-bg-color)}.el-menu-item.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-menu-item [class^=el-icon]{margin-right:5px;width:var(--el-menu-icon-width);text-align:center;font-size:18px;vertical-align:middle}.el-menu-item.is-active{color:var(--el-menu-active-color)}.el-menu-item.is-active i{color:inherit}.el-menu-item .el-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;box-sizing:border-box;padding:0 var(--el-menu-base-level-padding)}.el-sub-menu{list-style:none;margin:0;padding-left:0}.el-sub-menu__title{display:flex;align-items:center;height:var(--el-menu-item-height);line-height:var(--el-menu-item-height);font-size:var(--el-menu-item-font-size);color:var(--el-menu-text-color);padding:0 var(--el-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--el-transition-duration),background-color var(--el-transition-duration),color var(--el-transition-duration);box-sizing:border-box;white-space:nowrap}.el-sub-menu__title *{vertical-align:bottom}.el-sub-menu__title i{color:inherit}.el-sub-menu__title:focus,.el-sub-menu__title:hover{outline:0}.el-sub-menu__title.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-sub-menu__title:hover{background-color:var(--el-menu-hover-bg-color)}.el-sub-menu .el-menu{border:none}.el-sub-menu .el-menu-item{height:var(--el-menu-sub-item-height);line-height:var(--el-menu-sub-item-height)}.el-sub-menu__hide-arrow .el-sub-menu__icon-arrow{display:none!important}.el-sub-menu.is-active .el-sub-menu__title{border-bottom-color:var(--el-menu-active-color)}.el-sub-menu.is-disabled .el-menu-item,.el-sub-menu.is-disabled .el-sub-menu__title{opacity:.25;cursor:not-allowed;background:0 0!important}.el-sub-menu .el-icon{vertical-align:middle;margin-right:5px;width:var(--el-menu-icon-width);text-align:center;font-size:18px}.el-sub-menu .el-icon.el-sub-menu__icon-more{margin-right:0!important}.el-sub-menu .el-sub-menu__icon-arrow{position:absolute;top:50%;right:var(--el-menu-base-level-padding);margin-top:-6px;transition:transform var(--el-transition-duration);font-size:12px;margin-right:0;width:inherit}.el-menu-item-group>ul{padding:0}.el-menu-item-group__title{padding:7px 0 7px var(--el-menu-base-level-padding);line-height:normal;font-size:12px;color:var(--el-text-color-secondary)}.horizontal-collapse-transition .el-sub-menu__title .el-sub-menu__icon-arrow{transition:var(--el-transition-duration-fast);opacity:0}.el-message-box{--el-messagebox-title-color:var(--el-text-color-primary);--el-messagebox-width:420px;--el-messagebox-border-radius:4px;--el-messagebox-box-shadow:var(--el-box-shadow);--el-messagebox-font-size:var(--el-font-size-large);--el-messagebox-content-font-size:var(--el-font-size-base);--el-messagebox-content-color:var(--el-text-color-regular);--el-messagebox-error-font-size:12px;--el-messagebox-padding-primary:12px;--el-messagebox-font-line-height:var(--el-font-line-height-primary);display:inline-block;position:relative;max-width:var(--el-messagebox-width);width:100%;padding:var(--el-messagebox-padding-primary);vertical-align:middle;background-color:var(--el-bg-color);border-radius:var(--el-messagebox-border-radius);font-size:var(--el-messagebox-font-size);box-shadow:var(--el-messagebox-box-shadow);text-align:left;overflow:hidden;backface-visibility:hidden;box-sizing:border-box;overflow-wrap:break-word}.el-message-box:focus{outline:0!important}.el-overlay.is-message-box .el-overlay-message-box{text-align:center;position:fixed;top:0;right:0;bottom:0;left:0;padding:16px;overflow:auto}.el-overlay.is-message-box .el-overlay-message-box:after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.el-message-box.is-draggable .el-message-box__header{cursor:move;-webkit-user-select:none;user-select:none}.el-message-box__header{padding-bottom:var(--el-messagebox-padding-primary)}.el-message-box__header.show-close{padding-right:calc(var(--el-messagebox-padding-primary) + var(--el-message-close-size,16px))}.el-message-box__title{font-size:var(--el-messagebox-font-size);line-height:var(--el-messagebox-font-line-height);color:var(--el-messagebox-title-color)}.el-message-box__headerbtn{position:absolute;top:0;right:0;padding:0;width:40px;height:40px;border:none;outline:0;background:0 0;font-size:var(--el-message-close-size,16px);cursor:pointer}.el-message-box__headerbtn .el-message-box__close{color:var(--el-color-info);font-size:inherit}.el-message-box__headerbtn:focus .el-message-box__close,.el-message-box__headerbtn:hover .el-message-box__close{color:var(--el-color-primary)}.el-message-box__content{color:var(--el-messagebox-content-color);font-size:var(--el-messagebox-content-font-size)}.el-message-box__container{display:flex;align-items:center;gap:12px}.el-message-box__input{padding-top:12px}.el-message-box__input div.invalid>input,.el-message-box__input div.invalid>input:focus{border-color:var(--el-color-error)}.el-message-box__status{font-size:24px}.el-message-box__status.el-message-box-icon--success{--el-messagebox-color:var(--el-color-success);color:var(--el-messagebox-color)}.el-message-box__status.el-message-box-icon--info{--el-messagebox-color:var(--el-color-info);color:var(--el-messagebox-color)}.el-message-box__status.el-message-box-icon--warning{--el-messagebox-color:var(--el-color-warning);color:var(--el-messagebox-color)}.el-message-box__status.el-message-box-icon--error{--el-messagebox-color:var(--el-color-error);color:var(--el-messagebox-color)}.el-message-box__message{margin:0}.el-message-box__message p{margin:0;line-height:var(--el-messagebox-font-line-height)}.el-message-box__errormsg{color:var(--el-color-error);font-size:var(--el-messagebox-error-font-size);line-height:var(--el-messagebox-font-line-height)}.el-message-box__btns{display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center;padding-top:var(--el-messagebox-padding-primary)}.el-message-box--center .el-message-box__title{display:flex;align-items:center;justify-content:center;gap:6px}.el-message-box--center .el-message-box__status{font-size:inherit}.el-message-box--center .el-message-box__btns,.el-message-box--center .el-message-box__container{justify-content:center}.fade-in-linear-enter-active .el-overlay-message-box{animation:msgbox-fade-in var(--el-transition-duration)}.fade-in-linear-leave-active .el-overlay-message-box{animation:msgbox-fade-in var(--el-transition-duration) reverse}@keyframes msgbox-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}to{transform:translateZ(0);opacity:1}}.el-message{--el-message-bg-color:var(--el-color-info-light-9);--el-message-border-color:var(--el-border-color-lighter);--el-message-padding:15px 19px;--el-message-close-size:16px;--el-message-close-icon-color:var(--el-text-color-placeholder);--el-message-close-hover-color:var(--el-text-color-secondary);width:-moz-fit-content;width:fit-content;max-width:calc(100% - 32px);box-sizing:border-box;border-radius:var(--el-border-radius-base);border-width:var(--el-border-width);border-style:var(--el-border-style);border-color:var(--el-message-border-color);position:fixed;left:50%;top:20px;transform:translateX(-50%);background-color:var(--el-message-bg-color);transition:opacity var(--el-transition-duration),transform .4s,top .4s;padding:var(--el-message-padding);display:flex;align-items:center}.el-message.is-center{justify-content:center}.el-message.is-closable .el-message__content{padding-right:31px}.el-message p{margin:0}.el-message--success{--el-message-bg-color:var(--el-color-success-light-9);--el-message-border-color:var(--el-color-success-light-8);--el-message-text-color:var(--el-color-success)}.el-message--success .el-message__content{color:var(--el-message-text-color);overflow-wrap:break-word}.el-message .el-message-icon--success{color:var(--el-message-text-color)}.el-message--info{--el-message-bg-color:var(--el-color-info-light-9);--el-message-border-color:var(--el-color-info-light-8);--el-message-text-color:var(--el-color-info)}.el-message--info .el-message__content{color:var(--el-message-text-color);overflow-wrap:break-word}.el-message .el-message-icon--info{color:var(--el-message-text-color)}.el-message--warning{--el-message-bg-color:var(--el-color-warning-light-9);--el-message-border-color:var(--el-color-warning-light-8);--el-message-text-color:var(--el-color-warning)}.el-message--warning .el-message__content{color:var(--el-message-text-color);overflow-wrap:break-word}.el-message .el-message-icon--warning{color:var(--el-message-text-color)}.el-message--error{--el-message-bg-color:var(--el-color-error-light-9);--el-message-border-color:var(--el-color-error-light-8);--el-message-text-color:var(--el-color-error)}.el-message--error .el-message__content{color:var(--el-message-text-color);overflow-wrap:break-word}.el-message .el-message-icon--error{color:var(--el-message-text-color)}.el-message__icon{margin-right:10px}.el-message .el-message__badge{position:absolute;top:-8px;right:-8px}.el-message__content{padding:0;font-size:14px;line-height:1}.el-message__content:focus{outline-width:0}.el-message .el-message__closeBtn{position:absolute;top:50%;right:19px;transform:translateY(-50%);cursor:pointer;color:var(--el-message-close-icon-color);font-size:var(--el-message-close-size)}.el-message .el-message__closeBtn:focus{outline-width:0}.el-message .el-message__closeBtn:hover{color:var(--el-message-close-hover-color)}.el-message-fade-enter-from,.el-message-fade-leave-to{opacity:0;transform:translate(-50%,-100%)}.el-notification{--el-notification-width:330px;--el-notification-padding:14px 26px 14px 13px;--el-notification-radius:8px;--el-notification-shadow:var(--el-box-shadow-light);--el-notification-border-color:var(--el-border-color-lighter);--el-notification-icon-size:24px;--el-notification-close-font-size:var(--el-message-close-size,16px);--el-notification-group-margin-left:13px;--el-notification-group-margin-right:8px;--el-notification-content-font-size:var(--el-font-size-base);--el-notification-content-color:var(--el-text-color-regular);--el-notification-title-font-size:16px;--el-notification-title-color:var(--el-text-color-primary);--el-notification-close-color:var(--el-text-color-secondary);--el-notification-close-hover-color:var(--el-text-color-regular);display:flex;width:var(--el-notification-width);padding:var(--el-notification-padding);border-radius:var(--el-notification-radius);box-sizing:border-box;border:1px solid var(--el-notification-border-color);position:fixed;background-color:var(--el-bg-color-overlay);box-shadow:var(--el-notification-shadow);transition:opacity var(--el-transition-duration),transform var(--el-transition-duration),left var(--el-transition-duration),right var(--el-transition-duration),top .4s,bottom var(--el-transition-duration);overflow-wrap:break-word;overflow:hidden;z-index:9999}.el-notification.right{right:16px}.el-notification.left{left:16px}.el-notification__group{margin-left:var(--el-notification-group-margin-left);margin-right:var(--el-notification-group-margin-right)}.el-notification__title{font-weight:700;font-size:var(--el-notification-title-font-size);line-height:var(--el-notification-icon-size);color:var(--el-notification-title-color);margin:0}.el-notification__content{font-size:var(--el-notification-content-font-size);line-height:24px;margin:6px 0 0;color:var(--el-notification-content-color)}.el-notification__content p{margin:0}.el-notification .el-notification__icon{height:var(--el-notification-icon-size);width:var(--el-notification-icon-size);font-size:var(--el-notification-icon-size)}.el-notification .el-notification__closeBtn{position:absolute;top:18px;right:15px;cursor:pointer;color:var(--el-notification-close-color);font-size:var(--el-notification-close-font-size)}.el-notification .el-notification__closeBtn:hover{color:var(--el-notification-close-hover-color)}.el-notification .el-notification--success{--el-notification-icon-color:var(--el-color-success);color:var(--el-notification-icon-color)}.el-notification .el-notification--info{--el-notification-icon-color:var(--el-color-info);color:var(--el-notification-icon-color)}.el-notification .el-notification--warning{--el-notification-icon-color:var(--el-color-warning);color:var(--el-notification-icon-color)}.el-notification .el-notification--error{--el-notification-icon-color:var(--el-color-error);color:var(--el-notification-icon-color)}.el-notification-fade-enter-from.right{right:0;transform:translateX(100%)}.el-notification-fade-enter-from.left{left:0;transform:translateX(-100%)}.el-notification-fade-leave-to{opacity:0}.el-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2000;height:100%;background-color:var(--el-overlay-color-lighter);overflow:auto}.el-overlay .el-overlay-root{height:0}.el-page-header.is-contentful .el-page-header__main{border-top:1px solid var(--el-border-color-light);margin-top:16px}.el-page-header__header{display:flex;align-items:center;justify-content:space-between;line-height:24px}.el-page-header__left{display:flex;align-items:center;margin-right:40px;position:relative}.el-page-header__back{display:flex;align-items:center;cursor:pointer}.el-page-header__left .el-divider--vertical{margin:0 16px}.el-page-header__icon{font-size:16px;margin-right:10px;display:flex;align-items:center}.el-page-header__icon .el-icon{font-size:inherit}.el-page-header__title{font-size:14px;font-weight:500}.el-page-header__content{font-size:18px;color:var(--el-text-color-primary)}.el-page-header__breadcrumb{margin-bottom:16px}.el-pagination{--el-pagination-font-size:14px;--el-pagination-bg-color:var(--el-fill-color-blank);--el-pagination-text-color:var(--el-text-color-primary);--el-pagination-border-radius:2px;--el-pagination-button-color:var(--el-text-color-primary);--el-pagination-button-width:32px;--el-pagination-button-height:32px;--el-pagination-button-disabled-color:var(--el-text-color-placeholder);--el-pagination-button-disabled-bg-color:var(--el-fill-color-blank);--el-pagination-button-bg-color:var(--el-fill-color);--el-pagination-hover-color:var(--el-color-primary);--el-pagination-font-size-small:12px;--el-pagination-button-width-small:24px;--el-pagination-button-height-small:24px;--el-pagination-item-gap:16px;white-space:nowrap;color:var(--el-pagination-text-color);font-size:var(--el-pagination-font-size);font-weight:400;display:flex;align-items:center}.el-pagination .el-input__inner{text-align:center;-moz-appearance:textfield}.el-pagination .el-select{width:128px}.el-pagination button{display:flex;justify-content:center;align-items:center;font-size:var(--el-pagination-font-size);min-width:var(--el-pagination-button-width);height:var(--el-pagination-button-height);line-height:var(--el-pagination-button-height);color:var(--el-pagination-button-color);background:var(--el-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--el-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.el-pagination button *{pointer-events:none}.el-pagination button:focus{outline:0}.el-pagination button.is-active,.el-pagination button:hover{color:var(--el-pagination-hover-color)}.el-pagination button.is-active{cursor:default;font-weight:700}.el-pagination button.is-active.is-disabled{font-weight:700;color:var(--el-text-color-secondary)}.el-pagination button.is-disabled,.el-pagination button:disabled{color:var(--el-pagination-button-disabled-color);background-color:var(--el-pagination-button-disabled-bg-color);cursor:not-allowed}.el-pagination button:focus-visible{outline:1px solid var(--el-pagination-hover-color);outline-offset:-1px}.el-pagination .btn-next .el-icon,.el-pagination .btn-prev .el-icon{display:block;font-size:12px;font-weight:700;width:inherit}.el-pagination>.is-first{margin-left:0!important}.el-pagination>.is-last{margin-right:0!important}.el-pagination .btn-prev{margin-left:var(--el-pagination-item-gap)}.el-pagination__sizes,.el-pagination__total{margin-left:var(--el-pagination-item-gap);font-weight:400;color:var(--el-text-color-regular)}.el-pagination__total[disabled=true]{color:var(--el-text-color-placeholder)}.el-pagination__jump{display:flex;align-items:center;margin-left:var(--el-pagination-item-gap);font-weight:400;color:var(--el-text-color-regular)}.el-pagination__jump[disabled=true]{color:var(--el-text-color-placeholder)}.el-pagination__goto{margin-right:8px}.el-pagination__editor{text-align:center;box-sizing:border-box}.el-pagination__editor.el-input{width:56px}.el-pagination__editor .el-input__inner::-webkit-inner-spin-button,.el-pagination__editor .el-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.el-pagination__classifier{margin-left:8px}.el-pagination__rightwrapper{flex:1;display:flex;align-items:center;justify-content:flex-end}.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev,.el-pagination.is-background .el-pager li{margin:0 4px;background-color:var(--el-pagination-button-bg-color)}.el-pagination.is-background .btn-next.is-active,.el-pagination.is-background .btn-prev.is-active,.el-pagination.is-background .el-pager li.is-active{background-color:var(--el-color-primary);color:var(--el-color-white)}.el-pagination.is-background .btn-next.is-disabled,.el-pagination.is-background .btn-next:disabled,.el-pagination.is-background .btn-prev.is-disabled,.el-pagination.is-background .btn-prev:disabled,.el-pagination.is-background .el-pager li.is-disabled,.el-pagination.is-background .el-pager li:disabled{color:var(--el-text-color-placeholder);background-color:var(--el-disabled-bg-color)}.el-pagination.is-background .btn-next.is-disabled.is-active,.el-pagination.is-background .btn-next:disabled.is-active,.el-pagination.is-background .btn-prev.is-disabled.is-active,.el-pagination.is-background .btn-prev:disabled.is-active,.el-pagination.is-background .el-pager li.is-disabled.is-active,.el-pagination.is-background .el-pager li:disabled.is-active{color:var(--el-text-color-secondary);background-color:var(--el-fill-color-dark)}.el-pagination.is-background .btn-prev{margin-left:var(--el-pagination-item-gap)}.el-pagination--small .btn-next,.el-pagination--small .btn-prev,.el-pagination--small .el-pager li{height:var(--el-pagination-button-height-small);line-height:var(--el-pagination-button-height-small);font-size:var(--el-pagination-font-size-small);min-width:var(--el-pagination-button-width-small)}.el-pagination--small button,.el-pagination--small span:not([class*=suffix]){font-size:var(--el-pagination-font-size-small)}.el-pagination--small .el-select{width:100px}.el-pager{-webkit-user-select:none;user-select:none;list-style:none;font-size:0;padding:0;margin:0}.el-pager,.el-pager li{display:flex;align-items:center}.el-pager li{justify-content:center;font-size:var(--el-pagination-font-size);min-width:var(--el-pagination-button-width);height:var(--el-pagination-button-height);line-height:var(--el-pagination-button-height);color:var(--el-pagination-button-color);background:var(--el-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--el-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.el-pager li *{pointer-events:none}.el-pager li:focus{outline:0}.el-pager li.is-active,.el-pager li:hover{color:var(--el-pagination-hover-color)}.el-pager li.is-active{cursor:default;font-weight:700}.el-pager li.is-active.is-disabled{font-weight:700;color:var(--el-text-color-secondary)}.el-pager li.is-disabled,.el-pager li:disabled{color:var(--el-pagination-button-disabled-color);background-color:var(--el-pagination-button-disabled-bg-color);cursor:not-allowed}.el-pager li:focus-visible{outline:1px solid var(--el-pagination-hover-color);outline-offset:-1px}.el-popconfirm__main{display:flex;align-items:center}.el-popconfirm__icon{margin-right:5px}.el-popconfirm__action{text-align:right;margin-top:8px}.el-popover{--el-popover-bg-color:var(--el-bg-color-overlay);--el-popover-font-size:var(--el-font-size-base);--el-popover-border-color:var(--el-border-color-lighter);--el-popover-padding:12px;--el-popover-padding-large:18px 20px;--el-popover-title-font-size:16px;--el-popover-title-text-color:var(--el-text-color-primary);--el-popover-border-radius:4px}.el-popover.el-popper{background:var(--el-popover-bg-color);min-width:150px;border-radius:var(--el-popover-border-radius);border:1px solid var(--el-popover-border-color);padding:var(--el-popover-padding);z-index:var(--el-index-popper);color:var(--el-text-color-regular);line-height:1.4;font-size:var(--el-popover-font-size);box-shadow:var(--el-box-shadow-light);overflow-wrap:break-word;box-sizing:border-box}.el-popover.el-popper--plain{padding:var(--el-popover-padding-large)}.el-popover__title{color:var(--el-popover-title-text-color);font-size:var(--el-popover-title-font-size);line-height:1;margin-bottom:12px}.el-popover__reference:focus:hover,.el-popover__reference:focus:not(.focusing){outline-width:0}.el-popover.el-popper.is-dark{--el-popover-bg-color:var(--el-text-color-primary);--el-popover-border-color:var(--el-text-color-primary);--el-popover-title-text-color:var(--el-bg-color);color:var(--el-bg-color)}.el-popover.el-popper:focus,.el-popover.el-popper:focus:active{outline-width:0}.el-progress{position:relative;line-height:1;display:flex;align-items:center}.el-progress__text{font-size:14px;color:var(--el-text-color-regular);margin-left:5px;min-width:50px;line-height:1}.el-progress__text i{vertical-align:middle;display:block}.el-progress--circle,.el-progress--dashboard{display:inline-block}.el-progress--circle .el-progress__text,.el-progress--dashboard .el-progress__text{position:absolute;top:50%;left:0;width:100%;text-align:center;margin:0;transform:translateY(-50%)}.el-progress--circle .el-progress__text i,.el-progress--dashboard .el-progress__text i{vertical-align:middle;display:inline-block}.el-progress--without-text .el-progress__text{display:none}.el-progress--without-text .el-progress-bar{padding-right:0;margin-right:0;display:block}.el-progress--text-inside .el-progress-bar{padding-right:0;margin-right:0}.el-progress.is-success .el-progress-bar__inner{background-color:var(--el-color-success)}.el-progress.is-success .el-progress__text{color:var(--el-color-success)}.el-progress.is-warning .el-progress-bar__inner{background-color:var(--el-color-warning)}.el-progress.is-warning .el-progress__text{color:var(--el-color-warning)}.el-progress.is-exception .el-progress-bar__inner{background-color:var(--el-color-danger)}.el-progress.is-exception .el-progress__text{color:var(--el-color-danger)}.el-progress-bar{flex-grow:1;box-sizing:border-box}.el-progress-bar__outer{height:6px;border-radius:100px;background-color:var(--el-border-color-lighter);overflow:hidden;position:relative;vertical-align:middle}.el-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:var(--el-color-primary);text-align:right;border-radius:100px;line-height:1;white-space:nowrap;transition:width .6s ease}.el-progress-bar__inner:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-progress-bar__inner--indeterminate{transform:translateZ(0);animation:indeterminate 3s infinite}.el-progress-bar__inner--striped{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 0,transparent 50%,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 75%,transparent 0,transparent);background-size:1.25em 1.25em}.el-progress-bar__inner--striped.el-progress-bar__inner--striped-flow{animation:striped-flow 3s linear infinite}.el-progress-bar__innerText{display:inline-block;vertical-align:middle;color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}@keyframes indeterminate{0%{left:-100%}to{left:100%}}@keyframes striped-flow{0%{background-position:-100%}to{background-position:100%}}.el-radio-button{--el-radio-button-checked-bg-color:var(--el-color-primary);--el-radio-button-checked-text-color:var(--el-color-white);--el-radio-button-checked-border-color:var(--el-color-primary);--el-radio-button-disabled-checked-fill:var(--el-border-color-extra-light)}.el-radio-button,.el-radio-button__inner{position:relative;display:inline-block;outline:0}.el-radio-button__inner{line-height:1;white-space:nowrap;vertical-align:middle;background:var(--el-button-bg-color,var(--el-fill-color-blank));border:var(--el-border);font-weight:var(--el-button-font-weight,var(--el-font-weight-primary));border-left:0;color:var(--el-button-text-color,var(--el-text-color-regular));-webkit-appearance:none;text-align:center;box-sizing:border-box;margin:0;cursor:pointer;transition:var(--el-transition-all);-webkit-user-select:none;user-select:none;padding:8px 15px;font-size:var(--el-font-size-base);border-radius:0}.el-radio-button__inner.is-round{padding:8px 15px}.el-radio-button__inner:hover{color:var(--el-color-primary)}.el-radio-button__inner [class*=el-icon-]{line-height:.9}.el-radio-button__inner [class*=el-icon-]+span{margin-left:5px}.el-radio-button:first-child .el-radio-button__inner{border-left:var(--el-border);border-radius:var(--el-border-radius-base) 0 0 var(--el-border-radius-base);box-shadow:none!important}.el-radio-button__original-radio{opacity:0;outline:0;position:absolute;z-index:-1}.el-radio-button__original-radio:checked+.el-radio-button__inner{color:var(--el-radio-button-checked-text-color,var(--el-color-white));background-color:var(--el-radio-button-checked-bg-color,var(--el-color-primary));border-color:var(--el-radio-button-checked-border-color,var(--el-color-primary));box-shadow:-1px 0 0 0 var(--el-radio-button-checked-border-color,var(--el-color-primary))}.el-radio-button__original-radio:focus-visible+.el-radio-button__inner{border-left:var(--el-border);border-left-color:var(--el-radio-button-checked-border-color,var(--el-color-primary));outline:2px solid var(--el-radio-button-checked-border-color);outline-offset:1px;z-index:2;border-radius:var(--el-border-radius-base);box-shadow:none}.el-radio-button__original-radio:disabled+.el-radio-button__inner{color:var(--el-disabled-text-color);cursor:not-allowed;background-image:none;background-color:var(--el-button-disabled-bg-color,var(--el-fill-color-blank));border-color:var(--el-button-disabled-border-color,var(--el-border-color-light));box-shadow:none}.el-radio-button__original-radio:disabled:checked+.el-radio-button__inner{background-color:var(--el-radio-button-disabled-checked-fill)}.el-radio-button:last-child .el-radio-button__inner{border-radius:0 var(--el-border-radius-base) var(--el-border-radius-base) 0}.el-radio-button:first-child:last-child .el-radio-button__inner{border-radius:var(--el-border-radius-base)}.el-radio-button--large .el-radio-button__inner{padding:12px 19px;font-size:var(--el-font-size-base);border-radius:0}.el-radio-button--large .el-radio-button__inner.is-round{padding:12px 19px}.el-radio-button--small .el-radio-button__inner{padding:5px 11px;font-size:12px;border-radius:0}.el-radio-button--small .el-radio-button__inner.is-round{padding:5px 11px}.el-radio-group{display:inline-flex;align-items:center;flex-wrap:wrap;font-size:0}.el-radio{--el-radio-font-size:var(--el-font-size-base);--el-radio-text-color:var(--el-text-color-regular);--el-radio-font-weight:var(--el-font-weight-primary);--el-radio-input-height:14px;--el-radio-input-width:14px;--el-radio-input-border-radius:var(--el-border-radius-circle);--el-radio-input-bg-color:var(--el-fill-color-blank);--el-radio-input-border:var(--el-border);--el-radio-input-border-color:var(--el-border-color);--el-radio-input-border-color-hover:var(--el-color-primary);color:var(--el-radio-text-color);font-weight:var(--el-radio-font-weight);position:relative;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;outline:0;font-size:var(--el-font-size-base);-webkit-user-select:none;user-select:none;margin-right:32px;height:32px}.el-radio.el-radio--large{height:40px}.el-radio.el-radio--small{height:24px}.el-radio.is-bordered{padding:0 15px 0 9px;border-radius:var(--el-border-radius-base);border:var(--el-border);box-sizing:border-box}.el-radio.is-bordered.is-checked{border-color:var(--el-color-primary)}.el-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:var(--el-border-color-lighter)}.el-radio.is-bordered.el-radio--large{padding:0 19px 0 11px;border-radius:var(--el-border-radius-base)}.el-radio.is-bordered.el-radio--large .el-radio__label{font-size:var(--el-font-size-base)}.el-radio.is-bordered.el-radio--large .el-radio__inner{height:14px;width:14px}.el-radio.is-bordered.el-radio--small{padding:0 11px 0 7px;border-radius:var(--el-border-radius-base)}.el-radio.is-bordered.el-radio--small .el-radio__label{font-size:12px}.el-radio.is-bordered.el-radio--small .el-radio__inner{height:12px;width:12px}.el-radio:last-child{margin-right:0}.el-radio__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-flex;position:relative;vertical-align:middle}.el-radio__input.is-disabled .el-radio__inner{border-color:var(--el-disabled-border-color)}.el-radio__input.is-disabled .el-radio__inner,.el-radio__input.is-disabled .el-radio__inner:after{background-color:var(--el-disabled-bg-color);cursor:not-allowed}.el-radio__input.is-disabled .el-radio__inner+.el-radio__label{cursor:not-allowed}.el-radio__input.is-disabled.is-checked .el-radio__inner{background-color:var(--el-disabled-bg-color);border-color:var(--el-disabled-border-color)}.el-radio__input.is-disabled.is-checked .el-radio__inner:after{background-color:var(--el-text-color-placeholder)}.el-radio__input.is-disabled+span.el-radio__label{color:var(--el-text-color-placeholder);cursor:not-allowed}.el-radio__input.is-checked .el-radio__inner{border-color:var(--el-color-primary);background:var(--el-color-primary)}.el-radio__input.is-checked .el-radio__inner:after{transform:translate(-50%,-50%) scale(1)}.el-radio__input.is-checked+.el-radio__label{color:var(--el-color-primary)}.el-radio__input.is-focus .el-radio__inner{border-color:var(--el-radio-input-border-color-hover)}.el-radio__inner{border:var(--el-radio-input-border);border-radius:var(--el-radio-input-border-radius);width:var(--el-radio-input-width);height:var(--el-radio-input-height);background-color:var(--el-radio-input-bg-color);position:relative;cursor:pointer;display:inline-block;box-sizing:border-box}.el-radio__inner:hover{border-color:var(--el-radio-input-border-color-hover)}.el-radio__inner:after{width:4px;height:4px;border-radius:var(--el-radio-input-border-radius);background-color:var(--el-color-white);content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);transition:transform .15s ease-in}.el-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.el-radio__original:focus-visible+.el-radio__inner{outline:2px solid var(--el-radio-input-border-color-hover);outline-offset:1px;border-radius:var(--el-radio-input-border-radius)}.el-radio:focus:not(:focus-visible):not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{box-shadow:0 0 2px 2px var(--el-radio-input-border-color-hover)}.el-radio__label{font-size:var(--el-radio-font-size);padding-left:8px}.el-radio.el-radio--large .el-radio__label{font-size:14px}.el-radio.el-radio--large .el-radio__inner{width:14px;height:14px}.el-radio.el-radio--small .el-radio__label{font-size:12px}.el-radio.el-radio--small .el-radio__inner{width:12px;height:12px}.el-rate{--el-rate-height:20px;--el-rate-font-size:var(--el-font-size-base);--el-rate-icon-size:18px;--el-rate-icon-margin:6px;--el-rate-void-color:var(--el-border-color-darker);--el-rate-fill-color:#f7ba2a;--el-rate-disabled-void-color:var(--el-fill-color);--el-rate-text-color:var(--el-text-color-primary);display:inline-flex;align-items:center;height:32px}.el-rate:active,.el-rate:focus{outline:0}.el-rate__item{cursor:pointer;display:inline-block;position:relative;font-size:0;vertical-align:middle;color:var(--el-rate-void-color);line-height:normal}.el-rate .el-rate__icon{position:relative;display:inline-block;font-size:var(--el-rate-icon-size);margin-right:var(--el-rate-icon-margin);transition:var(--el-transition-duration)}.el-rate .el-rate__icon.hover{transform:scale(1.15)}.el-rate .el-rate__icon .path2{position:absolute;left:0;top:0}.el-rate .el-rate__icon.is-active{color:var(--el-rate-fill-color)}.el-rate__decimal{display:inline-block;overflow:hidden;color:var(--el-rate-fill-color)}.el-rate__decimal,.el-rate__decimal--box{position:absolute;top:0;left:0}.el-rate__text{font-size:var(--el-rate-font-size);vertical-align:middle;color:var(--el-rate-text-color)}.el-rate--large{height:40px}.el-rate--small{height:24px}.el-rate--small .el-rate__icon{font-size:14px}.el-rate.is-disabled .el-rate__item{cursor:auto;color:var(--el-rate-disabled-void-color)}.el-result{--el-result-padding:40px 30px;--el-result-icon-font-size:64px;--el-result-title-font-size:20px;--el-result-title-margin-top:20px;--el-result-subtitle-margin-top:10px;--el-result-extra-margin-top:30px;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center;box-sizing:border-box;padding:var(--el-result-padding)}.el-result__icon svg{width:var(--el-result-icon-font-size);height:var(--el-result-icon-font-size)}.el-result__title{margin-top:var(--el-result-title-margin-top)}.el-result__title p{margin:0;font-size:var(--el-result-title-font-size);color:var(--el-text-color-primary);line-height:1.3}.el-result__subtitle{margin-top:var(--el-result-subtitle-margin-top)}.el-result__subtitle p{margin:0;font-size:var(--el-font-size-base);color:var(--el-text-color-regular);line-height:1.3}.el-result__extra{margin-top:var(--el-result-extra-margin-top)}.el-result .icon-primary{--el-result-color:var(--el-color-primary);color:var(--el-result-color)}.el-result .icon-success{--el-result-color:var(--el-color-success);color:var(--el-result-color)}.el-result .icon-warning{--el-result-color:var(--el-color-warning);color:var(--el-result-color)}.el-result .icon-danger{--el-result-color:var(--el-color-danger);color:var(--el-result-color)}.el-result .icon-error{--el-result-color:var(--el-color-error);color:var(--el-result-color)}.el-result .icon-info{--el-result-color:var(--el-color-info);color:var(--el-result-color)}.el-row{display:flex;flex-wrap:wrap;position:relative;box-sizing:border-box}.el-row.is-justify-center{justify-content:center}.el-row.is-justify-end{justify-content:flex-end}.el-row.is-justify-space-between{justify-content:space-between}.el-row.is-justify-space-around{justify-content:space-around}.el-row.is-justify-space-evenly{justify-content:space-evenly}.el-row.is-align-top{align-items:flex-start}.el-row.is-align-middle{align-items:center}.el-row.is-align-bottom{align-items:flex-end}.el-scrollbar{--el-scrollbar-opacity:0.3;--el-scrollbar-bg-color:var(--el-text-color-secondary);--el-scrollbar-hover-opacity:0.5;--el-scrollbar-hover-bg-color:var(--el-text-color-secondary);overflow:hidden;position:relative;height:100%}.el-scrollbar__wrap{overflow:auto;height:100%}.el-scrollbar__wrap--hidden-default{scrollbar-width:none}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{display:none}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:var(--el-scrollbar-bg-color,var(--el-text-color-secondary));transition:var(--el-transition-duration) background-color;opacity:var(--el-scrollbar-opacity,.3)}.el-scrollbar__thumb:hover{background-color:var(--el-scrollbar-hover-bg-color,var(--el-text-color-secondary));opacity:var(--el-scrollbar-hover-opacity,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-scrollbar-fade-enter-active{transition:opacity .34s ease-out}.el-scrollbar-fade-leave-active{transition:opacity .12s ease-out}.el-scrollbar-fade-enter-from,.el-scrollbar-fade-leave-active{opacity:0}.el-select-dropdown{z-index:calc(var(--el-index-top) + 1);border-radius:var(--el-border-radius-base);box-sizing:border-box}.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.el-select-dropdown__empty,.el-select-dropdown__loading{padding:10px 0;margin:0;text-align:center;color:var(--el-text-color-secondary);font-size:var(--el-select-font-size)}.el-select-dropdown__wrap{max-height:274px}.el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.el-select-dropdown__list.el-vl__window{margin:6px 0;padding:0}.el-select-dropdown__header{padding:10px;border-bottom:1px solid var(--el-border-color-light)}.el-select-dropdown__footer{padding:10px;border-top:1px solid var(--el-border-color-light)}.el-select-dropdown__item{font-size:var(--el-font-size-base);padding:0 32px 0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--el-text-color-regular);height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.is-hovering{background-color:var(--el-fill-color-light)}.el-select-dropdown__item.is-selected{color:var(--el-color-primary);font-weight:700}.el-select-dropdown__item.is-disabled{color:var(--el-text-color-placeholder);cursor:not-allowed;background-color:unset}.el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected:after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:50%;background-color:var(--el-color-primary);mask:url("data:image/svg+xml;utf8,%3Csvg class=%27icon%27 width=%27200%27 height=%27200%27 viewBox=%270 0 1024 1024%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill=%27currentColor%27 d=%27M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z%27%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class=%27icon%27 width=%27200%27 height=%27200%27 viewBox=%270 0 1024 1024%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill=%27currentColor%27 d=%27M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z%27%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.el-select-dropdown.is-multiple .el-select-dropdown__item.is-disabled:after{background-color:var(--el-text-color-placeholder)}.el-select-group{margin:0;padding:0}.el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.el-select-group__wrap:not(:last-of-type):after{content:"";display:block;bottom:12px}.el-select-group__split-dash,.el-select-group__wrap:not(:last-of-type):after{position:absolute;left:20px;right:20px;height:1px;background:var(--el-border-color-light)}.el-select-group__title{padding-left:20px;font-size:12px;color:var(--el-color-info);line-height:30px}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-select{--el-select-border-color-hover:var(--el-border-color-hover);--el-select-disabled-border:var(--el-disabled-border-color);--el-select-font-size:var(--el-font-size-base);--el-select-close-hover-color:var(--el-text-color-secondary);--el-select-input-color:var(--el-text-color-placeholder);--el-select-multiple-input-color:var(--el-text-color-regular);--el-select-input-focus-border-color:var(--el-color-primary);--el-select-input-font-size:14px;--el-select-width:100%;display:inline-block;position:relative;vertical-align:middle;width:var(--el-select-width)}.el-select__wrapper{display:flex;align-items:center;position:relative;box-sizing:border-box;cursor:pointer;text-align:left;font-size:14px;padding:4px 12px;gap:6px;min-height:32px;line-height:24px;border-radius:var(--el-border-radius-base);background-color:var(--el-fill-color-blank);transition:var(--el-transition-duration);box-shadow:0 0 0 1px var(--el-border-color) inset}.el-select__wrapper:hover{box-shadow:0 0 0 1px var(--el-text-color) inset}.el-select__wrapper.is-filterable{cursor:text}.el-select__wrapper.is-focused{box-shadow:0 0 0 1px var(--el-color-primary) inset}.el-select__wrapper.is-hovering:not(.is-focused){box-shadow:0 0 0 1px var(--el-border-color-hover) inset}.el-select__wrapper.is-disabled{cursor:not-allowed;background-color:var(--el-fill-color-light);color:var(--el-text-color-placeholder)}.el-select__wrapper.is-disabled,.el-select__wrapper.is-disabled:hover{box-shadow:0 0 0 1px var(--el-select-disabled-border) inset}.el-select__wrapper.is-disabled.is-focus{box-shadow:0 0 0 1px var(--el-input-focus-border-color) inset}.el-select__wrapper.is-disabled .el-select__caret,.el-select__wrapper.is-disabled .el-tag{cursor:not-allowed}.el-select__prefix,.el-select__suffix{display:flex;align-items:center;flex-shrink:0;gap:6px;color:var(--el-input-icon-color,var(--el-text-color-placeholder))}.el-select__caret{color:var(--el-select-input-color);font-size:var(--el-select-input-font-size);transition:var(--el-transition-duration);transform:rotate(0);cursor:pointer}.el-select__caret.is-reverse{transform:rotate(180deg)}.el-select__selection{position:relative;display:flex;flex-wrap:wrap;align-items:center;flex:1;min-width:0;gap:6px}.el-select__selection.is-near{margin-left:-8px}.el-select__selection .el-tag{cursor:pointer;border-color:transparent}.el-select__selection .el-tag .el-tag__content{min-width:0}.el-select__selected-item{display:flex;flex-wrap:wrap;-webkit-user-select:none;user-select:none}.el-select__tags-text{line-height:normal}.el-select__placeholder,.el-select__tags-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-select__placeholder{position:absolute;top:50%;transform:translateY(-50%);width:100%;color:var(--el-input-text-color,var(--el-text-color-regular))}.el-select__placeholder.is-transparent{-webkit-user-select:none;user-select:none;color:var(--el-text-color-placeholder)}.el-select__popper.el-popper{background:var(--el-bg-color-overlay);box-shadow:var(--el-box-shadow-light)}.el-select__popper.el-popper,.el-select__popper.el-popper .el-popper__arrow:before{border:1px solid var(--el-border-color-light)}.el-select__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent;border-left-color:transparent}.el-select__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent;border-right-color:transparent}.el-select__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent;border-bottom-color:transparent}.el-select__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent;border-top-color:transparent}.el-select__input-wrapper{max-width:100%}.el-select__input-wrapper.is-hidden{position:absolute;opacity:0}.el-select__input{border:none;outline:0;padding:0;color:var(--el-select-multiple-input-color);font-size:inherit;font-family:inherit;-webkit-appearance:none;appearance:none;height:24px;max-width:100%;background-color:transparent}.el-select__input.is-disabled{cursor:not-allowed}.el-select__input-calculator{position:absolute;left:0;top:0;max-width:100%;visibility:hidden;white-space:pre;overflow:hidden}.el-select--large .el-select__wrapper{gap:6px;padding:8px 16px;min-height:40px;line-height:24px;font-size:14px}.el-select--large .el-select__selection{gap:6px}.el-select--large .el-select__selection.is-near{margin-left:-8px}.el-select--large .el-select__prefix,.el-select--large .el-select__suffix{gap:6px}.el-select--large .el-select__input{height:24px}.el-select--small .el-select__wrapper{gap:4px;padding:2px 8px;min-height:24px;line-height:20px;font-size:12px}.el-select--small .el-select__selection{gap:4px}.el-select--small .el-select__selection.is-near{margin-left:-6px}.el-select--small .el-select__prefix,.el-select--small .el-select__suffix{gap:4px}.el-select--small .el-select__input{height:20px}.el-skeleton{--el-skeleton-circle-size:var(--el-avatar-size)}.el-skeleton__item{background:var(--el-skeleton-color);display:inline-block;height:16px;border-radius:var(--el-border-radius-base);width:100%}.el-skeleton__circle{border-radius:50%;width:var(--el-skeleton-circle-size);height:var(--el-skeleton-circle-size);line-height:var(--el-skeleton-circle-size)}.el-skeleton__button{height:40px;width:64px;border-radius:4px}.el-skeleton__p{width:100%}.el-skeleton__p.is-last{width:61%}.el-skeleton__p.is-first{width:33%}.el-skeleton__text{width:100%;height:var(--el-font-size-small)}.el-skeleton__caption{height:var(--el-font-size-extra-small)}.el-skeleton__h1{height:var(--el-font-size-extra-large)}.el-skeleton__h3{height:var(--el-font-size-large)}.el-skeleton__h5{height:var(--el-font-size-medium)}.el-skeleton__image{width:unset;display:flex;align-items:center;justify-content:center;border-radius:0}.el-skeleton__image svg{color:var(--el-svg-monochrome-grey);fill:currentColor;width:22%;height:22%}.el-skeleton{--el-skeleton-color:var(--el-fill-color);--el-skeleton-to-color:var(--el-fill-color-darker)}@keyframes el-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}.el-skeleton{width:100%}.el-skeleton__first-line,.el-skeleton__paragraph{height:16px;margin-top:16px;background:var(--el-skeleton-color)}.el-skeleton.is-animated .el-skeleton__item{background:linear-gradient(90deg,var(--el-skeleton-color) 25%,var(--el-skeleton-to-color) 37%,var(--el-skeleton-color) 63%);background-size:400% 100%;animation:el-skeleton-loading 1.4s ease infinite}.el-slider{--el-slider-main-bg-color:var(--el-color-primary);--el-slider-runway-bg-color:var(--el-border-color-light);--el-slider-stop-bg-color:var(--el-color-white);--el-slider-disabled-color:var(--el-text-color-placeholder);--el-slider-border-radius:3px;--el-slider-height:6px;--el-slider-button-size:20px;--el-slider-button-wrapper-size:36px;--el-slider-button-wrapper-offset:-15px;width:100%;height:32px;display:flex;align-items:center}.el-slider__runway{flex:1;height:var(--el-slider-height);background-color:var(--el-slider-runway-bg-color);border-radius:var(--el-slider-border-radius);position:relative;cursor:pointer}.el-slider__runway.show-input{margin-right:30px;width:auto}.el-slider__runway.is-disabled{cursor:default}.el-slider__runway.is-disabled .el-slider__bar{background-color:var(--el-slider-disabled-color)}.el-slider__runway.is-disabled .el-slider__button{border-color:var(--el-slider-disabled-color)}.el-slider__runway.is-disabled .el-slider__button-wrapper.dragging,.el-slider__runway.is-disabled .el-slider__button-wrapper.hover,.el-slider__runway.is-disabled .el-slider__button-wrapper:hover{cursor:not-allowed}.el-slider__runway.is-disabled .el-slider__button.dragging,.el-slider__runway.is-disabled .el-slider__button.hover,.el-slider__runway.is-disabled .el-slider__button:hover{transform:scale(1)}.el-slider__runway.is-disabled .el-slider__button.dragging,.el-slider__runway.is-disabled .el-slider__button.hover,.el-slider__runway.is-disabled .el-slider__button:hover{cursor:not-allowed}.el-slider__input{flex-shrink:0;width:130px}.el-slider__bar{height:var(--el-slider-height);background-color:var(--el-slider-main-bg-color);border-top-left-radius:var(--el-slider-border-radius);border-bottom-left-radius:var(--el-slider-border-radius);position:absolute}.el-slider__button-wrapper{height:var(--el-slider-button-wrapper-size);width:var(--el-slider-button-wrapper-size);position:absolute;z-index:1;top:var(--el-slider-button-wrapper-offset);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;user-select:none;line-height:normal;outline:0}.el-slider__button-wrapper:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-slider__button-wrapper.hover,.el-slider__button-wrapper:hover{cursor:grab}.el-slider__button-wrapper.dragging{cursor:grabbing}.el-slider__button{display:inline-block;width:var(--el-slider-button-size);height:var(--el-slider-button-size);vertical-align:middle;border:solid 2px var(--el-slider-main-bg-color);background-color:var(--el-color-white);border-radius:50%;box-sizing:border-box;transition:var(--el-transition-duration-fast);-webkit-user-select:none;user-select:none}.el-slider__button.dragging,.el-slider__button.hover,.el-slider__button:hover{transform:scale(1.2)}.el-slider__button.hover,.el-slider__button:hover{cursor:grab}.el-slider__button.dragging{cursor:grabbing}.el-slider__stop{position:absolute;height:var(--el-slider-height);width:var(--el-slider-height);border-radius:var(--el-border-radius-circle);background-color:var(--el-slider-stop-bg-color);transform:translateX(-50%)}.el-slider__marks{top:0;left:12px;width:18px;height:100%}.el-slider__marks-text{position:absolute;transform:translateX(-50%);font-size:14px;color:var(--el-color-info);margin-top:15px;white-space:pre}.el-slider.is-vertical{position:relative;display:inline-flex;width:auto;height:100%;flex:0}.el-slider.is-vertical .el-slider__runway{width:var(--el-slider-height);height:100%;margin:0 16px}.el-slider.is-vertical .el-slider__bar{width:var(--el-slider-height);height:auto;border-radius:0 0 3px 3px}.el-slider.is-vertical .el-slider__button-wrapper{top:auto;left:var(--el-slider-button-wrapper-offset);transform:translateY(50%)}.el-slider.is-vertical .el-slider__stop{transform:translateY(50%)}.el-slider.is-vertical .el-slider__marks-text{margin-top:0;left:15px;transform:translateY(50%)}.el-slider--large{height:40px}.el-slider--small{height:24px}.el-space{display:inline-flex;vertical-align:top}.el-space__item{display:flex;flex-wrap:wrap}.el-space__item>*{flex:1}.el-space--vertical{flex-direction:column}.el-time-spinner{width:100%;white-space:nowrap}.el-spinner{display:inline-block;vertical-align:middle}.el-spinner-inner{animation:rotate 2s linear infinite;width:50px;height:50px}.el-spinner-inner .path{stroke:var(--el-border-color-lighter);stroke-linecap:round;animation:dash 1.5s ease-in-out infinite}@keyframes rotate{to{transform:rotate(1turn)}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.el-step{position:relative;flex-shrink:1}.el-step:last-of-type .el-step__line{display:none}.el-step:last-of-type.is-flex{flex-basis:auto!important;flex-shrink:0;flex-grow:0}.el-step:last-of-type .el-step__description,.el-step:last-of-type .el-step__main{padding-right:0}.el-step__head{position:relative;width:100%}.el-step__head.is-process{color:var(--el-text-color-primary);border-color:var(--el-text-color-primary)}.el-step__head.is-wait{color:var(--el-text-color-placeholder);border-color:var(--el-text-color-placeholder)}.el-step__head.is-success{color:var(--el-color-success);border-color:var(--el-color-success)}.el-step__head.is-error{color:var(--el-color-danger);border-color:var(--el-color-danger)}.el-step__head.is-finish{color:var(--el-color-primary);border-color:var(--el-color-primary)}.el-step__icon{position:relative;z-index:1;display:inline-flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:14px;box-sizing:border-box;background:var(--el-bg-color);transition:.15s ease-out}.el-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.el-step__icon.is-icon{width:40px}.el-step__icon-inner{display:inline-block;-webkit-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:25px;font-weight:400}.el-step__icon-inner.is-status{transform:translateY(1px)}.el-step__line{position:absolute;border-color:inherit;background-color:var(--el-text-color-placeholder)}.el-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;transition:.15s ease-out;box-sizing:border-box;width:0;height:0}.el-step__main{white-space:normal;text-align:left}.el-step__title{font-size:16px;line-height:38px}.el-step__title.is-process{font-weight:700;color:var(--el-text-color-primary)}.el-step__title.is-wait{color:var(--el-text-color-placeholder)}.el-step__title.is-success{color:var(--el-color-success)}.el-step__title.is-error{color:var(--el-color-danger)}.el-step__title.is-finish{color:var(--el-color-primary)}.el-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.el-step__description.is-process{color:var(--el-text-color-primary)}.el-step__description.is-wait{color:var(--el-text-color-placeholder)}.el-step__description.is-success{color:var(--el-color-success)}.el-step__description.is-error{color:var(--el-color-danger)}.el-step__description.is-finish{color:var(--el-color-primary)}.el-step.is-horizontal{display:inline-block}.el-step.is-horizontal .el-step__line{height:2px;top:11px;left:0;right:0}.el-step.is-vertical{display:flex}.el-step.is-vertical .el-step__head{flex-grow:0;width:24px}.el-step.is-vertical .el-step__main{padding-left:10px;flex-grow:1}.el-step.is-vertical .el-step__title{line-height:24px;padding-bottom:8px}.el-step.is-vertical .el-step__line{width:2px;top:0;bottom:0;left:11px}.el-step.is-vertical .el-step__icon.is-icon{width:24px}.el-step.is-center .el-step__head,.el-step.is-center .el-step__main{text-align:center}.el-step.is-center .el-step__description{padding-left:20%;padding-right:20%}.el-step.is-center .el-step__line{left:50%;right:-50%}.el-step.is-simple{display:flex;align-items:center}.el-step.is-simple .el-step__head{width:auto;font-size:0;padding-right:10px}.el-step.is-simple .el-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.el-step.is-simple .el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:18px}.el-step.is-simple .el-step__icon-inner.is-status{transform:scale(.8) translateY(1px)}.el-step.is-simple .el-step__main{position:relative;display:flex;align-items:stretch;flex-grow:1}.el-step.is-simple .el-step__title{font-size:16px;line-height:20px}.el-step.is-simple:not(:last-of-type) .el-step__title{max-width:50%;overflow-wrap:break-word}.el-step.is-simple .el-step__arrow{flex-grow:1;display:flex;align-items:center;justify-content:center}.el-step.is-simple .el-step__arrow:after,.el-step.is-simple .el-step__arrow:before{content:"";display:inline-block;position:absolute;height:15px;width:1px;background:var(--el-text-color-placeholder)}.el-step.is-simple .el-step__arrow:before{transform:rotate(-45deg) translateY(-4px);transform-origin:0 0}.el-step.is-simple .el-step__arrow:after{transform:rotate(45deg) translateY(4px);transform-origin:100% 100%}.el-step.is-simple:last-of-type .el-step__arrow{display:none}.el-steps{display:flex}.el-steps--simple{padding:13px 8%;border-radius:4px;background:var(--el-fill-color-light)}.el-steps--horizontal{white-space:nowrap}.el-steps--vertical{height:100%;flex-flow:column}.el-switch{--el-switch-on-color:var(--el-color-primary);--el-switch-off-color:var(--el-border-color);display:inline-flex;align-items:center;position:relative;font-size:14px;line-height:20px;height:32px;vertical-align:middle}.el-switch.is-disabled .el-switch__core,.el-switch.is-disabled .el-switch__label{cursor:not-allowed}.el-switch__label{transition:var(--el-transition-duration-fast);height:20px;display:inline-block;font-size:14px;font-weight:500;cursor:pointer;vertical-align:middle;color:var(--el-text-color-primary)}.el-switch__label.is-active{color:var(--el-color-primary)}.el-switch__label--left{margin-right:10px}.el-switch__label--right{margin-left:10px}.el-switch__label *{line-height:1;font-size:14px;display:inline-block}.el-switch__label .el-icon{height:inherit}.el-switch__label .el-icon svg{vertical-align:middle}.el-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.el-switch__input:focus-visible~.el-switch__core{outline:2px solid var(--el-switch-on-color);outline-offset:1px}.el-switch__core{display:inline-flex;position:relative;align-items:center;min-width:40px;height:20px;border:1px solid var(--el-switch-border-color,var(--el-switch-off-color));outline:0;border-radius:10px;box-sizing:border-box;background:var(--el-switch-off-color);cursor:pointer;transition:border-color var(--el-transition-duration),background-color var(--el-transition-duration)}.el-switch__core .el-switch__inner{width:100%;transition:all var(--el-transition-duration);height:16px;display:flex;justify-content:center;align-items:center;overflow:hidden;padding:0 4px 0 18px}.el-switch__core .el-switch__inner .is-icon,.el-switch__core .el-switch__inner .is-text{font-size:12px;color:var(--el-color-white);-webkit-user-select:none;user-select:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-switch__core .el-switch__action{position:absolute;left:1px;border-radius:var(--el-border-radius-circle);transition:all var(--el-transition-duration);width:16px;height:16px;background-color:var(--el-color-white);display:flex;justify-content:center;align-items:center;color:var(--el-switch-off-color)}.el-switch.is-checked .el-switch__core{border-color:var(--el-switch-border-color,var(--el-switch-on-color));background-color:var(--el-switch-on-color)}.el-switch.is-checked .el-switch__core .el-switch__action{left:calc(100% - 17px);color:var(--el-switch-on-color)}.el-switch.is-checked .el-switch__core .el-switch__inner{padding:0 18px 0 4px}.el-switch.is-disabled{opacity:.6}.el-switch--wide .el-switch__label.el-switch__label--left span{left:10px}.el-switch--wide .el-switch__label.el-switch__label--right span{right:10px}.el-switch .label-fade-enter-from,.el-switch .label-fade-leave-active{opacity:0}.el-switch--large{font-size:14px;line-height:24px;height:40px}.el-switch--large .el-switch__label{height:24px;font-size:14px}.el-switch--large .el-switch__label *{font-size:14px}.el-switch--large .el-switch__core{min-width:50px;height:24px;border-radius:12px}.el-switch--large .el-switch__core .el-switch__inner{height:20px;padding:0 6px 0 22px}.el-switch--large .el-switch__core .el-switch__action{width:20px;height:20px}.el-switch--large.is-checked .el-switch__core .el-switch__action{left:calc(100% - 21px)}.el-switch--large.is-checked .el-switch__core .el-switch__inner{padding:0 22px 0 6px}.el-switch--small{font-size:12px;line-height:16px;height:24px}.el-switch--small .el-switch__label{height:16px;font-size:12px}.el-switch--small .el-switch__label *{font-size:12px}.el-switch--small .el-switch__core{min-width:30px;height:16px;border-radius:8px}.el-switch--small .el-switch__core .el-switch__inner{height:12px;padding:0 2px 0 14px}.el-switch--small .el-switch__core .el-switch__action{width:12px;height:12px}.el-switch--small.is-checked .el-switch__core .el-switch__action{left:calc(100% - 13px)}.el-switch--small.is-checked .el-switch__core .el-switch__inner{padding:0 14px 0 2px}.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{border:solid 1px var(--el-border-color-lighter);border-radius:2px;background-color:#fff;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{padding:5px 0;margin:0;list-style:none;min-width:100px}.el-table-filter__list-item{line-height:36px;padding:0 10px;cursor:pointer;font-size:var(--el-font-size-base)}.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#fff}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{background:0 0;border:none;color:var(--el-text-color-regular);cursor:pointer;font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button:focus{outline:0}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{display:flex;align-items:center;margin-right:5px;margin-bottom:12px;margin-left:5px;height:unset}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}.el-table{--el-table-border-color:var(--el-border-color-lighter);--el-table-border:1px solid var(--el-table-border-color);--el-table-text-color:var(--el-text-color-regular);--el-table-header-text-color:var(--el-text-color-secondary);--el-table-row-hover-bg-color:var(--el-fill-color-light);--el-table-current-row-bg-color:var(--el-color-primary-light-9);--el-table-header-bg-color:var(--el-bg-color);--el-table-fixed-box-shadow:var(--el-box-shadow-light);--el-table-bg-color:var(--el-fill-color-blank);--el-table-tr-bg-color:var(--el-bg-color);--el-table-expanded-cell-bg-color:var(--el-fill-color-blank);--el-table-fixed-left-column:inset 10px 0 10px -10px rgba(0,0,0,.15);--el-table-fixed-right-column:inset -10px 0 10px -10px rgba(0,0,0,.15);--el-table-index:var(--el-index-normal);position:relative;overflow:hidden;box-sizing:border-box;height:-moz-fit-content;height:fit-content;width:100%;max-width:100%;background-color:var(--el-table-bg-color);font-size:14px;color:var(--el-table-text-color)}.el-table__inner-wrapper{position:relative;display:flex;flex-direction:column;height:100%}.el-table__inner-wrapper:before{left:0;bottom:0;width:100%;height:1px}.el-table tbody:focus-visible{outline:0}.el-table.has-footer.el-table--fluid-height tr:last-child td.el-table__cell,.el-table.has-footer.el-table--scrollable-y tr:last-child td.el-table__cell{border-bottom-color:transparent}.el-table__empty-block{position:sticky;left:0;min-height:60px;text-align:center;width:100%;display:flex;justify-content:center;align-items:center}.el-table__empty-text{line-height:60px;width:50%;color:var(--el-text-color-secondary)}.el-table__expand-column .cell{padding:0;text-align:center;-webkit-user-select:none;user-select:none}.el-table__expand-icon{position:relative;cursor:pointer;color:var(--el-text-color-regular);font-size:12px;transition:transform var(--el-transition-duration-fast) ease-in-out;height:20px}.el-table__expand-icon--expanded{transform:rotate(90deg)}.el-table__expand-icon>.el-icon{font-size:12px}.el-table__expanded-cell{background-color:var(--el-table-expanded-cell-bg-color)}.el-table__expanded-cell[class*=cell]{padding:20px 50px}.el-table__expanded-cell:hover{background-color:transparent!important}.el-table__placeholder{display:inline-block;width:20px}.el-table__append-wrapper{overflow:hidden}.el-table--fit{border-right:0;border-bottom:0}.el-table--fit .el-table__cell.gutter{border-right-width:1px}.el-table thead{color:var(--el-table-header-text-color)}.el-table thead th{font-weight:600}.el-table thead.is-group th.el-table__cell{background:var(--el-fill-color-light)}.el-table .el-table__cell{padding:8px 0;min-width:0;box-sizing:border-box;text-overflow:ellipsis;vertical-align:middle;position:relative;text-align:left;z-index:var(--el-table-index)}.el-table .el-table__cell.is-center{text-align:center}.el-table .el-table__cell.is-right{text-align:right}.el-table .el-table__cell.gutter{width:15px;border-right-width:0;border-bottom-width:0;padding:0}.el-table .el-table__cell.is-hidden>*{visibility:hidden}.el-table .cell{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:normal;overflow-wrap:break-word;line-height:23px;padding:0 12px}.el-table .cell.el-tooltip{white-space:nowrap;min-width:50px}.el-table--large{font-size:var(--el-font-size-base)}.el-table--large .el-table__cell{padding:12px 0}.el-table--large .cell{padding:0 16px}.el-table--default{font-size:14px}.el-table--default .el-table__cell{padding:8px 0}.el-table--default .cell{padding:0 12px}.el-table--small{font-size:12px}.el-table--small .el-table__cell{padding:4px 0}.el-table--small .cell{padding:0 8px}.el-table tr{background-color:var(--el-table-tr-bg-color)}.el-table tr input[type=checkbox]{margin:0}.el-table td.el-table__cell,.el-table th.el-table__cell.is-leaf{border-bottom:var(--el-table-border)}.el-table th.el-table__cell.is-sortable{cursor:pointer}.el-table th.el-table__cell{-webkit-user-select:none;user-select:none;background-color:var(--el-table-header-bg-color)}.el-table th.el-table__cell>.cell.highlight{color:var(--el-color-primary)}.el-table th.el-table__cell.required>div:before{display:inline-block;content:"";width:8px;height:8px;border-radius:50%;background:#ff4d51;margin-right:5px;vertical-align:middle}.el-table td.el-table__cell div{box-sizing:border-box}.el-table td.el-table__cell.gutter{width:0}.el-table--border .el-table__inner-wrapper:after,.el-table--border:after,.el-table--border:before,.el-table__inner-wrapper:before{content:"";position:absolute;background-color:var(--el-table-border-color);z-index:calc(var(--el-table-index) + 2)}.el-table--border .el-table__inner-wrapper:after{left:0;top:0;width:100%;height:1px;z-index:calc(var(--el-table-index) + 2)}.el-table--border:before{top:-1px;left:0;width:1px;height:100%}.el-table--border:after{top:-1px;right:0;width:1px;height:100%}.el-table--border .el-table__inner-wrapper{border-right:none;border-bottom:none}.el-table--border .el-table__footer-wrapper{position:relative;flex-shrink:0}.el-table--border .el-table__cell{border-right:var(--el-table-border)}.el-table--border th.el-table__cell.gutter:last-of-type{border-bottom:var(--el-table-border);border-bottom-width:1px}.el-table--border th.el-table__cell{border-bottom:var(--el-table-border)}.el-table--hidden{visibility:hidden}.el-table__body-wrapper,.el-table__footer-wrapper,.el-table__header-wrapper{width:100%}.el-table__body-wrapper tr td.el-table-fixed-column--left,.el-table__body-wrapper tr td.el-table-fixed-column--right,.el-table__body-wrapper tr th.el-table-fixed-column--left,.el-table__body-wrapper tr th.el-table-fixed-column--right,.el-table__footer-wrapper tr td.el-table-fixed-column--left,.el-table__footer-wrapper tr td.el-table-fixed-column--right,.el-table__footer-wrapper tr th.el-table-fixed-column--left,.el-table__footer-wrapper tr th.el-table-fixed-column--right,.el-table__header-wrapper tr td.el-table-fixed-column--left,.el-table__header-wrapper tr td.el-table-fixed-column--right,.el-table__header-wrapper tr th.el-table-fixed-column--left,.el-table__header-wrapper tr th.el-table-fixed-column--right{position:sticky!important;background:inherit;z-index:calc(var(--el-table-index) + 1)}.el-table__body-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__body-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__body-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__body-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--right.is-first-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--right.is-last-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--right.is-first-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--right.is-last-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--right.is-first-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--right.is-last-column:before{content:"";position:absolute;top:0;width:10px;bottom:-1px;overflow-x:hidden;overflow-y:hidden;box-shadow:none;touch-action:none;pointer-events:none}.el-table__body-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__body-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--right.is-first-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--right.is-first-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--left.is-first-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--right.is-first-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--left.is-first-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--right.is-first-column:before{left:-10px}.el-table__body-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__body-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__body-wrapper tr th.el-table-fixed-column--right.is-last-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__footer-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__footer-wrapper tr th.el-table-fixed-column--right.is-last-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--left.is-last-column:before,.el-table__header-wrapper tr td.el-table-fixed-column--right.is-last-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--left.is-last-column:before,.el-table__header-wrapper tr th.el-table-fixed-column--right.is-last-column:before{right:-10px;box-shadow:none}.el-table__body-wrapper tr td.el-table__fixed-right-patch,.el-table__body-wrapper tr th.el-table__fixed-right-patch,.el-table__footer-wrapper tr td.el-table__fixed-right-patch,.el-table__footer-wrapper tr th.el-table__fixed-right-patch,.el-table__header-wrapper tr td.el-table__fixed-right-patch,.el-table__header-wrapper tr th.el-table__fixed-right-patch{position:sticky!important;z-index:calc(var(--el-table-index) + 1);background:#fff;right:0}.el-table__header-wrapper{flex-shrink:0}.el-table__header-wrapper tr th.el-table-fixed-column--left,.el-table__header-wrapper tr th.el-table-fixed-column--right{background-color:var(--el-table-header-bg-color)}.el-table__body,.el-table__footer,.el-table__header{table-layout:fixed;border-collapse:separate}.el-table__header-wrapper{overflow:hidden}.el-table__header-wrapper tbody td.el-table__cell{background-color:var(--el-table-row-hover-bg-color);color:var(--el-table-text-color)}.el-table__footer-wrapper{overflow:hidden;flex-shrink:0}.el-table__footer-wrapper tfoot td.el-table__cell{background-color:var(--el-table-row-hover-bg-color);color:var(--el-table-text-color)}.el-table__body-wrapper .el-table-column--selection>.cell,.el-table__header-wrapper .el-table-column--selection>.cell{display:inline-flex;align-items:center;height:23px}.el-table__body-wrapper .el-table-column--selection .el-checkbox,.el-table__header-wrapper .el-table-column--selection .el-checkbox{height:unset}.el-table.is-scrolling-left .el-table-fixed-column--right.is-first-column:before{box-shadow:var(--el-table-fixed-right-column)}.el-table.is-scrolling-left.el-table--border .el-table-fixed-column--left.is-last-column.el-table__cell{border-right:var(--el-table-border)}.el-table.is-scrolling-left th.el-table-fixed-column--left{background-color:var(--el-table-header-bg-color)}.el-table.is-scrolling-right .el-table-fixed-column--left.is-last-column:before{box-shadow:var(--el-table-fixed-left-column)}.el-table.is-scrolling-right .el-table-fixed-column--left.is-last-column.el-table__cell{border-right:none}.el-table.is-scrolling-right th.el-table-fixed-column--right{background-color:var(--el-table-header-bg-color)}.el-table.is-scrolling-middle .el-table-fixed-column--left.is-last-column.el-table__cell{border-right:none}.el-table.is-scrolling-middle .el-table-fixed-column--right.is-first-column:before{box-shadow:var(--el-table-fixed-right-column)}.el-table.is-scrolling-middle .el-table-fixed-column--left.is-last-column:before{box-shadow:var(--el-table-fixed-left-column)}.el-table.is-scrolling-none .el-table-fixed-column--left.is-first-column:before,.el-table.is-scrolling-none .el-table-fixed-column--left.is-last-column:before,.el-table.is-scrolling-none .el-table-fixed-column--right.is-first-column:before,.el-table.is-scrolling-none .el-table-fixed-column--right.is-last-column:before{box-shadow:none}.el-table.is-scrolling-none th.el-table-fixed-column--left,.el-table.is-scrolling-none th.el-table-fixed-column--right{background-color:var(--el-table-header-bg-color)}.el-table__body-wrapper{overflow:hidden;position:relative;flex:1}.el-table__body-wrapper .el-scrollbar__bar{z-index:calc(var(--el-table-index) + 2)}.el-table .caret-wrapper{display:inline-flex;flex-direction:column;align-items:center;height:14px;width:24px;vertical-align:middle;cursor:pointer;overflow:initial;position:relative}.el-table .sort-caret{width:0;height:0;border:5px solid transparent;position:absolute;left:7px}.el-table .sort-caret.ascending{border-bottom-color:var(--el-text-color-placeholder);top:-5px}.el-table .sort-caret.descending{border-top-color:var(--el-text-color-placeholder);bottom:-3px}.el-table .ascending .sort-caret.ascending{border-bottom-color:var(--el-color-primary)}.el-table .descending .sort-caret.descending{border-top-color:var(--el-color-primary)}.el-table .hidden-columns{visibility:hidden;position:absolute;z-index:-1}.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell{background:var(--el-fill-color-lighter)}.el-table--striped .el-table__body tr.el-table__row--striped.current-row td.el-table__cell{background-color:var(--el-table-current-row-bg-color)}.el-table__body tr.hover-row.current-row>td.el-table__cell,.el-table__body tr.hover-row.el-table__row--striped.current-row>td.el-table__cell,.el-table__body tr.hover-row.el-table__row--striped>td.el-table__cell,.el-table__body tr.hover-row>td.el-table__cell,.el-table__body tr>td.hover-cell{background-color:var(--el-table-row-hover-bg-color)}.el-table__body tr.current-row>td.el-table__cell{background-color:var(--el-table-current-row-bg-color)}.el-table.el-table--scrollable-y .el-table__body-header{position:sticky;top:0;z-index:calc(var(--el-table-index) + 2)}.el-table.el-table--scrollable-y .el-table__body-footer{position:sticky;bottom:0;z-index:calc(var(--el-table-index) + 2)}.el-table__column-resize-proxy{position:absolute;left:200px;top:0;bottom:0;width:0;border-left:var(--el-table-border);z-index:calc(var(--el-table-index) + 9)}.el-table__column-filter-trigger{display:inline-block;cursor:pointer}.el-table__column-filter-trigger i{color:var(--el-color-info);font-size:14px;vertical-align:middle}.el-table__border-left-patch{top:0;width:1px;height:100%}.el-table__border-bottom-patch,.el-table__border-left-patch{left:0;z-index:calc(var(--el-table-index) + 2);position:absolute;background-color:var(--el-table-border-color)}.el-table__border-bottom-patch{height:1px}.el-table__border-right-patch{top:0;height:100%;width:1px;z-index:calc(var(--el-table-index) + 2);position:absolute;background-color:var(--el-table-border-color)}.el-table--enable-row-transition .el-table__body td.el-table__cell{transition:background-color .25s ease}.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{background-color:var(--el-table-row-hover-bg-color)}.el-table [class*=el-table__row--level] .el-table__expand-icon{display:inline-block;width:12px;line-height:12px;height:12px;text-align:center;margin-right:8px}.el-table .el-table.el-table--border .el-table__cell{border-right:var(--el-table-border)}.el-table:not(.el-table--border) .el-table__cell{border-right:none}.el-table:not(.el-table--border)>.el-table__inner-wrapper:after{content:none}.el-table-v2{--el-table-border-color:var(--el-border-color-lighter);--el-table-border:1px solid var(--el-table-border-color);--el-table-text-color:var(--el-text-color-regular);--el-table-header-text-color:var(--el-text-color-secondary);--el-table-row-hover-bg-color:var(--el-fill-color-light);--el-table-current-row-bg-color:var(--el-color-primary-light-9);--el-table-header-bg-color:var(--el-bg-color);--el-table-fixed-box-shadow:var(--el-box-shadow-light);--el-table-bg-color:var(--el-fill-color-blank);--el-table-tr-bg-color:var(--el-bg-color);--el-table-expanded-cell-bg-color:var(--el-fill-color-blank);--el-table-fixed-left-column:inset 10px 0 10px -10px rgba(0,0,0,.15);--el-table-fixed-right-column:inset -10px 0 10px -10px rgba(0,0,0,.15);--el-table-index:var(--el-index-normal);font-size:14px}.el-table-v2 *{box-sizing:border-box}.el-table-v2__root{position:relative}.el-table-v2__root:hover .el-table-v2__main .el-virtual-scrollbar{opacity:1}.el-table-v2__main{display:flex;flex-direction:column-reverse;position:absolute;overflow:hidden;top:0;background-color:var(--el-bg-color);left:0}.el-table-v2__main .el-vl__horizontal,.el-table-v2__main .el-vl__vertical{z-index:2}.el-table-v2__left{display:flex;flex-direction:column-reverse;position:absolute;overflow:hidden;top:0;background-color:var(--el-bg-color);left:0;box-shadow:2px 0 4px 0 rgba(0,0,0,.06)}.el-table-v2__left .el-virtual-scrollbar{opacity:0}.el-table-v2__left .el-vl__horizontal,.el-table-v2__left .el-vl__vertical{z-index:-1}.el-table-v2__right{display:flex;flex-direction:column-reverse;position:absolute;overflow:hidden;top:0;background-color:var(--el-bg-color);right:0;box-shadow:-2px 0 4px 0 rgba(0,0,0,.06)}.el-table-v2__right .el-virtual-scrollbar{opacity:0}.el-table-v2__right .el-vl__horizontal,.el-table-v2__right .el-vl__vertical{z-index:-1}.el-table-v2__header-row,.el-table-v2__row{padding-inline-end:var(--el-table-scrollbar-size)}.el-table-v2__header-wrapper{overflow:hidden}.el-table-v2__header{position:relative;overflow:hidden}.el-table-v2__footer{right:0;bottom:0;overflow:hidden}.el-table-v2__empty,.el-table-v2__footer,.el-table-v2__overlay{position:absolute;left:0}.el-table-v2__overlay{right:0;top:0;bottom:0;z-index:9999}.el-table-v2__header-row{display:flex;border-bottom:var(--el-table-border)}.el-table-v2__header-cell{display:flex;align-items:center;padding:0 8px;height:100%;-webkit-user-select:none;user-select:none;overflow:hidden;background-color:var(--el-table-header-bg-color);color:var(--el-table-header-text-color);font-weight:700}.el-table-v2__header-cell.is-align-center{justify-content:center;text-align:center}.el-table-v2__header-cell.is-align-right{justify-content:flex-end;text-align:right}.el-table-v2__header-cell.is-sortable{cursor:pointer}.el-table-v2__header-cell:hover .el-icon{display:block}.el-table-v2__sort-icon{transition:opacity,display var(--el-transition-duration);opacity:.6;display:none}.el-table-v2__sort-icon.is-sorting{display:block;opacity:1}.el-table-v2__row{border-bottom:var(--el-table-border);display:flex;align-items:center;transition:background-color var(--el-transition-duration)}.el-table-v2__row.is-hovered,.el-table-v2__row:hover{background-color:var(--el-table-row-hover-bg-color)}.el-table-v2__row-cell{height:100%;overflow:hidden;display:flex;align-items:center;padding:0 8px}.el-table-v2__row-cell.is-align-center{justify-content:center;text-align:center}.el-table-v2__row-cell.is-align-right{justify-content:flex-end;text-align:right}.el-table-v2__expand-icon{margin:0 4px;cursor:pointer;-webkit-user-select:none;user-select:none}.el-table-v2__expand-icon svg{transition:transform var(--el-transition-duration)}.el-table-v2__expand-icon.is-expanded svg{transform:rotate(90deg)}.el-table-v2:not(.is-dynamic) .el-table-v2__cell-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-table-v2.is-dynamic .el-table-v2__row{overflow:hidden;align-items:stretch}.el-table-v2.is-dynamic .el-table-v2__row .el-table-v2__row-cell{overflow-wrap:break-word}.el-tabs{--el-tabs-header-height:40px}.el-tabs__header{padding:0;position:relative;margin:0 0 15px}.el-tabs__active-bar{position:absolute;bottom:0;left:0;height:2px;background-color:var(--el-color-primary);z-index:1;transition:width var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier),transform var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);list-style:none}.el-tabs__new-tab{display:flex;align-items:center;justify-content:center;float:right;border:1px solid var(--el-border-color);height:20px;width:20px;line-height:20px;margin:10px 0 10px 10px;border-radius:3px;text-align:center;font-size:12px;color:var(--el-text-color-primary);cursor:pointer;transition:all .15s}.el-tabs__new-tab .is-icon-plus{height:inherit;width:inherit;transform:scale(.8)}.el-tabs__new-tab .is-icon-plus svg{vertical-align:middle}.el-tabs__new-tab:hover{color:var(--el-color-primary)}.el-tabs__nav-wrap{overflow:hidden;margin-bottom:-1px;position:relative}.el-tabs__nav-wrap:after{content:"";position:absolute;left:0;bottom:0;width:100%;height:2px;background-color:var(--el-border-color-light);z-index:var(--el-index-normal)}.el-tabs__nav-wrap.is-scrollable{padding:0 20px;box-sizing:border-box}.el-tabs__nav-scroll{overflow:hidden}.el-tabs__nav-next,.el-tabs__nav-prev{position:absolute;cursor:pointer;line-height:44px;font-size:12px;color:var(--el-text-color-secondary);width:20px;text-align:center}.el-tabs__nav-next{right:0}.el-tabs__nav-prev{left:0}.el-tabs__nav{display:flex;white-space:nowrap;position:relative;transition:transform var(--el-transition-duration);float:left;z-index:calc(var(--el-index-normal) + 1)}.el-tabs__nav.is-stretch{min-width:100%;display:flex}.el-tabs__nav.is-stretch>*{flex:1;text-align:center}.el-tabs__item{padding:0 20px;height:var(--el-tabs-header-height);box-sizing:border-box;display:flex;align-items:center;justify-content:center;list-style:none;font-size:var(--el-font-size-base);font-weight:500;color:var(--el-text-color-primary);position:relative}.el-tabs__item:focus,.el-tabs__item:focus:active{outline:0}.el-tabs__item:focus-visible{box-shadow:0 0 2px 2px var(--el-color-primary) inset;border-radius:3px}.el-tabs__item .is-icon-close{border-radius:50%;text-align:center;transition:all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);margin-left:5px}.el-tabs__item .is-icon-close:before{transform:scale(.9);display:inline-block}.el-tabs__item .is-icon-close:hover{background-color:var(--el-text-color-placeholder);color:#fff}.el-tabs__item.is-active,.el-tabs__item:hover{color:var(--el-color-primary)}.el-tabs__item:hover{cursor:pointer}.el-tabs__item.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-tabs__content{overflow:hidden;position:relative}.el-tabs--card>.el-tabs__header{border-bottom:1px solid var(--el-border-color-light);height:var(--el-tabs-header-height)}.el-tabs--card>.el-tabs__header .el-tabs__nav-wrap:after{content:none}.el-tabs--card>.el-tabs__header .el-tabs__nav{border:1px solid var(--el-border-color-light);border-bottom:none;border-radius:4px 4px 0 0;box-sizing:border-box}.el-tabs--card>.el-tabs__header .el-tabs__active-bar{display:none}.el-tabs--card>.el-tabs__header .el-tabs__item .is-icon-close{position:relative;font-size:12px;width:0;height:14px;overflow:hidden;right:-2px;transform-origin:100% 50%}.el-tabs--card>.el-tabs__header .el-tabs__item{border-bottom:1px solid transparent;border-left:1px solid var(--el-border-color-light);transition:color var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier),padding var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier)}.el-tabs--card>.el-tabs__header .el-tabs__item:first-child{border-left:none}.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover{padding-left:13px;padding-right:13px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover .is-icon-close{width:14px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active{border-bottom-color:var(--el-bg-color)}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable{padding-left:20px;padding-right:20px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable .is-icon-close{width:14px}.el-tabs--border-card{background:var(--el-bg-color-overlay);border:1px solid var(--el-border-color)}.el-tabs--border-card>.el-tabs__content{padding:15px}.el-tabs--border-card>.el-tabs__header{background-color:var(--el-fill-color-light);border-bottom:1px solid var(--el-border-color-light);margin:0}.el-tabs--border-card>.el-tabs__header .el-tabs__nav-wrap:after{content:none}.el-tabs--border-card>.el-tabs__header .el-tabs__item{transition:all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);border:1px solid transparent;margin-top:-1px;color:var(--el-text-color-secondary)}.el-tabs--border-card>.el-tabs__header .el-tabs__item+.el-tabs__item,.el-tabs--border-card>.el-tabs__header .el-tabs__item:first-child{margin-left:-1px}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active{color:var(--el-color-primary);background-color:var(--el-bg-color-overlay);border-right-color:var(--el-border-color);border-left-color:var(--el-border-color)}.el-tabs--border-card>.el-tabs__header .el-tabs__item:not(.is-disabled):hover{color:var(--el-color-primary)}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-disabled{color:var(--el-disabled-text-color)}.el-tabs--border-card>.el-tabs__header .is-scrollable .el-tabs__item:first-child{margin-left:0}.el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),.el-tabs--bottom .el-tabs__item.is-top:nth-child(2),.el-tabs--top .el-tabs__item.is-bottom:nth-child(2),.el-tabs--top .el-tabs__item.is-top:nth-child(2){padding-left:0}.el-tabs--bottom .el-tabs__item.is-bottom:last-child,.el-tabs--bottom .el-tabs__item.is-top:last-child,.el-tabs--top .el-tabs__item.is-bottom:last-child,.el-tabs--top .el-tabs__item.is-top:last-child{padding-right:0}.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2){padding-left:20px}.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover,.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2):not(.is-active).is-closable:hover{padding-left:13px}.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:last-child{padding-right:20px}.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover,.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:last-child:not(.is-active).is-closable:hover{padding-right:13px}.el-tabs--bottom .el-tabs__header.is-bottom{margin-bottom:0;margin-top:10px}.el-tabs--bottom.el-tabs--border-card .el-tabs__header.is-bottom{border-bottom:0;border-top:1px solid var(--el-border-color)}.el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap.is-bottom{margin-top:-1px;margin-bottom:0}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom:not(.is-active){border:1px solid transparent}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom{margin:0 -1px -1px}.el-tabs--left,.el-tabs--right{overflow:hidden}.el-tabs--left .el-tabs__header.is-left,.el-tabs--left .el-tabs__header.is-right,.el-tabs--left .el-tabs__nav-scroll,.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__header.is-left,.el-tabs--right .el-tabs__header.is-right,.el-tabs--right .el-tabs__nav-scroll,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{height:100%}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__active-bar.is-right,.el-tabs--right .el-tabs__active-bar.is-left,.el-tabs--right .el-tabs__active-bar.is-right{top:0;bottom:auto;width:2px;height:auto}.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{margin-bottom:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{height:30px;line-height:30px;width:100%;text-align:center;cursor:pointer}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i{transform:rotate(90deg)}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{left:auto;top:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next{right:auto;bottom:0}.el-tabs--left .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--left .el-tabs__nav-wrap.is-right.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-right.is-scrollable{padding:30px 0}.el-tabs--left .el-tabs__nav-wrap.is-left:after,.el-tabs--left .el-tabs__nav-wrap.is-right:after,.el-tabs--right .el-tabs__nav-wrap.is-left:after,.el-tabs--right .el-tabs__nav-wrap.is-right:after{height:100%;width:2px;bottom:auto;top:0}.el-tabs--left .el-tabs__nav.is-left,.el-tabs--left .el-tabs__nav.is-right,.el-tabs--right .el-tabs__nav.is-left,.el-tabs--right .el-tabs__nav.is-right{flex-direction:column}.el-tabs--left .el-tabs__item.is-left,.el-tabs--right .el-tabs__item.is-left{justify-content:flex-end}.el-tabs--left .el-tabs__item.is-right,.el-tabs--right .el-tabs__item.is-right{justify-content:flex-start}.el-tabs--left .el-tabs__header.is-left{float:left;margin-bottom:0;margin-right:10px}.el-tabs--left .el-tabs__nav-wrap.is-left{margin-right:-1px}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__nav-wrap.is-left:after{left:auto;right:0}.el-tabs--left .el-tabs__item.is-left{text-align:right}.el-tabs--left.el-tabs--card .el-tabs__active-bar.is-left{display:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left{border-left:none;border-right:1px solid var(--el-border-color-light);border-bottom:none;border-top:1px solid var(--el-border-color-light);text-align:left}.el-tabs--left.el-tabs--card .el-tabs__item.is-left:first-child{border-right:1px solid var(--el-border-color-light);border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active{border:1px solid var(--el-border-color-light);border-right-color:#fff;border-left:none;border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:first-child{border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:last-child{border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__nav{border-radius:4px 0 0 4px;border-bottom:1px solid var(--el-border-color-light);border-right:none}.el-tabs--left.el-tabs--card .el-tabs__new-tab{float:none}.el-tabs--left.el-tabs--border-card .el-tabs__header.is-left{border-right:1px solid var(--el-border-color)}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left{border:1px solid transparent;margin:-1px 0 -1px -1px}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left.is-active{border-color:transparent;border-top-color:#d1dbe5;border-bottom-color:#d1dbe5}.el-tabs--right .el-tabs__header.is-right{float:right;margin-bottom:0;margin-left:10px}.el-tabs--right .el-tabs__nav-wrap.is-right{margin-left:-1px}.el-tabs--right .el-tabs__nav-wrap.is-right:after{left:0;right:auto}.el-tabs--right .el-tabs__active-bar.is-right{left:0}.el-tabs--right.el-tabs--card .el-tabs__active-bar.is-right{display:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right{border-bottom:none;border-top:1px solid var(--el-border-color-light)}.el-tabs--right.el-tabs--card .el-tabs__item.is-right:first-child{border-left:1px solid var(--el-border-color-light);border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active{border:1px solid var(--el-border-color-light);border-left-color:#fff;border-right:none;border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:first-child{border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:last-child{border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__nav{border-radius:0 4px 4px 0;border-bottom:1px solid var(--el-border-color-light);border-left:none}.el-tabs--right.el-tabs--border-card .el-tabs__header.is-right{border-left:1px solid var(--el-border-color)}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right{border:1px solid transparent;margin:-1px -1px -1px 0}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right.is-active{border-color:transparent;border-top-color:#d1dbe5;border-bottom-color:#d1dbe5}.slideInLeft-transition,.slideInRight-transition{display:inline-block}.slideInRight-enter{animation:slideInRight-enter var(--el-transition-duration)}.slideInRight-leave{position:absolute;left:0;right:0;animation:slideInRight-leave var(--el-transition-duration)}.slideInLeft-enter{animation:slideInLeft-enter var(--el-transition-duration)}.slideInLeft-leave{position:absolute;left:0;right:0;animation:slideInLeft-leave var(--el-transition-duration)}@keyframes slideInRight-enter{0%{opacity:0;transform-origin:0 0;transform:translateX(100%)}to{opacity:1;transform-origin:0 0;transform:translateX(0)}}@keyframes slideInRight-leave{0%{transform-origin:0 0;transform:translateX(0);opacity:1}to{transform-origin:0 0;transform:translateX(100%);opacity:0}}@keyframes slideInLeft-enter{0%{opacity:0;transform-origin:0 0;transform:translateX(-100%)}to{opacity:1;transform-origin:0 0;transform:translateX(0)}}@keyframes slideInLeft-leave{0%{transform-origin:0 0;transform:translateX(0);opacity:1}to{transform-origin:0 0;transform:translateX(-100%);opacity:0}}.el-tag{--el-tag-font-size:12px;--el-tag-border-radius:4px;--el-tag-border-radius-rounded:9999px;--el-tag-bg-color:var(--el-color-primary-light-9);--el-tag-border-color:var(--el-color-primary-light-8);--el-tag-hover-color:var(--el-color-primary);background-color:var(--el-tag-bg-color);border-color:var(--el-tag-border-color);color:var(--el-tag-text-color);display:inline-flex;justify-content:center;align-items:center;vertical-align:middle;height:24px;padding:0 9px;font-size:var(--el-tag-font-size);line-height:1;border-width:1px;border-style:solid;border-radius:var(--el-tag-border-radius);box-sizing:border-box;white-space:nowrap;--el-icon-size:14px}.el-tag.el-tag--primary{--el-tag-bg-color:var(--el-color-primary-light-9);--el-tag-border-color:var(--el-color-primary-light-8);--el-tag-hover-color:var(--el-color-primary)}.el-tag.el-tag--success{--el-tag-bg-color:var(--el-color-success-light-9);--el-tag-border-color:var(--el-color-success-light-8);--el-tag-hover-color:var(--el-color-success)}.el-tag.el-tag--warning{--el-tag-bg-color:var(--el-color-warning-light-9);--el-tag-border-color:var(--el-color-warning-light-8);--el-tag-hover-color:var(--el-color-warning)}.el-tag.el-tag--danger{--el-tag-bg-color:var(--el-color-danger-light-9);--el-tag-border-color:var(--el-color-danger-light-8);--el-tag-hover-color:var(--el-color-danger)}.el-tag.el-tag--error{--el-tag-bg-color:var(--el-color-error-light-9);--el-tag-border-color:var(--el-color-error-light-8);--el-tag-hover-color:var(--el-color-error)}.el-tag.el-tag--info{--el-tag-bg-color:var(--el-color-info-light-9);--el-tag-border-color:var(--el-color-info-light-8);--el-tag-hover-color:var(--el-color-info)}.el-tag.el-tag--primary{--el-tag-text-color:var(--el-color-primary)}.el-tag.el-tag--success{--el-tag-text-color:var(--el-color-success)}.el-tag.el-tag--warning{--el-tag-text-color:var(--el-color-warning)}.el-tag.el-tag--danger{--el-tag-text-color:var(--el-color-danger)}.el-tag.el-tag--error{--el-tag-text-color:var(--el-color-error)}.el-tag.el-tag--info{--el-tag-text-color:var(--el-color-info)}.el-tag.is-hit{border-color:var(--el-color-primary)}.el-tag.is-round{border-radius:var(--el-tag-border-radius-rounded)}.el-tag .el-tag__close{flex-shrink:0;color:var(--el-tag-text-color)}.el-tag .el-tag__close:hover{color:var(--el-color-white);background-color:var(--el-tag-hover-color)}.el-tag .el-icon{border-radius:50%;cursor:pointer;font-size:calc(var(--el-icon-size) - 2px);height:var(--el-icon-size);width:var(--el-icon-size)}.el-tag .el-tag__close{margin-left:6px}.el-tag--dark{--el-tag-bg-color:var(--el-color-primary);--el-tag-border-color:var(--el-color-primary);--el-tag-hover-color:var(--el-color-primary-light-3);--el-tag-text-color:var(--el-color-white)}.el-tag--dark.el-tag--primary{--el-tag-bg-color:var(--el-color-primary);--el-tag-border-color:var(--el-color-primary);--el-tag-hover-color:var(--el-color-primary-light-3)}.el-tag--dark.el-tag--success{--el-tag-bg-color:var(--el-color-success);--el-tag-border-color:var(--el-color-success);--el-tag-hover-color:var(--el-color-success-light-3)}.el-tag--dark.el-tag--warning{--el-tag-bg-color:var(--el-color-warning);--el-tag-border-color:var(--el-color-warning);--el-tag-hover-color:var(--el-color-warning-light-3)}.el-tag--dark.el-tag--danger{--el-tag-bg-color:var(--el-color-danger);--el-tag-border-color:var(--el-color-danger);--el-tag-hover-color:var(--el-color-danger-light-3)}.el-tag--dark.el-tag--error{--el-tag-bg-color:var(--el-color-error);--el-tag-border-color:var(--el-color-error);--el-tag-hover-color:var(--el-color-error-light-3)}.el-tag--dark.el-tag--info{--el-tag-bg-color:var(--el-color-info);--el-tag-border-color:var(--el-color-info);--el-tag-hover-color:var(--el-color-info-light-3)}.el-tag--dark.el-tag--danger,.el-tag--dark.el-tag--error,.el-tag--dark.el-tag--info,.el-tag--dark.el-tag--primary,.el-tag--dark.el-tag--success,.el-tag--dark.el-tag--warning{--el-tag-text-color:var(--el-color-white)}.el-tag--plain{--el-tag-border-color:var(--el-color-primary-light-5);--el-tag-hover-color:var(--el-color-primary);--el-tag-bg-color:var(--el-fill-color-blank)}.el-tag--plain.el-tag--primary{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-primary-light-5);--el-tag-hover-color:var(--el-color-primary)}.el-tag--plain.el-tag--success{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-success-light-5);--el-tag-hover-color:var(--el-color-success)}.el-tag--plain.el-tag--warning{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-warning-light-5);--el-tag-hover-color:var(--el-color-warning)}.el-tag--plain.el-tag--danger{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-danger-light-5);--el-tag-hover-color:var(--el-color-danger)}.el-tag--plain.el-tag--error{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-error-light-5);--el-tag-hover-color:var(--el-color-error)}.el-tag--plain.el-tag--info{--el-tag-bg-color:var(--el-fill-color-blank);--el-tag-border-color:var(--el-color-info-light-5);--el-tag-hover-color:var(--el-color-info)}.el-tag.is-closable{padding-right:5px}.el-tag--large{padding:0 11px;height:32px;--el-icon-size:16px}.el-tag--large .el-tag__close{margin-left:8px}.el-tag--large.is-closable{padding-right:7px}.el-tag--small{padding:0 7px;height:20px;--el-icon-size:12px}.el-tag--small .el-tag__close{margin-left:4px}.el-tag--small.is-closable{padding-right:3px}.el-tag--small .el-icon-close{transform:scale(.8)}.el-tag.el-tag--primary.is-hit{border-color:var(--el-color-primary)}.el-tag.el-tag--success.is-hit{border-color:var(--el-color-success)}.el-tag.el-tag--warning.is-hit{border-color:var(--el-color-warning)}.el-tag.el-tag--danger.is-hit{border-color:var(--el-color-danger)}.el-tag.el-tag--error.is-hit{border-color:var(--el-color-error)}.el-tag.el-tag--info.is-hit{border-color:var(--el-color-info)}.el-text{--el-text-font-size:var(--el-font-size-base);--el-text-color:var(--el-text-color-regular);align-self:center;margin:0;padding:0;font-size:var(--el-text-font-size);color:var(--el-text-color);overflow-wrap:break-word}.el-text.is-truncated{display:inline-block;max-width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.el-text.is-line-clamp{display:-webkit-inline-box;-webkit-box-orient:vertical;overflow:hidden}.el-text--large{--el-text-font-size:var(--el-font-size-medium)}.el-text--default{--el-text-font-size:var(--el-font-size-base)}.el-text--small{--el-text-font-size:var(--el-font-size-extra-small)}.el-text.el-text--primary{--el-text-color:var(--el-color-primary)}.el-text.el-text--success{--el-text-color:var(--el-color-success)}.el-text.el-text--warning{--el-text-color:var(--el-color-warning)}.el-text.el-text--danger{--el-text-color:var(--el-color-danger)}.el-text.el-text--error{--el-text-color:var(--el-color-error)}.el-text.el-text--info{--el-text-color:var(--el-color-info)}.el-text>.el-icon{vertical-align:-2px}.time-select{margin:5px 0;min-width:0}.time-select .el-picker-panel__content{max-height:200px;margin:0}.time-select-item{padding:8px 10px;font-size:14px;line-height:20px}.time-select-item.disabled{color:var(--el-datepicker-border-color);cursor:not-allowed}.time-select-item:hover{background-color:var(--el-fill-color-light);font-weight:700;cursor:pointer}.time-select .time-select-item.selected:not(.disabled){color:var(--el-color-primary);font-weight:700}.el-timeline-item{position:relative;padding-bottom:20px}.el-timeline-item__wrapper{position:relative;padding-left:28px;top:-3px}.el-timeline-item__tail{position:absolute;left:4px;height:100%;border-left:2px solid var(--el-timeline-node-color)}.el-timeline-item .el-timeline-item__icon{color:var(--el-color-white);font-size:var(--el-font-size-small)}.el-timeline-item__node{position:absolute;background-color:var(--el-timeline-node-color);border-color:var(--el-timeline-node-color);border-radius:50%;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.el-timeline-item__node--normal{left:-1px;width:var(--el-timeline-node-size-normal);height:var(--el-timeline-node-size-normal)}.el-timeline-item__node--large{left:-2px;width:var(--el-timeline-node-size-large);height:var(--el-timeline-node-size-large)}.el-timeline-item__node.is-hollow{background:var(--el-color-white);border-style:solid;border-width:2px}.el-timeline-item__node--primary{background-color:var(--el-color-primary);border-color:var(--el-color-primary)}.el-timeline-item__node--success{background-color:var(--el-color-success);border-color:var(--el-color-success)}.el-timeline-item__node--warning{background-color:var(--el-color-warning);border-color:var(--el-color-warning)}.el-timeline-item__node--danger{background-color:var(--el-color-danger);border-color:var(--el-color-danger)}.el-timeline-item__node--info{background-color:var(--el-color-info);border-color:var(--el-color-info)}.el-timeline-item__dot{position:absolute;display:flex;justify-content:center;align-items:center}.el-timeline-item__content{color:var(--el-text-color-primary)}.el-timeline-item__timestamp{color:var(--el-text-color-secondary);line-height:1;font-size:var(--el-font-size-small)}.el-timeline-item__timestamp.is-top{margin-bottom:8px;padding-top:4px}.el-timeline-item__timestamp.is-bottom{margin-top:8px}.el-timeline{--el-timeline-node-size-normal:12px;--el-timeline-node-size-large:14px;--el-timeline-node-color:var(--el-border-color-light);margin:0;font-size:var(--el-font-size-base);list-style:none}.el-timeline .el-timeline-item:last-child .el-timeline-item__tail{display:none}.el-timeline .el-timeline-item__center{display:flex;align-items:center}.el-timeline .el-timeline-item__center .el-timeline-item__wrapper{width:100%}.el-timeline .el-timeline-item__center .el-timeline-item__tail{top:0}.el-timeline .el-timeline-item__center:first-child .el-timeline-item__tail{height:calc(50% + 10px);top:calc(50% - 10px)}.el-timeline .el-timeline-item__center:last-child .el-timeline-item__tail{display:block;height:calc(50% - 10px)}.el-tooltip-v2__content{--el-tooltip-v2-padding:5px 10px;--el-tooltip-v2-border-radius:4px;--el-tooltip-v2-border-color:var(--el-border-color);border-radius:var(--el-tooltip-v2-border-radius);color:var(--el-color-black);background-color:var(--el-color-white);padding:var(--el-tooltip-v2-padding);border:1px solid var(--el-border-color)}.el-tooltip-v2__arrow{position:absolute;color:var(--el-color-white);width:var(--el-tooltip-v2-arrow-width);height:var(--el-tooltip-v2-arrow-height);pointer-events:none;left:var(--el-tooltip-v2-arrow-x);top:var(--el-tooltip-v2-arrow-y)}.el-tooltip-v2__arrow:after,.el-tooltip-v2__arrow:before{content:"";width:0;height:0;border:var(--el-tooltip-v2-arrow-border-width) solid transparent;position:absolute}.el-tooltip-v2__content[data-side^=top] .el-tooltip-v2__arrow{bottom:0}.el-tooltip-v2__content[data-side^=top] .el-tooltip-v2__arrow:before{border-top-color:var(--el-color-white);border-top-width:var(--el-tooltip-v2-arrow-border-width);border-bottom:0;top:calc(100% - 1px)}.el-tooltip-v2__content[data-side^=top] .el-tooltip-v2__arrow:after{border-top-color:var(--el-border-color);border-top-width:var(--el-tooltip-v2-arrow-border-width);border-bottom:0;top:100%;z-index:-1}.el-tooltip-v2__content[data-side^=bottom] .el-tooltip-v2__arrow{top:0}.el-tooltip-v2__content[data-side^=bottom] .el-tooltip-v2__arrow:before{border-bottom-color:var(--el-color-white);border-bottom-width:var(--el-tooltip-v2-arrow-border-width);border-top:0;bottom:calc(100% - 1px)}.el-tooltip-v2__content[data-side^=bottom] .el-tooltip-v2__arrow:after{border-bottom-color:var(--el-border-color);border-bottom-width:var(--el-tooltip-v2-arrow-border-width);border-top:0;bottom:100%;z-index:-1}.el-tooltip-v2__content[data-side^=left] .el-tooltip-v2__arrow{right:0}.el-tooltip-v2__content[data-side^=left] .el-tooltip-v2__arrow:before{border-left-color:var(--el-color-white);border-left-width:var(--el-tooltip-v2-arrow-border-width);border-right:0;left:calc(100% - 1px)}.el-tooltip-v2__content[data-side^=left] .el-tooltip-v2__arrow:after{border-left-color:var(--el-border-color);border-left-width:var(--el-tooltip-v2-arrow-border-width);border-right:0;left:100%;z-index:-1}.el-tooltip-v2__content[data-side^=right] .el-tooltip-v2__arrow{left:0}.el-tooltip-v2__content[data-side^=right] .el-tooltip-v2__arrow:before{border-right-color:var(--el-color-white);border-right-width:var(--el-tooltip-v2-arrow-border-width);border-left:0;right:calc(100% - 1px)}.el-tooltip-v2__content[data-side^=right] .el-tooltip-v2__arrow:after{border-right-color:var(--el-border-color);border-right-width:var(--el-tooltip-v2-arrow-border-width);border-left:0;right:100%;z-index:-1}.el-tooltip-v2__content.is-dark{--el-tooltip-v2-border-color:transparent;color:var(--el-color-white)}.el-tooltip-v2__content.is-dark,.el-tooltip-v2__content.is-dark .el-tooltip-v2__arrow{background-color:var(--el-color-black);border-color:transparent}.el-transfer{--el-transfer-border-color:var(--el-border-color-lighter);--el-transfer-border-radius:var(--el-border-radius-base);--el-transfer-panel-width:200px;--el-transfer-panel-header-height:40px;--el-transfer-panel-header-bg-color:var(--el-fill-color-light);--el-transfer-panel-footer-height:40px;--el-transfer-panel-body-height:278px;--el-transfer-item-height:30px;--el-transfer-filter-height:32px;font-size:var(--el-font-size-base)}.el-transfer__buttons{display:inline-block;vertical-align:middle;padding:0 30px}.el-transfer__button{vertical-align:top}.el-transfer__button:nth-child(2){margin:0 0 0 10px}.el-transfer__button i,.el-transfer__button span{font-size:14px}.el-transfer__button .el-icon+span{margin-left:0}.el-transfer-panel{overflow:hidden;background:var(--el-bg-color-overlay);display:inline-block;text-align:left;vertical-align:middle;width:var(--el-transfer-panel-width);max-height:100%;box-sizing:border-box;position:relative}.el-transfer-panel__body{height:var(--el-transfer-panel-body-height);border-left:1px solid var(--el-transfer-border-color);border-right:1px solid var(--el-transfer-border-color);border-bottom:1px solid var(--el-transfer-border-color);border-bottom-left-radius:var(--el-transfer-border-radius);border-bottom-right-radius:var(--el-transfer-border-radius);overflow:hidden}.el-transfer-panel__body.is-with-footer{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.el-transfer-panel__list{margin:0;padding:6px 0;list-style:none;height:var(--el-transfer-panel-body-height);overflow:auto;box-sizing:border-box}.el-transfer-panel__list.is-filterable{height:calc(100% - var(--el-transfer-filter-height) - 30px);padding-top:0}.el-transfer-panel__item{height:var(--el-transfer-item-height);line-height:var(--el-transfer-item-height);padding-left:15px;display:block!important}.el-transfer-panel__item+.el-transfer-panel__item{margin-left:0}.el-transfer-panel__item.el-checkbox{color:var(--el-text-color-regular)}.el-transfer-panel__item:hover{color:var(--el-color-primary)}.el-transfer-panel__item.el-checkbox .el-checkbox__label{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;box-sizing:border-box;padding-left:22px;line-height:var(--el-transfer-item-height)}.el-transfer-panel__item .el-checkbox__input{position:absolute;top:8px}.el-transfer-panel__filter{text-align:center;padding:15px;box-sizing:border-box}.el-transfer-panel__filter .el-input__inner{height:var(--el-transfer-filter-height);width:100%;font-size:12px;display:inline-block;box-sizing:border-box;border-radius:calc(var(--el-transfer-filter-height)/2)}.el-transfer-panel__filter .el-icon-circle-close{cursor:pointer}.el-transfer-panel .el-transfer-panel__header{display:flex;align-items:center;height:var(--el-transfer-panel-header-height);background:var(--el-transfer-panel-header-bg-color);margin:0;padding-left:15px;border:1px solid var(--el-transfer-border-color);border-top-left-radius:var(--el-transfer-border-radius);border-top-right-radius:var(--el-transfer-border-radius);box-sizing:border-box;color:var(--el-color-black)}.el-transfer-panel .el-transfer-panel__header .el-checkbox{position:relative;display:flex;width:100%;align-items:center}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label{font-size:16px;color:var(--el-text-color-primary);font-weight:400}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span{position:absolute;right:15px;top:50%;transform:translate3d(0,-50%,0);color:var(--el-text-color-secondary);font-size:12px;font-weight:400}.el-transfer-panel .el-transfer-panel__footer{height:var(--el-transfer-panel-footer-height);background:var(--el-bg-color-overlay);margin:0;padding:0;border:1px solid var(--el-transfer-border-color);border-bottom-left-radius:var(--el-transfer-border-radius);border-bottom-right-radius:var(--el-transfer-border-radius)}.el-transfer-panel .el-transfer-panel__footer:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-transfer-panel .el-transfer-panel__footer .el-checkbox{padding-left:20px;color:var(--el-text-color-regular)}.el-transfer-panel .el-transfer-panel__empty{margin:0;height:var(--el-transfer-item-height);line-height:var(--el-transfer-item-height);padding:6px 15px 0;color:var(--el-text-color-secondary);text-align:center}.el-transfer-panel .el-checkbox__label{padding-left:8px}.el-transfer-panel .el-checkbox__inner{height:14px;width:14px;border-radius:3px}.el-transfer-panel .el-checkbox__inner:after{height:6px;width:3px;left:4px}.el-tree{--el-tree-node-content-height:26px;--el-tree-node-hover-bg-color:var(--el-fill-color-light);--el-tree-text-color:var(--el-text-color-regular);--el-tree-expand-icon-color:var(--el-text-color-placeholder);position:relative;cursor:default;background:var(--el-fill-color-blank);color:var(--el-tree-text-color);font-size:var(--el-font-size-base)}.el-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.el-tree__empty-text{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);color:var(--el-text-color-secondary);font-size:var(--el-font-size-base)}.el-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:var(--el-color-primary)}.el-tree-node{white-space:nowrap;outline:0}.el-tree-node:focus>.el-tree-node__content{background-color:var(--el-tree-node-hover-bg-color)}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:var(--el-color-primary);color:#fff}.el-tree-node__content{--el-checkbox-height:var(--el-tree-node-content-height);display:flex;align-items:center;height:var(--el-tree-node-content-height);cursor:pointer}.el-tree-node__content>.el-tree-node__expand-icon{padding:6px;box-sizing:content-box}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree-node__content:hover{background-color:var(--el-tree-node-hover-bg-color)}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{cursor:pointer;color:var(--el-tree-expand-icon-color);font-size:12px;transform:rotate(0);transition:transform var(--el-transition-duration) ease-in-out}.el-tree-node__expand-icon.expanded{transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default;visibility:hidden}.el-tree-node__expand-icon.is-hidden{visibility:hidden}.el-tree-node__loading-icon{margin-right:8px;font-size:var(--el-font-size-base);color:var(--el-tree-expand-icon-color)}.el-tree-node>.el-tree-node__children{overflow:hidden;background-color:transparent}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:var(--el-color-primary-light-9)}.el-tree-select{--el-tree-node-content-height:26px;--el-tree-node-hover-bg-color:var(--el-fill-color-light);--el-tree-text-color:var(--el-text-color-regular);--el-tree-expand-icon-color:var(--el-text-color-placeholder)}.el-tree-select__popper .el-tree-node__expand-icon{margin-left:8px}.el-tree-select__popper .el-tree-node.is-checked>.el-tree-node__content .el-select-dropdown__item.selected:after{content:none}.el-tree-select__popper .el-select-dropdown__item{flex:1;background:0 0!important;padding-left:0;height:20px;line-height:20px}.el-upload{--el-upload-dragger-padding-horizontal:40px;--el-upload-dragger-padding-vertical:10px;display:inline-flex;justify-content:center;align-items:center;cursor:pointer;outline:0}.el-upload__input{display:none}.el-upload__tip{font-size:12px;color:var(--el-text-color-regular);margin-top:7px}.el-upload iframe{position:absolute;z-index:-1;top:0;left:0;opacity:0}.el-upload--picture-card{--el-upload-picture-card-size:148px;background-color:var(--el-fill-color-lighter);border:1px dashed var(--el-border-color-darker);border-radius:6px;box-sizing:border-box;width:var(--el-upload-picture-card-size);height:var(--el-upload-picture-card-size);cursor:pointer;vertical-align:top;display:inline-flex;justify-content:center;align-items:center}.el-upload--picture-card>i{font-size:28px;color:var(--el-text-color-secondary)}.el-upload--picture-card:hover{border-color:var(--el-color-primary);color:var(--el-color-primary)}.el-upload.is-drag{display:block}.el-upload:focus{color:var(--el-color-primary)}.el-upload:focus,.el-upload:focus .el-upload-dragger{border-color:var(--el-color-primary)}.el-upload-dragger{padding:var(--el-upload-dragger-padding-horizontal) var(--el-upload-dragger-padding-vertical);background-color:var(--el-fill-color-blank);border:1px dashed var(--el-border-color);border-radius:6px;box-sizing:border-box;text-align:center;cursor:pointer;position:relative;overflow:hidden}.el-upload-dragger .el-icon--upload{font-size:67px;color:var(--el-text-color-placeholder);margin-bottom:16px;line-height:50px}.el-upload-dragger+.el-upload__tip{text-align:center}.el-upload-dragger~.el-upload__files{border-top:var(--el-border);margin-top:7px;padding-top:5px}.el-upload-dragger .el-upload__text{color:var(--el-text-color-regular);font-size:14px;text-align:center}.el-upload-dragger .el-upload__text em{color:var(--el-color-primary);font-style:normal}.el-upload-dragger:hover{border-color:var(--el-color-primary)}.el-upload-dragger.is-dragover{padding:calc(var(--el-upload-dragger-padding-horizontal) - 1px) calc(var(--el-upload-dragger-padding-vertical) - 1px);background-color:var(--el-color-primary-light-9);border:2px dashed var(--el-color-primary)}.el-upload-list{margin:10px 0 0;padding:0;list-style:none;position:relative}.el-upload-list__item{transition:all .5s cubic-bezier(.55,0,.1,1);font-size:14px;color:var(--el-text-color-regular);margin-bottom:5px;position:relative;box-sizing:border-box;border-radius:4px;width:100%}.el-upload-list__item .el-progress{position:absolute;top:20px;width:100%}.el-upload-list__item .el-progress__text{position:absolute;right:0;top:-13px}.el-upload-list__item .el-progress-bar{margin-right:0;padding-right:0}.el-upload-list__item .el-icon--upload-success{color:var(--el-color-success)}.el-upload-list__item .el-icon--close{display:none;position:absolute;right:5px;top:50%;cursor:pointer;opacity:.75;color:var(--el-text-color-regular);transition:opacity var(--el-transition-duration);transform:translateY(-50%)}.el-upload-list__item .el-icon--close:hover{opacity:1;color:var(--el-color-primary)}.el-upload-list__item .el-icon--close-tip{display:none;position:absolute;top:1px;right:5px;font-size:12px;cursor:pointer;opacity:1;color:var(--el-color-primary);font-style:normal}.el-upload-list__item:hover{background-color:var(--el-fill-color-light)}.el-upload-list__item:hover .el-icon--close{display:inline-flex}.el-upload-list__item:hover .el-progress__text{display:none}.el-upload-list__item .el-upload-list__item-info{display:inline-flex;justify-content:center;flex-direction:column;width:calc(100% - 30px);margin-left:4px}.el-upload-list__item.is-success .el-upload-list__item-status-label{display:inline-flex}.el-upload-list__item.is-success .el-upload-list__item-name:focus,.el-upload-list__item.is-success .el-upload-list__item-name:hover{color:var(--el-color-primary);cursor:pointer}.el-upload-list__item.is-success:focus:not(:hover) .el-icon--close-tip{display:inline-block}.el-upload-list__item.is-success:active,.el-upload-list__item.is-success:not(.focusing):focus{outline-width:0}.el-upload-list__item.is-success:active .el-icon--close-tip,.el-upload-list__item.is-success:not(.focusing):focus .el-icon--close-tip{display:none}.el-upload-list__item.is-success:focus .el-upload-list__item-status-label,.el-upload-list__item.is-success:hover .el-upload-list__item-status-label{display:none;opacity:0}.el-upload-list__item-name{color:var(--el-text-color-regular);display:inline-flex;text-align:center;align-items:center;padding:0 4px;transition:color var(--el-transition-duration);font-size:var(--el-font-size-base)}.el-upload-list__item-name .el-icon{margin-right:6px;color:var(--el-text-color-secondary)}.el-upload-list__item-file-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.el-upload-list__item-status-label{position:absolute;right:5px;top:0;line-height:inherit;display:none;height:100%;justify-content:center;align-items:center;transition:opacity var(--el-transition-duration)}.el-upload-list__item-delete{position:absolute;right:10px;top:0;font-size:12px;color:var(--el-text-color-regular);display:none}.el-upload-list__item-delete:hover{color:var(--el-color-primary)}.el-upload-list--picture-card{--el-upload-list-picture-card-size:148px;display:inline-flex;flex-wrap:wrap;margin:0}.el-upload-list--picture-card .el-upload-list__item{overflow:hidden;background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:6px;box-sizing:border-box;width:var(--el-upload-list-picture-card-size);height:var(--el-upload-list-picture-card-size);margin:0 8px 8px 0;padding:0;display:inline-flex}.el-upload-list--picture-card .el-upload-list__item .el-icon--check,.el-upload-list--picture-card .el-upload-list__item .el-icon--circle-check{color:#fff}.el-upload-list--picture-card .el-upload-list__item .el-icon--close{display:none}.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label{opacity:0;display:block}.el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture-card .el-upload-list__item .el-upload-list__item-name{display:none}.el-upload-list--picture-card .el-upload-list__item-thumbnail{width:100%;height:100%;object-fit:contain}.el-upload-list--picture-card .el-upload-list__item-status-label{right:-15px;top:-6px;width:40px;height:24px;background:var(--el-color-success);text-align:center;transform:rotate(45deg)}.el-upload-list--picture-card .el-upload-list__item-status-label i{font-size:12px;margin-top:11px;transform:rotate(-45deg)}.el-upload-list--picture-card .el-upload-list__item-actions{position:absolute;width:100%;height:100%;left:0;top:0;cursor:default;display:inline-flex;justify-content:center;align-items:center;color:#fff;opacity:0;font-size:20px;background-color:var(--el-overlay-color-lighter);transition:opacity var(--el-transition-duration)}.el-upload-list--picture-card .el-upload-list__item-actions span{display:none;cursor:pointer}.el-upload-list--picture-card .el-upload-list__item-actions span+span{margin-left:1rem}.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete{position:static;font-size:inherit;color:inherit}.el-upload-list--picture-card .el-upload-list__item-actions:hover{opacity:1}.el-upload-list--picture-card .el-upload-list__item-actions:hover span{display:inline-flex}.el-upload-list--picture-card .el-progress{top:50%;left:50%;transform:translate(-50%,-50%);bottom:auto;width:126px}.el-upload-list--picture-card .el-progress .el-progress__text{top:50%}.el-upload-list--picture .el-upload-list__item{overflow:hidden;z-index:0;background-color:var(--el-fill-color-blank);border:1px solid var(--el-border-color);border-radius:6px;box-sizing:border-box;margin-top:10px;padding:10px;display:flex;align-items:center}.el-upload-list--picture .el-upload-list__item .el-icon--check,.el-upload-list--picture .el-upload-list__item .el-icon--circle-check{color:#fff}.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label{opacity:0;display:inline-flex}.el-upload-list--picture .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i{display:none}.el-upload-list--picture .el-upload-list__item .el-icon--close{top:5px;transform:translateY(0)}.el-upload-list--picture .el-upload-list__item-thumbnail{display:inline-flex;justify-content:center;align-items:center;width:70px;height:70px;object-fit:contain;position:relative;z-index:1;background-color:var(--el-color-white)}.el-upload-list--picture .el-upload-list__item-status-label{position:absolute;right:-17px;top:-7px;width:46px;height:26px;background:var(--el-color-success);text-align:center;transform:rotate(45deg)}.el-upload-list--picture .el-upload-list__item-status-label i{font-size:12px;margin-top:12px;transform:rotate(-45deg)}.el-upload-list--picture .el-progress{position:relative;top:-7px}.el-upload-cover{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;z-index:10;cursor:default}.el-upload-cover:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-upload-cover img{display:block;width:100%;height:100%}.el-upload-cover__label{right:-15px;top:-6px;width:40px;height:24px;background:var(--el-color-success);text-align:center;transform:rotate(45deg)}.el-upload-cover__label i{font-size:12px;margin-top:11px;transform:rotate(-45deg);color:#fff}.el-upload-cover__progress{display:inline-block;vertical-align:middle;position:static;width:243px}.el-upload-cover__progress+.el-upload__inner{opacity:0}.el-upload-cover__content{position:absolute;top:0;left:0;width:100%;height:100%}.el-upload-cover__interact{position:absolute;bottom:0;left:0;width:100%;height:100%;background-color:var(--el-overlay-color-light);text-align:center}.el-upload-cover__interact .btn{display:inline-block;color:#fff;font-size:14px;cursor:pointer;vertical-align:middle;transition:var(--el-transition-md-fade);margin-top:60px}.el-upload-cover__interact .btn i{margin-top:0}.el-upload-cover__interact .btn span{opacity:0;transition:opacity .15s linear}.el-upload-cover__interact .btn:not(:first-child){margin-left:35px}.el-upload-cover__interact .btn:hover{transform:translateY(-13px)}.el-upload-cover__interact .btn:hover span{opacity:1}.el-upload-cover__interact .btn i{color:#fff;display:block;font-size:24px;line-height:inherit;margin:0 auto 5px}.el-upload-cover__title{position:absolute;bottom:0;left:0;background-color:#fff;height:36px;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:400;text-align:left;padding:0 10px;margin:0;line-height:36px;font-size:14px;color:var(--el-text-color-primary)}.el-upload-cover+.el-upload__inner{opacity:0;position:relative;z-index:1}.el-vl__wrapper{position:relative}.el-vl__wrapper.always-on .el-virtual-scrollbar,.el-vl__wrapper:hover .el-virtual-scrollbar{opacity:1}.el-vl__window{scrollbar-width:none}.el-vl__window::-webkit-scrollbar{display:none}.el-virtual-scrollbar{opacity:0;transition:opacity .34s ease-out}.el-virtual-scrollbar.always-on{opacity:1}.el-vg__wrapper{position:relative}.el-popper{--el-popper-border-radius:var(--el-popover-border-radius,4px);position:absolute;border-radius:var(--el-popper-border-radius);padding:5px 11px;z-index:2000;font-size:12px;line-height:20px;min-width:10px;overflow-wrap:break-word;visibility:visible}.el-popper.is-dark{color:var(--el-bg-color)}.el-popper.is-dark,.el-popper.is-dark .el-popper__arrow:before{background:var(--el-text-color-primary);border:1px solid var(--el-text-color-primary)}.el-popper.is-dark .el-popper__arrow:before{right:0}.el-popper.is-light,.el-popper.is-light .el-popper__arrow:before{background:var(--el-bg-color-overlay);border:1px solid var(--el-border-color-light)}.el-popper.is-light .el-popper__arrow:before{right:0}.el-popper.is-pure{padding:0}.el-popper__arrow,.el-popper__arrow:before{position:absolute;width:10px;height:10px;z-index:-1}.el-popper__arrow:before{content:" ";transform:rotate(45deg);background:var(--el-text-color-primary);box-sizing:border-box}.el-popper[data-popper-placement^=top]>.el-popper__arrow{bottom:-5px}.el-popper[data-popper-placement^=top]>.el-popper__arrow:before{border-bottom-right-radius:2px}.el-popper[data-popper-placement^=bottom]>.el-popper__arrow{top:-5px}.el-popper[data-popper-placement^=bottom]>.el-popper__arrow:before{border-top-left-radius:2px}.el-popper[data-popper-placement^=left]>.el-popper__arrow{right:-5px}.el-popper[data-popper-placement^=left]>.el-popper__arrow:before{border-top-right-radius:2px}.el-popper[data-popper-placement^=right]>.el-popper__arrow{left:-5px}.el-popper[data-popper-placement^=right]>.el-popper__arrow:before{border-bottom-left-radius:2px}.el-popper[data-popper-placement^=top] .el-popper__arrow:before{border-top-color:transparent!important;border-left-color:transparent!important}.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before{border-bottom-color:transparent!important;border-right-color:transparent!important}.el-popper[data-popper-placement^=left] .el-popper__arrow:before{border-left-color:transparent!important;border-bottom-color:transparent!important}.el-popper[data-popper-placement^=right] .el-popper__arrow:before{border-right-color:transparent!important;border-top-color:transparent!important}.el-statistic{--el-statistic-title-font-weight:400;--el-statistic-title-font-size:var(--el-font-size-extra-small);--el-statistic-title-color:var(--el-text-color-regular);--el-statistic-content-font-weight:400;--el-statistic-content-font-size:var(--el-font-size-extra-large);--el-statistic-content-color:var(--el-text-color-primary)}.el-statistic__head{font-weight:var(--el-statistic-title-font-weight);font-size:var(--el-statistic-title-font-size);color:var(--el-statistic-title-color);line-height:20px;margin-bottom:4px}.el-statistic__content{font-weight:var(--el-statistic-content-font-weight);font-size:var(--el-statistic-content-font-size);color:var(--el-statistic-content-color)}.el-statistic__value{display:inline-block}.el-statistic__prefix{margin-right:4px;display:inline-block}.el-statistic__suffix{margin-left:4px;display:inline-block}.el-tour{--el-tour-width:520px;--el-tour-padding-primary:12px;--el-tour-font-line-height:var(--el-font-line-height-primary);--el-tour-title-font-size:16px;--el-tour-title-text-color:var(--el-text-color-primary);--el-tour-title-font-weight:400;--el-tour-close-color:var(--el-color-info);--el-tour-font-size:14px;--el-tour-color:var(--el-text-color-primary);--el-tour-bg-color:var(--el-bg-color);--el-tour-border-radius:4px}.el-tour__hollow{transition:all var(--el-transition-duration) ease}.el-tour__content{border-radius:var(--el-tour-border-radius);width:var(--el-tour-width);padding:var(--el-tour-padding-primary);box-shadow:var(--el-box-shadow-light);overflow-wrap:break-word}.el-tour__arrow,.el-tour__content{background:var(--el-tour-bg-color);box-sizing:border-box}.el-tour__arrow{position:absolute;width:10px;height:10px;pointer-events:none;transform:rotate(45deg)}.el-tour__content[data-side^=top] .el-tour__arrow{border-top-color:transparent;border-left-color:transparent}.el-tour__content[data-side^=bottom] .el-tour__arrow{border-bottom-color:transparent;border-right-color:transparent}.el-tour__content[data-side^=left] .el-tour__arrow{border-left-color:transparent;border-bottom-color:transparent}.el-tour__content[data-side^=right] .el-tour__arrow{border-right-color:transparent;border-top-color:transparent}.el-tour__content[data-side^=top] .el-tour__arrow{bottom:-5px}.el-tour__content[data-side^=bottom] .el-tour__arrow{top:-5px}.el-tour__content[data-side^=left] .el-tour__arrow{right:-5px}.el-tour__content[data-side^=right] .el-tour__arrow{left:-5px}.el-tour__closebtn{position:absolute;top:0;right:0;padding:0;width:40px;height:40px;background:0 0;border:none;outline:0;cursor:pointer;font-size:var(--el-message-close-size,16px)}.el-tour__closebtn .el-tour__close{color:var(--el-tour-close-color);font-size:inherit}.el-tour__closebtn:focus .el-tour__close,.el-tour__closebtn:hover .el-tour__close{color:var(--el-color-primary)}.el-tour__header{padding-bottom:var(--el-tour-padding-primary)}.el-tour__header.show-close{padding-right:calc(var(--el-tour-padding-primary) + var(--el-message-close-size,16px))}.el-tour__title{line-height:var(--el-tour-font-line-height);font-size:var(--el-tour-title-font-size);color:var(--el-tour-title-text-color);font-weight:var(--el-tour-title-font-weight)}.el-tour__body{color:var(--el-tour-text-color);font-size:var(--el-tour-font-size)}.el-tour__body img,.el-tour__body video{max-width:100%}.el-tour__footer{padding-top:var(--el-tour-padding-primary);box-sizing:border-box;display:flex;justify-content:space-between}.el-tour__content .el-tour-indicators{display:inline-block;flex:1}.el-tour__content .el-tour-indicator{width:6px;height:6px;display:inline-block;border-radius:50%;background:var(--el-color-info-light-9);margin-right:6px}.el-tour__content .el-tour-indicator.is-active{background:var(--el-color-primary)}.el-tour.el-tour--primary{--el-tour-title-text-color:#fff;--el-tour-text-color:#fff;--el-tour-bg-color:var(--el-color-primary);--el-tour-close-color:#fff}.el-tour.el-tour--primary .el-tour__closebtn:focus .el-tour__close,.el-tour.el-tour--primary .el-tour__closebtn:hover .el-tour__close{color:var(--el-tour-title-text-color)}.el-tour.el-tour--primary .el-button--default{color:var(--el-color-primary);border-color:var(--el-color-primary);background:#fff}.el-tour.el-tour--primary .el-button--primary{border-color:#fff}.el-tour.el-tour--primary .el-tour-indicator{background:hsla(0,0%,100%,.15)}.el-tour.el-tour--primary .el-tour-indicator.is-active{background:#fff}.el-tour-parent--hidden{overflow:hidden} \ No newline at end of file diff --git a/resources/dide-viewer/view/favicon.ico b/resources/dide-viewer/view/favicon.ico deleted file mode 100644 index df36fcfb72584e00488330b560ebcf34a41c64c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S diff --git a/resources/dide-viewer/view/icon.png b/resources/dide-viewer/view/icon.png deleted file mode 100644 index cec516344091a738cc033ad9c90594e0c6732f51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20789 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 FV1n9PXMF$w diff --git a/resources/dide-viewer/view/icon.svg b/resources/dide-viewer/view/icon.svg deleted file mode 100644 index 28ba1ed..0000000 --- a/resources/dide-viewer/view/icon.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/resources/dide-viewer/view/iconfont.css b/resources/dide-viewer/view/iconfont.css deleted file mode 100644 index 8300b89..0000000 --- a/resources/dide-viewer/view/iconfont.css +++ /dev/null @@ -1,97 +0,0 @@ -@font-face { - font-family: "iconfont"; /* Project id 4440655 */ - src: url('iconfont.woff2?t=1713691301672') format('woff2'); -} - -.iconfont { - font-family: "iconfont" !important; - font-size: 16px; - font-style: normal; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.icon-ctrl:before { - content: "\e605"; -} - -.icon-shift:before { - content: "\e626"; -} - -.icon-mouse:before { - content: "\e69e"; -} - -.icon-left-right:before { - content: "\e61c"; -} - -.icon-up-down:before { - content: "\e61d"; -} - -.icon-help:before { - content: "\e87a"; -} - -.icon-parameter:before { - content: "\e6be"; -} - -.icon-task:before { - content: "\e602"; -} - -.icon-fork:before { - content: "\e735"; -} - -.icon-prevent:before { - content: "\e69d"; -} - -.icon-function:before { - content: "\e90e"; -} - -.icon-real:before { - content: "\e6ec"; -} - -.icon-integer:before { - content: "\e603"; -} - -.icon-string:before { - content: "\e614"; -} - -.icon-brackets:before { - content: "\e613"; -} - -.icon-register:before { - content: "\e611"; -} - -.icon-about:before { - content: "\e601"; -} - -.icon-setting:before { - content: "\e657"; -} - -.icon-collections:before { - content: "\e689"; -} - -.icon-memory-chip:before { - content: "\e600"; -} - -.icon-wave-square:before { - content: "\ebd0"; -} - diff --git a/resources/dide-viewer/view/iconfont.woff2 b/resources/dide-viewer/view/iconfont.woff2 deleted file mode 100644 index e6659885c73ce83cbb7f630da2db2dd50144a1bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3908 zcmV-K54-SpPew8T0RR9101rd}3jhEB038qj01os30RR9100000000000000000000 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 SSy%T@IpWa%yCh5|00002;#g+@ diff --git a/resources/dide-viewer/view/index.html b/resources/dide-viewer/view/index.html deleted file mode 100644 index 324498b..0000000 --- a/resources/dide-viewer/view/index.html +++ /dev/null @@ -1,13 +0,0 @@ -Vcd Viewer
\ No newline at end of file diff --git a/resources/dide-viewer/view/js/app.d35abdbf.js b/resources/dide-viewer/view/js/app.d35abdbf.js deleted file mode 100644 index fed0f57..0000000 --- a/resources/dide-viewer/view/js/app.d35abdbf.js +++ /dev/null @@ -1 +0,0 @@ -(function(){"use strict";var e={8338:function(e,t,n){var o=n(5130),r=(n(4114),n(6768)),l=n(144),a=(n(2162),n(595)),i=(n(7467),n(4732),n(9577),n(6280),n(7913),n(7801),n(5320)),s=n(5384),c=JSON.parse('{"module":"Modules","signal":"Signals","search-signal":"Search Signal","language-setting":"Language","horizontal-scaling-ratio":"Horizontal Scaling Level","horizontal-scaling-ratio-description":"There are a total of 5 gear, the higher the gear,
the higher the magnification when ctrl + mouse wheel zoomin","horizontal-roll-ratio":"Horizontal Roll Level","horizontal-roll-ratio-description":"There are 5 gear positions in total. The higher the gear position,
the larger the step length of the left and right sliding waveform timeline","vertical-roll-ratio":"Vertical Roll Level","vertical-roll-ratio-description":"There are 5 gear positions in total. The higher the gear position,
the larger the step length of the up and down sliding waveform timeline","search-setting":"Search","search-case-sensitivity":"Case Sensitivity","search-mode":"search mode","search-scope":"Search Scope","search-display-parent-only":"Display Parent Module Only","search-nothing":"Find Nothing","signal-only":"Signal Only","module-only":"Module Only","signal-module":"Signal + Module","general-setting":"General","appearance-setting":"Appearance","display-wave-height":"Height of Wave Track","display-signal-info-scope":"Info displayed in sidebar","display-signal-info-scope.width":"width","display-signal-info-scope.parent":"parent","wavecolor":"color of wave","wavecolor.normal-bit":"wave of one width","wavecolor.normal-vec":"wave of more than one width","wavecolor.high-impedance":"wave of high impedance","wavecolor.unknown":"wave of unknown","operation-setting":"Operation","render-setting":"Render","prerender":"prerender","prerender-description":"Prerendering will make rendering faster, but will take up extra memory
If your computer has more than 10 GB of memory, we recommend you turn it on.","render-animation":"enable rendering animation","usermanual":"User Manual","usermanual.left-right-scroll.title":" + ","usermanual.left-right-scroll.caption":"move up and down","usermanual.up-down-scroll.title":" + / + + ","usermanual.up-down-scroll.caption":"move left and right","usermanual.xscale.title":" + + ","usermanual.xscale.caption":"scale along x axis","loading":"loading","current-version":"current version","copyright":"The copyright of this software belongs to Digital-IDE project team. Welcome to Star."}'),u=JSON.parse('{"module":"模块","signal":"信号","search-signal":"搜索信号","language-setting":"语言","horizontal-scaling-ratio":"横向缩放速度","horizontal-scaling-ratio-description":"一共有5个挡位,挡位越高,
ctrl + 鼠标滚轮缩放时的倍率越高","horizontal-roll-ratio":"横向滚动速度","horizontal-roll-ratio-description":"一共有5个挡位,挡位越高,
左右滑动波形时间轴的步长越大","vertical-roll-ratio":"纵向滚动速度","vertical-roll-ratio-description":"一共有5个挡位,挡位越高,
上下滑动波形时间轴的步长越大","search-setting":"搜索","search-case-sensitivity":"区分大小写","search-mode":"搜索模式","search-scope":"搜索范围","search-display-parent-only":"只展示父模块","search-nothing":"没有找到任何符号","signal-only":"信号","module-only":"模块","signal-module":"信号 + 模块","general-setting":"通用","appearance-setting":"外观","display-wave-height":"波形轨道的高度","display-signal-info-scope":"侧边栏展示信息","display-signal-info-scope.width":"位宽","display-signal-info-scope.parent":"所属模块名","wavecolor":"波形颜色","wavecolor.normal-bit":"单位宽波形","wavecolor.normal-vec":"多位宽波形","wavecolor.high-impedance":"高阻态波形","wavecolor.unknown":"未知态波形","operation-setting":"操作","render-setting":"渲染","prerender":"预渲染","prerender-description":"预渲染将使得渲染速度更快,但是会占用额外内存
如果您的电脑内存大于10个G,我们建议您开启。","render-animation":"开启渲染动画","usermanual":"使用说明","usermanual.left-right-scroll.title":"","usermanual.left-right-scroll.caption":"上下移动","usermanual.up-down-scroll.title":" / + ","usermanual.up-down-scroll.caption":"左右移动","usermanual.xscale.title":" + ","usermanual.xscale.caption":"横向缩放","loading":"加载中","current-version":"当前版本","copyright":"本软件版权归 Digital-IDE 项目组所有,欢迎 Star。"}');const d=(0,s.hU)({legacy:!1,locale:"zh",warnHtmlMessage:!1,messages:{en:c,zh:u}});var p=d;function h(){var e=0,t=window.screen,n=navigator.userAgent.toLowerCase();return void 0!==window.devicePixelRatio?e=window.devicePixelRatio:~n.indexOf("msie")?t.deviceXDPI&&t.logicalXDPI&&(e=t.deviceXDPI/t.logicalXDPI):void 0!==window.outerWidth&&void 0!==window.innerWidth&&(e=window.outerWidth/window.innerWidth),e&&(e=Math.round(100*e)),e}window.screen.height,h();const f=window.screen.width*h()/100,g=new Float32Array([0,0,0,0,0,0,1,1,.2,.847,.1,1,.2,.847,.1,1,.9,.2,.2,1,.486,.302,1,1,1,1,0,1,1,0,1,1,0,1,0,.5,0,1,1,.5,1,0,0,.5,0,0,1,.1,.2,.847,.1,.1,.2,.847,.1,.1,.9,.2,.2,.1,.486,.302,1,.1]),v=new Float32Array([0,0,1,0,1,0,1,0,-1,0,-1,0,-1,0]),m=.005,y=new Float32Array([0,0,1,m,1,-m,1,0,-1,m,-1,-m,-1,0]),w=new Map;w.set(-1,4),w.set(0,0),w.set(1,1);const k=.004*3800/f,b=k/2,x=new Float32Array([0,b,-b,b,-b,0,-b,-b,0,-b,b,-b,b,0,b,b]);class L{constructor(e,t){this.type=e,this.source=t}make(e){const t=e.createShader(e[this.type]);e.shaderSource(t,this.source),e.compileShader(t);const n=e.getShaderParameter(t,e.COMPILE_STATUS);return n||console.log("创建类型为 "+type+" 的着色器失败!"),t}}const S=new L("VERTEX_SHADER","#version 300 es\nin uvec4 pos;\nout vec4 v_color;\nuniform vec2 scale;\nuniform vec2 offset;\nuniform vec4 colors[16];\nuniform vec2 shifts[7]; // 基础八位图偏移量,为了性能,pos 只传入整数,需要的坐标负数由该值提供\nuniform vec2 widthShifts[8]; // 用于构造线宽的偏移\n\nvoid main() {\n v_color = colors[pos.z];\n vec2 shift = shifts[pos.y];\n vec2 widthShift = widthShifts[pos.w];\n gl_Position = vec4(\n float(pos.x) * scale.x + offset.x + float(widthShift.x) + shift.y,\n float(shift.x) * scale.y + offset.y + float(widthShift.y),\n 1, 1\n );\n}"),R=new L("FRAGMENT_SHADER","#version 300 es\nprecision mediump float;\nin vec4 v_color;\nout vec4 outColor;\nvoid main() {\n outColor = v_color;\n}"),{t:V}=p.global;class M{constructor(e,t,n,o){const r=i.Ks.service({lock:!0,text:V("loading"),background:"rgba(0, 0, 0, 0.7)"}),l=document.createElement("canvas");e.view.replaceChildren(l),this.elements=e,this.globalLookup=t,this.canvas=l,this.pstate=n,this.plugins=o;const a=l.getContext("webgl2",{premultipliedAlpha:!1,alpha:!0,antialias:!1,depth:!1});this.webglLocation=this.initProgram(a);const{lineVerticesMap:s,maskVerticesMap:c}=this.makeVertex();this.lineVerticesMap=s,this.maskVerticesMap=c,this.initData(),this.animationHandler=void 0,r.close()}initProgram(e){const t=e.createProgram();e.attachShader(t,S.make(e)),e.attachShader(t,R.make(e)),e.linkProgram(t),e.useProgram(t);const n={colors:e.getUniformLocation(t,"colors"),shifts:e.getUniformLocation(t,"shifts"),scale:e.getUniformLocation(t,"scale"),offset:e.getUniformLocation(t,"offset"),pos:e.getAttribLocation(t,"pos"),widthShifts:e.getUniformLocation(t,"widthShifts"),gl:e};return n}makeVertex(){const e=this.globalLookup,t=(e.time,new Map),n=new Map;if(E.prerender)for(const o of Reflect.ownKeys(e.chango)){const{lineVertices:e,maskVertices:r}=this.makeVertexByID(o);t.set(o,e),n.set(o,r)}return{lineVerticesMap:t,maskVerticesMap:n}}makeVertexByID(e){const t=this.globalLookup,n=t.time,o=t.chango[e],{kind:r,wave:l}=o;if("bit"===r){const{lineVertices:e,maskVertices:t}=this.makeBitVertex(l,n);return{lineVertices:e,maskVertices:t}}if("vec"===r){const{lineVertices:e,maskVertices:t}=this.makeVecVertex(l,n);return{lineVertices:e,maskVertices:t}}return{lineVertices:void 0,maskVertices:void 0}}translateValue2RenderParameter(e){switch(e){case 0:return{y:-1,color:2};case 1:return{y:1,color:3};case 2:case 3:return{y:-1,color:4};case 4:case 5:return{y:0,color:2};default:return{y:-1,color:7}}}makeWidthShiftIndexByPoints(e,t,n){if(void 0===e){if(t.y===n.y)return 0;if(t.x===n.x)return 6}else if(void 0===n){if(t.y===e.y)return 0;if(t.x===e.x)return 6}else{if(e.x!==t.x&&e.y===t.y&&t.x===n.x&&t.y!==n.y)return n.y>t.y?1:7;if(e.x===t.x&&e.y!==t.y&&t.x!==n.x&&t.y===n.y)return t.y>e.y?1:7}}makeRectangleVertices(e,t,n,o,r,l=0){const a=[e,w.get(o),r,l],i=[e,w.get(t),r,l],s=[n,w.get(t),r,l],c=[n,w.get(o),r,l];return this.makeQuadVertices(a,i,s,c)}makeQuadVertices(e,t,n,o){return[...e,...t,...n,...e,...n,...o]}makeBitVertex(e,t,n=!1){const o=e.length,r=[];for(let c=0;c0){const t=this.makeRectangleVertices(e.x,1,r[c].x,-1,e.color+10,4);s.push(...t);continue}}const t=r[c+1],n=r[c+2];if(void 0!==e&&void 0!==t&&void 0!==n&&t.y>e.y){const o=this.makeRectangleVertices(t.x,t.y,n.x,e.y,t.color+10,4);s.push(...o)}}return{lineVertices:new Uint32Array(i),maskVertices:new Uint32Array(s)}}makeVecVertex(e,t,n=!1){const o=[],r=[],l=e.length;for(let a=0;ae(o,i,a)))}function m(e){if(void 0===d)d=e;else{const t=e-d,n=E.renderAnimation?Math.min(t/p,1):1;if(g(n),n>=1)return cancelAnimationFrame(h),i.oldXOffset=i.xOffset,i.oldYOffset=i.yOffset,i.oldXScale=i.xScale,i.oldYStep=i.yStep,void(i.oldYDuty=i.yDuty)}requestAnimationFrame(m)}}}var C=M;const I=(0,a.A)(),O=(0,l.Kh)({topModules:[],currentModule:void 0,currentWires:new Set,currentSignalValues:{},currentTime:0,version:"",date:"",status:"",timescale:"",t0:0,maxTime:0n,time:0,tgcd:null,chango:{},render:()=>{},waveRender:void 0,pstate:void 0,xScale:1,initcurrentModule(e){if(void 0===this.currentModule&&e&&(this.currentModule=e),e.body&&e.body instanceof Array)for(const t of e.body)t.parent=e},getWaveRender(){return this.waveRender}}),A=(0,l.Kh)({timeScaleHeight:30,sideBarPadding:10,sideBarItemMargin:5,vcdRenderPadding:24,yOffset:0}),E=(0,l.Kh)({language:"zh",caseSensitivity:!1,displayParentOnly:!1,displaySignalHeight:50,searchMode:"so",searchScope:["wire","reg","integer"],displaySignalInfoScope:["width"],HorizontalScalingRatio:1,HorizontalRollRatio:1,VerticalRollRario:1,minGridWidth:300,prerender:!0,renderAnimation:!1});function _(){const e=localStorage.getItem("setting");try{const t=JSON.parse(e);return t}catch(t){return}}const F=_();if(F)for(const or of Reflect.ownKeys(F)){const e=F[or];void 0!==e&&(E[or]=e)}const P={};async function W(){const e=await window.getVcdStream();return e}function T(e,t){let n;return function(){n&&clearTimeout(n),n=setTimeout((()=>{e()}),t)}}function H(e){switch(e.type){case"module":return"icon-memory-chip";case"begin":return"icon-brackets";case"fork":return"icon-fork";case"function":return"icon-function";case"task":return"icon-task";case"event":return"icon-prevent";case"integer":return"icon-integer";case"parameter":return"icon-parameter";case"real":return"icon-real";case"realtime":return"icon-wave-square";case"reg":return"icon-register";case"supply0":return"icon-wave-square";case"supply1":return"icon-wave-square";case"time":return"icon-wave-square";case"tri":return"icon-wave-square";case"triand":return"icon-wave-square";case"trior":return"icon-wave-square";case"trireg":return"icon-wave-square";case"tri0":return"icon-wave-square";case"tri1":return"icon-wave-square";case"wand":return"icon-wave-square";case"wire":return"icon-wave-square";case"wor":return"icon-wave-square";case"string":return"icon-string";default:break}}function B(e,t,n,o,r){if(n.has(t.type)){let n=t.name;if(o||(n=n.toLowerCase(),e=e.toLowerCase()),n.includes(e)){let e=t;const n=[];while(e)if(e.name&&e.type&&n.push(e),e=e.parent,r&&2==n.length)break;let o="";for(let t=n.length-1;t>=0;--t){const e=n[t],r=H(e),l=` ${e.name}`;o+=l,t>0&&(o+='
')}return{htmlString:o,module:t}}}return null}function D(e,t,n){return"bit"===e?2===t?"x":t:"vec"===e?n?t?"?":"x":t:void 0}async function z(){const e=O.chango,t=O.currentTime,n=O.currentSignalValues;for(const o of O.currentWires){const r=e[o.link],{wave:l,kind:a}=r;void 0===l||0===l.length?n[o.link]="x":1===l.length?n[o.link]=D(a,l[0][1],l[0][2]):n[o.link]=X(a,l,t)}}function X(e,t,n){const o=t.map((e=>e[0]));let r=0,l=t.length-1;while(r>1;o[e]>n?l=e:r=e}const a=D(e,t[r][1],t[r][2]);return a}const U=BigInt(Number.MAX_SAFE_INTEGER);function $(e){if("string"!==typeof e)return;const t=e.trim(),n=t.match(/^(\d+)\s*(\w+)$/),o={1:0,10:1,100:2}[n[1]],r={s:0,ms:-3,us:-6,ns:-9,ps:-12,fs:-15}[n[2]];return o+r}function N(e){return e{e[0]/=n}));const o=0|Math.log10(n);if(o>0){const t=Math.pow(10,o),r=n/t;r===(0|r)&&(e.tgcd=r,e.timescale+=o)}}const j=new Set(["begin","fork","function","module","task"]),q=new Set(["event","integer","parameter","real","realtime","reg","supply0","supply1","time","tri","triand","trior","trireg","tri0","tri1","wand","wire","wor","string"]);function Y(e){return j.has(e.type)}function J(e){return q.has(e.type)}function Q(e,t,n,o){const r=Math.floor(255*e),l=Math.floor(255*t),a=Math.floor(255*n);return`rgba(${r},${l},${a},${o})`}function Z(e){const t=e.match(/^rgba\((\d+),\s*(\d+),\s*(\d+),\s*(\d+(\.\d+)?)\)$/);return t?{red:parseInt(t[1])/255,green:parseInt(t[2])/255,blue:parseInt(t[3])/255,alpha:parseFloat(t[4])}:void 0}const ee=["#ff4500","#ff8c00","#ffd700","#90ee90","#00ced1","#1e90ff","#c71585","rgba(255, 69, 0, 0.68)","rgb(255, 120, 0)","hsv(51, 100, 98)","hsva(120, 40, 94, 0.5)","hsl(181, 100%, 37%)","hsla(209, 100%, 56%, 0.73)","#c7158577"];var te=n(8179),ne=n.n(te),oe=n(9727),re=n.n(oe);const le=(e,t)=>{const n=["T","G","M","k","","m","µ","n","p","f","a","z","y"],o=14-t,r=n[o/3|0],l=[100,10,1][o%3];return(e*l).toLocaleString()+" "+r+"s"};var ae=le;const ie=(e,t)=>{const{xmargin:n,fontWidth:o,fontHeight:r}=e,{height:l,xScale:a,xOffset:i,tgcd:s,timescale:c,xCursor:u}=t,d=Math.round((u-i)/a)*s;O.currentTime=d;const p=ae(d,c),h=(p.length+1)*o,f=[["line",{class:"wd-cursor-line",x1:n+.5,x2:n+.5,y1:0,y2:l}],["rect",{class:"wd-cursor-time",x:n-h/2,y:0,rx:9,ry:9,width:h,height:1.25*r}],["text",{class:"wd-cursor-time",x:n,y:r},p],["rect",{class:"wd-cursor-time",x:n-h/2,y:l-1.25*r,rx:9,ry:9,width:h,height:1.25*r}],["text",{class:"wd-cursor-time",x:n,y:l-.25*r},p]];return re()(ne()(2*n,l).concat(f))};var se=ie;const ce=(e,t)=>{let n=t();const{width:o,xOffset:r,xScale:l,time:a,sidebarWidth:i}=e,s=o+l*a*1;n=Math.min(n,s);const c=-o-l*a*1.2;return n=Math.max(n,c),n!==r&&(e.oldXOffset=e.xOffset,e.xOffset=n,!0)};var ue=ce;const de=e=>(t,n)=>{let{xOffset:o,yOffset:r,xScale:l,yStep:a,time:i,sidebarWidth:s,numLanes:c}=e;e.width=t,e.height=n;const u=2*(c+2)*a;u<0?r=0:r>u&&(r=u),e.yOffset=r;const d=e.xScaleMin=.001;e.xScale=lo))};var pe=de;const he={container:["div",{class:"vcd-container",id:"vcd-container"}],grid:["div",{class:"vcd-vline",id:"vcd-vline"}],view:["div",{class:"vcd-view",id:"vcd-view"}],values:["div",{class:"vcd-values",id:"vcd-values"}],cursor:["div",{class:"vcd-cursor",id:"vcd-cursor"}]},fe=["grid","view","values","cursor"],ge=e=>{const t=Object.keys(e);return t.reduce(((t,n)=>{const o=e[n],r=document.createElement(o[0]),l="object"===typeof o[1]?o[1]:{};return Object.keys(l).map((e=>{"class"===e?r.classList.add(l.class):r.setAttribute(e,l[e])})),t[n]=r,t}),{})};const ve=(e,t)=>(t.map((t=>e.container.appendChild(e[t]))),e.container);var me={defaultElemento:he,defaultLayers:fe,createElemento:ge,createContainer:ve};const ye=(e,t)=>{t.match(/(\d+)(\w+)/)},we=(e,t,n)=>{const o=160,r=20,l=r/2,a=t=>{const a=n.xCursor=t.clientX;e.style.left=a-o+"px",e.innerHTML=se({xmargin:o,fontWidth:l,fontHeight:r},n)};a({clientX:n.width/2}),t.addEventListener("mousemove",a)};const ke=e=>{const t=280,n=20,o=me.createElemento(e.elemento),r=me.createContainer(o,e.layers),l={fontHeight:n,width:1024,height:1024,xScaleMax:1e3,xScaleMin:.001,topBarHeight:1.5*n,botBarHeight:1.5*n,xOffset:t,yOffset:-40,yStep:54,yDuty:.6,oldXOffset:t,oldYOffset:-40,oldYStep:54,oldYDuty:.6,sidebarWidth:t,container:r};return O.pstate=l,{elo:o,pstate:l,start:t=>{t.t0=t.t0||0,Object.assign(l,{tgcd:t.tgcd,timescale:t.timescale,xScale:t.xScale||8,oldXScale:t.xScale||8,numLanes:t.currentWires.size,t0:t.t0,time:t.time});try{const e=localStorage.getItem("dide"),t=JSON.parse(e);Object.assign(l,t)}catch(i){console.error(i)}t.timeOpt&&ye(l,t.timeOpt.value);const n=new C(o,t,l,e.renderPlugins);t.render=n.render.bind(n),t.waveRender=n,O.waveRender=n;const r=pe(l),a=new ResizeObserver((e=>{for(let t of e){let{width:e,height:n}=t.contentRect;console.log(e,n),r(e,n)}t.render()}));a.observe(document.body),r(o.container.clientWidth,o.container.clientHeight),we(o.cursor,o.container,l,t.render),t.render()}}};var be=ke,xe=n(1256),Le=n.n(xe);const Se=(e,t)=>t*e.xScale+e.xOffset;var Re=Se;const Ve=(e,t)=>{const{xOffset:n,xScale:o,tgcd:r}=t;return Math.round(e/o-n/o)*r};var Me=Ve;function*Ce(e,t){const{sidebarWidth:n,width:o}=t,r=Me(n,t),l=Me(o,t);let a=0;for(a=0;a=r)break;for(;al)break;yield a}}var Ie=Ce;function*Oe(e){let t,n,o;[t,o]=e[0];let r=0;for(let l=1;l=t)break;r=yield n}}while(1)yield o}const Ae=e=>{let t=599,n=173;for(let o=0;o>5^t>>5)%36};var Ee=Ae;const _e=(e,t,n,o,r,l)=>{let a=n,i=!1,s=e[a];void 0===s&&(a=n-2,s=e[a],i=!0),s&&(void 0===t[a]&&(t[a]={op:s.op,asm:s.asm,bricks:[]}),t[a].bricks.push({name:o,label:r,t:l,tail:i}))},Fe=(e,t,n)=>{const o={},{listing:r}=t,{clock:l,othero:a}=e;if(void 0===t.chango[l.ref])return o;const i=t.chango[l.ref].wave,s=Ie(i,n);for(const u of Object.keys(a))["pc","go"].map((e=>{const n=a[u][e];n.sampler=Oe(t.chango[n.ref].wave),n.sampler.next(0)}));let c=8e3;e:for(const u of s){const[e,t]=i[u];if(t)for(const n of Object.keys(a)){const t=a[n],l=t.go.sampler.next(e).value,i=t.pc.sampler.next(e).value,s=n.toUpperCase();if(l&&(_e(r,o,i,s,s,e),0===c--))break e}}for(const[u,d]of Object.keys(o).entries())void 0!==o[d]&&(o[d].idx=u);return o},Pe=(e,t,n)=>{const{width:o,yStep:r}=n,l=Re(n,2)-Re(n,0),a=Fe(e,t,n),i=Object.keys(a).map((e=>Number(e))).sort(),s=[];for(let c=0;c/,"◆"),d=["g",Le()(0,Math.round(c*r))];1&c&&d.push(["rect",{width:o,height:r-1,class:"pc-odd"}]),c>0&&e-i[c-1]>4&&d.push(["line",{class:"gap",x1:0,y1:0,x2:o,y2:0}]),d.push(["text",{class:"pc","xml:space":"preserve",y:Math.round(r)},["tspan",{class:"pc-addr"},parseInt(e,10).toString(16).padStart(12," ")],["tspan",{class:"pc-opcode"},t.op.padStart(9," ")]," ",["tspan",{class:"pc-asm"},u]]),t.bricks.map((e=>{d.push(["g",Le()(Math.round(Re(n,e.t))),["rect",{class:""===e.label?e.name:"ct"+Ee(e.name).toString(36),width:l,height:(e.tail?r>>1:r)-3,y:e.tail?1+(r>>1):1,"data-stage":e.label}],...l>20?[["text",{class:e.name,width:l,x:l/2,y:16},e.label]]:[]])})),s.push(d)}return s};var We=Pe;const Te=(e,t,n)=>{let o=t,[r,l]=e[t];for(let a=t;a=n)break;o=a,r=t,l=i}return[o,l,r]},He=(e,t,n)=>{const o=e.body,{yStep:r}=n;let{clock:l,valid:a,ready:i,up:s}=o;s=s||1;const c=[];let u=0;if(l&&l.ref){const e=t.chango[l.ref].wave,o=Ie(e,n);let d=0;if(a&&a.ref){const l=t.chango[a.ref].wave;let p,h=0;if(i&&i.ref){const a=t.chango[i.ref].wave;let f,g=0;for(const t of o){const[o,i]=e[t];if(i){[h,p]=Te(l,h,o),[g,f]=Te(a,g,o);const e=Re(n,o),t=Re(n,d),i=e-t,v=s*r;if(e>0&&t>0&&i>0&&p&&(i>=1?(f?c.push(["rect",{fill:"url('#valid&ready')",width:Math.round(i),height:v,x:Math.round(t),y:-v}]):c.push(["rect",{fill:"url('#valid&~ready')",width:Math.round(i),height:v,x:Math.round(t),y:-v}]),u++):u+=10),d=o,u>500)return c}}}else for(const t of o){const[o,a]=e[t];if(a){[h,p]=Te(l,h,o);const e=Re(n,o),t=Re(n,d),a=e-t,i=s*r;if(e>0&&t>0&&a>0&&p&&(a>=1?(c.push(["rect",{fill:"url('#valid')",width:Math.round(a),height:i,x:Math.round(t),y:-i}]),u++):u+=10),d=o,u>500)return c}}}}return c};var Be=He,De=n(5794);const ze={w:{h:0,l:100},r:{h:10,l:45},o:{h:33,l:65},y:{h:55,l:50},g:{h:120,l:75},c:{h:190,l:50},b:{h:215,l:70},v:{h:280,l:55}};var Xe=ze;const Ue=(e,t,n)=>{const{width:o,height:r,timescale:l,yStep:a,yOffset:i,topBarHeight:s,botBarHeight:c}=t,u=n*a-i,d=r-s-c;return e.vlines.map((e=>{const n=e.value*Math.pow(10,e.mult-l),a=Math.round(Re(t,n)),i=Xe[e.style]||Xe.w,c=`hsl(${i.h},100%,${i.l}%)`,p=["path",{style:"stroke-width: 1px; stroke: "+c}];if(a<0||a>o)return u<0||u>d?["g"]:a<0?(p[1].d=`M 0 ${u} l 8 -4 v 8 z`,p):(p[1].d=`M ${o-16} ${u} l -8 -4 v 8 z`,p);const h=["g",De.tt(a,0),["rect",{x:-1,width:3,height:r,fill:"#fff",filter:"url(#neonGlow-"+e.style+")"}],["rect",{width:1,height:r,fill:c}]];return u<0?(p[1].d=`M ${a} ${s} l 4 8 h -8 z`,["g",h,p]):u>d?(p[1].d=`M ${a} ${d} l -4 -8 h 8 z`,["g",h,p]):(p[1].d=`M ${a} ${u} m-4 0 l 4 -4 l 4 4 l -4 4 z`,["g",h,p])}))};var $e=Ue;const Ne="...",Ke=(e,t)=>{t=BigInt(t);{const n=e.match(/^%(?[s])?(?[bodh])(?\d+)?$/);if(n){const e={b:2,o:8,d:10,h:16,H:16}[n.groups.radix];if(n.groups.sign)return(n,o)=>{n>>t-1n&1n&&(n-=2n**t);let r=n.toString(e);if(r.length<=o)return r;const l=n<0?"-":"+";return 1===o?l:2===o?l+Ne:l+Ne+r.slice(2-o)};if(Number(n.groups.elen)>0){const o=BigInt(n.groups.elen);return(n,r)=>{let l=[];for(let a=0n;a>a&2n**o-1n;l.unshift(t.toString(e))}return l="{"+l.join(", ")+"}",l.length<=r?l:1===r?Ne:Ne+l.slice(1-r)}}return(t,n)=>{let o=t.toString(e);return o.length<=n?o:1===n?Ne:Ne+o.slice(1-n)}}}{const n=e.match(/^%a$/);if(n)return(e,n)=>{let o="";for(let r=0n;r>r&0xffn))+o;return o=o.trim(),o.length<=n||(o=o.slice(0,n-1)+Ne),o}}{const n=e.match(/^%(?
[fe])(?32|64)$/);if(n){const e=new ArrayBuffer(8),o=new BigInt64Array(e),r=BigInt(n.groups.elen),l=new(32n===r?Float32Array:Float64Array)(e),a=32n===r?0xffffffffn:0xffffffffffffffffn;return"f"===n.groups.form?t>r?(e,n)=>{let i=[];for(let s=0n;s>s&a;const t=l[0];i.unshift(t.toString())}return i="{"+i.join(", ")+"}",i.length<=n?i:1===n?Ne:Ne+i.slice(1-n)}:(e,t)=>{o[0]=e&a;const n=l[0];let r;if(r=n.toString(),r.length<=t)return r;for(let o=t;o>=0;o--){if(r=n.toPrecision(o+1),r.length<=t)return r;if(r=n.toExponential(o),r.length<=t)return r}return e<0?"-":"+"}:(e,t)=>{o[0]=e&a;const n=l[0];let r;if(r=n.toExponential(),r.length<=t)return r;for(let o=4;o<=t;o++)if(r=n.toExponential(t-o),r.length<=t)return r;return e<0?"-":"+"}}}return()=>"?"};var Ge=Ke;const je=e=>{"object"!==typeof e&&(e={});const t=e.format||"%h",n=Number(e.width||1),o=Ge(t,n);return(e,t,r,l)=>{if(t)return e?["text",{x:r,class:"unknown"},"?"]:["text",{x:r,class:"high-impedance"},"x"];const a=l/8|0;e=BigInt(e);const i=o(e,a,n);return["text",{x:r,class:"common"},i]}};var qe=je;const Ye=["defs",["linearGradient",{id:"valid"},["stop",{offset:"30%","stop-color":"hsla(100, 100%, 100%, 0)"}],["stop",{offset:"90%","stop-color":"hsla(100, 100%, 100%, .3)"}]],["linearGradient",{id:"valid&ready"},["stop",{offset:"30%","stop-color":"hsla(100, 100%, 50%, 0)"}],["stop",{offset:"90%","stop-color":"hsla(100, 100%, 50%, .5)"}]],["linearGradient",{id:"valid&~ready"},["stop",{offset:"30%","stop-color":"hsla(50, 100%, 50%, 0)"}],["stop",{offset:"90%","stop-color":"hsla(50, 100%, 50%, .5)"}]],...Object.keys(Xe).map((e=>{const t=Xe[e];return["filter",{id:"neonGlow-"+e,width:7,x:-3},["feGaussianBlur",{stdDeviation:3,in:"SourceAlpha",result:"ablur"}],["feFlood",{"flood-color":`hsl(${t.h},100%,${t.l}%)`,result:"xf"}],["feComposite",{in:"xf",in2:"ablur",operator:"in"}]]}))];function*Je(e,t){const{width:n,height:o,sidebarWidth:r,yOffset:l,yStep:a,topBarHeight:i,botBarHeight:s}=t,c=e.currentWires,u=[];for(const v of c)u.push({kind:v.kind,name:v.name,ref:v.link});const d=o/a,p=l/a,h=ne()(n,o-i-s);let f=0;for(let v=0;vp)break;f=v}}h.push(Ye),yield;const g=["g"];h.push(g);for(let v=0;vn&&g>n)break e;if(!(dr?d:r),t=0|(g8){const n=Math.round((e+t)/2);i.push(p(a,u,n,o))}}}d=g,a=h,u=f}}h.push(i)}yield}}for(let v=0;v[0,1,2,4,4,5,5,5,10,10,10,10,10,15,15,15,15,20,20,20][Math.round(e)]||Math.round(e),tt=e=>{const{sidebarWidth:t,width:n,height:o,timescale:r,xScale:l,tgcd:a,xOffset:i,topBarHeight:s,botBarHeight:c}=e,u=16,d=["g",{}],p=Me(t,e),h=Me(n,e),f=1,g=Math.round(f*n/t),v=(h-p)/g,m=Math.pow(10,0|Math.log10(v)),y=et(v/m)*m,w=Math.ceil(p/y)*y,k=Math.floor(h/y)*y;for(let b=w;b<=k;b+=y){const e=Math.round(b/a*l+i);d.push(["g",{},["line",{class:"wd-grid-time",x1:e,x2:e,y2:o}],["text",{class:"wd-grid-time",x:e,y:(s+u)/2},ae(b,r)],["text",{class:"wd-grid-time",x:e,y:o-(c-u)/2},ae(b,r)]])}return d},nt=(e,t,n)=>{const{width:o,height:r}=t,l=ne()(o,r);l.push(tt(t)),n.grid.innerHTML=re()(l)};var ot=nt;const rt=(e,t)=>{let n=t();const{width:o,xOffset:r,xScale:l,time:a,sidebarWidth:i}=e,s=O.currentWires.size*e.yStep,c=e.height-e.topBarHeight-e.botBarHeight;console.log(s,c);const u=Math.max(-40,s-c);n=Math.min(n,u);const d=-40;return n=Math.max(n,d),n!==r&&(console.log("next offset y",n),e.oldYOffset=e.yOffset,e.yOffset=n,A.yOffset=n+40,!0)};var lt=rt;function at(e,t){let n=t();const{xOffset:o,xCursor:r,xScale:l,xScaleMin:a,xScaleMax:i}=e;return n=n>i?i:n,n=nr-(r-o)*n/l)),!0)}var it=at;const st={1:10/9,2:10/7,3:10/6,4:2,5:2.5},ct={1:5,2:4,3:3,4:1,5:.5},ut={1:20,2:40,3:80,4:160,5:320},dt={desc:"Zoom in time",fn:e=>it(e,(()=>e.xScale*st[E.HorizontalScalingRatio]))},pt={desc:"Zoom out time",fn:e=>it(e,(()=>e.xScale/st[E.HorizontalScalingRatio]))},ht={left:{desc:"Scroll into the past",fn:e=>ue(e,(()=>e.xOffset+e.time/ct[E.HorizontalRollRatio]))},right:{desc:"Scroll into the future",fn:e=>ue(e,(()=>e.xOffset-e.time/ct[E.HorizontalRollRatio]))},up:{desc:"scroll up",fn:e=>lt(e,(()=>e.yOffset-ut[E.VerticalRollRario]))},down:{desc:"scroll down",fn:e=>lt(e,(()=>e.yOffset+ut[E.VerticalRollRario]))}};var ft={scrollLeft:ht.left,scrollRight:ht.right,scrollUp:ht.up,scrollDown:ht.down,"Shift+icon:scrollUp":ht.left,"Shift+icon:scrollDown":ht.right,"Ctrl+icon:scrollUp":dt,"Ctrl+icon:scrollDown":pt,nop:{fn:()=>!1}};const{keyName:gt}=n(6237);const vt=(e,t,n,o,r)=>e=>{const{deltaX:l,deltaY:a}=e;if(e.ctrlKey){const l=a<0?"Ctrl+icon:scrollUp":a>0?"Ctrl+icon:scrollDown":"nop";o[l].fn(t)&&(void 0!=r&&r.map((t=>t(l,e))),n.render()),e.preventDefault()}else if(e.shiftKey){const l=a<0?"Shift+icon:scrollUp":a>0?"Shift+icon:scrollDown":"nop";o[l].fn(t)&&(void 0!=r&&r.map((t=>t(l,e))),n.render()),e.preventDefault()}else if(0!==l&&0===a){const a=l<0?"scrollLeft":"scrollRight";o[a].fn(t)&&(void 0!=r&&r.map((t=>t(a,e))),n.render()),e.preventDefault()}else if(0===l&&0!==a){const l=a<0?"scrollUp":"scrollDown";o[l].fn(t)&&(void 0!=r&&r.map((t=>t(l,e))),n.render()),e.preventDefault()}};var mt=vt;let yt=null;new Map;function wt(){if(!yt){const e=document.querySelectorAll(".vcd-render-wrapper")[0];e&&(yt=e)}return yt}function kt(e,t){const n=JSON.stringify({xOffset:t.xOffset,xScale:t.xScale});localStorage.setItem("dide",n)}function bt(e){e||(e=wt());const t=be({elemento:me.defaultElemento,layers:me.defaultLayers,renderPlugins:[ot,Ze,kt]});e.appendChild(t.pstate.container),t.start(O),O.updater=()=>{console.log("updater")},t.elo.container.addEventListener("wheel",mt(e,t.pstate,O,ft))}function xt(e){if(O.currentWires.has(e))O.currentWires.delete(e),delete O.currentSignalValues[e.link],O.render();else{O.currentWires.add(e);const t=O.chango[e.link],{wave:n,kind:o}=t,r=O.currentTime;O.currentSignalValues[e.link]=X(o,n,r),O.render()}}var Lt=n(4232);const St={class:"vcd-sidebar-wrapper"},Rt={class:"signal-color-vendor"},Vt={class:"signal-info"},Mt={class:"signal-info"},Ct={class:"signal-info-name"},It={class:"signal-info-width"},Ot={class:"signal-info-current-value-wrapper"},At=(0,r.Lk)("span",null,null,-1),Et={class:"signal-info-current-value"},_t=(0,r.Lk)("span",{class:"iconfont icon-collections"},null,-1),Ft=[_t];var Pt={__name:"sidebar",setup(e){const{t:t}=(0,s.s9)();(0,r.pM)({name:"side-bar"});const n=(0,r.EW)((()=>E.displaySignalInfoScope.includes("width"))),a=(0,r.EW)((()=>E.displaySignalInfoScope.includes("parent"))),i=(0,r.EW)((()=>({height:`${A.timeScaleHeight}px`}))),c=(0,r.EW)((()=>({padding:`${A.sideBarPadding}px`}))),u=(0,r.EW)((()=>({transform:`translateY(${-A.yOffset}px)`,transition:E.renderAnimation?"var(--animation-3s)":"unset"}))),d=(0,r.EW)((()=>({margin:`${A.sideBarItemMargin}px`})));function p(){I.emit("right-nav",0)}function h(e){return"iconfont "+H(e)}function f(e){return 1===e.size?"":e.size-1+":0"}function g(e){const t=[];while(e)e.name&&e.type&&t.push(e),e=e.parent;let n="";for(let o=t.length-1;o>=0;--o){const e=t[o],r=H(e),l=` ${e.name}`;n+=l,o>0&&(n+='
')}return n='
'+n+"
",n}return(e,t)=>{const s=(0,r.g2)("el-tooltip");return(0,r.uX)(),(0,r.CE)("div",St,[(0,r.Lk)("div",{class:"display-signal-wrapper",style:(0,Lt.Tr)(c.value)},[(0,r.Lk)("div",{class:"display-signal-container",style:(0,Lt.Tr)(u.value)},[(0,r.Lk)("div",{style:(0,Lt.Tr)(i.value)},null,4),((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)((0,l.R1)(O).currentWires,((e,t)=>((0,r.uX)(),(0,r.CE)("div",{class:"display-signal-item",style:(0,Lt.Tr)(d.value),key:t},[(0,r.Lk)("div",Rt,[(0,r.Lk)("span",{class:(0,Lt.C4)(h(e))},null,2)]),(0,r.Lk)("div",Vt,[(0,r.Lk)("div",Mt,[(0,r.bF)(s,{effect:"dark",content:g(e),placement:"top","raw-content":""},{default:(0,r.k6)((()=>[(0,r.Lk)("div",Ct,[(0,r.bo)((0,r.Lk)("span",{class:"signal-parent-info"},(0,Lt.v_)(e.parent.name),513),[[o.aG,a.value]]),(0,r.Lk)("span",null,(0,Lt.v_)(e.name),1)])])),_:2},1032,["content"]),(0,r.bo)((0,r.Lk)("div",It,[(0,r.Lk)("div",{class:(0,Lt.C4)(e.size>1?"signal-info-caption":"")},(0,Lt.v_)(f(e)),3)],512),[[o.aG,n.value]])]),(0,r.Lk)("div",Ot,[At,(0,r.bF)(s,{effect:"dark",content:(0,l.R1)(O).currentSignalValues[e.link]+"",placement:"top","raw-content":""},{default:(0,r.k6)((()=>[(0,r.Lk)("div",Et,(0,Lt.v_)((0,l.R1)(O).currentSignalValues[e.link]),1)])),_:2},1032,["content"])])])],4)))),128))],4)],4),(0,r.Lk)("div",{class:"add-signal-button",onClick:p},Ft)])}}};const Wt=Pt;var Tt=Wt;const Ht={class:"vcd-right-nav"},Bt={class:"vcd-function-panel"},Dt={class:"vcd-function-option"},zt=(0,r.Lk)("div",{class:"vcd-control-panel-wrapper"},[(0,r.Lk)("div",{class:"vcd-control-panel-icon digital-ide-icon"})],-1),Xt=(0,r.Lk)("hr",null,null,-1),Ut=["onClick"];function $t(e,t,n,l,a,i){const s=(0,r.g2)("TreeView"),c=(0,r.g2)("Setting"),u=(0,r.g2)("About");return(0,r.uX)(),(0,r.CE)("div",Ht,[(0,r.Lk)("div",Bt,[(0,r.bo)((0,r.bF)(s,{topModules:l.props.topModules},null,8,["topModules"]),[[o.aG,0===l.controlPanel.currentIndex]]),(0,r.bo)((0,r.bF)(c,null,null,512),[[o.aG,1===l.controlPanel.currentIndex]]),(0,r.bo)((0,r.bF)(u,null,null,512),[[o.aG,2===l.controlPanel.currentIndex]])]),(0,r.Lk)("div",Dt,[zt,Xt,((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(l.controlPanel.sections,((e,t)=>((0,r.uX)(),(0,r.CE)("div",{class:"vcd-control-panel-wrapper",key:t,onClick:e=>l.controlPanel.click(t)},[(0,r.Lk)("div",{class:(0,Lt.C4)(l.controlPanel.currentIndex===t?"vcd-control-panel-active":"")},[(0,r.Lk)("span",{class:(0,Lt.C4)(["vcd-control-panel-icon",e.iconClass])},null,2)],2)],8,Ut)))),128))])])}const Nt={class:"vcd-treeview"},Kt=(0,r.Lk)("br",null,null,-1),Gt={class:"vcd-module-wrapper"},jt={class:"vcd-module-info"},qt=(0,r.Lk)("hr",null,null,-1),Yt={class:"vcd-module-display-wrapper"},Jt={class:"vcd-module-wires"};function Qt(e,t,n,o,l,a){const i=(0,r.g2)("TreeViewSearch"),s=(0,r.g2)("Modules"),c=(0,r.g2)("Signals");return(0,r.uX)(),(0,r.CE)("div",Nt,[(0,r.bF)(i),Kt,(0,r.Lk)("div",Gt,[(0,r.Lk)("div",jt,[(0,r.Lk)("div",null,(0,Lt.v_)(o.t("module")),1),qt,(0,r.Lk)("div",Yt,[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(o.props.topModules,(e=>((0,r.uX)(),(0,r.Wv)(s,{key:e.name,module:e},null,8,["module"])))),128))])]),(0,r.Lk)("div",Jt,[(0,r.bF)(c)])])])}const Zt={class:"tree-view-search-wrapper"},en={key:0},tn=["onClick"],nn=["innerHTML"],on={key:1};var rn={__name:"search",setup(e){const{t:t}=(0,s.s9)();(0,r.pM)({name:"search-box"});const n=(0,r.EW)((()=>({right:"55px",transition:"var(--animation-3s)"}))),o=(0,l.Kh)({content:"",displayResult:!1,mouseOnResult:!1,searchResult:[],searchResultEl:void 0,searchResultLeft:-5});function a(){const e=o.content.trim();if(0===e.length)return void(o.displayResult=!1);o.displayResult=!0,o.searchResult=[];const t=[{name:"",body:O.topModules}],n=new Set(E.searchScope),l=E.caseSensitivity,a=E.displayParentOnly;while(t.length>0){const o=t.pop();o.body&&o.body.length&&o.body.forEach((e=>t.push(e)));const r=B(e,o,n,l,a);r&&I.emit("signal-search",r)}(0,r.dY)((()=>{o.searchResultEl=document.getElementById("search-result-wrapper"),o.searchResultEl&&(o.searchResultLeft=480-o.searchResultEl.offsetWidth)}))}I.on("signal-search",(e=>{o.searchResult.push(e)}));const i=T(a,500);return(e,a)=>{const s=(0,r.g2)("el-input");return(0,r.uX)(),(0,r.CE)("div",Zt,[(0,r.Lk)("div",null,[(0,r.bF)(s,{placeholder:(0,l.R1)(t)("search-signal"),size:"large",modelValue:o.content,"onUpdate:modelValue":a[0]||(a[0]=e=>o.content=e),"input-style":"font-size: 16px;",onInput:(0,l.R1)(i),onFocus:a[1]||(a[1]=e=>o.displayResult=!0),onBlur:a[2]||(a[2]=e=>o.displayResult=!1)},null,8,["placeholder","modelValue","onInput"])]),o.displayResult|o.mouseOnResult?((0,r.uX)(),(0,r.CE)("div",{key:0,style:(0,Lt.Tr)(n.value),class:"search-result-wrapper",id:"search-result-wrapper"},[(0,r.Lk)("div",{class:"search-result",onMouseenter:a[3]||(a[3]=e=>o.mouseOnResult=!0),onMouseleave:a[4]||(a[4]=e=>o.mouseOnResult=!1)},[o.searchResult.length>0?((0,r.uX)(),(0,r.CE)("div",en,[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(o.searchResult,((e,t)=>((0,r.uX)(),(0,r.CE)("div",{key:t,class:(0,Lt.C4)((0,l.R1)(O).currentWires.has(e.module)?"vcd-treeview-selected":""),onClick:t=>(0,l.R1)(xt)(e.module)},[(0,r.Lk)("div",{innerHTML:e.htmlString,class:"search-result-item"},null,8,nn)],10,tn)))),128))])):((0,r.uX)(),(0,r.CE)("div",on,(0,Lt.v_)((0,l.R1)(t)("search-nothing")),1))],32)],4)):(0,r.Q3)("",!0)])}}};const ln=rn;var an=ln;const sn={class:"module"},cn={key:0,class:"vcd-subtree-wrapper"},un=(0,r.Lk)("div",{style:{width:"20px"}},null,-1),dn={style:{width:"100%"}};function pn(e,t,n,l,a,i){const s=(0,r.g2)("modules",!0);return(0,r.uX)(),(0,r.CE)("div",sn,[(0,r.Lk)("div",{onClick:t[1]||(t[1]=e=>l.clickItem()),class:(0,Lt.C4)(["vcd-treeview-item",l.module===l.globalLookup.currentModule?"vcd-treeview-selected":""])},[(0,r.Lk)("span",{class:"module-tag-status",onClick:t[0]||(t[0]=(0,o.D$)(((...e)=>l.expandManage.click&&l.expandManage.click(...e)),["stop"]))},[(0,r.Lk)("div",{class:(0,Lt.C4)(l.expandManage.expandTagClass)},null,2)]),(0,r.Lk)("span",{class:(0,Lt.C4)(`iconfont ${l.makeIconClass(l.module)}`)},null,2),(0,r.eW)("  "+(0,Lt.v_)(l.module.name),1)],2),l.mods.length>0?(0,r.bo)(((0,r.uX)(),(0,r.CE)("div",cn,[un,(0,r.Lk)("div",dn,[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(l.mods,((e,t)=>((0,r.uX)(),(0,r.Wv)(s,{module:e,key:t},null,8,["module"])))),128))])],512)),[[o.aG,l.expandManage.expanded]]):(0,r.Q3)("",!0)])}var hn={name:"modules",props:{module:Object},setup(e){const t=e.module;O.initcurrentModule(t);const n=[],o=[];for(const l of t.body)Y(l)?o.push(l):J(l)&&n.push(l);function r(){I.emit("tree-view",n),O.currentModule=t,console.log(t)}const a=(0,l.Kh)({expanded:!1,expandTagClass:0===o.length?"":"collapse-tag",click(){this.expanded=!this.expanded,this.expandTagClass&&(this.expandTagClass=this.expanded?"expand-tag":"collapse-tag")}});return{module:t,mods:o,clickItem:r,expandManage:a,globalLookup:O,makeIconClass:H}}},fn=n(1241);const gn=(0,fn.A)(hn,[["render",pn]]);var vn=gn;const mn={class:"vcd-signal-title"},yn=(0,r.Lk)("hr",null,null,-1),wn={class:"vcd-signal-signals-display"},kn=["onClick"];function bn(e,t,n,o,l,a){return(0,r.uX)(),(0,r.CE)("div",null,[(0,r.Lk)("div",mn,(0,Lt.v_)(o.t("signal"))+"("+(0,Lt.v_)(o.signals.content.length)+")",1),yn,(0,r.Lk)("div",wn,[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(o.signals.content,((e,t)=>((0,r.uX)(),(0,r.CE)("div",{key:t,onClick:t=>o.toggleRender(e),class:(0,Lt.C4)(["vcd-signal-signal-item",o.globalLookup.currentWires.has(e)?"vcd-treeview-selected":""])},[(0,r.Lk)("div",null,[(0,r.Lk)("span",{class:(0,Lt.C4)(`iconfont ${o.makeIconClass(e)}`)},null,2),(0,r.eW)(" "+(0,Lt.v_)(e.name),1)]),(0,r.Lk)("div",null,[(0,r.Lk)("div",{class:(0,Lt.C4)(e.size>1?"vcd-signal-signal-caption":"")},(0,Lt.v_)(o.makeSignalCaption(e)),3)])],10,kn)))),128))])])}var xn={name:"signals",props:{},setup(){const{t:e}=(0,s.s9)(),t=(0,l.Kh)({content:[]});function n(e){return 1===e.size?"":e.size-1+":0"}return I.on("tree-view",(e=>{t.content=[],t.content=e})),{signals:t,toggleRender:xt,globalLookup:O,makeSignalCaption:n,t:e,makeIconClass:H}}};const Ln=(0,fn.A)(xn,[["render",bn]]);var Sn=Ln,Rn={name:"tree-view",components:{Modules:vn,Signals:Sn,TreeViewSearch:an},props:{topModules:Array},setup(e){const{t:t}=(0,s.s9)();return{props:e,t:t}}};const Vn=(0,fn.A)(Rn,[["render",Qt]]);var Mn=Vn;const Cn=(0,r.Lk)("span",{class:"iconfont icon-help"},null,-1);var In={__name:"help-icon",props:{content:{type:String,required:!0},placement:{type:String,default:"right"}},setup(e){const t=e;return(e,n)=>{const o=(0,r.g2)("el-tooltip");return(0,r.uX)(),(0,r.Wv)(o,{effect:"dark",content:t.content,placement:t.placement,"raw-content":""},{default:(0,r.k6)((()=>[Cn])),_:1},8,["content","placement"])}}};const On=In;var An=On;const En={class:"setting-wrapper"},_n={class:"setting-container"},Fn={class:"setting-section"},Pn={class:"setting-option",style:{width:"300px"}},Wn={class:"option-title"},Tn=(0,r.Lk)("br",null,null,-1),Hn={class:"setting-option"},Bn={class:"option-title"},Dn=(0,r.Lk)("br",null,null,-1),zn={class:"setting-option"},Xn={class:"option-title"},Un=(0,r.Lk)("br",null,null,-1),$n={class:"setting-option",style:{width:"380px"}},Nn={class:"option-title",style:{width:"300px"}},Kn=(0,r.Lk)("br",null,null,-1),Gn={class:"setting-option",style:{width:"380px"}},jn={class:"option-title",style:{width:"300px"}},qn=(0,r.Lk)("br",null,null,-1),Yn={class:"setting-option",style:{width:"380px"}},Jn={class:"option-title",style:{width:"300px"}},Qn=(0,r.Lk)("hr",null,null,-1),Zn={class:"setting-section"},eo={class:"setting-option"},to={class:"option-title",style:{width:"150px"}},no=(0,r.Lk)("br",null,null,-1),oo={class:"setting-option"},ro={class:"option-title",style:{width:"150px"}},lo=(0,r.Lk)("br",null,null,-1),ao={class:"setting-option"},io={class:"option-title"},so=(0,r.Lk)("div",{style:{height:"20px",width:"20px"}},null,-1),co=(0,r.Lk)("hr",null,null,-1),uo={class:"setting-section"},po={class:"setting-option"},ho={class:"option-title"},fo=(0,r.Lk)("br",null,null,-1),go={class:"setting-option"},vo={class:"option-title"},mo=(0,r.Lk)("br",null,null,-1),yo={class:"setting-option"},wo={class:"option-title"};var ko={__name:"index",setup(e){(0,r.pM)({name:"dide-setting"});const{t:t,locale:n}=(0,s.s9)();n.value=E.language,(0,r.wB)((()=>n.value),(()=>{E.language=n.value,localStorage.setItem("setting",JSON.stringify(E))}));const o=(0,l.Kh)({options:[{value:0,label:t("wavecolor.normal-bit")},{value:1,label:t("wavecolor.normal-vec")},{value:2,label:t("wavecolor.high-impedance")},{value:3,label:t("wavecolor.unknown")}],glColorMap:[2,5,4,1],currentOptionIndex:0,colors:[Q(...g.slice(8,12)),Q(...g.slice(20,24)),Q(...g.slice(16,20)),Q(...g.slice(4,8))],reset(){}});(0,r.wB)((()=>o.currentOptionIndex),(()=>{console.log(o.currentOptionIndex)})),(0,r.wB)((()=>o.colors),(()=>{console.log("enter");const e=o.colors[o.currentOptionIndex],t=Z(e);if(void 0!==t){const e=o.options[o.currentOptionIndex],n=O.getWaveRender(),r=o.glColorMap[e.value],l=[{index:r,rgba:t}];2===r&&l.push({index:3,rgba:t}),n.updateGLColor(l,{updateMask:!0})}}),{deep:!0});const a=(0,l.Kh)({options:[{value:"en",text:"English"},{value:"zh",text:"中文"}]});function i(){document.body.style.setProperty("--display-signal-info-height",E.displaySignalHeight+"px");const e=O.getWaveRender();e.render()}const c=T(i,200);return(e,i)=>{const s=(0,r.g2)("el-option"),u=(0,r.g2)("el-select"),d=(0,r.g2)("el-switch"),p=(0,r.g2)("el-slider"),h=(0,r.g2)("el-input-number"),f=(0,r.g2)("el-checkbox-button"),g=(0,r.g2)("el-checkbox-group"),v=(0,r.g2)("el-color-picker");return(0,r.uX)(),(0,r.CE)("div",En,[(0,r.Lk)("div",_n,[(0,r.Lk)("div",Fn,[(0,r.Lk)("h2",null,(0,Lt.v_)((0,l.R1)(t)("general-setting")),1),(0,r.Lk)("div",Pn,[(0,r.Lk)("span",Wn,(0,Lt.v_)((0,l.R1)(t)("language-setting")),1),(0,r.bF)(u,{name:"language-setting",class:"language-setting",modelValue:(0,l.R1)(n),"onUpdate:modelValue":i[0]||(i[0]=e=>(0,l.i9)(n)?n.value=e:null)},{default:(0,r.k6)((()=>[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(a.options,(e=>((0,r.uX)(),(0,r.Wv)(s,{value:e.value,label:e.text,key:e.value},null,8,["value","label"])))),128))])),_:1},8,["modelValue"])]),Tn,(0,r.Lk)("div",Hn,[(0,r.Lk)("span",Bn,[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("prerender"))+" ",1),(0,r.bF)(An,{placement:"left",content:(0,l.R1)(t)("prerender-description")},null,8,["content"])]),(0,r.bF)(d,{modelValue:(0,l.R1)(E).prerender,"onUpdate:modelValue":i[1]||(i[1]=e=>(0,l.R1)(E).prerender=e),size:"default"},null,8,["modelValue"])]),Dn,(0,r.Lk)("div",zn,[(0,r.Lk)("span",Xn,(0,Lt.v_)((0,l.R1)(t)("render-animation")),1),(0,r.bF)(d,{modelValue:(0,l.R1)(E).renderAnimation,"onUpdate:modelValue":i[2]||(i[2]=e=>(0,l.R1)(E).renderAnimation=e),size:"default"},null,8,["modelValue"])]),Un,(0,r.Lk)("div",$n,[(0,r.Lk)("span",Nn,[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("horizontal-scaling-ratio"))+" ",1),(0,r.bF)(An,{placement:"left",content:(0,l.R1)(t)("horizontal-scaling-ratio-description")},null,8,["content"])]),(0,r.bF)(p,{modelValue:(0,l.R1)(E).HorizontalScalingRatio,"onUpdate:modelValue":i[3]||(i[3]=e=>(0,l.R1)(E).HorizontalScalingRatio=e),"show-stops":"",min:1,max:5},null,8,["modelValue"])]),Kn,(0,r.Lk)("div",Gn,[(0,r.Lk)("span",jn,[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("horizontal-roll-ratio"))+" ",1),(0,r.bF)(An,{placement:"left",content:(0,l.R1)(t)("horizontal-roll-ratio-description")},null,8,["content"])]),(0,r.bF)(p,{modelValue:(0,l.R1)(E).HorizontalRollRatio,"onUpdate:modelValue":i[4]||(i[4]=e=>(0,l.R1)(E).HorizontalRollRatio=e),"show-stops":"",min:1,max:5},null,8,["modelValue"])]),qn,(0,r.Lk)("div",Yn,[(0,r.Lk)("span",Jn,[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("vertical-roll-ratio"))+" ",1),(0,r.bF)(An,{placement:"left",content:(0,l.R1)(t)("vertical-roll-ratio-description")},null,8,["content"])]),(0,r.bF)(p,{modelValue:(0,l.R1)(E).VerticalRollRario,"onUpdate:modelValue":i[5]||(i[5]=e=>(0,l.R1)(E).VerticalRollRario=e),"show-stops":"",min:1,max:5},null,8,["modelValue"])])]),Qn,(0,r.Lk)("div",Zn,[(0,r.Lk)("h2",null,(0,Lt.v_)((0,l.R1)(t)("appearance-setting")),1),(0,r.Lk)("div",eo,[(0,r.Lk)("span",to,(0,Lt.v_)((0,l.R1)(t)("display-wave-height")),1),(0,r.bF)(h,{modelValue:(0,l.R1)(E).displaySignalHeight,"onUpdate:modelValue":i[6]||(i[6]=e=>(0,l.R1)(E).displaySignalHeight=e),min:1,max:100,onChange:(0,l.R1)(c),size:"default"},null,8,["modelValue","onChange"])]),no,(0,r.Lk)("div",oo,[(0,r.Lk)("span",ro,(0,Lt.v_)((0,l.R1)(t)("display-signal-info-scope")),1),(0,r.bF)(g,{modelValue:(0,l.R1)(E).displaySignalInfoScope,"onUpdate:modelValue":i[7]||(i[7]=e=>(0,l.R1)(E).displaySignalInfoScope=e),size:"default"},{default:(0,r.k6)((()=>[(0,r.bF)(f,{label:"width",border:""},{default:(0,r.k6)((()=>[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("display-signal-info-scope.width")),1)])),_:1}),(0,r.bF)(f,{label:"parent",border:""},{default:(0,r.k6)((()=>[(0,r.eW)((0,Lt.v_)((0,l.R1)(t)("display-signal-info-scope.parent")),1)])),_:1})])),_:1},8,["modelValue"])]),lo,(0,r.Lk)("div",ao,[(0,r.Lk)("span",io,(0,Lt.v_)((0,l.R1)(t)("wavecolor")),1),(0,r.bF)(u,{modelValue:o.currentOptionIndex,"onUpdate:modelValue":i[8]||(i[8]=e=>o.currentOptionIndex=e),"collapse-tags":"","collapse-tags-tooltip":"",placeholder:"Select"},{default:(0,r.k6)((()=>[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)(o.options,(e=>((0,r.uX)(),(0,r.Wv)(s,{key:e.value,label:e.label,value:e.value},null,8,["label","value"])))),128))])),_:1},8,["modelValue"]),so,(0,r.bF)(v,{modelValue:o.colors[o.currentOptionIndex],"onUpdate:modelValue":i[9]||(i[9]=e=>o.colors[o.currentOptionIndex]=e),"show-alpha":"",predefine:(0,l.R1)(ee),size:"large"},null,8,["modelValue","predefine"])])]),co,(0,r.Lk)("div",uo,[(0,r.Lk)("h2",null,(0,Lt.v_)((0,l.R1)(t)("search-setting")),1),(0,r.Lk)("div",po,[(0,r.Lk)("span",ho,(0,Lt.v_)((0,l.R1)(t)("search-case-sensitivity")),1),(0,r.bF)(d,{modelValue:(0,l.R1)(E).caseSensitivity,"onUpdate:modelValue":i[10]||(i[10]=e=>(0,l.R1)(E).caseSensitivity=e),size:"default"},null,8,["modelValue"])]),fo,(0,r.Lk)("div",go,[(0,r.Lk)("span",vo,(0,Lt.v_)((0,l.R1)(t)("search-display-parent-only")),1),(0,r.bF)(d,{modelValue:(0,l.R1)(E).displayParentOnly,"onUpdate:modelValue":i[11]||(i[11]=e=>(0,l.R1)(E).displayParentOnly=e),size:"default"},null,8,["modelValue"])]),mo,(0,r.Lk)("div",yo,[(0,r.Lk)("span",wo,(0,Lt.v_)((0,l.R1)(t)("search-scope")),1),(0,r.bF)(u,{modelValue:(0,l.R1)(E).searchScope,"onUpdate:modelValue":i[12]||(i[12]=e=>(0,l.R1)(E).searchScope=e),multiple:"","collapse-tags":"","collapse-tags-tooltip":"",placeholder:"Select"},{default:(0,r.k6)((()=>[((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)((0,l.R1)(j),(e=>((0,r.uX)(),(0,r.Wv)(s,{key:e,label:e,value:e},null,8,["label","value"])))),128)),((0,r.uX)(!0),(0,r.CE)(r.FK,null,(0,r.pI)((0,l.R1)(q),(e=>((0,r.uX)(),(0,r.Wv)(s,{key:e,label:e,value:e},null,8,["label","value"])))),128))])),_:1},8,["modelValue"])])])])])}}};const bo=ko;var xo=bo;const Lo={class:"about-wrapper"},So={class:"usermanual"},Ro={class:"usermanual-item"},Vo=["innerHTML"],Mo={class:"usermanual-item"},Co=["innerHTML"],Io={class:"usermanual-item"},Oo=["innerHTML"],Ao=(0,r.Lk)("br",null,null,-1),Eo=(0,r.Lk)("hr",null,null,-1),_o=(0,r.Lk)("br",null,null,-1),Fo=(0,r.Lk)("div",{class:"digital-ide-icon big"},null,-1),Po=[Fo],Wo={class:"version-caption"},To=(0,r.Lk)("span",{class:"version-wrapper"},"0.3.3",-1),Ho=(0,r.Lk)("br",null,null,-1),Bo={style:{display:"flex","justify-content":"space-around"}},Do=["innerHTML"];function zo(e,t,n,o,l,a){return(0,r.uX)(),(0,r.CE)("div",Lo,[(0,r.Lk)("div",So,[(0,r.Lk)("h2",null,(0,Lt.v_)(o.t("usermanual")),1),(0,r.Lk)("div",Ro,[(0,r.Lk)("div",{innerHTML:o.t("usermanual.left-right-scroll.title")},null,8,Vo),(0,r.Lk)("div",null,(0,Lt.v_)(o.t("usermanual.left-right-scroll.caption")),1)]),(0,r.Lk)("div",Mo,[(0,r.Lk)("div",{innerHTML:o.t("usermanual.up-down-scroll.title")},null,8,Co),(0,r.Lk)("div",null,(0,Lt.v_)(o.t("usermanual.up-down-scroll.caption")),1)]),(0,r.Lk)("div",Io,[(0,r.Lk)("div",{innerHTML:o.t("usermanual.xscale.title")},null,8,Oo),(0,r.Lk)("div",null,(0,Lt.v_)(o.t("usermanual.xscale.caption")),1)])]),Ao,Eo,_o,(0,r.Lk)("div",{class:"icon-caption",onClick:t[0]||(t[0]=e=>o.goto("https://github.com/Digital-EDA"))},Po),(0,r.Lk)("div",Wo,[(0,r.Lk)("span",null,[(0,r.eW)((0,Lt.v_)(o.t("current-version"))+"   ",1),To])]),Ho,(0,r.Lk)("div",Bo,[(0,r.Lk)("div",{class:"copyright-caption",innerHTML:o.t("copyright")},null,8,Do)])])}var Xo={name:"dide-about",setup(){function e(e){window.open(e,"_blank")}const{t:t}=(0,s.s9)();return{goto:e,t:t}}};const Uo=(0,fn.A)(Xo,[["render",zo]]);var $o=Uo,No={name:"right-nav",components:{TreeView:Mn,Setting:xo,About:$o},props:{topModules:Array},setup(e){const t=(0,l.Kh)({sections:[{iconClass:"iconfont icon-collections"},{iconClass:"iconfont icon-setting"},{iconClass:"iconfont icon-about"}],currentIndex:-1,click(e){this.currentIndex===e?this.currentIndex=-1:this.currentIndex=e}});return I.on("right-nav",(e=>{t.currentIndex===e?t.currentIndex=-1:t.currentIndex=e})),{props:e,controlPanel:t}}};const Ko=(0,fn.A)(No,[["render",$t]]);var Go=Ko;function jo(e,t,n,o,l,a){return(0,r.uX)(),(0,r.CE)("div",{class:"vcd-render-wrapper",onClick:t[0]||(t[0]=e=>o.updateWireCurrentValue())})}O.view;var qo={name:"main-render",components:{},setup(){return{globalLookup:O,updateWireCurrentValue:z}}};const Yo=(0,fn.A)(qo,[["render",jo]]);var Jo=Yo;const Qo=(0,r.Lk)("div",{class:"vcd-toolbar"},null,-1);var Zo={__name:"App",setup(e){(0,r.wB)((()=>E),(()=>{localStorage.setItem("setting",JSON.stringify(E))}),{deep:!0});const t=(0,l.Kh)({topModules:[],values:[]});return(0,r.sV)((async()=>{document.body.style.setProperty("--el-color-primary","var(--main-color)"),document.body.style.setProperty("--el-color-primary-light-9","var(--main-color)"),document.body.style.setProperty("--el-color-primary-light-3","var(--main-color)"),document.body.style.setProperty("--el-text-color-secondary","var(--foreground)"),document.body.style.setProperty("--el-text-color-regular","var(--foreground)"),document.body.style.setProperty("--el-border-color","var(--vscode-focusBorder)"),document.body.style.setProperty("--el-fill-color-blank","var(--sidebar)"),document.body.style.setProperty("--el-fill-color-light","var(--vscode-button-hoverBackground)"),document.body.style.setProperty("--el-switch-on-color","var(--main-color)"),document.body.style.setProperty("--el-border","var(--sidebar)"),document.body.style.setProperty("--el-border-color-light","var(--sidebar)"),document.body.style.setProperty("--el-border-color-lighter","var(--sidebar)"),document.body.style.setProperty("--el-bg-color-overlay","var(--sidebar)"),document.body.style.setProperty("--el-color-info-light-9","var(--vscode-focusBorder)"),document.body.style.setProperty("--el-color-info","var(--foreground)"),document.body.style.setProperty("--el-color-info-light-8","var(--vscode-focusBorder)"),document.body.style.setProperty("--time-scale-height","50px"),document.body.style.setProperty("--vcd-render-padding","30px"),document.body.style.setProperty("--sidebar-width","230px"),document.body.style.setProperty("--display-signal-info-height",E.displaySignalHeight+"px"),localStorage.getItem("setting")||localStorage.setItem("setting",JSON.stringify(E));const e=await window.readVcdFile(),n=await W();let o;n.change.any(((e,t,n,r,l)=>{const a=Number(t);if(o=K(o,a),P[e]=P[e]||{kind:"",wave:[]},n>=14&&n<=28)P[e].kind="bit",P[e].wave.push([a,n-14]);else{P[e].kind="vec";const t=[a,N(r)];0n!==l&&t.push(N(l)),P[e].wave.push(t)}})),n.on("$enddefinitions",(()=>{}));const r=1<<17;for(let t=0;t0){const e=t.topModules[0],n=e.body.filter((e=>e.link));I.emit("tree-view",n);for(const o of t.topModules)O.topModules.push(o)}})),(e,n)=>((0,r.uX)(),(0,r.CE)(r.FK,null,[(0,r.bF)((0,l.R1)(Jo)),(0,r.bF)(Tt),Qo,(0,r.bF)(Go,{topModules:t.topModules},null,8,["topModules"])],64))}};const er=Zo;var tr=er,nr=n(2354);n(4188);(0,o.Ef)(tr).use(p).use(nr.A).mount("#app")}},t={};function n(o){var r=t[o];if(void 0!==r)return r.exports;var l=t[o]={exports:{}};return e[o].call(l.exports,l,l.exports,n),l.exports}n.m=e,function(){var e=[];n.O=function(t,o,r,l){if(!o){var a=1/0;for(u=0;u=l)&&Object.keys(n.O).every((function(e){return n.O[e](o[s])}))?o.splice(s--,1):(i=!1,l0&&e[u-1][2]>l;u--)e[u]=e[u-1];e[u]=[o,r,l]}}(),function(){n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,{a:t}),t}}(),function(){n.d=function(e,t){for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})}}(),function(){n.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}()}(),function(){n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}}(),function(){var e={524:0};n.O.j=function(t){return 0===e[t]};var t=function(t,o){var r,l,a=o[0],i=o[1],s=o[2],c=0;if(a.some((function(t){return 0!==e[t]}))){for(r in i)n.o(i,r)&&(n.m[r]=i[r]);if(s)var u=s(n)}for(t&&t(o);c=4))break}1===this._dirtyLevel&&(this._dirtyLevel=0),R()}return this._dirtyLevel>=4}set dirty(e){this._dirtyLevel=e?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let e=m,t=l;try{return m=!0,l=this,this._runnings++,f(this),this.fn()}finally{v(this),this._runnings--,l=t,m=e}}stop(){var e;this.active&&(f(this),v(this),null==(e=this.onStop)||e.call(this),this.active=!1)}}function p(e){return e.value}function f(e){e._trackId++,e._depsLength=0}function v(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t{const n=new Map;return n.cleanup=e,n.computed=t,n},S=new WeakMap,T=Symbol(""),O=Symbol("");function I(e,t,n){if(m&&l){let t=S.get(e);t||S.set(e,t=new Map);let o=t.get(n);o||t.set(n,o=_((()=>t.delete(n)))),C(l,o,void 0)}}function A(e,t,n,r,l,a){const i=S.get(e);if(!i)return;let s=[];if("clear"===t)s=[...i.values()];else if("length"===n&&(0,o.cy)(e)){const e=Number(r);i.forEach(((t,n)=>{("length"===n||!(0,o.Bm)(n)&&n>=e)&&s.push(t)}))}else switch(void 0!==n&&s.push(i.get(n)),t){case"add":(0,o.cy)(e)?(0,o.yI)(n)&&s.push(i.get("length")):(s.push(i.get(T)),(0,o.CE)(e)&&s.push(i.get(O)));break;case"delete":(0,o.cy)(e)||(s.push(i.get(T)),(0,o.CE)(e)&&s.push(i.get(O)));break;case"set":(0,o.CE)(e)&&s.push(i.get(T));break}w();for(const o of s)o&&x(o,4,void 0);E()}function L(e,t){var n;return null==(n=S.get(e))?void 0:n.get(t)}const M=(0,o.pD)("__proto__,__v_isRef,__isVue"),N=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(o.Bm)),W=D();function D(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=xe(this);for(let t=0,r=this.length;t{e[t]=function(...e){b(),w();const n=xe(this)[t].apply(this,e);return E(),R(),n}})),e}function F(e){const t=xe(this);return I(t,"has",e),t.hasOwnProperty(e)}class ${constructor(e=!1,t=!1){this._isReadonly=e,this._shallow=t}get(e,t,n){const r=this._isReadonly,l=this._shallow;if("__v_isReactive"===t)return!r;if("__v_isReadonly"===t)return r;if("__v_isShallow"===t)return l;if("__v_raw"===t)return n===(r?l?ve:fe:l?pe:de).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(n)?e:void 0;const a=(0,o.cy)(e);if(!r){if(a&&(0,o.$3)(W,t))return Reflect.get(W,t,n);if("hasOwnProperty"===t)return F}const i=Reflect.get(e,t,n);return((0,o.Bm)(t)?N.has(t):M(t))?i:(r||I(e,"get",t),l?i:Me(i)?a&&(0,o.yI)(t)?i:i.value:(0,o.Gv)(i)?r?be(i):ge(i):i)}}class B extends ${constructor(e=!1){super(!1,e)}set(e,t,n,r){let l=e[t];if(!this._shallow){const t=Ee(l);if(Ce(n)||Ee(n)||(l=xe(l),n=xe(n)),!(0,o.cy)(e)&&Me(l)&&!Me(n))return!t&&(l.value=n,!0)}const a=(0,o.cy)(e)&&(0,o.yI)(t)?Number(t)e,U=e=>Reflect.getPrototypeOf(e);function H(e,t,n=!1,r=!1){e=e["__v_raw"];const l=xe(e),a=xe(t);n||((0,o.$H)(t,a)&&I(l,"get",t),I(l,"get",a));const{has:i}=U(l),s=r?X:n?Te:Se;return i.call(l,t)?s(e.get(t)):i.call(l,a)?s(e.get(a)):void(e!==l&&e.get(t))}function z(e,t=!1){const n=this["__v_raw"],r=xe(n),l=xe(e);return t||((0,o.$H)(e,l)&&I(r,"has",e),I(r,"has",l)),e===l?n.has(e):n.has(e)||n.has(l)}function G(e,t=!1){return e=e["__v_raw"],!t&&I(xe(e),"iterate",T),Reflect.get(e,"size",e)}function q(e){e=xe(e);const t=xe(this),n=U(t),o=n.has.call(t,e);return o||(t.add(e),A(t,"add",e,e)),this}function Y(e,t){t=xe(t);const n=xe(this),{has:r,get:l}=U(n);let a=r.call(n,e);a||(e=xe(e),a=r.call(n,e));const i=l.call(n,e);return n.set(e,t),a?(0,o.$H)(t,i)&&A(n,"set",e,t,i):A(n,"add",e,t),this}function Q(e){const t=xe(this),{has:n,get:o}=U(t);let r=n.call(t,e);r||(e=xe(e),r=n.call(t,e));const l=o?o.call(t,e):void 0,a=t.delete(e);return r&&A(t,"delete",e,void 0,l),a}function Z(){const e=xe(this),t=0!==e.size,n=void 0,o=e.clear();return t&&A(e,"clear",void 0,void 0,n),o}function J(e,t){return function(n,o){const r=this,l=r["__v_raw"],a=xe(l),i=t?X:e?Te:Se;return!e&&I(a,"iterate",T),l.forEach(((e,t)=>n.call(o,i(e),i(t),r)))}}function ee(e,t,n){return function(...r){const l=this["__v_raw"],a=xe(l),i=(0,o.CE)(a),s="entries"===e||e===Symbol.iterator&&i,u="keys"===e&&i,c=l[e](...r),d=n?X:t?Te:Se;return!t&&I(a,"iterate",u?O:T),{next(){const{value:e,done:t}=c.next();return t?{value:e,done:t}:{value:s?[d(e[0]),d(e[1])]:d(e),done:t}},[Symbol.iterator](){return this}}}}function te(e){return function(...t){return"delete"!==e&&("clear"===e?void 0:this)}}function ne(){const e={get(e){return H(this,e)},get size(){return G(this)},has:z,add:q,set:Y,delete:Q,clear:Z,forEach:J(!1,!1)},t={get(e){return H(this,e,!1,!0)},get size(){return G(this)},has:z,add:q,set:Y,delete:Q,clear:Z,forEach:J(!1,!0)},n={get(e){return H(this,e,!0)},get size(){return G(this,!0)},has(e){return z.call(this,e,!0)},add:te("add"),set:te("set"),delete:te("delete"),clear:te("clear"),forEach:J(!0,!1)},o={get(e){return H(this,e,!0,!0)},get size(){return G(this,!0)},has(e){return z.call(this,e,!0)},add:te("add"),set:te("set"),delete:te("delete"),clear:te("clear"),forEach:J(!0,!0)},r=["keys","values","entries",Symbol.iterator];return r.forEach((r=>{e[r]=ee(r,!1,!1),n[r]=ee(r,!0,!1),t[r]=ee(r,!1,!0),o[r]=ee(r,!0,!0)})),[e,n,t,o]}const[oe,re,le,ae]=ne();function ie(e,t){const n=t?e?ae:le:e?re:oe;return(t,r,l)=>"__v_isReactive"===r?!e:"__v_isReadonly"===r?e:"__v_raw"===r?t:Reflect.get((0,o.$3)(n,r)&&r in t?n:t,r,l)}const se={get:ie(!1,!1)},ue={get:ie(!1,!0)},ce={get:ie(!0,!1)};const de=new WeakMap,pe=new WeakMap,fe=new WeakMap,ve=new WeakMap;function he(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function me(e){return e["__v_skip"]||!Object.isExtensible(e)?0:he((0,o.Zf)(e))}function ge(e){return Ee(e)?e:Re(e,!1,K,se,de)}function ye(e){return Re(e,!1,V,ue,pe)}function be(e){return Re(e,!0,j,ce,fe)}function Re(e,t,n,r,l){if(!(0,o.Gv)(e))return e;if(e["__v_raw"]&&(!t||!e["__v_isReactive"]))return e;const a=l.get(e);if(a)return a;const i=me(e);if(0===i)return e;const s=new Proxy(e,2===i?r:n);return l.set(e,s),s}function we(e){return Ee(e)?we(e["__v_raw"]):!(!e||!e["__v_isReactive"])}function Ee(e){return!(!e||!e["__v_isReadonly"])}function Ce(e){return!(!e||!e["__v_isShallow"])}function ke(e){return we(e)||Ee(e)}function xe(e){const t=e&&e["__v_raw"];return t?xe(t):e}function _e(e){return Object.isExtensible(e)&&(0,o.yQ)(e,"__v_skip",!0),e}const Se=e=>(0,o.Gv)(e)?ge(e):e,Te=e=>(0,o.Gv)(e)?be(e):e;class Oe{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this["__v_isReadonly"]=!1,this.effect=new d((()=>e(this._value)),(()=>Le(this,2===this.effect._dirtyLevel?2:3))),this.effect.computed=this,this.effect.active=this._cacheable=!o,this["__v_isReadonly"]=n}get value(){const e=xe(this);return e._cacheable&&!e.effect.dirty||!(0,o.$H)(e._value,e._value=e.effect.run())||Le(e,4),Ae(e),e.effect._dirtyLevel>=2&&Le(e,2),e._value}set value(e){this._setter(e)}get _dirty(){return this.effect.dirty}set _dirty(e){this.effect.dirty=e}}function Ie(e,t,n=!1){let r,l;const a=(0,o.Tn)(e);a?(r=e,l=o.tE):(r=e.get,l=e.set);const i=new Oe(r,l,a||!l,n);return i}function Ae(e){var t;m&&l&&(e=xe(e),C(l,null!=(t=e.dep)?t:e.dep=_((()=>e.dep=void 0),e instanceof Oe?e:void 0),void 0))}function Le(e,t=4,n){e=xe(e);const o=e.dep;o&&x(o,t,void 0)}function Me(e){return!(!e||!0!==e.__v_isRef)}function Ne(e){return De(e,!1)}function We(e){return De(e,!0)}function De(e,t){return Me(e)?e:new Fe(e,t)}class Fe{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:xe(e),this._value=t?e:Se(e)}get value(){return Ae(this),this._value}set value(e){const t=this.__v_isShallow||Ce(e)||Ee(e);e=t?e:xe(e),(0,o.$H)(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:Se(e),Le(this,4,e))}}function $e(e){return Me(e)?e.value:e}const Be={get:(e,t,n)=>$e(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return Me(r)&&!Me(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function Pe(e){return we(e)?e:new Proxy(e,Be)}function Ke(e){const t=(0,o.cy)(e)?new Array(e.length):{};for(const n in e)t[n]=Ue(e,n);return t}class je{constructor(e,t,n){this._object=e,this._key=t,this._defaultValue=n,this.__v_isRef=!0}get value(){const e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){return L(xe(this._object),this._key)}}class Ve{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Xe(e,t,n){return Me(e)?e:(0,o.Tn)(e)?new Ve(e):(0,o.Gv)(e)&&arguments.length>1?Ue(e,t,n):Ne(e)}function Ue(e,t,n){const o=e[t];return Me(o)?o:new je(e,t,n)}},6768:function(e,t,n){"use strict";n.d(t,{$u:function(){return Fe},$y:function(){return H},CE:function(){return bn},Df:function(){return we},E3:function(){return In},EW:function(){return ao},EY:function(){return un},FK:function(){return sn},Gt:function(){return Et},Gy:function(){return de},Ht:function(){return Je},Ic:function(){return De},Im:function(){return ln},K9:function(){return Vt},KC:function(){return Ne},Lk:function(){return _n},MZ:function(){return Re},Mw:function(){return cn},Ng:function(){return On},OA:function(){return et},OW:function(){return ge},Q3:function(){return Ln},QP:function(){return fe},R8:function(){return uo},RG:function(){return He},Tb:function(){return Ge},WQ:function(){return Ct},Wv:function(){return Rn},Y4:function(){return Se},bF:function(){return Sn},bo:function(){return ie},dY:function(){return y},eW:function(){return An},eX:function(){return Ue},g2:function(){return X},gN:function(){return z},h:function(){return io},hi:function(){return Be},k6:function(){return W},nI:function(){return jn},nT:function(){return ee},pI:function(){return Xe},pM:function(){return Ee},pR:function(){return he},qL:function(){return a},sV:function(){return We},uX:function(){return vn},v6:function(){return Dn},vv:function(){return wn},wB:function(){return ne},xo:function(){return $e}});n(4114);var o=n(144),r=n(4232);function l(e,t,n,o){try{return o?e(...o):e()}catch(r){i(r,t,n)}}function a(e,t,n,o){if((0,r.Tn)(e)){const a=l(e,t,n,o);return a&&(0,r.yL)(a)&&a.catch((e=>{i(e,t,n)})),a}const s=[];for(let r=0;r>>1,r=d[o],l=_(r);lp&&d.splice(t,1)}function C(e){(0,r.cy)(e)?f.push(...e):v&&v.includes(e,e.allowRecurse?h+1:h)||f.push(e),w()}function k(e,t,n=(u?p+1:0)){for(0;n_(e)-_(t)));if(f.length=0,v)return void v.push(...e);for(v=e,h=0;hnull==e.id?1/0:e.id,S=(e,t)=>{const n=_(e)-_(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function T(e){c=!1,u=!0,d.sort(S);r.tE;try{for(p=0;p(0,r.Kg)(e)?e.trim():e))),t&&(l=n.map(r.bB))}let u;let c=o[u=(0,r.rU)(t)]||o[u=(0,r.rU)((0,r.PT)(t))];!c&&i&&(c=o[u=(0,r.rU)((0,r.Tg)(t))]),c&&a(c,e,6,l);const d=o[u+"Once"];if(d){if(e.emitted){if(e.emitted[u])return}else e.emitted={};e.emitted[u]=!0,a(d,e,6,l)}}function I(e,t,n=!1){const o=t.emitsCache,l=o.get(e);if(void 0!==l)return l;const a=e.emits;let i={},s=!1;if(!(0,r.Tn)(e)){const o=e=>{const n=I(e,t,!0);n&&(s=!0,(0,r.X$)(i,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return a||s?((0,r.cy)(a)?a.forEach((e=>i[e]=null)):(0,r.X$)(i,a),(0,r.Gv)(e)&&o.set(e,i),i):((0,r.Gv)(e)&&o.set(e,null),null)}function A(e,t){return!(!e||!(0,r.Mp)(t))&&(t=t.slice(2).replace(/Once$/,""),(0,r.$3)(e,t[0].toLowerCase()+t.slice(1))||(0,r.$3)(e,(0,r.Tg)(t))||(0,r.$3)(e,t))}let L=null,M=null;function N(e){const t=L;return L=e,M=e&&e.type.__scopeId||null,t}function W(e,t=L,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&gn(-1);const r=N(t);let l;try{l=e(...n)}finally{N(r),o._d&&gn(1)}return l};return o._n=!0,o._c=!0,o._d=!0,o}function D(e){const{type:t,vnode:n,proxy:o,withProxy:l,props:a,propsOptions:[s],slots:u,attrs:c,emit:d,render:p,renderCache:f,data:v,setupState:h,ctx:m,inheritAttrs:g}=e;let y,b;const R=N(e);try{if(4&n.shapeFlag){const e=l||o,t=e;y=Mn(p.call(t,e,f,a,h,v,m)),b=c}else{const e=t;0,y=Mn(e.length>1?e(a,{attrs:c,slots:u,emit:d}):e(a,null)),b=t.props?c:F(c)}}catch(E){pn.length=0,i(E,e,1),y=Sn(cn)}let w=y;if(b&&!1!==g){const e=Object.keys(b),{shapeFlag:t}=w;e.length&&7&t&&(s&&e.some(r.CP)&&(b=$(b,s)),w=In(w,b))}return n.dirs&&(w=In(w),w.dirs=w.dirs?w.dirs.concat(n.dirs):n.dirs),n.transition&&(w.transition=n.transition),y=w,N(R),y}const F=e=>{let t;for(const n in e)("class"===n||"style"===n||(0,r.Mp)(n))&&((t||(t={}))[n]=e[n]);return t},$=(e,t)=>{const n={};for(const o in e)(0,r.CP)(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function B(e,t,n){const{props:o,children:r,component:l}=e,{props:a,children:i,patchFlag:s}=t,u=l.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&s>=0))return!(!r&&!i||i&&i.$stable)||o!==a&&(o?!a||P(o,a,u):!!a);if(1024&s)return!0;if(16&s)return o?P(o,a,u):!!a;if(8&s){const e=t.dynamicProps;for(let t=0;te.__isSuspense;function Q(e,t){t&&t.pendingBranch?(0,r.cy)(e)?t.effects.push(...e):t.effects.push(e):C(e)}const Z=Symbol.for("v-scx"),J=()=>{{const e=Ct(Z);return e}};function ee(e,t){return oe(e,null,t)}const te={};function ne(e,t,n){return oe(e,t,n)}function oe(e,t,{immediate:n,deep:i,flush:s,once:u,onTrack:c,onTrigger:d}=r.MZ){if(t&&u){const e=t;t=(...t)=>{e(...t),_()}}const p=Kn,f=e=>!0===i?e:ae(e,!1===i?1:void 0);let v,h,m=!1,g=!1;if((0,o.i9)(e)?(v=()=>e.value,m=(0,o.fE)(e)):(0,o.g8)(e)?(v=()=>f(e),m=!0):(0,r.cy)(e)?(g=!0,m=e.some((e=>(0,o.g8)(e)||(0,o.fE)(e))),v=()=>e.map((e=>(0,o.i9)(e)?e.value:(0,o.g8)(e)?f(e):(0,r.Tn)(e)?l(e,p,2):void 0))):v=(0,r.Tn)(e)?t?()=>l(e,p,2):()=>(h&&h(),a(e,p,3,[b])):r.tE,t&&i){const e=v;v=()=>ae(e())}let y,b=e=>{h=k.onStop=()=>{l(e,p,4),h=k.onStop=void 0}};if(Yn){if(b=r.tE,t?n&&a(t,p,3,[v(),g?[]:void 0,b]):v(),"sync"!==s)return r.tE;{const e=J();y=e.__watcherHandles||(e.__watcherHandles=[])}}let w=g?new Array(e.length).fill(te):te;const E=()=>{if(k.active&&k.dirty)if(t){const e=k.run();(i||m||(g?e.some(((e,t)=>(0,r.$H)(e,w[t]))):(0,r.$H)(e,w)))&&(h&&h(),a(t,p,3,[e,w===te?void 0:g&&w[0]===te?[]:w,b]),w=e)}else k.run()};let C;E.allowRecurse=!!t,"sync"===s?C=E:"post"===s?C=()=>jt(E,p&&p.suspense):(E.pre=!0,p&&(E.id=p.uid),C=()=>R(E));const k=new o.X2(v,r.tE,C),x=(0,o.o5)(),_=()=>{k.stop(),x&&(0,r.TF)(x.effects,k)};return t?n?E():w=k.run():"post"===s?jt(k.run.bind(k),p&&p.suspense):k.run(),y&&y.push(_),_}function re(e,t,n){const o=this.proxy,l=(0,r.Kg)(e)?e.includes(".")?le(o,e):()=>o[e]:e.bind(o,o);let a;(0,r.Tn)(t)?a=t:(a=t.handler,n=t);const i=Un(this),s=oe(l,a.bind(o),n);return i(),s}function le(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e0){if(n>=t)return e;n++}if(l=l||new Set,l.has(e))return e;if(l.add(e),(0,o.i9)(e))ae(e.value,t,n,l);else if((0,r.cy)(e))for(let o=0;o{ae(e,t,n,l)}));else if((0,r.Qd)(e))for(const o in e)ae(e[o],t,n,l);return e}function ie(e,t){if(null===L)return e;const n=oo(L)||L.proxy,o=e.dirs||(e.dirs=[]);for(let l=0;l{e.isMounted=!0})),$e((()=>{e.isUnmounting=!0})),e}const pe=[Function,Array],fe={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:pe,onEnter:pe,onAfterEnter:pe,onEnterCancelled:pe,onBeforeLeave:pe,onLeave:pe,onAfterLeave:pe,onLeaveCancelled:pe,onBeforeAppear:pe,onAppear:pe,onAfterAppear:pe,onAppearCancelled:pe},ve={name:"BaseTransition",props:fe,setup(e,{slots:t}){const n=jn(),r=de();let l;return()=>{const a=t.default&&we(t.default(),!0);if(!a||!a.length)return;let i=a[0];if(a.length>1){let e=!1;for(const t of a)if(t.type!==cn){0,i=t,e=!0;break}}const s=(0,o.ux)(e),{mode:u}=s;if(r.isLeaving)return ye(i);const c=be(i);if(!c)return ye(i);const d=ge(c,s,r,n);Re(c,d);const p=n.subTree,f=p&&be(p);let v=!1;const{getTransitionKey:h}=c.type;if(h){const e=h();void 0===l?l=e:e!==l&&(l=e,v=!0)}if(f&&f.type!==cn&&(!En(c,f)||v)){const e=ge(f,s,r,n);if(Re(f,e),"out-in"===u)return r.isLeaving=!0,e.afterLeave=()=>{r.isLeaving=!1,!1!==n.update.active&&(n.effect.dirty=!0,n.update())},ye(i);"in-out"===u&&c.type!==cn&&(e.delayLeave=(e,t,n)=>{const o=me(r,f);o[String(f.key)]=f,e[ue]=()=>{t(),e[ue]=void 0,delete d.delayedLeave},d.delayedLeave=n})}return i}}},he=ve;function me(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function ge(e,t,n,o){const{appear:l,mode:i,persisted:s=!1,onBeforeEnter:u,onEnter:c,onAfterEnter:d,onEnterCancelled:p,onBeforeLeave:f,onLeave:v,onAfterLeave:h,onLeaveCancelled:m,onBeforeAppear:g,onAppear:y,onAfterAppear:b,onAppearCancelled:R}=t,w=String(e.key),E=me(n,e),C=(e,t)=>{e&&a(e,o,9,t)},k=(e,t)=>{const n=t[1];C(e,t),(0,r.cy)(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},x={mode:i,persisted:s,beforeEnter(t){let o=u;if(!n.isMounted){if(!l)return;o=g||u}t[ue]&&t[ue](!0);const r=E[w];r&&En(e,r)&&r.el[ue]&&r.el[ue](),C(o,[t])},enter(e){let t=c,o=d,r=p;if(!n.isMounted){if(!l)return;t=y||c,o=b||d,r=R||p}let a=!1;const i=e[ce]=t=>{a||(a=!0,C(t?r:o,[e]),x.delayedLeave&&x.delayedLeave(),e[ce]=void 0)};t?k(t,[e,i]):i()},leave(t,o){const r=String(e.key);if(t[ce]&&t[ce](!0),n.isUnmounting)return o();C(f,[t]);let l=!1;const a=t[ue]=n=>{l||(l=!0,o(),C(n?m:h,[t]),t[ue]=void 0,E[r]===e&&delete E[r])};E[r]=e,v?k(v,[t,a]):a()},clone(e){return ge(e,t,n,o)}};return x}function ye(e){if(ke(e))return e=In(e),e.children=null,e}function be(e){return ke(e)?e.children?e.children[0]:void 0:e}function Re(e,t){6&e.shapeFlag&&e.component?Re(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function we(e,t=!1,n){let o=[],r=0;for(let l=0;l1)for(let l=0;l(0,r.X$)({name:e.name},t,{setup:e}))():e}const Ce=e=>!!e.type.__asyncLoader -/*! #__NO_SIDE_EFFECTS__ */;const ke=e=>e.type.__isKeepAlive;RegExp,RegExp;function xe(e,t){return(0,r.cy)(e)?e.some((e=>xe(e,t))):(0,r.Kg)(e)?e.split(",").includes(t):!!(0,r.gd)(e)&&e.test(t)}function _e(e,t){Te(e,"a",t)}function Se(e,t){Te(e,"da",t)}function Te(e,t,n=Kn){const o=e.__wdc||(e.__wdc=()=>{let t=n;while(t){if(t.isDeactivated)return;t=t.parent}return e()});if(Le(t,o,n),n){let e=n.parent;while(e&&e.parent)ke(e.parent.vnode)&&Oe(o,t,n,e),e=e.parent}}function Oe(e,t,n,o){const l=Le(t,e,o,!0);Be((()=>{(0,r.TF)(o[t],l)}),n)}function Ie(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Ae(e){return 128&e.shapeFlag?e.ssContent:e}function Le(e,t,n=Kn,r=!1){if(n){const l=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...r)=>{if(n.isUnmounted)return;(0,o.C4)();const l=Un(n),i=a(t,n,e,r);return l(),(0,o.bl)(),i});return r?l.unshift(i):l.push(i),i}}const Me=e=>(t,n=Kn)=>(!Yn||"sp"===e)&&Le(e,((...e)=>t(...e)),n),Ne=Me("bm"),We=Me("m"),De=Me("bu"),Fe=Me("u"),$e=Me("bum"),Be=Me("um"),Pe=Me("sp"),Ke=Me("rtg"),je=Me("rtc");function Ve(e,t=Kn){Le("ec",e,t)}function Xe(e,t,n,o){let l;const a=n&&n[o];if((0,r.cy)(e)||(0,r.Kg)(e)){l=new Array(e.length);for(let n=0,o=e.length;nt(e,n,void 0,a&&a[n])));else{const n=Object.keys(e);l=new Array(n.length);for(let o=0,r=n.length;o{const t=o.fn(...e);return t&&(t.key=o.key),t}:o.fn)}return e}function He(e,t,n={},o,r){if(L.isCE||L.parent&&Ce(L.parent)&&L.parent.isCE)return"default"!==t&&(n.name=t),Sn("slot",n,o&&o());let l=e[t];l&&l._c&&(l._d=!1),vn();const a=l&&ze(l(n)),i=Rn(sn,{key:n.key||a&&a.key||`_${t}`},a||(o?o():[]),a&&1===e._?64:-2);return!r&&i.scopeId&&(i.slotScopeIds=[i.scopeId+"-s"]),l&&l._c&&(l._d=!0),i}function ze(e){return e.some((e=>!wn(e)||e.type!==cn&&!(e.type===sn&&!ze(e.children))))?e:null}function Ge(e,t){const n={};for(const o in e)n[t&&/[A-Z]/.test(o)?`on:${o}`:(0,r.rU)(o)]=e[o];return n}const qe=e=>e?zn(e)?oo(e)||e.proxy:qe(e.parent):null,Ye=(0,r.X$)(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>qe(e.parent),$root:e=>qe(e.root),$emit:e=>e.emit,$options:e=>st(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,R(e.update)}),$nextTick:e=>e.n||(e.n=y.bind(e.proxy)),$watch:e=>re.bind(e)}),Qe=(e,t)=>e!==r.MZ&&!e.__isScriptSetup&&(0,r.$3)(e,t),Ze={get({_:e},t){const{ctx:n,setupState:l,data:a,props:i,accessCache:s,type:u,appContext:c}=e;let d;if("$"!==t[0]){const o=s[t];if(void 0!==o)switch(o){case 1:return l[t];case 2:return a[t];case 4:return n[t];case 3:return i[t]}else{if(Qe(l,t))return s[t]=1,l[t];if(a!==r.MZ&&(0,r.$3)(a,t))return s[t]=2,a[t];if((d=e.propsOptions[0])&&(0,r.$3)(d,t))return s[t]=3,i[t];if(n!==r.MZ&&(0,r.$3)(n,t))return s[t]=4,n[t];ot&&(s[t]=0)}}const p=Ye[t];let f,v;return p?("$attrs"===t&&(0,o.u4)(e,"get",t),p(e)):(f=u.__cssModules)&&(f=f[t])?f:n!==r.MZ&&(0,r.$3)(n,t)?(s[t]=4,n[t]):(v=c.config.globalProperties,(0,r.$3)(v,t)?v[t]:void 0)},set({_:e},t,n){const{data:o,setupState:l,ctx:a}=e;return Qe(l,t)?(l[t]=n,!0):o!==r.MZ&&(0,r.$3)(o,t)?(o[t]=n,!0):!(0,r.$3)(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(a[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:l,propsOptions:a}},i){let s;return!!n[i]||e!==r.MZ&&(0,r.$3)(e,i)||Qe(t,i)||(s=a[0])&&(0,r.$3)(s,i)||(0,r.$3)(o,i)||(0,r.$3)(Ye,i)||(0,r.$3)(l.config.globalProperties,i)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:(0,r.$3)(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Je(){return tt().slots}function et(){return tt().attrs}function tt(){const e=jn();return e.setupContext||(e.setupContext=no(e))}function nt(e){return(0,r.cy)(e)?e.reduce(((e,t)=>(e[t]=null,e)),{}):e}let ot=!0;function rt(e){const t=st(e),n=e.proxy,l=e.ctx;ot=!1,t.beforeCreate&&at(t.beforeCreate,e,"bc");const{data:a,computed:i,methods:s,watch:u,provide:c,inject:d,created:p,beforeMount:f,mounted:v,beforeUpdate:h,updated:m,activated:g,deactivated:y,beforeDestroy:b,beforeUnmount:R,destroyed:w,unmounted:E,render:C,renderTracked:k,renderTriggered:x,errorCaptured:_,serverPrefetch:S,expose:T,inheritAttrs:O,components:I,directives:A,filters:L}=t,M=null;if(d&<(d,l,M),s)for(const o in s){const e=s[o];(0,r.Tn)(e)&&(l[o]=e.bind(n))}if(a){0;const t=a.call(n,n);0,(0,r.Gv)(t)&&(e.data=(0,o.Kh)(t))}if(ot=!0,i)for(const o in i){const e=i[o],t=(0,r.Tn)(e)?e.bind(n,n):(0,r.Tn)(e.get)?e.get.bind(n,n):r.tE;0;const a=!(0,r.Tn)(e)&&(0,r.Tn)(e.set)?e.set.bind(n):r.tE,s=ao({get:t,set:a});Object.defineProperty(l,o,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(u)for(const o in u)it(u[o],l,n,o);if(c){const e=(0,r.Tn)(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{Et(t,e[t])}))}function N(e,t){(0,r.cy)(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(p&&at(p,e,"c"),N(Ne,f),N(We,v),N(De,h),N(Fe,m),N(_e,g),N(Se,y),N(Ve,_),N(je,k),N(Ke,x),N($e,R),N(Be,E),N(Pe,S),(0,r.cy)(T))if(T.length){const t=e.exposed||(e.exposed={});T.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===r.tE&&(e.render=C),null!=O&&(e.inheritAttrs=O),I&&(e.components=I),A&&(e.directives=A)}function lt(e,t,n=r.tE){(0,r.cy)(e)&&(e=ft(e));for(const l in e){const n=e[l];let a;a=(0,r.Gv)(n)?"default"in n?Ct(n.from||l,n.default,!0):Ct(n.from||l):Ct(n),(0,o.i9)(a)?Object.defineProperty(t,l,{enumerable:!0,configurable:!0,get:()=>a.value,set:e=>a.value=e}):t[l]=a}}function at(e,t,n){a((0,r.cy)(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function it(e,t,n,o){const l=o.includes(".")?le(n,o):()=>n[o];if((0,r.Kg)(e)){const n=t[e];(0,r.Tn)(n)&&ne(l,n)}else if((0,r.Tn)(e))ne(l,e.bind(n));else if((0,r.Gv)(e))if((0,r.cy)(e))e.forEach((e=>it(e,t,n,o)));else{const o=(0,r.Tn)(e.handler)?e.handler.bind(n):t[e.handler];(0,r.Tn)(o)&&ne(l,o,e)}else 0}function st(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:l,optionsCache:a,config:{optionMergeStrategies:i}}=e.appContext,s=a.get(t);let u;return s?u=s:l.length||n||o?(u={},l.length&&l.forEach((e=>ut(u,e,i,!0))),ut(u,t,i)):u=t,(0,r.Gv)(t)&&a.set(t,u),u}function ut(e,t,n,o=!1){const{mixins:r,extends:l}=t;l&&ut(e,l,n,!0),r&&r.forEach((t=>ut(e,t,n,!0)));for(const a in t)if(o&&"expose"===a);else{const o=ct[a]||n&&n[a];e[a]=o?o(e[a],t[a]):t[a]}return e}const ct={data:dt,props:mt,emits:mt,methods:ht,computed:ht,beforeCreate:vt,created:vt,beforeMount:vt,mounted:vt,beforeUpdate:vt,updated:vt,beforeDestroy:vt,beforeUnmount:vt,destroyed:vt,unmounted:vt,activated:vt,deactivated:vt,errorCaptured:vt,serverPrefetch:vt,components:ht,directives:ht,watch:gt,provide:dt,inject:pt};function dt(e,t){return t?e?function(){return(0,r.X$)((0,r.Tn)(e)?e.call(this,this):e,(0,r.Tn)(t)?t.call(this,this):t)}:t:e}function pt(e,t){return ht(ft(e),ft(t))}function ft(e){if((0,r.cy)(e)){const t={};for(let n=0;n1)return n&&(0,r.Tn)(t)?t.call(o&&o.proxy):t}else 0}function kt(e,t,n,l=!1){const a={},i={};(0,r.yQ)(i,Cn,1),e.propsDefaults=Object.create(null),_t(e,t,a,i);for(const o in e.propsOptions[0])o in a||(a[o]=void 0);n?e.props=l?a:(0,o.Gc)(a):e.type.props?e.props=a:e.props=i,e.attrs=i}function xt(e,t,n,l){const{props:a,attrs:i,vnode:{patchFlag:s}}=e,u=(0,o.ux)(a),[c]=e.propsOptions;let d=!1;if(!(l||s>0)||16&s){let o;_t(e,t,a,i)&&(d=!0);for(const l in u)t&&((0,r.$3)(t,l)||(o=(0,r.Tg)(l))!==l&&(0,r.$3)(t,o))||(c?!n||void 0===n[l]&&void 0===n[o]||(a[l]=St(c,u,l,void 0,e,!0)):delete a[l]);if(i!==u)for(const e in i)t&&(0,r.$3)(t,e)||(delete i[e],d=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{u=!0;const[n,o]=Tt(e,t,!0);(0,r.X$)(i,n),o&&s.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!a&&!u)return(0,r.Gv)(e)&&o.set(e,r.Oj),r.Oj;if((0,r.cy)(a))for(let d=0;d-1,o[1]=n<0||e-1||(0,r.$3)(o,"default"))&&s.push(t)}}}}const c=[i,s];return(0,r.Gv)(e)&&o.set(e,c),c}function Ot(e){return"$"!==e[0]&&!(0,r.SU)(e)}function It(e){if(null===e)return"null";if("function"===typeof e)return e.name||"";if("object"===typeof e){const t=e.constructor&&e.constructor.name;return t||""}return""}function At(e,t){return It(e)===It(t)}function Lt(e,t){return(0,r.cy)(t)?t.findIndex((t=>At(t,e))):(0,r.Tn)(t)&&At(t,e)?0:-1}const Mt=e=>"_"===e[0]||"$stable"===e,Nt=e=>(0,r.cy)(e)?e.map(Mn):[Mn(e)],Wt=(e,t,n)=>{if(t._n)return t;const o=W(((...e)=>Nt(t(...e))),n);return o._c=!1,o},Dt=(e,t,n)=>{const o=e._ctx;for(const l in e){if(Mt(l))continue;const n=e[l];if((0,r.Tn)(n))t[l]=Wt(l,n,o);else if(null!=n){0;const e=Nt(n);t[l]=()=>e}}},Ft=(e,t)=>{const n=Nt(t);e.slots.default=()=>n},$t=(e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=(0,o.ux)(t),(0,r.yQ)(t,"_",n)):Dt(t,e.slots={})}else e.slots={},t&&Ft(e,t);(0,r.yQ)(e.slots,Cn,1)},Bt=(e,t,n)=>{const{vnode:o,slots:l}=e;let a=!0,i=r.MZ;if(32&o.shapeFlag){const e=t._;e?n&&1===e?a=!1:((0,r.X$)(l,t),n||1!==e||delete l._):(a=!t.$stable,Dt(t,l)),i=t}else t&&(Ft(e,t),i={default:1});if(a)for(const r in l)Mt(r)||null!=i[r]||delete l[r]};function Pt(e,t,n,a,i=!1){if((0,r.cy)(e))return void e.forEach(((e,o)=>Pt(e,t&&((0,r.cy)(t)?t[o]:t),n,a,i)));if(Ce(a)&&!i)return;const s=4&a.shapeFlag?oo(a.component)||a.component.proxy:a.el,u=i?null:s,{i:c,r:d}=e;const p=t&&t.r,f=c.refs===r.MZ?c.refs={}:c.refs,v=c.setupState;if(null!=p&&p!==d&&((0,r.Kg)(p)?(f[p]=null,(0,r.$3)(v,p)&&(v[p]=null)):(0,o.i9)(p)&&(p.value=null)),(0,r.Tn)(d))l(d,c,12,[u,f]);else{const t=(0,r.Kg)(d),l=(0,o.i9)(d);if(t||l){const o=()=>{if(e.f){const n=t?(0,r.$3)(v,d)?v[d]:f[d]:d.value;i?(0,r.cy)(n)&&(0,r.TF)(n,s):(0,r.cy)(n)?n.includes(s)||n.push(s):t?(f[d]=[s],(0,r.$3)(v,d)&&(v[d]=f[d])):(d.value=[s],e.k&&(f[e.k]=d.value))}else t?(f[d]=u,(0,r.$3)(v,d)&&(v[d]=u)):l&&(d.value=u,e.k&&(f[e.k]=u))};u?(o.id=-1,jt(o,n)):o()}else 0}}function Kt(){}const jt=Q;function Vt(e){return Xt(e)}function Xt(e,t){Kt();const n=(0,r.We)();n.__VUE__=!0;const{insert:l,remove:a,patchProp:i,createElement:s,createText:u,createComment:c,setText:d,setElementText:p,parentNode:f,nextSibling:v,setScopeId:h=r.tE,insertStaticContent:m}=e,g=(e,t,n,o=null,r=null,l=null,a=void 0,i=null,s=!!t.dynamicChildren)=>{if(e===t)return;e&&!En(e,t)&&(o=Z(e),z(e,r,l,!0),e=null),-2===t.patchFlag&&(s=!1,t.dynamicChildren=null);const{type:u,ref:c,shapeFlag:d}=t;switch(u){case un:y(e,t,n,o);break;case cn:b(e,t,n,o);break;case dn:null==e&&w(t,n,o,a);break;case sn:N(e,t,n,o,r,l,a,i,s);break;default:1&d?S(e,t,n,o,r,l,a,i,s):6&d?W(e,t,n,o,r,l,a,i,s):(64&d||128&d)&&u.process(e,t,n,o,r,l,a,i,s,te)}null!=c&&r&&Pt(c,e&&e.ref,l,t||e,!t)},y=(e,t,n,o)=>{if(null==e)l(t.el=u(t.children),n,o);else{const n=t.el=e.el;t.children!==e.children&&d(n,t.children)}},b=(e,t,n,o)=>{null==e?l(t.el=c(t.children||""),n,o):t.el=e.el},w=(e,t,n,o)=>{[e.el,e.anchor]=m(e.children,t,n,o,e.el,e.anchor)},C=({el:e,anchor:t},n,o)=>{let r;while(e&&e!==t)r=v(e),l(e,n,o),e=r;l(t,n,o)},_=({el:e,anchor:t})=>{let n;while(e&&e!==t)n=v(e),a(e),e=n;a(t)},S=(e,t,n,o,r,l,a,i,s)=>{"svg"===t.type?a="svg":"math"===t.type&&(a="mathml"),null==e?T(t,n,o,r,l,a,i,s):A(e,t,r,l,a,i,s)},T=(e,t,n,o,a,u,c,d)=>{let f,v;const{props:h,shapeFlag:m,transition:g,dirs:y}=e;if(f=e.el=s(e.type,u,h&&h.is,h),8&m?p(f,e.children):16&m&&I(e.children,f,null,o,a,Ut(e,u),c,d),y&&se(e,null,o,"created"),O(f,e,e.scopeId,c,o),h){for(const t in h)"value"===t||(0,r.SU)(t)||i(f,t,null,h[t],u,e.children,o,a,Q);"value"in h&&i(f,"value",null,h.value,u),(v=h.onVnodeBeforeMount)&&Fn(v,o,e)}y&&se(e,null,o,"beforeMount");const b=zt(a,g);b&&g.beforeEnter(f),l(f,t,n),((v=h&&h.onVnodeMounted)||b||y)&&jt((()=>{v&&Fn(v,o,e),b&&g.enter(f),y&&se(e,null,o,"mounted")}),a)},O=(e,t,n,o,r)=>{if(n&&h(e,n),o)for(let l=0;l{for(let u=s;u{const u=t.el=e.el;let{patchFlag:c,dynamicChildren:d,dirs:f}=t;c|=16&e.patchFlag;const v=e.props||r.MZ,h=t.props||r.MZ;let m;if(n&&Ht(n,!1),(m=h.onVnodeBeforeUpdate)&&Fn(m,n,t,e),f&&se(t,e,n,"beforeUpdate"),n&&Ht(n,!0),d?L(e.dynamicChildren,d,u,n,o,Ut(t,l),a):s||V(e,t,u,null,n,o,Ut(t,l),a,!1),c>0){if(16&c)M(u,t,v,h,n,o,l);else if(2&c&&v.class!==h.class&&i(u,"class",null,h.class,l),4&c&&i(u,"style",v.style,h.style,l),8&c){const r=t.dynamicProps;for(let t=0;t{m&&Fn(m,n,t,e),f&&se(t,e,n,"updated")}),o)},L=(e,t,n,o,r,l,a)=>{for(let i=0;i{if(n!==o){if(n!==r.MZ)for(const u in n)(0,r.SU)(u)||u in o||i(e,u,n[u],null,s,t.children,l,a,Q);for(const u in o){if((0,r.SU)(u))continue;const c=o[u],d=n[u];c!==d&&"value"!==u&&i(e,u,d,c,s,t.children,l,a,Q)}"value"in o&&i(e,"value",n.value,o.value,s)}},N=(e,t,n,o,r,a,i,s,c)=>{const d=t.el=e?e.el:u(""),p=t.anchor=e?e.anchor:u("");let{patchFlag:f,dynamicChildren:v,slotScopeIds:h}=t;h&&(s=s?s.concat(h):h),null==e?(l(d,n,o),l(p,n,o),I(t.children||[],n,p,r,a,i,s,c)):f>0&&64&f&&v&&e.dynamicChildren?(L(e.dynamicChildren,v,n,r,a,i,s),(null!=t.key||r&&t===r.subTree)&&Gt(e,t,!0)):V(e,t,n,p,r,a,i,s,c)},W=(e,t,n,o,r,l,a,i,s)=>{t.slotScopeIds=i,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,a,s):F(t,n,o,r,l,a,s):$(e,t,s)},F=(e,t,n,o,r,l,a)=>{const i=e.component=Pn(e,o,r);if(ke(e)&&(i.ctx.renderer=te),Qn(i),i.asyncDep){if(r&&r.registerDep(i,P),!e.el){const e=i.subTree=Sn(cn);b(null,e,t,n)}}else P(i,e,t,n,r,l,a)},$=(e,t,n)=>{const o=t.component=e.component;if(B(e,t,n)){if(o.asyncDep&&!o.asyncResolved)return void j(o,t,n);o.next=t,E(o.update),o.effect.dirty=!0,o.update()}else t.el=e.el,o.vnode=t},P=(e,t,n,l,a,i,s)=>{const u=()=>{if(e.isMounted){let{next:t,bu:n,u:o,parent:l,vnode:c}=e;{const n=Yt(e);if(n)return t&&(t.el=c.el,j(e,t,s)),void n.asyncDep.then((()=>{e.isUnmounted||u()}))}let d,p=t;0,Ht(e,!1),t?(t.el=c.el,j(e,t,s)):t=c,n&&(0,r.DY)(n),(d=t.props&&t.props.onVnodeBeforeUpdate)&&Fn(d,l,t,c),Ht(e,!0);const v=D(e);0;const h=e.subTree;e.subTree=v,g(h,v,f(h.el),Z(h),e,a,i),t.el=v.el,null===p&&K(e,v.el),o&&jt(o,a),(d=t.props&&t.props.onVnodeUpdated)&&jt((()=>Fn(d,l,t,c)),a)}else{let o;const{el:s,props:u}=t,{bm:c,m:d,parent:p}=e,f=Ce(t);if(Ht(e,!1),c&&(0,r.DY)(c),!f&&(o=u&&u.onVnodeBeforeMount)&&Fn(o,p,t),Ht(e,!0),s&&oe){const n=()=>{e.subTree=D(e),oe(s,e.subTree,e,a,null)};f?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{0;const o=e.subTree=D(e);0,g(null,o,n,l,e,a,i),t.el=o.el}if(d&&jt(d,a),!f&&(o=u&&u.onVnodeMounted)){const e=t;jt((()=>Fn(o,p,e)),a)}(256&t.shapeFlag||p&&Ce(p.vnode)&&256&p.vnode.shapeFlag)&&e.a&&jt(e.a,a),e.isMounted=!0,t=n=l=null}},c=e.effect=new o.X2(u,r.tE,(()=>R(d)),e.scope),d=e.update=()=>{c.dirty&&c.run()};d.id=e.uid,Ht(e,!0),d()},j=(e,t,n)=>{t.component=e;const r=e.vnode.props;e.vnode=t,e.next=null,xt(e,t.props,r,n),Bt(e,t.children,n),(0,o.C4)(),k(e),(0,o.bl)()},V=(e,t,n,o,r,l,a,i,s=!1)=>{const u=e&&e.children,c=e?e.shapeFlag:0,d=t.children,{patchFlag:f,shapeFlag:v}=t;if(f>0){if(128&f)return void U(u,d,n,o,r,l,a,i,s);if(256&f)return void X(u,d,n,o,r,l,a,i,s)}8&v?(16&c&&Q(u,r,l),d!==u&&p(n,d)):16&c?16&v?U(u,d,n,o,r,l,a,i,s):Q(u,r,l,!0):(8&c&&p(n,""),16&v&&I(d,n,o,r,l,a,i,s))},X=(e,t,n,o,l,a,i,s,u)=>{e=e||r.Oj,t=t||r.Oj;const c=e.length,d=t.length,p=Math.min(c,d);let f;for(f=0;fd?Q(e,l,a,!0,!1,p):I(t,n,o,l,a,i,s,u,p)},U=(e,t,n,o,l,a,i,s,u)=>{let c=0;const d=t.length;let p=e.length-1,f=d-1;while(c<=p&&c<=f){const o=e[c],r=t[c]=u?Nn(t[c]):Mn(t[c]);if(!En(o,r))break;g(o,r,n,null,l,a,i,s,u),c++}while(c<=p&&c<=f){const o=e[p],r=t[f]=u?Nn(t[f]):Mn(t[f]);if(!En(o,r))break;g(o,r,n,null,l,a,i,s,u),p--,f--}if(c>p){if(c<=f){const e=f+1,r=ef)while(c<=p)z(e[c],l,a,!0),c++;else{const v=c,h=c,m=new Map;for(c=h;c<=f;c++){const e=t[c]=u?Nn(t[c]):Mn(t[c]);null!=e.key&&m.set(e.key,c)}let y,b=0;const R=f-h+1;let w=!1,E=0;const C=new Array(R);for(c=0;c=R){z(o,l,a,!0);continue}let r;if(null!=o.key)r=m.get(o.key);else for(y=h;y<=f;y++)if(0===C[y-h]&&En(o,t[y])){r=y;break}void 0===r?z(o,l,a,!0):(C[r-h]=c+1,r>=E?E=r:w=!0,g(o,t[r],n,null,l,a,i,s,u),b++)}const k=w?qt(C):r.Oj;for(y=k.length-1,c=R-1;c>=0;c--){const e=h+c,r=t[e],p=e+1{const{el:a,type:i,transition:s,children:u,shapeFlag:c}=e;if(6&c)return void H(e.component.subTree,t,n,o);if(128&c)return void e.suspense.move(t,n,o);if(64&c)return void i.move(e,t,n,te);if(i===sn){l(a,t,n);for(let e=0;es.enter(a)),r);else{const{leave:e,delayLeave:o,afterLeave:r}=s,i=()=>l(a,t,n),u=()=>{e(a,(()=>{i(),r&&r()}))};o?o(a,i,u):u()}else l(a,t,n)},z=(e,t,n,o=!1,r=!1)=>{const{type:l,props:a,ref:i,children:s,dynamicChildren:u,shapeFlag:c,patchFlag:d,dirs:p}=e;if(null!=i&&Pt(i,null,n,e,!0),256&c)return void t.ctx.deactivate(e);const f=1&c&&p,v=!Ce(e);let h;if(v&&(h=a&&a.onVnodeBeforeUnmount)&&Fn(h,t,e),6&c)Y(e.component,n,o);else{if(128&c)return void e.suspense.unmount(n,o);f&&se(e,null,t,"beforeUnmount"),64&c?e.type.remove(e,t,n,r,te,o):u&&(l!==sn||d>0&&64&d)?Q(u,t,n,!1,!0):(l===sn&&384&d||!r&&16&c)&&Q(s,t,n),o&&G(e)}(v&&(h=a&&a.onVnodeUnmounted)||f)&&jt((()=>{h&&Fn(h,t,e),f&&se(e,null,t,"unmounted")}),n)},G=e=>{const{type:t,el:n,anchor:o,transition:r}=e;if(t===sn)return void q(n,o);if(t===dn)return void _(e);const l=()=>{a(n),r&&!r.persisted&&r.afterLeave&&r.afterLeave()};if(1&e.shapeFlag&&r&&!r.persisted){const{leave:t,delayLeave:o}=r,a=()=>t(n,l);o?o(e.el,l,a):a()}else l()},q=(e,t)=>{let n;while(e!==t)n=v(e),a(e),e=n;a(t)},Y=(e,t,n)=>{const{bum:o,scope:l,update:a,subTree:i,um:s}=e;o&&(0,r.DY)(o),l.stop(),a&&(a.active=!1,z(i,e,t,n)),s&&jt(s,t),jt((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},Q=(e,t,n,o=!1,r=!1,l=0)=>{for(let a=l;a6&e.shapeFlag?Z(e.component.subTree):128&e.shapeFlag?e.suspense.next():v(e.anchor||e.el);let J=!1;const ee=(e,t,n)=>{null==e?t._vnode&&z(t._vnode,null,null,!0):g(t._vnode||null,e,t,null,null,null,n),J||(J=!0,k(),x(),J=!1),t._vnode=e},te={p:g,um:z,m:H,r:G,mt:F,mc:I,pc:V,pbc:L,n:Z,o:e};let ne,oe;return t&&([ne,oe]=t(te)),{render:ee,hydrate:ne,createApp:Rt(ee,ne)}}function Ut({type:e,props:t},n){return"svg"===n&&"foreignObject"===e||"mathml"===n&&"annotation-xml"===e&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Ht({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function zt(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Gt(e,t,n=!1){const o=e.children,l=t.children;if((0,r.cy)(o)&&(0,r.cy)(l))for(let r=0;r>1,e[n[i]]0&&(t[o]=n[l-1]),n[l]=o)}}l=n.length,a=n[l-1];while(l-- >0)n[l]=a,a=t[a];return n}function Yt(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Yt(t)}const Qt=e=>e.__isTeleport,Zt=e=>e&&(e.disabled||""===e.disabled),Jt=e=>"undefined"!==typeof SVGElement&&e instanceof SVGElement,en=e=>"function"===typeof MathMLElement&&e instanceof MathMLElement,tn=(e,t)=>{const n=e&&e.to;if((0,r.Kg)(n)){if(t){const e=t(n);return e}return null}return n},nn={name:"Teleport",__isTeleport:!0,process(e,t,n,o,r,l,a,i,s,u){const{mc:c,pc:d,pbc:p,o:{insert:f,querySelector:v,createText:h,createComment:m}}=u,g=Zt(t.props);let{shapeFlag:y,children:b,dynamicChildren:R}=t;if(null==e){const e=t.el=h(""),u=t.anchor=h("");f(e,n,o),f(u,n,o);const d=t.target=tn(t.props,v),p=t.targetAnchor=h("");d&&(f(p,d),"svg"===a||Jt(d)?a="svg":("mathml"===a||en(d))&&(a="mathml"));const m=(e,t)=>{16&y&&c(b,e,t,r,l,a,i,s)};g?m(n,u):d&&m(d,p)}else{t.el=e.el;const o=t.anchor=e.anchor,c=t.target=e.target,f=t.targetAnchor=e.targetAnchor,h=Zt(e.props),m=h?n:c,y=h?o:f;if("svg"===a||Jt(c)?a="svg":("mathml"===a||en(c))&&(a="mathml"),R?(p(e.dynamicChildren,R,m,r,l,a,i),Gt(e,t,!0)):s||d(e,t,m,y,r,l,a,i,!1),g)h?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):on(t,n,o,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=tn(t.props,v);e&&on(t,e,null,u,0)}else h&&on(t,c,f,u,1)}an(t)},remove(e,t,n,o,{um:r,o:{remove:l}},a){const{shapeFlag:i,children:s,anchor:u,targetAnchor:c,target:d,props:p}=e;if(d&&l(c),a&&l(u),16&i){const e=a||!Zt(p);for(let o=0;o0?fn||r.Oj:null,hn(),mn>0&&fn&&fn.push(e),e}function bn(e,t,n,o,r,l){return yn(_n(e,t,n,o,r,l,!0))}function Rn(e,t,n,o,r){return yn(Sn(e,t,n,o,r,!0))}function wn(e){return!!e&&!0===e.__v_isVNode}function En(e,t){return e.type===t.type&&e.key===t.key}const Cn="__vInternal",kn=({key:e})=>null!=e?e:null,xn=({ref:e,ref_key:t,ref_for:n})=>("number"===typeof e&&(e=""+e),null!=e?(0,r.Kg)(e)||(0,o.i9)(e)||(0,r.Tn)(e)?{i:L,r:e,k:t,f:!!n}:e:null);function _n(e,t=null,n=null,o=0,l=null,a=(e===sn?0:1),i=!1,s=!1){const u={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&kn(t),ref:t&&xn(t),scopeId:M,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:a,patchFlag:o,dynamicProps:l,dynamicChildren:null,appContext:null,ctx:L};return s?(Wn(u,n),128&a&&e.normalize(u)):n&&(u.shapeFlag|=(0,r.Kg)(n)?8:16),mn>0&&!i&&fn&&(u.patchFlag>0||6&a)&&32!==u.patchFlag&&fn.push(u),u}const Sn=Tn;function Tn(e,t=null,n=null,l=0,a=null,i=!1){if(e&&e!==U||(e=cn),wn(e)){const o=In(e,t,!0);return n&&Wn(o,n),mn>0&&!i&&fn&&(6&o.shapeFlag?fn[fn.indexOf(e)]=o:fn.push(o)),o.patchFlag|=-2,o}if(lo(e)&&(e=e.__vccOpts),t){t=On(t);let{class:e,style:n}=t;e&&!(0,r.Kg)(e)&&(t.class=(0,r.C4)(e)),(0,r.Gv)(n)&&((0,o.ju)(n)&&!(0,r.cy)(n)&&(n=(0,r.X$)({},n)),t.style=(0,r.Tr)(n))}const s=(0,r.Kg)(e)?1:Y(e)?128:Qt(e)?64:(0,r.Gv)(e)?4:(0,r.Tn)(e)?2:0;return _n(e,t,n,l,a,s,i,!0)}function On(e){return e?(0,o.ju)(e)||Cn in e?(0,r.X$)({},e):e:null}function In(e,t,n=!1){const{props:o,ref:l,patchFlag:a,children:i}=e,s=t?Dn(o||{},t):o,u={__v_isVNode:!0,__v_skip:!0,type:e.type,props:s,key:s&&kn(s),ref:t&&t.ref?n&&l?(0,r.cy)(l)?l.concat(xn(t)):[l,xn(t)]:xn(t):l,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==sn?-1===a?16:16|a:a,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&In(e.ssContent),ssFallback:e.ssFallback&&In(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return u}function An(e=" ",t=0){return Sn(un,null,e,t)}function Ln(e="",t=!1){return t?(vn(),Rn(cn,null,e)):Sn(cn,null,e)}function Mn(e){return null==e||"boolean"===typeof e?Sn(cn):(0,r.cy)(e)?Sn(sn,null,e.slice()):"object"===typeof e?Nn(e):Sn(un,null,String(e))}function Nn(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:In(e)}function Wn(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if((0,r.cy)(t))n=16;else if("object"===typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),Wn(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||Cn in t?3===o&&L&&(1===L.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=L}}else(0,r.Tn)(t)?(t={default:t,_ctx:L},n=32):(t=String(t),64&o?(n=16,t=[An(t)]):n=8);e.children=t,e.shapeFlag|=n}function Dn(...e){const t={};for(let n=0;nKn||L;let Vn,Xn;{const e=(0,r.We)(),t=(t,n)=>{let o;return(o=e[t])||(o=e[t]=[]),o.push(n),e=>{o.length>1?o.forEach((t=>t(e))):o[0](e)}};Vn=t("__VUE_INSTANCE_SETTERS__",(e=>Kn=e)),Xn=t("__VUE_SSR_SETTERS__",(e=>Yn=e))}const Un=e=>{const t=Kn;return Vn(e),e.scope.on(),()=>{e.scope.off(),Vn(t)}},Hn=()=>{Kn&&Kn.scope.off(),Vn(null)};function zn(e){return 4&e.vnode.shapeFlag}let Gn,qn,Yn=!1;function Qn(e,t=!1){t&&Xn(t);const{props:n,children:o}=e.vnode,r=zn(e);kt(e,n,r,t),$t(e,o);const l=r?Zn(e,t):void 0;return t&&Xn(!1),l}function Zn(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=(0,o.IG)(new Proxy(e.ctx,Ze));const{setup:a}=n;if(a){const n=e.setupContext=a.length>1?no(e):null,s=Un(e);(0,o.C4)();const u=l(a,e,0,[e.props,n]);if((0,o.bl)(),s(),(0,r.yL)(u)){if(u.then(Hn,Hn),t)return u.then((n=>{Jn(e,n,t)})).catch((t=>{i(t,e,0)}));e.asyncDep=u}else Jn(e,u,t)}else eo(e,t)}function Jn(e,t,n){(0,r.Tn)(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:(0,r.Gv)(t)&&(e.setupState=(0,o.Pr)(t)),eo(e,n)}function eo(e,t,n){const l=e.type;if(!e.render){if(!t&&Gn&&!l.render){const t=l.template||st(e).template;if(t){0;const{isCustomElement:n,compilerOptions:o}=e.appContext.config,{delimiters:a,compilerOptions:i}=l,s=(0,r.X$)((0,r.X$)({isCustomElement:n,delimiters:a},o),i);l.render=Gn(t,s)}}e.render=l.render||r.tE,qn&&qn(e)}{const t=Un(e);(0,o.C4)();try{rt(e)}finally{(0,o.bl)(),t()}}}function to(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return(0,o.u4)(e,"get","$attrs"),t[n]}}))}function no(e){const t=t=>{e.exposed=t||{}};return{get attrs(){return to(e)},slots:e.slots,emit:e.emit,expose:t}}function oo(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy((0,o.Pr)((0,o.IG)(e.exposed)),{get(t,n){return n in t?t[n]:n in Ye?Ye[n](e):void 0},has(e,t){return t in e||t in Ye}}))}function ro(e,t=!0){return(0,r.Tn)(e)?e.displayName||e.name:e.name||t&&e.__name}function lo(e){return(0,r.Tn)(e)&&"__vccOpts"in e}const ao=(e,t)=>(0,o.EW)(e,t,Yn);function io(e,t,n){const o=arguments.length;return 2===o?(0,r.Gv)(t)&&!(0,r.cy)(t)?wn(t)?Sn(e,null,[t]):Sn(e,t):Sn(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&wn(n)&&(n=[n]),Sn(e,t,n))}const so="3.4.19",uo=r.tE},5130:function(e,t,n){"use strict";n.d(t,{D$:function(){return Te},Ef:function(){return We},F:function(){return de},Jo:function(){return Re},XL:function(){return Ce},XX:function(){return Ne},aG:function(){return M},eB:function(){return v},jR:function(){return Ie},lH:function(){return we}});n(4114);var o=n(6768),r=n(4232),l=n(144); -/** -* @vue/runtime-dom v3.4.19 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/ -const a="http://www.w3.org/2000/svg",i="http://www.w3.org/1998/Math/MathML",s="undefined"!==typeof document?document:null,u=s&&s.createElement("template"),c={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r="svg"===t?s.createElementNS(a,e):"mathml"===t?s.createElementNS(i,e):s.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>s.createTextNode(e),createComment:e=>s.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>s.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,l){const a=n?n.previousSibling:t.lastChild;if(r&&(r===l||r.nextSibling)){while(1)if(t.insertBefore(r.cloneNode(!0),n),r===l||!(r=r.nextSibling))break}else{u.innerHTML="svg"===o?`${e}`:"mathml"===o?`${e}`:e;const r=u.content;if("svg"===o||"mathml"===o){const e=r.firstChild;while(e.firstChild)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[a?a.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},d="transition",p="animation",f=Symbol("_vtc"),v=(e,{slots:t})=>(0,o.h)(o.pR,b(e),t);v.displayName="Transition";const h={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},m=v.props=(0,r.X$)({},o.QP,h),g=(e,t=[])=>{(0,r.cy)(e)?e.forEach((e=>e(...t))):e&&e(...t)},y=e=>!!e&&((0,r.cy)(e)?e.some((e=>e.length>1)):e.length>1);function b(e){const t={};for(const r in e)r in h||(t[r]=e[r]);if(!1===e.css)return t;const{name:n="v",type:o,duration:l,enterFromClass:a=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:s=`${n}-enter-to`,appearFromClass:u=a,appearActiveClass:c=i,appearToClass:d=s,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,m=R(l),b=m&&m[0],w=m&&m[1],{onBeforeEnter:x,onEnter:S,onEnterCancelled:T,onLeave:O,onLeaveCancelled:A,onBeforeAppear:L=x,onAppear:M=S,onAppearCancelled:N=T}=t,W=(e,t,n)=>{C(e,t?d:s),C(e,t?c:i),n&&n()},D=(e,t)=>{e._isLeaving=!1,C(e,p),C(e,v),C(e,f),t&&t()},F=e=>(t,n)=>{const r=e?M:S,l=()=>W(t,e,n);g(r,[t,l]),k((()=>{C(t,e?u:a),E(t,e?d:s),y(r)||_(t,o,b,l)}))};return(0,r.X$)(t,{onBeforeEnter(e){g(x,[e]),E(e,a),E(e,i)},onBeforeAppear(e){g(L,[e]),E(e,u),E(e,c)},onEnter:F(!1),onAppear:F(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>D(e,t);E(e,p),I(),E(e,f),k((()=>{e._isLeaving&&(C(e,p),E(e,v),y(O)||_(e,o,w,n))})),g(O,[e,n])},onEnterCancelled(e){W(e,!1),g(T,[e])},onAppearCancelled(e){W(e,!0),g(N,[e])},onLeaveCancelled(e){D(e),g(A,[e])}})}function R(e){if(null==e)return null;if((0,r.Gv)(e))return[w(e.enter),w(e.leave)];{const t=w(e);return[t,t]}}function w(e){const t=(0,r.Ro)(e);return t}function E(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e[f]||(e[f]=new Set)).add(t)}function C(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const n=e[f];n&&(n.delete(t),n.size||(e[f]=void 0))}function k(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let x=0;function _(e,t,n,o){const r=e._endId=++x,l=()=>{r===e._endId&&o()};if(n)return setTimeout(l,n);const{type:a,timeout:i,propCount:s}=S(e,t);if(!a)return o();const u=a+"end";let c=0;const d=()=>{e.removeEventListener(u,p),l()},p=t=>{t.target===e&&++c>=s&&d()};setTimeout((()=>{c(n[e]||"").split(", "),r=o(`${d}Delay`),l=o(`${d}Duration`),a=T(r,l),i=o(`${p}Delay`),s=o(`${p}Duration`),u=T(i,s);let c=null,f=0,v=0;t===d?a>0&&(c=d,f=a,v=l.length):t===p?u>0&&(c=p,f=u,v=s.length):(f=Math.max(a,u),c=f>0?a>u?d:p:null,v=c?c===d?l.length:s.length:0);const h=c===d&&/\b(transform|all)(,|$)/.test(o(`${d}Property`).toString());return{type:c,timeout:f,propCount:v,hasTransform:h}}function T(e,t){while(e.lengthO(t)+O(e[n]))))}function O(e){return"auto"===e?0:1e3*Number(e.slice(0,-1).replace(",","."))}function I(){return document.body.offsetHeight}function A(e,t,n){const o=e[f];o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const L=Symbol("_vod"),M={beforeMount(e,{value:t},{transition:n}){e[L]="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):N(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){(!t!==!n||e.style.display!==e[L]&&t)&&(o?t?(o.beforeEnter(e),N(e,!0),o.enter(e)):o.leave(e,(()=>{N(e,!1)})):N(e,t))},beforeUnmount(e,{value:t}){N(e,t)}};function N(e,t){e.style.display=t?e[L]:"none"}const W=Symbol("");const D=/(^|;)\s*display\s*:/;function F(e,t,n){const o=e.style,l=(0,r.Kg)(n),a=o.display;let i=!1;if(n&&!l){if(t&&!(0,r.Kg)(t))for(const e in t)null==n[e]&&B(o,e,"");for(const e in n)"display"===e&&(i=!0),B(o,e,n[e])}else if(l){if(t!==n){const e=o[W];e&&(n+=";"+e),o.cssText=n,i=D.test(n)}}else t&&e.removeAttribute("style");L in e&&(e[L]=i?o.display:"",o.display=a)}const $=/\s*!important$/;function B(e,t,n){if((0,r.cy)(n))n.forEach((n=>B(e,t,n)));else if(null==n&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const o=j(e,t);$.test(n)?e.setProperty((0,r.Tg)(o),n.replace($,""),"important"):e[o]=n}}const P=["Webkit","Moz","ms"],K={};function j(e,t){const n=K[t];if(n)return n;let o=(0,r.PT)(t);if("filter"!==o&&o in e)return K[t]=o;o=(0,r.ZH)(o);for(let r=0;rZ||(J.then((()=>Z=0)),Z=Date.now());function te(e,t){const n=e=>{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();(0,o.qL)(ne(e,n.value),t,5,[e])};return n.value=e,n.attached=ee(),n}function ne(e,t){if((0,r.cy)(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>t=>!t._stopped&&e&&e(t)))}return t}const oe=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,re=(e,t,n,o,l,a,i,s,u)=>{const c="svg"===l;"class"===t?A(e,o,c):"style"===t?F(e,n,o):(0,r.Mp)(t)?(0,r.CP)(t)||q(e,t,n,o,i):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):le(e,t,o,c))?U(e,t,o,a,i,s,u):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),X(e,t,o,c))};function le(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&oe(t)&&(0,r.Tn)(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if("width"===t||"height"===t){const t=e.tagName;if("IMG"===t||"VIDEO"===t||"CANVAS"===t||"SOURCE"===t)return!1}return(!oe(t)||!(0,r.Kg)(n))&&t in e} -/*! #__NO_SIDE_EFFECTS__ */ -/*! #__NO_SIDE_EFFECTS__ */ -"undefined"!==typeof HTMLElement&&HTMLElement;const ae=new WeakMap,ie=new WeakMap,se=Symbol("_moveCb"),ue=Symbol("_enterCb"),ce={name:"TransitionGroup",props:(0,r.X$)({},m,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=(0,o.nI)(),r=(0,o.Gy)();let a,i;return(0,o.$u)((()=>{if(!a.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!he(a[0].el,n.vnode.el,t))return;a.forEach(pe),a.forEach(fe);const o=a.filter(ve);I(),o.forEach((e=>{const n=e.el,o=n.style;E(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n[se]=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n[se]=null,C(n,t))};n.addEventListener("transitionend",r)}))})),()=>{const s=(0,l.ux)(e),u=b(s);let c=s.tag||o.FK;a=i,i=t.default?(0,o.Df)(t.default()):[];for(let e=0;e{e.split(/\s+/).forEach((e=>e&&o.classList.remove(e)))})),n.split(/\s+/).forEach((e=>e&&o.classList.add(e))),o.style.display="none";const l=1===t.nodeType?t:t.parentNode;l.appendChild(o);const{hasTransform:a}=S(o);return l.removeChild(o),a}const me=e=>{const t=e.props["onUpdate:modelValue"]||!1;return(0,r.cy)(t)?e=>(0,r.DY)(t,e):t};function ge(e){e.target.composing=!0}function ye(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const be=Symbol("_assign"),Re={created(e,{modifiers:{lazy:t,trim:n,number:o}},l){e[be]=me(l);const a=o||l.props&&"number"===l.props.type;H(e,t?"change":"input",(t=>{if(t.target.composing)return;let o=e.value;n&&(o=o.trim()),a&&(o=(0,r.bB)(o)),e[be](o)})),n&&H(e,"change",(()=>{e.value=e.value.trim()})),t||(H(e,"compositionstart",ge),H(e,"compositionend",ye),H(e,"change",ye))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:l}},a){if(e[be]=me(a),e.composing)return;const i=l||"number"===e.type?(0,r.bB)(e.value):e.value,s=null==t?"":t;if(i!==s){if(document.activeElement===e&&"range"!==e.type){if(n)return;if(o&&e.value.trim()===s)return}e.value=s}}},we={deep:!0,created(e,t,n){e[be]=me(n),H(e,"change",(()=>{const t=e._modelValue,n=ke(e),o=e.checked,l=e[be];if((0,r.cy)(t)){const e=(0,r.u3)(t,n),a=-1!==e;if(o&&!a)l(t.concat(n));else if(!o&&a){const n=[...t];n.splice(e,1),l(n)}}else if((0,r.vM)(t)){const e=new Set(t);o?e.add(n):e.delete(n),l(e)}else l(xe(e,o))}))},mounted:Ee,beforeUpdate(e,t,n){e[be]=me(n),Ee(e,t,n)}};function Ee(e,{value:t,oldValue:n},o){e._modelValue=t,(0,r.cy)(t)?e.checked=(0,r.u3)(t,o.props.value)>-1:(0,r.vM)(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=(0,r.BX)(t,xe(e,!0)))}const Ce={created(e,{value:t},n){e.checked=(0,r.BX)(t,n.props.value),e[be]=me(n),H(e,"change",(()=>{e[be](ke(e))}))},beforeUpdate(e,{value:t,oldValue:n},o){e[be]=me(o),t!==n&&(e.checked=(0,r.BX)(t,o.props.value))}};function ke(e){return"_value"in e?e._value:e.value}function xe(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const _e=["ctrl","shift","alt","meta"],Se={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>_e.some((n=>e[`${n}Key`]&&!t.includes(n)))},Te=(e,t)=>{const n=e._withMods||(e._withMods={}),o=t.join(".");return n[o]||(n[o]=(n,...o)=>{for(let e=0;e{const n=e._withKeys||(e._withKeys={}),o=t.join(".");return n[o]||(n[o]=n=>{if(!("key"in n))return;const o=(0,r.Tg)(n.key);return t.some((e=>e===o||Oe[e]===o))?e(n):void 0})},Ae=(0,r.X$)({patchProp:re},c);let Le;function Me(){return Le||(Le=(0,o.K9)(Ae))}const Ne=(...e)=>{Me().render(...e)},We=(...e)=>{const t=Me().createApp(...e);const{mount:n}=t;return t.mount=e=>{const o=Fe(e);if(!o)return;const l=t._component;(0,r.Tn)(l)||l.render||l.template||(l.template=o.innerHTML),o.innerHTML="";const a=n(o,!1,De(o));return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),a},t};function De(e){return e instanceof SVGElement?"svg":"function"===typeof MathMLElement&&e instanceof MathMLElement?"mathml":void 0}function Fe(e){if((0,r.Kg)(e)){const t=document.querySelector(e);return t}return e}},4232:function(e,t,n){"use strict";n.d(t,{$3:function(){return f},$H:function(){return F},$P:function(){return g},BH:function(){return U},BX:function(){return oe},Bm:function(){return w},C4:function(){return Q},CE:function(){return h},CP:function(){return u},DY:function(){return $},Gv:function(){return E},J$:function(){return ee},Kg:function(){return R},MZ:function(){return r},Mp:function(){return s},NO:function(){return i},Oj:function(){return l},PT:function(){return L},Qd:function(){return S},Ro:function(){return K},SU:function(){return O},TF:function(){return d},Tg:function(){return N},Tn:function(){return b},Tr:function(){return H},We:function(){return V},X$:function(){return c},Y2:function(){return te},ZH:function(){return W},Zf:function(){return _},_B:function(){return Z},bB:function(){return P},cy:function(){return v},gd:function(){return y},pD:function(){return o},rU:function(){return D},tE:function(){return a},u3:function(){return re},vM:function(){return m},v_:function(){return le},yI:function(){return T},yL:function(){return C},yQ:function(){return B}});n(4114); -/** -* @vue/shared v3.4.19 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/ -function o(e,t){const n=new Set(e.split(","));return t?e=>n.has(e.toLowerCase()):e=>n.has(e)}const r={},l=[],a=()=>{},i=()=>!1,s=e=>111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),u=e=>e.startsWith("onUpdate:"),c=Object.assign,d=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},p=Object.prototype.hasOwnProperty,f=(e,t)=>p.call(e,t),v=Array.isArray,h=e=>"[object Map]"===x(e),m=e=>"[object Set]"===x(e),g=e=>"[object Date]"===x(e),y=e=>"[object RegExp]"===x(e),b=e=>"function"===typeof e,R=e=>"string"===typeof e,w=e=>"symbol"===typeof e,E=e=>null!==e&&"object"===typeof e,C=e=>(E(e)||b(e))&&b(e.then)&&b(e.catch),k=Object.prototype.toString,x=e=>k.call(e),_=e=>x(e).slice(8,-1),S=e=>"[object Object]"===x(e),T=e=>R(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,O=o(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),I=e=>{const t=Object.create(null);return n=>{const o=t[n];return o||(t[n]=e(n))}},A=/-(\w)/g,L=I((e=>e.replace(A,((e,t)=>t?t.toUpperCase():"")))),M=/\B([A-Z])/g,N=I((e=>e.replace(M,"-$1").toLowerCase())),W=I((e=>e.charAt(0).toUpperCase()+e.slice(1))),D=I((e=>{const t=e?`on${W(e)}`:"";return t})),F=(e,t)=>!Object.is(e,t),$=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},P=e=>{const t=parseFloat(e);return isNaN(t)?e:t},K=e=>{const t=R(e)?Number(e):NaN;return isNaN(t)?e:t};let j;const V=()=>j||(j="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof self?self:"undefined"!==typeof window?window:"undefined"!==typeof n.g?n.g:{});const X="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error",U=o(X);function H(e){if(v(e)){const t={};for(let n=0;n{if(e){const n=e.split(G);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function Q(e){let t="";if(R(e))t=e;else if(v(e))for(let n=0;noe(e,t)))}const le=e=>R(e)?e:null==e?"":v(e)||E(e)&&(e.toString===k||!b(e.toString))?JSON.stringify(e,ae,2):String(e),ae=(e,t)=>t&&t.__v_isRef?ae(e,t.value):h(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n],o)=>(e[ie(t,o)+" =>"]=n,e)),{})}:m(t)?{[`Set(${t.size})`]:[...t.values()].map((e=>ie(e)))}:w(t)?ie(t):!E(t)||v(t)||S(t)?t:String(t),ie=(e,t="")=>{var n;return w(e)?`Symbol(${null!=(n=e.description)?n:t})`:e}},6103:function(e,t,n){"use strict";n(4114),n(7467),n(4732),n(9577),n(6280),n(7913),n(7801),t.byteLength=c,t.toByteArray=p,t.fromByteArray=h;for(var o=[],r=[],l="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",i=0,s=a.length;i0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");-1===n&&(n=t);var o=n===t?0:4-n%4;return[n,o]}function c(e){var t=u(e),n=t[0],o=t[1];return 3*(n+o)/4-o}function d(e,t,n){return 3*(t+n)/4-n}function p(e){var t,n,o=u(e),a=o[0],i=o[1],s=new l(d(e,a,i)),c=0,p=i>0?a-4:a;for(n=0;n>16&255,s[c++]=t>>8&255,s[c++]=255&t;return 2===i&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,s[c++]=255&t),1===i&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,s[c++]=t>>8&255,s[c++]=255&t),s}function f(e){return o[e>>18&63]+o[e>>12&63]+o[e>>6&63]+o[63&e]}function v(e,t,n){for(var o,r=[],l=t;ls?s:i+a));return 1===r?(t=e[n-1],l.push(o[t>>2]+o[t<<4&63]+"==")):2===r&&(t=(e[n-2]<<8)+e[n-1],l.push(o[t>>10]+o[t>>4&63]+o[t<<2&63]+"=")),l.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},712:function(e,t,n){"use strict"; -/*! - * The buffer module from node.js, for the browser. - * - * @author Feross Aboukhadijeh - * @license MIT - */n(4114),n(7467),n(4732),n(9577),n(6280),n(7913),n(7801);var o=n(6103),r=n(9046),l="function"===typeof Symbol&&"function"===typeof Symbol["for"]?Symbol["for"]("nodejs.util.inspect.custom"):null;t.Buffer=u,t.SlowBuffer=R,t.INSPECT_MAX_BYTES=50;var a=2147483647;function i(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(n){return!1}}function s(e){if(e>a)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,u.prototype),t}function u(e,t,n){if("number"===typeof e){if("string"===typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return f(e)}return c(e,t,n)}function c(e,t,n){if("string"===typeof e)return v(e,t);if(ArrayBuffer.isView(e))return m(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(Q(e,ArrayBuffer)||e&&Q(e.buffer,ArrayBuffer))return g(e,t,n);if("undefined"!==typeof SharedArrayBuffer&&(Q(e,SharedArrayBuffer)||e&&Q(e.buffer,SharedArrayBuffer)))return g(e,t,n);if("number"===typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var o=e.valueOf&&e.valueOf();if(null!=o&&o!==e)return u.from(o,t,n);var r=y(e);if(r)return r;if("undefined"!==typeof Symbol&&null!=Symbol.toPrimitive&&"function"===typeof e[Symbol.toPrimitive])return u.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function d(e){if("number"!==typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function p(e,t,n){return d(e),e<=0?s(e):void 0!==t?"string"===typeof n?s(e).fill(t,n):s(e).fill(t):s(e)}function f(e){return d(e),s(e<0?0:0|b(e))}function v(e,t){if("string"===typeof t&&""!==t||(t="utf8"),!u.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|w(e,t),o=s(n),r=o.write(e,t);return r!==n&&(o=o.slice(0,r)),o}function h(e){for(var t=e.length<0?0:0|b(e.length),n=s(t),o=0;o=a)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a.toString(16)+" bytes");return 0|e}function R(e){return+e!=e&&(e=0),u.alloc(+e)}function w(e,t){if(u.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||Q(e,ArrayBuffer))return e.byteLength;if("string"!==typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var n=e.length,o=arguments.length>2&&!0===arguments[2];if(!o&&0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return H(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return q(e).length;default:if(r)return o?-1:H(e).length;t=(""+t).toLowerCase(),r=!0}}function E(e,t,n){var o=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,t>>>=0,n<=t)return"";e||(e="utf8");while(1)switch(e){case"hex":return F(this,t,n);case"utf8":case"utf-8":return L(this,t,n);case"ascii":return W(this,t,n);case"latin1":case"binary":return D(this,t,n);case"base64":return A(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $(this,t,n);default:if(o)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),o=!0}}function C(e,t,n){var o=e[t];e[t]=e[n],e[n]=o}function k(e,t,n,o,r){if(0===e.length)return-1;if("string"===typeof n?(o=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,Z(n)&&(n=r?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(r)return-1;n=e.length-1}else if(n<0){if(!r)return-1;n=0}if("string"===typeof t&&(t=u.from(t,o)),u.isBuffer(t))return 0===t.length?-1:x(e,t,n,o,r);if("number"===typeof t)return t&=255,"function"===typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):x(e,[t],n,o,r);throw new TypeError("val must be string, number or Buffer")}function x(e,t,n,o,r){var l,a=1,i=e.length,s=t.length;if(void 0!==o&&(o=String(o).toLowerCase(),"ucs2"===o||"ucs-2"===o||"utf16le"===o||"utf-16le"===o)){if(e.length<2||t.length<2)return-1;a=2,i/=2,s/=2,n/=2}function u(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(r){var c=-1;for(l=n;li&&(n=i-s),l=n;l>=0;l--){for(var d=!0,p=0;pr&&(o=r)):o=r;var l=t.length;o>l/2&&(o=l/2);for(var a=0;a239?4:u>223?3:u>191?2:1;if(r+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:l=e[r+1],128===(192&l)&&(s=(31&u)<<6|63&l,s>127&&(c=s));break;case 3:l=e[r+1],a=e[r+2],128===(192&l)&&128===(192&a)&&(s=(15&u)<<12|(63&l)<<6|63&a,s>2047&&(s<55296||s>57343)&&(c=s));break;case 4:l=e[r+1],a=e[r+2],i=e[r+3],128===(192&l)&&128===(192&a)&&128===(192&i)&&(s=(15&u)<<18|(63&l)<<12|(63&a)<<6|63&i,s>65535&&s<1114112&&(c=s))}null===c?(c=65533,d=1):c>65535&&(c-=65536,o.push(c>>>10&1023|55296),c=56320|1023&c),o.push(c),r+=d}return N(o)}t.kMaxLength=a,u.TYPED_ARRAY_SUPPORT=i(),u.TYPED_ARRAY_SUPPORT||"undefined"===typeof console||"function"!==typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}}),Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}}),u.poolSize=8192,u.from=function(e,t,n){return c(e,t,n)},Object.setPrototypeOf(u.prototype,Uint8Array.prototype),Object.setPrototypeOf(u,Uint8Array),u.alloc=function(e,t,n){return p(e,t,n)},u.allocUnsafe=function(e){return f(e)},u.allocUnsafeSlow=function(e){return f(e)},u.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==u.prototype},u.compare=function(e,t){if(Q(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),Q(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),!u.isBuffer(e)||!u.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,o=t.length,r=0,l=Math.min(n,o);ro.length?u.from(l).copy(o,r):Uint8Array.prototype.set.call(o,l,r);else{if(!u.isBuffer(l))throw new TypeError('"list" argument must be an Array of Buffers');l.copy(o,r)}r+=l.length}return o},u.byteLength=w,u.prototype._isBuffer=!0,u.prototype.swap16=function(){var e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tn&&(e+=" ... "),""},l&&(u.prototype[l]=u.prototype.inspect),u.prototype.compare=function(e,t,n,o,r){if(Q(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===o&&(o=0),void 0===r&&(r=this.length),t<0||n>e.length||o<0||r>this.length)throw new RangeError("out of range index");if(o>=r&&t>=n)return 0;if(o>=r)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,o>>>=0,r>>>=0,this===e)return 0;for(var l=r-o,a=n-t,i=Math.min(l,a),s=this.slice(o,r),c=e.slice(t,n),d=0;d>>=0,isFinite(n)?(n>>>=0,void 0===o&&(o="utf8")):(o=n,n=void 0)}var r=this.length-t;if((void 0===n||n>r)&&(n=r),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");for(var l=!1;;)switch(o){case"hex":return _(this,e,t,n);case"utf8":case"utf-8":return S(this,e,t,n);case"ascii":case"latin1":case"binary":return T(this,e,t,n);case"base64":return O(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,e,t,n);default:if(l)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),l=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var M=4096;function N(e){var t=e.length;if(t<=M)return String.fromCharCode.apply(String,e);var n="",o=0;while(oo)&&(n=o);for(var r="",l=t;ln)throw new RangeError("Trying to access beyond buffer length")}function P(e,t,n,o,r,l){if(!u.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>r||te.length)throw new RangeError("Index out of range")}function K(e,t,n,o,r,l){if(n+o>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function j(e,t,n,o,l){return t=+t,n>>>=0,l||K(e,t,n,4,34028234663852886e22,-34028234663852886e22),r.write(e,t,n,o,23,4),n+4}function V(e,t,n,o,l){return t=+t,n>>>=0,l||K(e,t,n,8,17976931348623157e292,-17976931348623157e292),r.write(e,t,n,o,52,8),n+8}u.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),t>>=0,t>>>=0,n||B(e,t,this.length);var o=this[e],r=1,l=0;while(++l>>=0,t>>>=0,n||B(e,t,this.length);var o=this[e+--t],r=1;while(t>0&&(r*=256))o+=this[e+--t]*r;return o},u.prototype.readUint8=u.prototype.readUInt8=function(e,t){return e>>>=0,t||B(e,1,this.length),this[e]},u.prototype.readUint16LE=u.prototype.readUInt16LE=function(e,t){return e>>>=0,t||B(e,2,this.length),this[e]|this[e+1]<<8},u.prototype.readUint16BE=u.prototype.readUInt16BE=function(e,t){return e>>>=0,t||B(e,2,this.length),this[e]<<8|this[e+1]},u.prototype.readUint32LE=u.prototype.readUInt32LE=function(e,t){return e>>>=0,t||B(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},u.prototype.readUint32BE=u.prototype.readUInt32BE=function(e,t){return e>>>=0,t||B(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},u.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||B(e,t,this.length);var o=this[e],r=1,l=0;while(++l=r&&(o-=Math.pow(2,8*t)),o},u.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||B(e,t,this.length);var o=t,r=1,l=this[e+--o];while(o>0&&(r*=256))l+=this[e+--o]*r;return r*=128,l>=r&&(l-=Math.pow(2,8*t)),l},u.prototype.readInt8=function(e,t){return e>>>=0,t||B(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},u.prototype.readInt16LE=function(e,t){e>>>=0,t||B(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt16BE=function(e,t){e>>>=0,t||B(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt32LE=function(e,t){return e>>>=0,t||B(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},u.prototype.readInt32BE=function(e,t){return e>>>=0,t||B(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},u.prototype.readFloatLE=function(e,t){return e>>>=0,t||B(e,4,this.length),r.read(this,e,!0,23,4)},u.prototype.readFloatBE=function(e,t){return e>>>=0,t||B(e,4,this.length),r.read(this,e,!1,23,4)},u.prototype.readDoubleLE=function(e,t){return e>>>=0,t||B(e,8,this.length),r.read(this,e,!0,52,8)},u.prototype.readDoubleBE=function(e,t){return e>>>=0,t||B(e,8,this.length),r.read(this,e,!1,52,8)},u.prototype.writeUintLE=u.prototype.writeUIntLE=function(e,t,n,o){if(e=+e,t>>>=0,n>>>=0,!o){var r=Math.pow(2,8*n)-1;P(this,e,t,n,r,0)}var l=1,a=0;this[t]=255&e;while(++a>>=0,n>>>=0,!o){var r=Math.pow(2,8*n)-1;P(this,e,t,n,r,0)}var l=n-1,a=1;this[t+l]=255&e;while(--l>=0&&(a*=256))this[t+l]=e/a&255;return t+n},u.prototype.writeUint8=u.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,1,255,0),this[t]=255&e,t+1},u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},u.prototype.writeIntLE=function(e,t,n,o){if(e=+e,t>>>=0,!o){var r=Math.pow(2,8*n-1);P(this,e,t,n,r-1,-r)}var l=0,a=1,i=0;this[t]=255&e;while(++l>0)-i&255;return t+n},u.prototype.writeIntBE=function(e,t,n,o){if(e=+e,t>>>=0,!o){var r=Math.pow(2,8*n-1);P(this,e,t,n,r-1,-r)}var l=n-1,a=1,i=0;this[t+l]=255&e;while(--l>=0&&(a*=256))e<0&&0===i&&0!==this[t+l+1]&&(i=1),this[t+l]=(e/a>>0)-i&255;return t+n},u.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},u.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},u.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},u.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},u.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||P(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},u.prototype.writeFloatLE=function(e,t,n){return j(this,e,t,!0,n)},u.prototype.writeFloatBE=function(e,t,n){return j(this,e,t,!1,n)},u.prototype.writeDoubleLE=function(e,t,n){return V(this,e,t,!0,n)},u.prototype.writeDoubleBE=function(e,t,n){return V(this,e,t,!1,n)},u.prototype.copy=function(e,t,n,o){if(!u.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),o||0===o||(o=this.length),t>=e.length&&(t=e.length),t||(t=0),o>0&&o=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"===typeof e)for(l=t;l55295&&n<57344){if(!r){if(n>56319){(t-=3)>-1&&l.push(239,191,189);continue}if(a+1===o){(t-=3)>-1&&l.push(239,191,189);continue}r=n;continue}if(n<56320){(t-=3)>-1&&l.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(t-=3)>-1&&l.push(239,191,189);if(r=null,n<128){if((t-=1)<0)break;l.push(n)}else if(n<2048){if((t-=2)<0)break;l.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;l.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;l.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return l}function z(e){for(var t=[],n=0;n>8,r=n%256,l.push(r),l.push(o)}return l}function q(e){return o.toByteArray(U(e))}function Y(e,t,n,o){for(var r=0;r=t.length||r>=e.length)break;t[r+n]=e[r]}return r}function Q(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function Z(e){return e!==e}var J=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var o=16*n,r=0;r<16;++r)t[o+r]=e[n]+e[r];return t}()},1576:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";var e=1e3,t=6e4,n=36e5,o="millisecond",r="second",l="minute",a="hour",i="day",s="week",u="month",c="quarter",d="year",p="date",f="Invalid Date",v=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,m={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||t[0])+"]"}},g=function(e,t,n){var o=String(e);return!o||o.length>=t?e:""+Array(t+1-o.length).join(n)+e},y={s:g,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),o=Math.floor(n/60),r=n%60;return(t<=0?"+":"-")+g(o,2,"0")+":"+g(r,2,"0")},m:function e(t,n){if(t.date()1)return e(a[0])}else{var i=t.name;R[i]=t,r=i}return!o&&r&&(b=r),r||!o&&b},k=function(e,t){if(E(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new _(n)},x=y;x.l=C,x.i=E,x.w=function(e,t){return k(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var _=function(){function m(e){this.$L=C(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[w]=!0}var g=m.prototype;return g.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(x.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var o=t.match(v);if(o){var r=o[2]-1||0,l=(o[7]||"0").substring(0,3);return n?new Date(Date.UTC(o[1],r,o[3]||1,o[4]||0,o[5]||0,o[6]||0,l)):new Date(o[1],r,o[3]||1,o[4]||0,o[5]||0,o[6]||0,l)}}return new Date(t)}(e),this.init()},g.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},g.$utils=function(){return x},g.isValid=function(){return!(this.$d.toString()===f)},g.isSame=function(e,t){var n=k(e);return this.startOf(t)<=n&&n<=this.endOf(t)},g.isAfter=function(e,t){return k(e)68?1900:2e3)},i=function(e){return function(t){this[e]=+t}},s=[/[+-]\d\d:?(\d\d)?|Z/,function(e){(this.zone||(this.zone={})).offset=function(e){if(!e)return 0;if("Z"===e)return 0;var t=e.match(/([+-]|\d\d)/g),n=60*t[1]+(+t[2]||0);return 0===n?0:"+"===t[0]?-n:n}(e)}],u=function(e){var t=l[e];return t&&(t.indexOf?t:t.s.concat(t.f))},c=function(e,t){var n,o=l.meridiem;if(o){for(var r=1;r<=24;r+=1)if(e.indexOf(o(r,0,t))>-1){n=r>12;break}}else n=e===(t?"pm":"PM");return n},d={A:[r,function(e){this.afternoon=c(e,!1)}],a:[r,function(e){this.afternoon=c(e,!0)}],S:[/\d/,function(e){this.milliseconds=100*+e}],SS:[n,function(e){this.milliseconds=10*+e}],SSS:[/\d{3}/,function(e){this.milliseconds=+e}],s:[o,i("seconds")],ss:[o,i("seconds")],m:[o,i("minutes")],mm:[o,i("minutes")],H:[o,i("hours")],h:[o,i("hours")],HH:[o,i("hours")],hh:[o,i("hours")],D:[o,i("day")],DD:[n,i("day")],Do:[r,function(e){var t=l.ordinal,n=e.match(/\d+/);if(this.day=n[0],t)for(var o=1;o<=31;o+=1)t(o).replace(/\[|\]/g,"")===e&&(this.day=o)}],M:[o,i("month")],MM:[n,i("month")],MMM:[r,function(e){var t=u("months"),n=(u("monthsShort")||t.map((function(e){return e.slice(0,3)}))).indexOf(e)+1;if(n<1)throw new Error;this.month=n%12||n}],MMMM:[r,function(e){var t=u("months").indexOf(e)+1;if(t<1)throw new Error;this.month=t%12||t}],Y:[/[+-]?\d+/,i("year")],YY:[n,function(e){this.year=a(e)}],YYYY:[/\d{4}/,i("year")],Z:s,ZZ:s};function p(n){var o,r;o=n,r=l&&l.formats;for(var a=(n=o.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,(function(t,n,o){var l=o&&o.toUpperCase();return n||r[o]||e[o]||r[l].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,n){return t||n.slice(1)}))}))).match(t),i=a.length,s=0;s-1)return new Date(("X"===t?1e3:1)*e);var o=p(t)(e),r=o.year,l=o.month,a=o.day,i=o.hours,s=o.minutes,u=o.seconds,c=o.milliseconds,d=o.zone,f=new Date,v=a||(r||l?1:f.getDate()),h=r||f.getFullYear(),m=0;r&&!l||(m=l>0?l-1:f.getMonth());var g=i||0,y=s||0,b=u||0,R=c||0;return d?new Date(Date.UTC(h,m,v,g,y,b,R+60*d.offset*1e3)):n?new Date(Date.UTC(h,m,v,g,y,b,R)):new Date(h,m,v,g,y,b,R)}catch(e){return new Date("")}}(t,i,o),this.init(),d&&!0!==d&&(this.$L=this.locale(d).$L),c&&t!=this.format(i)&&(this.$d=new Date("")),l={}}else if(i instanceof Array)for(var f=i.length,v=1;v<=f;v+=1){a[1]=i[v-1];var h=n.apply(this,a);if(h.isValid()){this.$d=h.$d,this.$L=h.$L,this.init();break}v===f&&(this.$d=new Date(""))}else r.call(this,e)}}}))},3569:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";return function(e,t,n){t.prototype.dayOfYear=function(e){var t=Math.round((n(this).startOf("day")-n(this).startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"day")}}}))},464:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";return function(e,t){t.prototype.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)}}}))},2899:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";return function(e,t){t.prototype.isSameOrBefore=function(e,t){return this.isSame(e,t)||this.isBefore(e,t)}}}))},2317:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";return function(e,t,n){var o=t.prototype,r=function(e){return e&&(e.indexOf?e:e.s)},l=function(e,t,n,o,l){var a=e.name?e:e.$locale(),i=r(a[t]),s=r(a[n]),u=i||s.map((function(e){return e.slice(0,o)}));if(!l)return u;var c=a.weekStart;return u.map((function(e,t){return u[(t+(c||0))%7]}))},a=function(){return n.Ls[n.locale()]},i=function(e,t){return e.formats[t]||function(e){return e.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,n){return t||n.slice(1)}))}(e.formats[t.toUpperCase()])},s=function(){var e=this;return{months:function(t){return t?t.format("MMMM"):l(e,"months")},monthsShort:function(t){return t?t.format("MMM"):l(e,"monthsShort","months",3)},firstDayOfWeek:function(){return e.$locale().weekStart||0},weekdays:function(t){return t?t.format("dddd"):l(e,"weekdays")},weekdaysMin:function(t){return t?t.format("dd"):l(e,"weekdaysMin","weekdays",2)},weekdaysShort:function(t){return t?t.format("ddd"):l(e,"weekdaysShort","weekdays",3)},longDateFormat:function(t){return i(e.$locale(),t)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};o.localeData=function(){return s.bind(this)()},n.localeData=function(){var e=a();return{firstDayOfWeek:function(){return e.weekStart||0},weekdays:function(){return n.weekdays()},weekdaysShort:function(){return n.weekdaysShort()},weekdaysMin:function(){return n.weekdaysMin()},months:function(){return n.months()},monthsShort:function(){return n.monthsShort()},longDateFormat:function(t){return i(e,t)},meridiem:e.meridiem,ordinal:e.ordinal}},n.months=function(){return l(a(),"months")},n.monthsShort=function(){return l(a(),"monthsShort","months",3)},n.weekdays=function(e){return l(a(),"weekdays",null,null,e)},n.weekdaysShort=function(e){return l(a(),"weekdaysShort","weekdays",3,e)},n.weekdaysMin=function(e){return l(a(),"weekdaysMin","weekdays",2,e)}}}))},7515:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";var e="week",t="year";return function(n,o,r){var l=o.prototype;l.week=function(n){if(void 0===n&&(n=null),null!==n)return this.add(7*(n-this.week()),"day");var o=this.$locale().yearStart||1;if(11===this.month()&&this.date()>25){var l=r(this).startOf(t).add(1,t).date(o),a=r(this).endOf(e);if(l.isBefore(a))return 1}var i=r(this).startOf(t).date(o).startOf(e).subtract(1,"millisecond"),s=this.diff(i,e,!0);return s<0?r(this).startOf("week").week():Math.ceil(s)},l.weeks=function(e){return void 0===e&&(e=null),this.week(e)}}}))},5806:function(e){!function(t,n){e.exports=n()}(0,(function(){"use strict";return function(e,t){t.prototype.weekYear=function(){var e=this.month(),t=this.week(),n=this.year();return 1===t&&11===e?n+1:0===e&&t>=52?n-1:n}}}))},6282:function(e,t,n){function o(e){if(e)return r(e)}function r(e){for(var t in o.prototype)e[t]=o.prototype[t];return e}n(4114),e.exports=o,o.prototype.on=o.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks[e]=this._callbacks[e]||[]).push(t),this},o.prototype.once=function(e,t){var n=this;function o(){n.off(e,o),t.apply(this,arguments)}return this._callbacks=this._callbacks||{},o.fn=t,this.on(e,o),this},o.prototype.off=o.prototype.removeListener=o.prototype.removeAllListeners=o.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,o=this._callbacks[e];if(!o)return this;if(1==arguments.length)return delete this._callbacks[e],this;for(var r=0;r */ -t.read=function(e,t,n,o,r){var l,a,i=8*r-o-1,s=(1<>1,c=-7,d=n?r-1:0,p=n?-1:1,f=e[t+d];for(d+=p,l=f&(1<<-c)-1,f>>=-c,c+=i;c>0;l=256*l+e[t+d],d+=p,c-=8);for(a=l&(1<<-c)-1,l>>=-c,c+=o;c>0;a=256*a+e[t+d],d+=p,c-=8);if(0===l)l=1-u;else{if(l===s)return a?NaN:1/0*(f?-1:1);a+=Math.pow(2,o),l-=u}return(f?-1:1)*a*Math.pow(2,l-o)},t.write=function(e,t,n,o,r,l){var a,i,s,u=8*l-r-1,c=(1<>1,p=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=o?0:l-1,v=o?1:-1,h=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(i=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(s=Math.pow(2,-a))<1&&(a--,s*=2),t+=a+d>=1?p/s:p*Math.pow(2,1-d),t*s>=2&&(a++,s/=2),a+d>=c?(i=0,a=c):a+d>=1?(i=(t*s-1)*Math.pow(2,r),a+=d):(i=t*Math.pow(2,d-1)*Math.pow(2,r),a=0));r>=8;e[n+f]=255&i,f+=v,i/=256,r-=8);for(a=a<0;e[n+f]=255&a,f+=v,a/=256,u-=8);e[n+f-v]|=128*h}},8179:function(e){"use strict";const t={svg:"http://www.w3.org/2000/svg",xlink:"http://www.w3.org/1999/xlink",xmlns:"http://www.w3.org/XML/1998/namespace"};e.exports=(e,n)=>["svg",{xmlns:t.svg,"xmlns:xlink":t.xlink,width:e,height:n,viewBox:"0 0 "+e+" "+n}]},5794:function(e,t,n){"use strict";const o=n(6177),r=n(9727),l=n(5274),a=n(1195),i=n(1256),s=n(8179);t.renderer=a,t.parse=o,t.stringify=r,t.traverse=l,t.tt=i,t.gen={svg:s},t.p=o,t.s=r,t.t=l},6177:function(e,t,n){"use strict";n(4114);const o=n(2926).parser;function r(e,t){const n=[],r=[];let l=n,a=!0,i=!0;t&&void 0!==t.strict&&(i=t.strict),void 0!==t&&void 0!==t.trim&&(a=t.trim);const s=o(i);return s.ontext=function(e){!1!==a&&""===e.trim()||l.push(e)},s.onopentag=function(e){const t=[e.name,e.attributes];r.push(l),l.push(t),l=t},s.onclosetag=function(){l=r.pop()},s.oncdata=function(e){!1!==a&&""===e.trim()||l.push("")},s.write(e).close(),n[0]}e.exports=r},1195:function(e,t,n){"use strict";const o=n(9727),r=e=>{const t="string"===typeof e?document.getElementById(e):e;return e=>{let n;try{n=o(e),t.innerHTML=n}catch(r){console.log(e)}}};e.exports=r},9727:function(e){"use strict";const t=e=>e&&"[object Object]"===Object.prototype.toString.call(e);function n(e){if(!(e>0))return e=>e;var t=" ".repeat(e);return e=>{if("string"!==typeof e)return e;const n=e.split("\n");return 1===n.length?t+e:n.map((e=>""===e.trim()?e:t+e)).join("\n")}}const o=e=>e.split("\n").filter((e=>""!==e.trim())).join("\n");function r(e,r){const l=r>0?"\n":"",a=n(r);function i(e){let n,r="",s=!0;const u=e.some(((e,o,a)=>{if(0===o)return n="<"+e,1===a.length;if(1===o){if(t(e))return Object.keys(e).map((t=>{let o=e[t];Array.isArray(o)&&(o=o.join(" ")),n+=" "+t+'="'+o+'"'})),2===a.length||void(n+=">");n+=">"}switch(typeof e){case"string":case"number":case"boolean":case"undefined":return void(r+=e+l)}s=!1,r+=i(e)}));return u?n+"/>"+l:s?n+o(r)+""+l:n+l+a(r)+""+l}return i(e)}e.exports=r},5274:function(e){"use strict";function t(){this._skip=!0}function n(){this._remove=!0}function o(e){this._name=e}function r(e){this._replace=e}function l(e,l){const a=function(){},i=l&&l.enter||a,s=l&&l.leave||a;function u(e,l){if(void 0===e)return;if(null===e)return;if(!0===e)return;if(!1===e)return;const a={attr:{},full:e},c={name:o,skip:t,remove:n,replace:r,_name:void 0,_skip:!1,_remove:!1,_replace:void 0};let d=!0;switch(Object.prototype.toString.call(e)){case"[object String]":case"[object Number]":return;case"[object Array]":if(e.some((function(e,t){return 0===t?(a.name=e,!1):1===t?("[object Object]"===Object.prototype.toString.call(e)&&(d=!1,a.attr=e),!0):void 0})),i.call(c,a,l),c._name&&(e[0]=c._name),c._replace)return c._replace;if(c._remove)return null;if(!c._skip){let t=0,n=e.length;while(t1||1===t&&d){const o=u(e[t],a);if(null===o){e.splice(t,1),n-=1;continue}o&&(e[t]=o)}t+=1}if(s.call(c,a,l),c._name&&(e[0]=c._name),c._replace)return c._replace;if(c._remove)return null}}}u(e,void 0)}e.exports=l},1256:function(e){"use strict";e.exports=(e,t,n)=>{let o={};if(e||t){const n=[e||0].concat(t?[t]:[]);o={transform:"translate("+n.join(",")+")"}}return n="object"===typeof n?n:{},Object.assign(o,n)}},452:function(e,t,n){ -/*! safe-buffer. MIT License. Feross Aboukhadijeh */ -var o=n(712),r=o.Buffer;function l(e,t){for(var n in e)t[n]=e[n]}function a(e,t,n){return r(e,t,n)}r.from&&r.alloc&&r.allocUnsafe&&r.allocUnsafeSlow?e.exports=o:(l(o,t),t.Buffer=a),a.prototype=Object.create(r.prototype),l(r,a),a.from=function(e,t,n){if("number"===typeof e)throw new TypeError("Argument must not be a number");return r(e,t,n)},a.alloc=function(e,t,n){if("number"!==typeof e)throw new TypeError("Argument must be a number");var o=r(e);return void 0!==t?"string"===typeof n?o.fill(t,n):o.fill(t):o.fill(0),o},a.allocUnsafe=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return r(e)},a.allocUnsafeSlow=function(e){if("number"!==typeof e)throw new TypeError("Argument must be a number");return o.SlowBuffer(e)}},2926:function(e,t,n){n(4114),function(e){e.parser=function(e,t){return new r(e,t)},e.SAXParser=r,e.SAXStream=c,e.createStream=u,e.MAX_BUFFER_LENGTH=65536;var t,o=["comment","sgmlDecl","textNode","tagName","doctype","procInstName","procInstBody","entity","attribName","attribValue","cdata","script"];function r(t,n){if(!(this instanceof r))return new r(t,n);var o=this;a(o),o.q=o.c="",o.bufferCheckPosition=e.MAX_BUFFER_LENGTH,o.opt=n||{},o.opt.lowercase=o.opt.lowercase||o.opt.lowercasetags,o.looseCase=o.opt.lowercase?"toLowerCase":"toUpperCase",o.tags=[],o.closed=o.closedRoot=o.sawRoot=!1,o.tag=o.error=null,o.strict=!!t,o.noscript=!(!t&&!o.opt.noscript),o.state=x.BEGIN,o.strictEntities=o.opt.strictEntities,o.ENTITIES=o.strictEntities?Object.create(e.XML_ENTITIES):Object.create(e.ENTITIES),o.attribList=[],o.opt.xmlns&&(o.ns=Object.create(h)),o.trackPosition=!1!==o.opt.position,o.trackPosition&&(o.position=o.line=o.column=0),S(o,"onready")}function l(t){for(var n=Math.max(e.MAX_BUFFER_LENGTH,10),r=0,l=0,a=o.length;ln)switch(o[l]){case"textNode":O(t);break;case"cdata":T(t,"oncdata",t.cdata),t.cdata="";break;case"script":T(t,"onscript",t.script),t.script="";break;default:A(t,"Max buffer length exceeded: "+o[l])}r=Math.max(r,i)}var s=e.MAX_BUFFER_LENGTH-r;t.bufferCheckPosition=s+t.position}function a(e){for(var t=0,n=o.length;t"===e||R(e)}function C(e,t){return e.test(t)}function k(e,t){return!C(e,t)}var x=0;for(var _ in e.STATE={BEGIN:x++,BEGIN_WHITESPACE:x++,TEXT:x++,TEXT_ENTITY:x++,OPEN_WAKA:x++,SGML_DECL:x++,SGML_DECL_QUOTED:x++,DOCTYPE:x++,DOCTYPE_QUOTED:x++,DOCTYPE_DTD:x++,DOCTYPE_DTD_QUOTED:x++,COMMENT_STARTING:x++,COMMENT:x++,COMMENT_ENDING:x++,COMMENT_ENDED:x++,CDATA:x++,CDATA_ENDING:x++,CDATA_ENDING_2:x++,PROC_INST:x++,PROC_INST_BODY:x++,PROC_INST_ENDING:x++,OPEN_TAG:x++,OPEN_TAG_SLASH:x++,ATTRIB:x++,ATTRIB_NAME:x++,ATTRIB_NAME_SAW_WHITE:x++,ATTRIB_VALUE:x++,ATTRIB_VALUE_QUOTED:x++,ATTRIB_VALUE_CLOSED:x++,ATTRIB_VALUE_UNQUOTED:x++,ATTRIB_VALUE_ENTITY_Q:x++,ATTRIB_VALUE_ENTITY_U:x++,CLOSE_TAG:x++,CLOSE_TAG_SAW_WHITE:x++,SCRIPT:x++,SCRIPT_ENDING:x++},e.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},e.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(e.ENTITIES).forEach((function(t){var n=e.ENTITIES[t],o="number"===typeof n?String.fromCharCode(n):n;e.ENTITIES[t]=o})),e.STATE)e.STATE[e.STATE[_]]=_;function S(e,t,n){e[t]&&e[t](n)}function T(e,t,n){e.textNode&&O(e),S(e,t,n)}function O(e){e.textNode=I(e.opt,e.textNode),e.textNode&&S(e,"ontext",e.textNode),e.textNode=""}function I(e,t){return e.trim&&(t=t.trim()),e.normalize&&(t=t.replace(/\s+/g," ")),t}function A(e,t){return O(e),e.trackPosition&&(t+="\nLine: "+e.line+"\nColumn: "+e.column+"\nChar: "+e.c),t=new Error(t),e.error=t,S(e,"onerror",t),e}function L(e){return e.sawRoot&&!e.closedRoot&&M(e,"Unclosed root tag"),e.state!==x.BEGIN&&e.state!==x.BEGIN_WHITESPACE&&e.state!==x.TEXT&&A(e,"Unexpected end"),O(e),e.c="",e.closed=!0,S(e,"onend"),r.call(e,e.strict,e.opt),e}function M(e,t){if("object"!==typeof e||!(e instanceof r))throw new Error("bad call to strictFail");e.strict&&A(e,t)}function N(e){e.strict||(e.tagName=e.tagName[e.looseCase]());var t=e.tags[e.tags.length-1]||e,n=e.tag={name:e.tagName,attributes:{}};e.opt.xmlns&&(n.ns=t.ns),e.attribList.length=0,T(e,"onopentagstart",n)}function W(e,t){var n=e.indexOf(":"),o=n<0?["",e]:e.split(":"),r=o[0],l=o[1];return t&&"xmlns"===e&&(r="xmlns",l=""),{prefix:r,local:l}}function D(e){if(e.strict||(e.attribName=e.attribName[e.looseCase]()),-1!==e.attribList.indexOf(e.attribName)||e.tag.attributes.hasOwnProperty(e.attribName))e.attribName=e.attribValue="";else{if(e.opt.xmlns){var t=W(e.attribName,!0),n=t.prefix,o=t.local;if("xmlns"===n)if("xml"===o&&e.attribValue!==f)M(e,"xml: prefix must be bound to "+f+"\nActual: "+e.attribValue);else if("xmlns"===o&&e.attribValue!==v)M(e,"xmlns: prefix must be bound to "+v+"\nActual: "+e.attribValue);else{var r=e.tag,l=e.tags[e.tags.length-1]||e;r.ns===l.ns&&(r.ns=Object.create(l.ns)),r.ns[o]=e.attribValue}e.attribList.push([e.attribName,e.attribValue])}else e.tag.attributes[e.attribName]=e.attribValue,T(e,"onattribute",{name:e.attribName,value:e.attribValue});e.attribName=e.attribValue=""}}function F(e,t){if(e.opt.xmlns){var n=e.tag,o=W(e.tagName);n.prefix=o.prefix,n.local=o.local,n.uri=n.ns[o.prefix]||"",n.prefix&&!n.uri&&(M(e,"Unbound namespace prefix: "+JSON.stringify(e.tagName)),n.uri=o.prefix);var r=e.tags[e.tags.length-1]||e;n.ns&&r.ns!==n.ns&&Object.keys(n.ns).forEach((function(t){T(e,"onopennamespace",{prefix:t,uri:n.ns[t]})}));for(var l=0,a=e.attribList.length;l",e.tagName="",void(e.state=x.SCRIPT);T(e,"onscript",e.script),e.script=""}var t=e.tags.length,n=e.tagName;e.strict||(n=n[e.looseCase]());var o=n;while(t--){var r=e.tags[t];if(r.name===o)break;M(e,"Unexpected close tag")}if(t<0)return M(e,"Unmatched closing tag: "+e.tagName),e.textNode+="",void(e.state=x.TEXT);e.tagName=n;var l=e.tags.length;while(l-- >t){var a=e.tag=e.tags.pop();e.tagName=e.tag.name,T(e,"onclosetag",e.tagName);var i={};for(var s in a.ns)i[s]=a.ns[s];var u=e.tags[e.tags.length-1]||e;e.opt.xmlns&&a.ns!==u.ns&&Object.keys(a.ns).forEach((function(t){var n=a.ns[t];T(e,"onclosenamespace",{prefix:t,uri:n})}))}0===t&&(e.closedRoot=!0),e.tagName=e.attribValue=e.attribName="",e.attribList.length=0,e.state=x.TEXT}function B(e){var t,n=e.entity,o=n.toLowerCase(),r="";return e.ENTITIES[n]?e.ENTITIES[n]:e.ENTITIES[o]?e.ENTITIES[o]:(n=o,"#"===n.charAt(0)&&("x"===n.charAt(1)?(n=n.slice(2),t=parseInt(n,16),r=t.toString(16)):(n=n.slice(1),t=parseInt(n,10),r=t.toString(10))),n=n.replace(/^0+/,""),isNaN(t)||r.toLowerCase()!==n?(M(e,"Invalid character entity"),"&"+e.entity+";"):String.fromCodePoint(t))}function P(e,t){"<"===t?(e.state=x.OPEN_WAKA,e.startTagPosition=e.position):R(t)||(M(e,"Non-whitespace before first tag."),e.textNode=t,e.state=x.TEXT)}function K(e,t){var n="";return t"===o?(T(t,"onsgmldeclaration",t.sgmlDecl),t.sgmlDecl="",t.state=x.TEXT):w(o)?(t.state=x.SGML_DECL_QUOTED,t.sgmlDecl+=o):t.sgmlDecl+=o;continue;case x.SGML_DECL_QUOTED:o===t.q&&(t.state=x.SGML_DECL,t.q=""),t.sgmlDecl+=o;continue;case x.DOCTYPE:">"===o?(t.state=x.TEXT,T(t,"ondoctype",t.doctype),t.doctype=!0):(t.doctype+=o,"["===o?t.state=x.DOCTYPE_DTD:w(o)&&(t.state=x.DOCTYPE_QUOTED,t.q=o));continue;case x.DOCTYPE_QUOTED:t.doctype+=o,o===t.q&&(t.q="",t.state=x.DOCTYPE);continue;case x.DOCTYPE_DTD:t.doctype+=o,"]"===o?t.state=x.DOCTYPE:w(o)&&(t.state=x.DOCTYPE_DTD_QUOTED,t.q=o);continue;case x.DOCTYPE_DTD_QUOTED:t.doctype+=o,o===t.q&&(t.state=x.DOCTYPE_DTD,t.q="");continue;case x.COMMENT:"-"===o?t.state=x.COMMENT_ENDING:t.comment+=o;continue;case x.COMMENT_ENDING:"-"===o?(t.state=x.COMMENT_ENDED,t.comment=I(t.opt,t.comment),t.comment&&T(t,"oncomment",t.comment),t.comment=""):(t.comment+="-"+o,t.state=x.COMMENT);continue;case x.COMMENT_ENDED:">"!==o?(M(t,"Malformed comment"),t.comment+="--"+o,t.state=x.COMMENT):t.state=x.TEXT;continue;case x.CDATA:"]"===o?t.state=x.CDATA_ENDING:t.cdata+=o;continue;case x.CDATA_ENDING:"]"===o?t.state=x.CDATA_ENDING_2:(t.cdata+="]"+o,t.state=x.CDATA);continue;case x.CDATA_ENDING_2:">"===o?(t.cdata&&T(t,"oncdata",t.cdata),T(t,"onclosecdata"),t.cdata="",t.state=x.TEXT):"]"===o?t.cdata+="]":(t.cdata+="]]"+o,t.state=x.CDATA);continue;case x.PROC_INST:"?"===o?t.state=x.PROC_INST_ENDING:R(o)?t.state=x.PROC_INST_BODY:t.procInstName+=o;continue;case x.PROC_INST_BODY:if(!t.procInstBody&&R(o))continue;"?"===o?t.state=x.PROC_INST_ENDING:t.procInstBody+=o;continue;case x.PROC_INST_ENDING:">"===o?(T(t,"onprocessinginstruction",{name:t.procInstName,body:t.procInstBody}),t.procInstName=t.procInstBody="",t.state=x.TEXT):(t.procInstBody+="?"+o,t.state=x.PROC_INST_BODY);continue;case x.OPEN_TAG:C(g,o)?t.tagName+=o:(N(t),">"===o?F(t):"/"===o?t.state=x.OPEN_TAG_SLASH:(R(o)||M(t,"Invalid character in tag name"),t.state=x.ATTRIB));continue;case x.OPEN_TAG_SLASH:">"===o?(F(t,!0),$(t)):(M(t,"Forward-slash in opening tag not followed by >"),t.state=x.ATTRIB);continue;case x.ATTRIB:if(R(o))continue;">"===o?F(t):"/"===o?t.state=x.OPEN_TAG_SLASH:C(m,o)?(t.attribName=o,t.attribValue="",t.state=x.ATTRIB_NAME):M(t,"Invalid attribute name");continue;case x.ATTRIB_NAME:"="===o?t.state=x.ATTRIB_VALUE:">"===o?(M(t,"Attribute without value"),t.attribValue=t.attribName,D(t),F(t)):R(o)?t.state=x.ATTRIB_NAME_SAW_WHITE:C(g,o)?t.attribName+=o:M(t,"Invalid attribute name");continue;case x.ATTRIB_NAME_SAW_WHITE:if("="===o)t.state=x.ATTRIB_VALUE;else{if(R(o))continue;M(t,"Attribute without value"),t.tag.attributes[t.attribName]="",t.attribValue="",T(t,"onattribute",{name:t.attribName,value:""}),t.attribName="",">"===o?F(t):C(m,o)?(t.attribName=o,t.state=x.ATTRIB_NAME):(M(t,"Invalid attribute name"),t.state=x.ATTRIB)}continue;case x.ATTRIB_VALUE:if(R(o))continue;w(o)?(t.q=o,t.state=x.ATTRIB_VALUE_QUOTED):(M(t,"Unquoted attribute value"),t.state=x.ATTRIB_VALUE_UNQUOTED,t.attribValue=o);continue;case x.ATTRIB_VALUE_QUOTED:if(o!==t.q){"&"===o?t.state=x.ATTRIB_VALUE_ENTITY_Q:t.attribValue+=o;continue}D(t),t.q="",t.state=x.ATTRIB_VALUE_CLOSED;continue;case x.ATTRIB_VALUE_CLOSED:R(o)?t.state=x.ATTRIB:">"===o?F(t):"/"===o?t.state=x.OPEN_TAG_SLASH:C(m,o)?(M(t,"No whitespace between attributes"),t.attribName=o,t.attribValue="",t.state=x.ATTRIB_NAME):M(t,"Invalid attribute name");continue;case x.ATTRIB_VALUE_UNQUOTED:if(!E(o)){"&"===o?t.state=x.ATTRIB_VALUE_ENTITY_U:t.attribValue+=o;continue}D(t),">"===o?F(t):t.state=x.ATTRIB;continue;case x.CLOSE_TAG:if(t.tagName)">"===o?$(t):C(g,o)?t.tagName+=o:t.script?(t.script+=""===o?$(t):M(t,"Invalid characters in closing tag");continue;case x.TEXT_ENTITY:case x.ATTRIB_VALUE_ENTITY_Q:case x.ATTRIB_VALUE_ENTITY_U:var i,s;switch(t.state){case x.TEXT_ENTITY:i=x.TEXT,s="textNode";break;case x.ATTRIB_VALUE_ENTITY_Q:i=x.ATTRIB_VALUE_QUOTED,s="attribValue";break;case x.ATTRIB_VALUE_ENTITY_U:i=x.ATTRIB_VALUE_UNQUOTED,s="attribValue";break}if(";"===o)if(t.opt.unparsedEntities){var u=B(t);t.entity="",t.state=i,t.write(u)}else t[s]+=B(t),t.entity="",t.state=i;else C(t.entity.length?b:y,o)?t.entity+=o:(M(t,"Invalid character in entity name"),t[s]+="&"+t.entity+o,t.entity="",t.state=i);continue;default:throw new Error(t,"Unknown state: "+t.state)}}return t.position>=t.bufferCheckPosition&&l(t),t} -/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */x=e.STATE,String.fromCodePoint||function(){var e=String.fromCharCode,t=Math.floor,n=function(){var n,o,r=16384,l=[],a=-1,i=arguments.length;if(!i)return"";var s="";while(++a1114111||t(u)!==u)throw RangeError("Invalid code point: "+u);u<=65535?l.push(u):(u-=65536,n=55296+(u>>10),o=u%1024+56320,l.push(n,o)),(a+1===i||l.length>r)&&(s+=e.apply(null,l),l.length=0)}return s};Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:n,configurable:!0,writable:!0}):String.fromCodePoint=n}()}(t)},2162:function(e,t,n){var o=n(6282);function r(){o.call(this)}r.prototype=new o,e.exports=r,r.Stream=r,r.prototype.pipe=function(e,t){var n=this;function o(t){e.writable&&!1===e.write(t)&&n.pause&&n.pause()}function r(){n.readable&&n.resume&&n.resume()}n.on("data",o),e.on("drain",r),e._isStdio||t&&!1===t.end||(n.on("end",a),n.on("close",i));var l=!1;function a(){l||(l=!0,e.end())}function i(){l||(l=!0,"function"===typeof e.destroy&&e.destroy())}function s(e){if(u(),!this.hasListeners("error"))throw e}function u(){n.off("data",o),e.off("drain",r),n.off("end",a),n.off("close",i),n.off("error",s),e.off("error",s),n.off("end",u),n.off("close",u),e.off("end",u),e.off("close",u)}return n.on("error",s),e.on("error",s),n.on("end",u),n.on("close",u),e.on("end",u),e.on("close",u),e.emit("pipe",n),e}},3128:function(e,t,n){"use strict";var o=n(452).Buffer,r=o.isEncoding||function(e){switch(e=""+e,e&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function l(e){if(!e)return"utf8";var t;while(1)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}function a(e){var t=l(e);if("string"!==typeof t&&(o.isEncoding===r||!r(e)))throw new Error("Unknown encoding: "+e);return t||e}function i(e){var t;switch(this.encoding=a(e),this.encoding){case"utf16le":this.text=v,this.end=h,t=4;break;case"utf8":this.fillLast=d,t=4;break;case"base64":this.text=m,this.end=g,t=3;break;default:return this.write=y,void(this.end=b)}this.lastNeed=0,this.lastTotal=0,this.lastChar=o.allocUnsafe(t)}function s(e){return e<=127?0:e>>5===6?2:e>>4===14?3:e>>3===30?4:e>>6===2?-1:-2}function u(e,t,n){var o=t.length-1;if(o=0?(r>0&&(e.lastNeed=r-1),r):--o=0?(r>0&&(e.lastNeed=r-2),r):--o=0?(r>0&&(2===r?r=0:e.lastNeed=r-3),r):0))}function c(e,t,n){if(128!==(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!==(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!==(192&t[2]))return e.lastNeed=2,"�"}}function d(e){var t=this.lastTotal-this.lastNeed,n=c(this,e,t);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function p(e,t){var n=u(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var o=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,o),e.toString("utf8",t,o)}function f(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+"�":t}function v(e,t){if((e.length-t)%2===0){var n=e.toString("utf16le",t);if(n){var o=n.charCodeAt(n.length-1);if(o>=55296&&o<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function h(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function m(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function g(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function y(e){return e.toString(this.encoding)}function b(e){return e&&e.length?this.write(e):""}t.I=i,i.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(t=this.fillLast(e),void 0===t)return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n{const n=e.__vccOpts||e;for(const[o,r]of t)n[o]=r;return n}},9306:function(e,t,n){"use strict";var o=n(4901),r=n(6823),l=TypeError;e.exports=function(e){if(o(e))return e;throw new l(r(e)+" is not a function")}},3506:function(e,t,n){"use strict";var o=n(3925),r=String,l=TypeError;e.exports=function(e){if(o(e))return e;throw new l("Can't set "+r(e)+" as a prototype")}},679:function(e,t,n){"use strict";var o=n(1625),r=TypeError;e.exports=function(e,t){if(o(t,e))return e;throw new r("Incorrect invocation")}},8551:function(e,t,n){"use strict";var o=n(34),r=String,l=TypeError;e.exports=function(e){if(o(e))return e;throw new l(r(e)+" is not an object")}},7811:function(e){"use strict";e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},7394:function(e,t,n){"use strict";var o=n(6706),r=n(4576),l=TypeError;e.exports=o(ArrayBuffer.prototype,"byteLength","get")||function(e){if("ArrayBuffer"!==r(e))throw new l("ArrayBuffer expected");return e.byteLength}},3238:function(e,t,n){"use strict";var o=n(9504),r=n(7394),l=o(ArrayBuffer.prototype.slice);e.exports=function(e){if(0!==r(e))return!1;try{return l(e,0,0),!1}catch(t){return!0}}},5636:function(e,t,n){"use strict";var o=n(4475),r=n(9504),l=n(6706),a=n(7696),i=n(3238),s=n(7394),u=n(4483),c=n(1548),d=o.structuredClone,p=o.ArrayBuffer,f=o.DataView,v=o.TypeError,h=Math.min,m=p.prototype,g=f.prototype,y=r(m.slice),b=l(m,"resizable","get"),R=l(m,"maxByteLength","get"),w=r(g.getInt8),E=r(g.setInt8);e.exports=(c||u)&&function(e,t,n){var o,r=s(e),l=void 0===t?r:a(t),m=!b||!b(e);if(i(e))throw new v("ArrayBuffer is detached");if(c&&(e=d(e,{transfer:[e]}),r===l&&(n||m)))return e;if(r>=l&&(!n||m))o=y(e,0,l);else{var g=n&&!m&&R?{maxByteLength:R(e)}:void 0;o=new p(l,g);for(var C=new f(e),k=new f(o),x=h(l,r),_=0;_2?n:o(t),a=new e(l);while(l>r)a[r]=t[r++];return a}},9617:function(e,t,n){"use strict";var o=n(5397),r=n(5610),l=n(6198),a=function(e){return function(t,n,a){var i=o(t),s=l(i);if(0===s)return!e&&-1;var u,c=r(a,s);if(e&&n!==n){while(s>c)if(u=i[c++],u!==u)return!0}else for(;s>c;c++)if((e||c in i)&&i[c]===n)return e||c||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},4527:function(e,t,n){"use strict";var o=n(3724),r=n(4376),l=TypeError,a=Object.getOwnPropertyDescriptor,i=o&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(e){return e instanceof TypeError}}();e.exports=i?function(e,t){if(r(e)&&!a(e,"length").writable)throw new l("Cannot set read only .length");return e.length=t}:function(e,t){return e.length=t}},7628:function(e,t,n){"use strict";var o=n(6198);e.exports=function(e,t){for(var n=o(e),r=new t(n),l=0;l=i||u<0)throw new l("Incorrect index");for(var c=new t(i),d=0;dn)throw t("Maximum allowed index exceeded");return e}},5002:function(e){"use strict";e.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},7290:function(e,t,n){"use strict";var o=n(516),r=n(9088);e.exports=!o&&!r&&"object"==typeof window&&"object"==typeof document},516:function(e){"use strict";e.exports="object"==typeof Deno&&Deno&&"object"==typeof Deno.version},9088:function(e,t,n){"use strict";var o=n(4475),r=n(4576);e.exports="process"===r(o.process)},9392:function(e){"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},7388:function(e,t,n){"use strict";var o,r,l=n(4475),a=n(9392),i=l.process,s=l.Deno,u=i&&i.versions||s&&s.version,c=u&&u.v8;c&&(o=c.split("."),r=o[0]>0&&o[0]<4?1:+(o[0]+o[1])),!r&&a&&(o=a.match(/Edge\/(\d+)/),(!o||o[1]>=74)&&(o=a.match(/Chrome\/(\d+)/),o&&(r=+o[1]))),e.exports=r},8727:function(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},6193:function(e,t,n){"use strict";var o=n(9504),r=Error,l=o("".replace),a=function(e){return String(new r(e).stack)}("zxcasd"),i=/\n\s*at [^:]*:[^\n]*/,s=i.test(a);e.exports=function(e,t){if(s&&"string"==typeof e&&!r.prepareStackTrace)while(t--)e=l(e,i,"");return e}},6518:function(e,t,n){"use strict";var o=n(4475),r=n(7347).f,l=n(6699),a=n(6840),i=n(9433),s=n(7740),u=n(2796);e.exports=function(e,t){var n,c,d,p,f,v,h=e.target,m=e.global,g=e.stat;if(c=m?o:g?o[h]||i(h,{}):o[h]&&o[h].prototype,c)for(d in t){if(f=t[d],e.dontCallGetSet?(v=r(c,d),p=v&&v.value):p=c[d],n=u(m?d:h+(g?".":"#")+d,e.forced),!n&&void 0!==p){if(typeof f==typeof p)continue;s(f,p)}(e.sham||p&&p.sham)&&l(f,"sham",!0),a(c,d,f,e)}}},9039:function(e){"use strict";e.exports=function(e){try{return!!e()}catch(t){return!0}}},616:function(e,t,n){"use strict";var o=n(9039);e.exports=!o((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},9565:function(e,t,n){"use strict";var o=n(616),r=Function.prototype.call;e.exports=o?r.bind(r):function(){return r.apply(r,arguments)}},350:function(e,t,n){"use strict";var o=n(3724),r=n(9297),l=Function.prototype,a=o&&Object.getOwnPropertyDescriptor,i=r(l,"name"),s=i&&"something"===function(){}.name,u=i&&(!o||o&&a(l,"name").configurable);e.exports={EXISTS:i,PROPER:s,CONFIGURABLE:u}},6706:function(e,t,n){"use strict";var o=n(9504),r=n(9306);e.exports=function(e,t,n){try{return o(r(Object.getOwnPropertyDescriptor(e,t)[n]))}catch(l){}}},9504:function(e,t,n){"use strict";var o=n(616),r=Function.prototype,l=r.call,a=o&&r.bind.bind(l,l);e.exports=o?a:function(e){return function(){return l.apply(e,arguments)}}},7751:function(e,t,n){"use strict";var o=n(4475),r=n(4901),l=function(e){return r(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?l(o[e]):o[e]&&o[e][t]}},5966:function(e,t,n){"use strict";var o=n(9306),r=n(4117);e.exports=function(e,t){var n=e[t];return r(n)?void 0:o(n)}},4475:function(e,t,n){"use strict";var o=function(e){return e&&e.Math===Math&&e};e.exports=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof n.g&&n.g)||o("object"==typeof this&&this)||function(){return this}()||Function("return this")()},9297:function(e,t,n){"use strict";var o=n(9504),r=n(8981),l=o({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return l(r(e),t)}},421:function(e){"use strict";e.exports={}},5917:function(e,t,n){"use strict";var o=n(3724),r=n(9039),l=n(4055);e.exports=!o&&!r((function(){return 7!==Object.defineProperty(l("div"),"a",{get:function(){return 7}}).a}))},7055:function(e,t,n){"use strict";var o=n(9504),r=n(9039),l=n(4576),a=Object,i=o("".split);e.exports=r((function(){return!a("z").propertyIsEnumerable(0)}))?function(e){return"String"===l(e)?i(e,""):a(e)}:a},3167:function(e,t,n){"use strict";var o=n(4901),r=n(34),l=n(2967);e.exports=function(e,t,n){var a,i;return l&&o(a=t.constructor)&&a!==n&&r(i=a.prototype)&&i!==n.prototype&&l(e,i),e}},3706:function(e,t,n){"use strict";var o=n(9504),r=n(4901),l=n(7629),a=o(Function.toString);r(l.inspectSource)||(l.inspectSource=function(e){return a(e)}),e.exports=l.inspectSource},1181:function(e,t,n){"use strict";var o,r,l,a=n(8622),i=n(4475),s=n(34),u=n(6699),c=n(9297),d=n(7629),p=n(6119),f=n(421),v="Object already initialized",h=i.TypeError,m=i.WeakMap,g=function(e){return l(e)?r(e):o(e,{})},y=function(e){return function(t){var n;if(!s(t)||(n=r(t)).type!==e)throw new h("Incompatible receiver, "+e+" required");return n}};if(a||d.state){var b=d.state||(d.state=new m);b.get=b.get,b.has=b.has,b.set=b.set,o=function(e,t){if(b.has(e))throw new h(v);return t.facade=e,b.set(e,t),t},r=function(e){return b.get(e)||{}},l=function(e){return b.has(e)}}else{var R=p("state");f[R]=!0,o=function(e,t){if(c(e,R))throw new h(v);return t.facade=e,u(e,R,t),t},r=function(e){return c(e,R)?e[R]:{}},l=function(e){return c(e,R)}}e.exports={set:o,get:r,has:l,enforce:g,getterFor:y}},4376:function(e,t,n){"use strict";var o=n(4576);e.exports=Array.isArray||function(e){return"Array"===o(e)}},1108:function(e,t,n){"use strict";var o=n(6955);e.exports=function(e){var t=o(e);return"BigInt64Array"===t||"BigUint64Array"===t}},4901:function(e){"use strict";var t="object"==typeof document&&document.all;e.exports="undefined"==typeof t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},2796:function(e,t,n){"use strict";var o=n(9039),r=n(4901),l=/#|\.prototype\./,a=function(e,t){var n=s[i(e)];return n===c||n!==u&&(r(t)?o(t):!!t)},i=a.normalize=function(e){return String(e).replace(l,".").toLowerCase()},s=a.data={},u=a.NATIVE="N",c=a.POLYFILL="P";e.exports=a},4117:function(e){"use strict";e.exports=function(e){return null===e||void 0===e}},34:function(e,t,n){"use strict";var o=n(4901);e.exports=function(e){return"object"==typeof e?null!==e:o(e)}},3925:function(e,t,n){"use strict";var o=n(34);e.exports=function(e){return o(e)||null===e}},6395:function(e){"use strict";e.exports=!1},757:function(e,t,n){"use strict";var o=n(7751),r=n(4901),l=n(1625),a=n(7040),i=Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=o("Symbol");return r(t)&&l(t.prototype,i(e))}},6198:function(e,t,n){"use strict";var o=n(8014);e.exports=function(e){return o(e.length)}},283:function(e,t,n){"use strict";var o=n(9504),r=n(9039),l=n(4901),a=n(9297),i=n(3724),s=n(350).CONFIGURABLE,u=n(3706),c=n(1181),d=c.enforce,p=c.get,f=String,v=Object.defineProperty,h=o("".slice),m=o("".replace),g=o([].join),y=i&&!r((function(){return 8!==v((function(){}),"length",{value:8}).length})),b=String(String).split("String"),R=e.exports=function(e,t,n){"Symbol("===h(f(t),0,7)&&(t="["+m(f(t),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!a(e,"name")||s&&e.name!==t)&&(i?v(e,"name",{value:t,configurable:!0}):e.name=t),y&&n&&a(n,"arity")&&e.length!==n.arity&&v(e,"length",{value:n.arity});try{n&&a(n,"constructor")&&n.constructor?i&&v(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(r){}var o=d(e);return a(o,"source")||(o.source=g(b,"string"==typeof t?t:"")),e};Function.prototype.toString=R((function(){return l(this)&&p(this).source||u(this)}),"toString")},741:function(e){"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var o=+e;return(o>0?n:t)(o)}},2603:function(e,t,n){"use strict";var o=n(655);e.exports=function(e,t){return void 0===e?arguments.length<2?"":t:o(e)}},4913:function(e,t,n){"use strict";var o=n(3724),r=n(5917),l=n(8686),a=n(8551),i=n(6969),s=TypeError,u=Object.defineProperty,c=Object.getOwnPropertyDescriptor,d="enumerable",p="configurable",f="writable";t.f=o?l?function(e,t,n){if(a(e),t=i(t),a(n),"function"===typeof e&&"prototype"===t&&"value"in n&&f in n&&!n[f]){var o=c(e,t);o&&o[f]&&(e[t]=n.value,n={configurable:p in n?n[p]:o[p],enumerable:d in n?n[d]:o[d],writable:!1})}return u(e,t,n)}:u:function(e,t,n){if(a(e),t=i(t),a(n),r)try{return u(e,t,n)}catch(o){}if("get"in n||"set"in n)throw new s("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},7347:function(e,t,n){"use strict";var o=n(3724),r=n(9565),l=n(8773),a=n(6980),i=n(5397),s=n(6969),u=n(9297),c=n(5917),d=Object.getOwnPropertyDescriptor;t.f=o?d:function(e,t){if(e=i(e),t=s(t),c)try{return d(e,t)}catch(n){}if(u(e,t))return a(!r(l.f,e,t),e[t])}},8480:function(e,t,n){"use strict";var o=n(1828),r=n(8727),l=r.concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return o(e,l)}},3717:function(e,t){"use strict";t.f=Object.getOwnPropertySymbols},2787:function(e,t,n){"use strict";var o=n(9297),r=n(4901),l=n(8981),a=n(6119),i=n(2211),s=a("IE_PROTO"),u=Object,c=u.prototype;e.exports=i?u.getPrototypeOf:function(e){var t=l(e);if(o(t,s))return t[s];var n=t.constructor;return r(n)&&t instanceof n?n.prototype:t instanceof u?c:null}},1625:function(e,t,n){"use strict";var o=n(9504);e.exports=o({}.isPrototypeOf)},1828:function(e,t,n){"use strict";var o=n(9504),r=n(9297),l=n(5397),a=n(9617).indexOf,i=n(421),s=o([].push);e.exports=function(e,t){var n,o=l(e),u=0,c=[];for(n in o)!r(i,n)&&r(o,n)&&s(c,n);while(t.length>u)r(o,n=t[u++])&&(~a(c,n)||s(c,n));return c}},8773:function(e,t){"use strict";var n={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,r=o&&!n.call({1:2},1);t.f=r?function(e){var t=o(this,e);return!!t&&t.enumerable}:n},2967:function(e,t,n){"use strict";var o=n(6706),r=n(8551),l=n(3506);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{e=o(Object.prototype,"__proto__","set"),e(n,[]),t=n instanceof Array}catch(a){}return function(n,o){return r(n),l(o),t?e(n,o):n.__proto__=o,n}}():void 0)},4270:function(e,t,n){"use strict";var o=n(9565),r=n(4901),l=n(34),a=TypeError;e.exports=function(e,t){var n,i;if("string"===t&&r(n=e.toString)&&!l(i=o(n,e)))return i;if(r(n=e.valueOf)&&!l(i=o(n,e)))return i;if("string"!==t&&r(n=e.toString)&&!l(i=o(n,e)))return i;throw new a("Can't convert object to primitive value")}},5031:function(e,t,n){"use strict";var o=n(7751),r=n(9504),l=n(8480),a=n(3717),i=n(8551),s=r([].concat);e.exports=o("Reflect","ownKeys")||function(e){var t=l.f(i(e)),n=a.f;return n?s(t,n(e)):t}},7750:function(e,t,n){"use strict";var o=n(4117),r=TypeError;e.exports=function(e){if(o(e))throw new r("Can't call method on "+e);return e}},6119:function(e,t,n){"use strict";var o=n(5745),r=n(3392),l=o("keys");e.exports=function(e){return l[e]||(l[e]=r(e))}},7629:function(e,t,n){"use strict";var o=n(6395),r=n(4475),l=n(9433),a="__core-js_shared__",i=e.exports=r[a]||l(a,{});(i.versions||(i.versions=[])).push({version:"3.36.0",mode:o?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.36.0/LICENSE",source:"https://github.com/zloirock/core-js"})},5745:function(e,t,n){"use strict";var o=n(7629);e.exports=function(e,t){return o[e]||(o[e]=t||{})}},1548:function(e,t,n){"use strict";var o=n(4475),r=n(9039),l=n(7388),a=n(7290),i=n(516),s=n(9088),u=o.structuredClone;e.exports=!!u&&!r((function(){if(i&&l>92||s&&l>94||a&&l>97)return!1;var e=new ArrayBuffer(8),t=u(e,{transfer:[e]});return 0!==e.byteLength||8!==t.byteLength}))},4495:function(e,t,n){"use strict";var o=n(7388),r=n(9039),l=n(4475),a=l.String;e.exports=!!Object.getOwnPropertySymbols&&!r((function(){var e=Symbol("symbol detection");return!a(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},5610:function(e,t,n){"use strict";var o=n(1291),r=Math.max,l=Math.min;e.exports=function(e,t){var n=o(e);return n<0?r(n+t,0):l(n,t)}},5854:function(e,t,n){"use strict";var o=n(2777),r=TypeError;e.exports=function(e){var t=o(e,"number");if("number"==typeof t)throw new r("Can't convert number to bigint");return BigInt(t)}},7696:function(e,t,n){"use strict";var o=n(1291),r=n(8014),l=RangeError;e.exports=function(e){if(void 0===e)return 0;var t=o(e),n=r(t);if(t!==n)throw new l("Wrong length or index");return n}},5397:function(e,t,n){"use strict";var o=n(7055),r=n(7750);e.exports=function(e){return o(r(e))}},1291:function(e,t,n){"use strict";var o=n(741);e.exports=function(e){var t=+e;return t!==t||0===t?0:o(t)}},8014:function(e,t,n){"use strict";var o=n(1291),r=Math.min;e.exports=function(e){var t=o(e);return t>0?r(t,9007199254740991):0}},8981:function(e,t,n){"use strict";var o=n(7750),r=Object;e.exports=function(e){return r(o(e))}},2777:function(e,t,n){"use strict";var o=n(9565),r=n(34),l=n(757),a=n(5966),i=n(4270),s=n(8227),u=TypeError,c=s("toPrimitive");e.exports=function(e,t){if(!r(e)||l(e))return e;var n,s=a(e,c);if(s){if(void 0===t&&(t="default"),n=o(s,e,t),!r(n)||l(n))return n;throw new u("Can't convert object to primitive value")}return void 0===t&&(t="number"),i(e,t)}},6969:function(e,t,n){"use strict";var o=n(2777),r=n(757);e.exports=function(e){var t=o(e,"string");return r(t)?t:t+""}},2140:function(e,t,n){"use strict";var o=n(8227),r=o("toStringTag"),l={};l[r]="z",e.exports="[object z]"===String(l)},655:function(e,t,n){"use strict";var o=n(6955),r=String;e.exports=function(e){if("Symbol"===o(e))throw new TypeError("Cannot convert a Symbol value to a string");return r(e)}},9714:function(e,t,n){"use strict";var o=n(9088);e.exports=function(e){try{if(o)return Function('return require("'+e+'")')()}catch(t){}}},6823:function(e){"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(n){return"Object"}}},3392:function(e,t,n){"use strict";var o=n(9504),r=0,l=Math.random(),a=o(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++r+l,36)}},7040:function(e,t,n){"use strict";var o=n(4495);e.exports=o&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8686:function(e,t,n){"use strict";var o=n(3724),r=n(9039);e.exports=o&&r((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},2812:function(e){"use strict";var t=TypeError;e.exports=function(e,n){if(e",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},r="undefined"!=typeof navigator&&/Mac/.test(navigator.platform),l="undefined"!=typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),a=0;a<10;a++)n[48+a]=n[96+a]=String(a);for(a=1;a<=24;a++)n[a+111]="F"+a;for(a=65;a<=90;a++)n[a]=String.fromCharCode(a+32),o[a]=String.fromCharCode(a);for(var i in n)o.hasOwnProperty(i)||(o[i]=n[i]);function s(e){var t=r&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||l&&e.shiftKey&&e.key&&1==e.key.length||"Unidentified"==e.key,a=!t&&e.key||(e.shiftKey?o:n)[e.keyCode]||e.key||"Unidentified";return"Esc"==a&&(a="Escape"),"Del"==a&&(a="Delete"),"Left"==a&&(a="ArrowLeft"),"Up"==a&&(a="ArrowUp"),"Right"==a&&(a="ArrowRight"),"Down"==a&&(a="ArrowDown"),a}t.base=n,t.keyName=s,t.shift=o},153:function(e,t,n){"use strict";n.d(t,{uA:function(){return h},D_:function(){return _},oc:function(){return m},C8:function(){return g},Tn:function(){return y},un:function(){return w},Kg:function(){return b},lQ:function(){return R},V7:function(){return O},x_:function(){return E},rd:function(){return A},Uo:function(){return S},k3:function(){return I},TO:function(){return L}});n(4114);var o=n(144),r=n(6768);var l,a=Object.defineProperty,i=Object.defineProperties,s=Object.getOwnPropertyDescriptors,u=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,d=Object.prototype.propertyIsEnumerable,p=(e,t,n)=>t in e?a(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,f=(e,t)=>{for(var n in t||(t={}))c.call(t,n)&&p(e,n,t[n]);if(u)for(var n of u(t))d.call(t,n)&&p(e,n,t[n]);return e},v=(e,t)=>i(e,s(t));function h(e,t){var n;const l=(0,o.IJ)();return(0,r.nT)((()=>{l.value=e()}),v(f({},t),{flush:null!=(n=null==t?void 0:t.flush)?n:"sync"})),(0,o.tB)(l)}const m="undefined"!==typeof window,g=e=>"undefined"!==typeof e,y=(Object.prototype.toString,e=>"function"===typeof e),b=e=>"string"===typeof e,R=()=>{},w=m&&(null==(l=null==window?void 0:window.navigator)?void 0:l.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function E(e){return"function"===typeof e?e():(0,o.R1)(e)}function C(e,t){function n(...n){return new Promise(((o,r)=>{Promise.resolve(e((()=>t.apply(this,n)),{fn:t,thisArg:this,args:n})).then(o).catch(r)}))}return n}function k(e,t={}){let n,o,r=R;const l=e=>{clearTimeout(e),r(),r=R},a=a=>{const i=E(e),s=E(t.maxWait);return n&&l(n),i<=0||void 0!==s&&s<=0?(o&&(l(o),o=null),Promise.resolve(a())):new Promise(((e,u)=>{r=t.rejectOnCancel?u:e,s&&!o&&(o=setTimeout((()=>{n&&l(n),o=null,e(a())}),s)),n=setTimeout((()=>{o&&l(o),o=null,e(a())}),i)}))};return a}function x(e,t=!0,n=!0,o=!1){let r,l,a=0,i=!0,s=R;const u=()=>{r&&(clearTimeout(r),r=void 0,s(),s=R)},c=c=>{const d=E(e),p=Date.now()-a,f=()=>l=c();return u(),d<=0?(a=Date.now(),f()):(p>d&&(n||!i)?(a=Date.now(),f()):t&&(l=new Promise(((e,t)=>{s=o?t:e,r=setTimeout((()=>{a=Date.now(),i=!0,e(f()),u()}),Math.max(0,d-p))}))),n||r||(r=setTimeout((()=>i=!0),d)),i=!1,l)};return c}function _(e){return e}function S(e){return!!(0,o.o5)()&&((0,o.jr)(e),!0)}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function T(e,t=200,n={}){return C(k(t,n),e)}function O(e,t=200,n={}){const l=(0,o.KR)(e.value),a=T((()=>{l.value=e.value}),t,n);return(0,r.wB)(e,(()=>a())),l}function I(e,t=200,n=!1,o=!0,r=!1){return C(x(t,n,o,r),e)}Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function A(e,t=!0){(0,r.nI)()?(0,r.sV)(e):t?e():(0,r.dY)(e)}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function L(e,t,n={}){const{immediate:r=!0}=n,l=(0,o.KR)(!1);let a=null;function i(){a&&(clearTimeout(a),a=null)}function s(){l.value=!1,i()}function u(...n){i(),l.value=!0,a=setTimeout((()=>{l.value=!1,a=null,e(...n)}),E(t))}return r&&(l.value=!0,m&&u()),S(s),{isPending:(0,o.tB)(l),start:u,stop:s}}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable},8114:function(e,t,n){"use strict";n.d(t,{Vh:function(){return h},ht:function(){return v},H3:function(){return f}});var o=n(144),r=n(6768);const l=Symbol();var a=n(3513),i=n(6268),s=n(2401),u=n(6894),c=n(3845),d=n(4340);const p=(0,o.KR)();function f(e,t=void 0){const n=(0,r.nI)()?(0,r.WQ)(l,p):p;return e?(0,r.EW)((()=>{var o,r;return null!=(r=null==(o=n.value)?void 0:o[e])?r:t})):n}function v(e,t){const n=f(),l=(0,a.DU)(e,(0,r.EW)((()=>{var e;return(null==(e=n.value)?void 0:e.namespace)||a.Lt}))),u=(0,i.Ym)((0,r.EW)((()=>{var e;return null==(e=n.value)?void 0:e.locale}))),c=(0,s.YK)((0,r.EW)((()=>{var e;return(null==(e=n.value)?void 0:e.zIndex)||s._}))),d=(0,r.EW)((()=>{var e;return(0,o.R1)(t)||(null==(e=n.value)?void 0:e.size)||""}));return h((0,r.EW)((()=>(0,o.R1)(n)||{}))),{ns:l,locale:u,zIndex:c,size:d}}const h=(e,t,n=!1)=>{var d;const v=!!(0,r.nI)(),h=v?f():void 0,g=null!=(d=null==t?void 0:t.provide)?d:v?r.Gt:void 0;if(!g)return void(0,u.U)("provideGlobalConfig","provideGlobalConfig() can only be used inside setup().");const y=(0,r.EW)((()=>{const t=(0,o.R1)(e);return(null==h?void 0:h.value)?m(h.value,t):t}));return g(l,y),g(i.vx,(0,r.EW)((()=>y.value.locale))),g(a.O5,(0,r.EW)((()=>y.value.namespace))),g(s.d4,(0,r.EW)((()=>y.value.zIndex))),g(c.SN,{size:(0,r.EW)((()=>y.value.size||""))}),!n&&p.value||(p.value=y.value),y},m=(e,t)=>{var n;const o=[...new Set([...(0,d.YD)(e),...(0,d.YD)(t)])],r={};for(const l of o)r[l]=null!=(n=t[l])?n:e[l];return r}},5320:function(e,t,n){"use strict";n.d(t,{Ks:function(){return R}});var o=n(6768),r=n(144),l=n(5130),a=n(3558),i=n(8114);function s(e){let t;const n=(0,r.KR)(!1),s=(0,r.Kh)({...e,originalPosition:"",originalOverflow:"",visible:!1});function u(e){s.text=e}function c(){const e=s.parent,t=m.ns;if(!e.vLoadingAddClassList){let n=e.getAttribute("loading-number");n=Number.parseInt(n)-1,n?e.setAttribute("loading-number",n.toString()):((0,a.vy)(e,t.bm("parent","relative")),e.removeAttribute("loading-number")),(0,a.vy)(e,t.bm("parent","hidden"))}d(),h.unmount()}function d(){var e,t;null==(t=null==(e=m.$el)?void 0:e.parentNode)||t.removeChild(m.$el)}function p(){var o;e.beforeClose&&!e.beforeClose()||(n.value=!0,clearTimeout(t),t=window.setTimeout(f,400),s.visible=!1,null==(o=e.closed)||o.call(e))}function f(){if(!n.value)return;const e=s.parent;n.value=!1,e.vLoadingAddClassList=void 0,c()}const v=(0,o.pM)({name:"ElLoading",setup(e,{expose:t}){const{ns:n,zIndex:r}=(0,i.ht)("loading");return t({ns:n,zIndex:r}),()=>{const e=s.spinner||s.svg,t=(0,o.h)("svg",{class:"circular",viewBox:s.svgViewBox?s.svgViewBox:"0 0 50 50",...e?{innerHTML:e}:{}},[(0,o.h)("circle",{class:"path",cx:"25",cy:"25",r:"20",fill:"none"})]),r=s.text?(0,o.h)("p",{class:n.b("text")},[s.text]):void 0;return(0,o.h)(l.eB,{name:n.b("fade"),onAfterLeave:f},{default:(0,o.k6)((()=>[(0,o.bo)((0,o.bF)("div",{style:{backgroundColor:s.background||""},class:[n.b("mask"),s.customClass,s.fullscreen?"is-fullscreen":""]},[(0,o.h)("div",{class:n.b("spinner")},[t,r])]),[[l.aG,s.visible]])]))})}}}),h=(0,l.Ef)(v),m=h.mount(document.createElement("div"));return{...(0,r.QW)(s),setText:u,removeElLoadingChild:d,close:p,handleAfterLeave:f,vm:m,get $el(){return m.$el}}}var u=n(153),c=n(4232);let d;const p=function(e={}){if(!u.oc)return;const t=f(e);if(t.fullscreen&&d)return d;const n=s({...t,closed:()=>{var e;null==(e=t.closed)||e.call(t),t.fullscreen&&(d=void 0)}});v(t,t.parent,n),h(t,t.parent,n),t.parent.vLoadingAddClassList=()=>h(t,t.parent,n);let r=t.parent.getAttribute("loading-number");return r=r?`${Number.parseInt(r)+1}`:"1",t.parent.setAttribute("loading-number",r),t.parent.appendChild(n.$el),(0,o.dY)((()=>n.visible.value=t.visible)),t.fullscreen&&(d=n),n},f=e=>{var t,n,o,r;let l;return l=(0,c.Kg)(e.target)?null!=(t=document.querySelector(e.target))?t:document.body:e.target||document.body,{parent:l===document.body||e.body?document.body:l,background:e.background||"",svg:e.svg||"",svgViewBox:e.svgViewBox||"",spinner:e.spinner||!1,text:e.text||"",fullscreen:l===document.body&&(null==(n=e.fullscreen)||n),lock:null!=(o=e.lock)&&o,customClass:e.customClass||"",visible:null==(r=e.visible)||r,target:l}},v=async(e,t,n)=>{const{nextZIndex:r}=n.vm.zIndex||n.vm._.exposed.zIndex,l={};if(e.fullscreen)n.originalPosition.value=(0,a.gd)(document.body,"position"),n.originalOverflow.value=(0,a.gd)(document.body,"overflow"),l.zIndex=r();else if(e.parent===document.body){n.originalPosition.value=(0,a.gd)(document.body,"position"),await(0,o.dY)();for(const t of["top","left"]){const n="top"===t?"scrollTop":"scrollLeft";l[t]=e.target.getBoundingClientRect()[t]+document.body[n]+document.documentElement[n]-Number.parseInt((0,a.gd)(document.body,`margin-${t}`),10)+"px"}for(const t of["height","width"])l[t]=`${e.target.getBoundingClientRect()[t]}px`}else n.originalPosition.value=(0,a.gd)(t,"position");for(const[o,a]of Object.entries(l))n.$el.style[o]=a},h=(e,t,n)=>{const o=n.vm.ns||n.vm._.exposed.ns;["absolute","fixed","sticky"].includes(n.originalPosition.value)?(0,a.vy)(t,o.bm("parent","relative")):(0,a.iQ)(t,o.bm("parent","relative")),e.fullscreen&&e.lock?(0,a.iQ)(t,o.bm("parent","hidden")):(0,a.vy)(t,o.bm("parent","hidden"))},m=Symbol("ElLoading"),g=(e,t)=>{var n,o,l,a;const i=t.instance,s=e=>(0,c.Gv)(t.value)?t.value[e]:void 0,u=e=>{const t=(0,c.Kg)(e)&&(null==i?void 0:i[e])||e;return t?(0,r.KR)(t):t},d=t=>u(s(t)||e.getAttribute(`element-loading-${(0,c.Tg)(t)}`)),f=null!=(n=s("fullscreen"))?n:t.modifiers.fullscreen,v={text:d("text"),svg:d("svg"),svgViewBox:d("svgViewBox"),spinner:d("spinner"),background:d("background"),customClass:d("customClass"),fullscreen:f,target:null!=(o=s("target"))?o:f?void 0:e,body:null!=(l=s("body"))?l:t.modifiers.body,lock:null!=(a=s("lock"))?a:t.modifiers.lock};e[m]={options:v,instance:p(v)}},y=(e,t)=>{for(const n of Object.keys(t))(0,r.i9)(t[n])&&(t[n].value=e[n])},b={mounted(e,t){t.value&&g(e,t)},updated(e,t){const n=e[m];t.oldValue!==t.value&&(t.value&&!t.oldValue?g(e,t):t.value&&t.oldValue?(0,c.Gv)(t.value)&&y(t.value,n.options):null==n||n.instance.close())},unmounted(e){var t;null==(t=e[m])||t.instance.close(),e[m]=null}},R={install(e){e.directive("loading",b),e.config.globalProperties.$loading=p},directive:b,service:p}},1211:function(e,t,n){"use strict";n.d(t,{I:function(){return o}});const o=["","default","small","large"]},2354:function(e,t,n){"use strict";n.d(t,{A:function(){return BG}});const o="2.5.6",r=Symbol("INSTALLED_KEY");var l=n(8114);const a=(e=[])=>{const t=(t,n)=>{t[r]||(t[r]=!0,e.forEach((e=>t.use(e))),n&&(0,l.Vh)(n,t,!0))};return{version:o,install:t}};var i=n(6768),s=n(144),u=n(4232),c=(n(4114),n(7467),n(4732),n(9577),n(6280),n(7913),n(7801),n(4979),n(4603),n(7566),n(8721),n(153)),d=!1;function p(e){var t;const n=(0,c.x_)(e);return null!=(t=null==n?void 0:n.$el)?t:n}const f=c.oc?window:void 0,v=c.oc?window.document:void 0;c.oc&&window.navigator,c.oc&&window.location;function h(...e){let t,n,o,r;if((0,c.Kg)(e[0])||Array.isArray(e[0])?([n,o,r]=e,t=f):[t,n,o,r]=e,!t)return c.lQ;Array.isArray(n)||(n=[n]),Array.isArray(o)||(o=[o]);const l=[],a=()=>{l.forEach((e=>e())),l.length=0},s=(e,t,n,o)=>(e.addEventListener(t,n,o),()=>e.removeEventListener(t,n,o)),u=(0,i.wB)((()=>[p(t),(0,c.x_)(r)]),(([e,t])=>{a(),e&&l.push(...n.flatMap((n=>o.map((o=>s(e,n,o,t))))))}),{immediate:!0,flush:"post"}),d=()=>{u(),a()};return(0,c.Uo)(d),d}let m=!1;function g(e,t,n={}){const{window:o=f,ignore:r=[],capture:l=!0,detectIframe:a=!1}=n;if(!o)return;c.un&&!m&&(m=!0,Array.from(o.document.body.children).forEach((e=>e.addEventListener("click",c.lQ))));let i=!0;const s=e=>r.some((t=>{if("string"===typeof t)return Array.from(o.document.querySelectorAll(t)).some((t=>t===e.target||e.composedPath().includes(t)));{const n=p(t);return n&&(e.target===n||e.composedPath().includes(n))}})),u=n=>{const o=p(e);o&&o!==n.target&&!n.composedPath().includes(o)&&(0===n.detail&&(i=!s(n)),i?t(n):i=!0)},d=[h(o,"click",u,{passive:!0,capture:l}),h(o,"pointerdown",(t=>{const n=p(e);n&&(i=!t.composedPath().includes(n)&&!s(t))}),{passive:!0}),a&&h(o,"blur",(n=>{var r;const l=p(e);"IFRAME"!==(null==(r=o.document.activeElement)?void 0:r.tagName)||(null==l?void 0:l.contains(o.document.activeElement))||t(n)}))].filter(Boolean),v=()=>d.forEach((e=>e()));return v}Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function y(e,t=!1){const n=(0,s.KR)(),o=()=>n.value=Boolean(e());return o(),(0,c.rd)(o,t),n}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function b(e){return JSON.parse(JSON.stringify(e))}const R="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof window?window:"undefined"!==typeof global?global:"undefined"!==typeof self?self:{},w="__vueuse_ssr_handlers__";R[w]=R[w]||{};R[w];Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function E(e,t,{window:n=f,initialValue:o=""}={}){const r=(0,s.KR)(o),l=(0,i.EW)((()=>{var e;return p(t)||(null==(e=null==n?void 0:n.document)?void 0:e.documentElement)}));return(0,i.wB)([l,()=>(0,c.x_)(e)],(([e,t])=>{var l;if(e&&n){const a=null==(l=n.getComputedStyle(e).getPropertyValue(t))?void 0:l.trim();r.value=a||o}}),{immediate:!0}),(0,i.wB)(r,(t=>{var n;(null==(n=l.value)?void 0:n.style)&&l.value.style.setProperty((0,c.x_)(e),t)})),r}Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;function C({document:e=v}={}){if(!e)return(0,s.KR)("visible");const t=(0,s.KR)(e.visibilityState);return h(e,"visibilitychange",(()=>{t.value=e.visibilityState})),t}Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;var k=Object.getOwnPropertySymbols,x=Object.prototype.hasOwnProperty,_=Object.prototype.propertyIsEnumerable,S=(e,t)=>{var n={};for(var o in e)x.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&k)for(var o of k(e))t.indexOf(o)<0&&_.call(e,o)&&(n[o]=e[o]);return n};function T(e,t,n={}){const o=n,{window:r=f}=o,l=S(o,["window"]);let a;const s=y((()=>r&&"ResizeObserver"in r)),u=()=>{a&&(a.disconnect(),a=void 0)},d=(0,i.wB)((()=>p(e)),(e=>{u(),s.value&&r&&e&&(a=new ResizeObserver(t),a.observe(e,l))}),{immediate:!0,flush:"post"}),v=()=>{u(),d()};return(0,c.Uo)(v),{isSupported:s,stop:v}}function O(e,t={}){const{reset:n=!0,windowResize:o=!0,windowScroll:r=!0,immediate:l=!0}=t,a=(0,s.KR)(0),u=(0,s.KR)(0),d=(0,s.KR)(0),f=(0,s.KR)(0),v=(0,s.KR)(0),m=(0,s.KR)(0),g=(0,s.KR)(0),y=(0,s.KR)(0);function b(){const t=p(e);if(!t)return void(n&&(a.value=0,u.value=0,d.value=0,f.value=0,v.value=0,m.value=0,g.value=0,y.value=0));const o=t.getBoundingClientRect();a.value=o.height,u.value=o.bottom,d.value=o.left,f.value=o.right,v.value=o.top,m.value=o.width,g.value=o.x,y.value=o.y}return T(e,b),(0,i.wB)((()=>p(e)),(e=>!e&&b())),r&&h("scroll",b,{capture:!0,passive:!0}),o&&h("resize",b,{passive:!0}),(0,c.rd)((()=>{l&&b()})),{height:a,bottom:u,left:d,right:f,top:v,width:m,x:g,y:y,update:b}}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;new Map;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;var I=Object.getOwnPropertySymbols,A=Object.prototype.hasOwnProperty,L=Object.prototype.propertyIsEnumerable,M=(e,t)=>{var n={};for(var o in e)A.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&I)for(var o of I(e))t.indexOf(o)<0&&L.call(e,o)&&(n[o]=e[o]);return n};function N(e,t,n={}){const o=n,{window:r=f}=o,l=M(o,["window"]);let a;const s=y((()=>r&&"MutationObserver"in r)),u=()=>{a&&(a.disconnect(),a=void 0)},d=(0,i.wB)((()=>p(e)),(e=>{u(),s.value&&r&&e&&(a=new MutationObserver(t),a.observe(e,l))}),{immediate:!0}),v=()=>{u(),d()};return(0,c.Uo)(v),{isSupported:s,stop:v}}Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;var W;(function(e){e["UP"]="UP",e["RIGHT"]="RIGHT",e["DOWN"]="DOWN",e["LEFT"]="LEFT",e["NONE"]="NONE"})(W||(W={}));Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;Object.defineProperty,Object.getOwnPropertySymbols,Object.prototype.hasOwnProperty,Object.prototype.propertyIsEnumerable;var D=Object.defineProperty,F=Object.getOwnPropertySymbols,$=Object.prototype.hasOwnProperty,B=Object.prototype.propertyIsEnumerable,P=(e,t,n)=>t in e?D(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,K=(e,t)=>{for(var n in t||(t={}))$.call(t,n)&&P(e,n,t[n]);if(F)for(var n of F(t))B.call(t,n)&&P(e,n,t[n]);return e};const j={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};K({linear:c.D_},j);function V(e,t,n,o={}){var r,l,a,u,p;const{clone:f=!1,passive:v=!1,eventName:h,deep:m=!1,defaultValue:g}=o,y=(0,i.nI)(),R=n||(null==y?void 0:y.emit)||(null==(r=null==y?void 0:y.$emit)?void 0:r.bind(y))||(null==(a=null==(l=null==y?void 0:y.proxy)?void 0:l.$emit)?void 0:a.bind(null==y?void 0:y.proxy));let w=h;if(!t)if(d){const e=null==(p=null==(u=null==y?void 0:y.proxy)?void 0:u.$options)?void 0:p.model;t=(null==e?void 0:e.value)||"value",h||(w=(null==e?void 0:e.event)||"input")}else t="modelValue";w=h||w||`update:${t.toString()}`;const E=e=>f?(0,c.Tn)(f)?f(e):b(e):e,C=()=>(0,c.C8)(e[t])?E(e[t]):g;if(v){const n=C(),o=(0,s.KR)(n);return(0,i.wB)((()=>e[t]),(e=>o.value=E(e))),(0,i.wB)(o,(n=>{(n!==e[t]||m)&&R(w,n)}),{deep:m}),o}return(0,i.EW)({get(){return C()},set(e){R(w,e)}})}function X({window:e=f}={}){if(!e)return(0,s.KR)(!1);const t=(0,s.KR)(e.document.hasFocus());return h(e,"blur",(()=>{t.value=!1})),h(e,"focus",(()=>{t.value=!0})),t}function U(e={}){const{window:t=f,initialWidth:n=1/0,initialHeight:o=1/0,listenOrientation:r=!0,includeScrollbar:l=!0}=e,a=(0,s.KR)(n),i=(0,s.KR)(o),u=()=>{t&&(l?(a.value=t.innerWidth,i.value=t.innerHeight):(a.value=t.document.documentElement.clientWidth,i.value=t.document.documentElement.clientHeight))};return u(),(0,c.rd)(u),h("resize",u,{passive:!0}),r&&h("orientationchange",u,{passive:!0}),{width:a,height:i}}var H=n(7378),z=n(2235);const G="update:modelValue",q="change",Y="input",Q=(0,H.b_)({zIndex:{type:(0,H.jq)([Number,String]),default:100},target:{type:String,default:""},offset:{type:Number,default:0},position:{type:String,values:["top","bottom"],default:"top"}}),Z={scroll:({scrollTop:e,fixed:t})=>(0,z.Et)(e)&&(0,z.Lm)(t),[q]:e=>(0,z.Lm)(e)};var J=(e,t)=>{const n=e.__vccOpts||e;for(const[o,r]of t)n[o]=r;return n},ee=n(3513),te=n(3558),ne=n(6894);const oe=(e,t)=>{if(!c.oc)return!1;const n={undefined:"overflow",true:"overflow-y",false:"overflow-x"}[String(t)],o=(0,te.gd)(e,n);return["scroll","auto","overlay"].some((e=>o.includes(e)))},re=(e,t)=>{if(!c.oc)return;let n=e;while(n){if([window,document,document.documentElement].includes(n))return window;if(oe(n,t))return n;n=n.parentNode}return n};let le;const ae=e=>{var t;if(!c.oc)return 0;if(void 0!==le)return le;const n=document.createElement("div");n.className=`${e}-scrollbar__wrap`,n.style.visibility="hidden",n.style.width="100px",n.style.position="absolute",n.style.top="-9999px",document.body.appendChild(n);const o=n.offsetWidth;n.style.overflow="scroll";const r=document.createElement("div");r.style.width="100%",n.appendChild(r);const l=r.offsetWidth;return null==(t=n.parentNode)||t.removeChild(n),le=o-l,le};function ie(e,t){if(!c.oc)return;if(!t)return void(e.scrollTop=0);const n=[];let o=t.offsetParent;while(null!==o&&e!==o&&e.contains(o))n.push(o),o=o.offsetParent;const r=t.offsetTop+n.reduce(((e,t)=>e+t.offsetTop),0),l=r+t.offsetHeight,a=e.scrollTop,i=a+e.clientHeight;ri&&(e.scrollTop=l-e.clientHeight)}const se="ElAffix",ue=(0,i.pM)({name:se}),ce=(0,i.pM)({...ue,props:Q,emits:Z,setup(e,{expose:t,emit:n}){const o=e,r=(0,ee.DU)("affix"),l=(0,s.IJ)(),a=(0,s.IJ)(),c=(0,s.IJ)(),{height:d}=U(),{height:p,width:f,top:v,bottom:m,update:g}=O(a,{windowScroll:!1}),y=O(l),b=(0,s.KR)(!1),R=(0,s.KR)(0),w=(0,s.KR)(0),E=(0,i.EW)((()=>({height:b.value?`${p.value}px`:"",width:b.value?`${f.value}px`:""}))),C=(0,i.EW)((()=>{if(!b.value)return{};const e=o.offset?(0,te._V)(o.offset):0;return{height:`${p.value}px`,width:`${f.value}px`,top:"top"===o.position?e:"",bottom:"bottom"===o.position?e:"",transform:w.value?`translateY(${w.value}px)`:"",zIndex:o.zIndex}})),k=()=>{if(c.value)if(R.value=c.value instanceof Window?document.documentElement.scrollTop:c.value.scrollTop||0,"top"===o.position)if(o.target){const e=y.bottom.value-o.offset-p.value;b.value=o.offset>v.value&&y.bottom.value>0,w.value=e<0?e:0}else b.value=o.offset>v.value;else if(o.target){const e=d.value-y.top.value-o.offset-p.value;b.value=d.value-o.offsety.top.value,w.value=e<0?-e:0}else b.value=d.value-o.offset{g(),n("scroll",{scrollTop:R.value,fixed:b.value})};return(0,i.wB)(b,(e=>n("change",e))),(0,i.sV)((()=>{var e;o.target?(l.value=null!=(e=document.querySelector(o.target))?e:void 0,l.value||(0,ne.$)(se,`Target is not existed: ${o.target}`)):l.value=document.documentElement,c.value=re(a.value,!0),g()})),h(c,"scroll",x),(0,i.nT)(k),t({update:k,updateRoot:g}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"root",ref:a,class:(0,u.C4)((0,s.R1)(r).b()),style:(0,u.Tr)((0,s.R1)(E))},[(0,i.Lk)("div",{class:(0,u.C4)({[(0,s.R1)(r).m("fixed")]:b.value}),style:(0,u.Tr)((0,s.R1)(C))},[(0,i.RG)(e.$slots,"default")],6)],6))}});var de=J(ce,[["__file","affix.vue"]]);const pe=(e,t)=>{if(e.install=n=>{for(const o of[e,...Object.values(null!=t?t:{})])n.component(o.name,o)},t)for(const[n,o]of Object.entries(t))e[n]=o;return e},fe=(e,t)=>(e.install=n=>{e._context=n._context,n.config.globalProperties[t]=e},e),ve=(e,t)=>(e.install=n=>{n.directive(t,e)},e),he=e=>(e.install=u.tE,e),me=pe(de);var ge=n(5130);const ye=(0,H.b_)({size:{type:(0,H.jq)([Number,String])},color:{type:String}}),be=(0,i.pM)({name:"ElIcon",inheritAttrs:!1}),Re=(0,i.pM)({...be,props:ye,setup(e){const t=e,n=(0,ee.DU)("icon"),o=(0,i.EW)((()=>{const{size:e,color:n}=t;return e||n?{fontSize:(0,z.b0)(e)?void 0:(0,te._V)(e),"--color":n}:{}}));return(e,t)=>((0,i.uX)(),(0,i.CE)("i",(0,i.v6)({class:(0,s.R1)(n).b(),style:(0,s.R1)(o)},e.$attrs),[(0,i.RG)(e.$slots,"default")],16))}});var we=J(Re,[["__file","icon.vue"]]);const Ee=pe(we);var Ce=n(4340),ke=(0,i.pM)({name:"ArrowDown",__name:"arrow-down",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z"})]))}}),xe=ke,_e=(0,i.pM)({name:"ArrowLeft",__name:"arrow-left",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0z"})]))}}),Se=_e,Te=(0,i.pM)({name:"ArrowRight",__name:"arrow-right",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512 340.864 831.872a30.592 30.592 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"})]))}}),Oe=Te,Ie=(0,i.pM)({name:"ArrowUp",__name:"arrow-up",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"})]))}}),Ae=Ie,Le=(0,i.pM)({name:"Back",__name:"back",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"}),(0,i.Lk)("path",{fill:"currentColor",d:"m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"})]))}}),Me=Le,Ne=(0,i.pM)({name:"Calendar",__name:"calendar",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"})]))}}),We=Ne,De=(0,i.pM)({name:"CaretRight",__name:"caret-right",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"})]))}}),Fe=De,$e=(0,i.pM)({name:"CaretTop",__name:"caret-top",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"})]))}}),Be=$e,Pe=(0,i.pM)({name:"Check",__name:"check",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"})]))}}),Ke=Pe,je=(0,i.pM)({name:"CircleCheckFilled",__name:"circle-check-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),Ve=je,Xe=(0,i.pM)({name:"CircleCheck",__name:"circle-check",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),(0,i.Lk)("path",{fill:"currentColor",d:"M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"})]))}}),Ue=Xe,He=(0,i.pM)({name:"CircleCloseFilled",__name:"circle-close-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"})]))}}),ze=He,Ge=(0,i.pM)({name:"CircleClose",__name:"circle-close",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"}),(0,i.Lk)("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"})]))}}),qe=Ge,Ye=(0,i.pM)({name:"Clock",__name:"clock",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"}),(0,i.Lk)("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"}),(0,i.Lk)("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"})]))}}),Qe=Ye,Ze=(0,i.pM)({name:"Close",__name:"close",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"})]))}}),Je=Ze,et=(0,i.pM)({name:"DArrowLeft",__name:"d-arrow-left",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224zm256 0a29.12 29.12 0 0 1 41.728 0 30.592 30.592 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.592 30.592 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672l331.648-340.224z"})]))}}),tt=et,nt=(0,i.pM)({name:"DArrowRight",__name:"d-arrow-right",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L764.736 512 452.864 192a30.592 30.592 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.592 30.592 0 0 1 0-42.752L508.736 512 196.864 192a30.592 30.592 0 0 1 0-42.688z"})]))}}),ot=nt,rt=(0,i.pM)({name:"Delete",__name:"delete",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"})]))}}),lt=rt,at=(0,i.pM)({name:"Document",__name:"document",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"})]))}}),it=at,st=(0,i.pM)({name:"FullScreen",__name:"full-screen",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64l192-.192zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"})]))}}),ut=st,ct=(0,i.pM)({name:"Hide",__name:"hide",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M876.8 156.8c0-9.6-3.2-16-9.6-22.4-6.4-6.4-12.8-9.6-22.4-9.6-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4 0 9.6 3.2 16 9.6 22.4 6.4 6.4 12.8 9.6 22.4 9.6 9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8 28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8 0-44.8 16-83.2 48-112 32-28.8 67.2-48 112-48 28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6-28.8 48-80 105.6-153.6 172.8-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"}),(0,i.Lk)("path",{fill:"currentColor",d:"M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112-32 28.8-67.2 48-112 48Z"})]))}}),dt=ct,pt=(0,i.pM)({name:"InfoFilled",__name:"info-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.992 12.992 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"})]))}}),ft=pt,vt=(0,i.pM)({name:"Loading",__name:"loading",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"})]))}}),ht=vt,mt=(0,i.pM)({name:"Minus",__name:"minus",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"})]))}}),gt=mt,yt=(0,i.pM)({name:"MoreFilled",__name:"more-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"})]))}}),bt=yt,Rt=(0,i.pM)({name:"More",__name:"more",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"})]))}}),wt=Rt,Et=(0,i.pM)({name:"PictureFilled",__name:"picture-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"})]))}}),Ct=Et,kt=(0,i.pM)({name:"Plus",__name:"plus",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"})]))}}),xt=kt,_t=(0,i.pM)({name:"QuestionFilled",__name:"question-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592 0-42.944-14.08-76.736-42.24-101.376-28.16-25.344-65.472-37.312-111.232-37.312zm-12.672 406.208a54.272 54.272 0 0 0-38.72 14.784 49.408 49.408 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.848 54.848 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.968 51.968 0 0 0-15.488-38.016 55.936 55.936 0 0 0-39.424-14.784z"})]))}}),St=_t,Tt=(0,i.pM)({name:"RefreshLeft",__name:"refresh-left",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"})]))}}),Ot=Tt,It=(0,i.pM)({name:"RefreshRight",__name:"refresh-right",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88z"})]))}}),At=It,Lt=(0,i.pM)({name:"ScaleToOriginal",__name:"scale-to-original",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118M512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412M512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512"})]))}}),Mt=Lt,Nt=(0,i.pM)({name:"Search",__name:"search",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"})]))}}),Wt=Nt,Dt=(0,i.pM)({name:"SortDown",__name:"sort-down",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"})]))}}),Ft=Dt,$t=(0,i.pM)({name:"SortUp",__name:"sort-up",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"})]))}}),Bt=$t,Pt=(0,i.pM)({name:"StarFilled",__name:"star-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M283.84 867.84 512 747.776l228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72z"})]))}}),Kt=Pt,jt=(0,i.pM)({name:"Star",__name:"star",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"})]))}}),Vt=jt,Xt=(0,i.pM)({name:"SuccessFilled",__name:"success-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"})]))}}),Ut=Xt,Ht=(0,i.pM)({name:"View",__name:"view",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"})]))}}),zt=Ht,Gt=(0,i.pM)({name:"WarningFilled",__name:"warning-filled",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"})]))}}),qt=Gt,Yt=(0,i.pM)({name:"ZoomIn",__name:"zoom-in",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"})]))}}),Qt=Yt,Zt=(0,i.pM)({name:"ZoomOut",__name:"zoom-out",setup(e){return(e,t)=>((0,i.uX)(),(0,i.CE)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[(0,i.Lk)("path",{fill:"currentColor",d:"m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"})]))}}),Jt=Zt;const en=(0,H.jq)([String,Object,Function]),tn={Close:Je},nn={Close:Je,SuccessFilled:Ut,InfoFilled:ft,WarningFilled:qt,CircleCloseFilled:ze},on={success:Ut,warning:qt,error:ze,info:ft},rn={validating:ht,success:Ue,error:qe},ln=["light","dark"],an=(0,H.b_)({title:{type:String,default:""},description:{type:String,default:""},type:{type:String,values:(0,Ce.YD)(on),default:"info"},closable:{type:Boolean,default:!0},closeText:{type:String,default:""},showIcon:Boolean,center:Boolean,effect:{type:String,values:ln,default:"light"}}),sn={close:e=>e instanceof MouseEvent},un=(0,i.pM)({name:"ElAlert"}),cn=(0,i.pM)({...un,props:an,emits:sn,setup(e,{emit:t}){const n=e,{Close:o}=nn,r=(0,i.Ht)(),l=(0,ee.DU)("alert"),a=(0,s.KR)(!0),c=(0,i.EW)((()=>on[n.type])),d=(0,i.EW)((()=>[l.e("icon"),{[l.is("big")]:!!n.description||!!r.default}])),p=(0,i.EW)((()=>({[l.is("bold")]:n.description||r.default}))),f=e=>{a.value=!1,t("close",e)};return(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:(0,s.R1)(l).b("fade"),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(l).b(),(0,s.R1)(l).m(e.type),(0,s.R1)(l).is("center",e.center),(0,s.R1)(l).is(e.effect)]),role:"alert"},[e.showIcon&&(0,s.R1)(c)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(d))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(c))))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).e("content"))},[e.title||e.$slots.title?((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)([(0,s.R1)(l).e("title"),(0,s.R1)(p)])},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title),1)]))],2)):(0,i.Q3)("v-if",!0),e.$slots.default||e.description?((0,i.uX)(),(0,i.CE)("p",{key:1,class:(0,u.C4)((0,s.R1)(l).e("description"))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.eW)((0,u.v_)(e.description),1)]))],2)):(0,i.Q3)("v-if",!0),e.closable?((0,i.uX)(),(0,i.CE)(i.FK,{key:2},[e.closeText?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)([(0,s.R1)(l).e("close-btn"),(0,s.R1)(l).is("customed")]),onClick:f},(0,u.v_)(e.closeText),3)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)((0,s.R1)(l).e("close-btn")),onClick:f},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(o))])),_:1},8,["class"]))],64)):(0,i.Q3)("v-if",!0)],2)],2),[[ge.aG,a.value]])])),_:3},8,["name"]))}});var dn=J(cn,[["__file","alert.vue"]]);const pn=pe(dn);var fn=n(168),vn=n(9578),hn=function(){return vn.A.Date.now()},mn=hn,gn=/\s/;function yn(e){var t=e.length;while(t--&&gn.test(e.charAt(t)));return t}var bn=yn,Rn=/^\s+/;function wn(e){return e?e.slice(0,bn(e)+1).replace(Rn,""):e}var En=wn,Cn=n(8095),kn=NaN,xn=/^[-+]0x[0-9a-f]+$/i,_n=/^0b[01]+$/i,Sn=/^0o[0-7]+$/i,Tn=parseInt;function On(e){if("number"==typeof e)return e;if((0,Cn.A)(e))return kn;if((0,fn.A)(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=(0,fn.A)(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=En(e);var n=_n.test(e);return n||Sn.test(e)?Tn(e.slice(2),n?2:8):xn.test(e)?kn:+e}var In=On,An="Expected a function",Ln=Math.max,Mn=Math.min;function Nn(e,t,n){var o,r,l,a,i,s,u=0,c=!1,d=!1,p=!0;if("function"!=typeof e)throw new TypeError(An);function f(t){var n=o,l=r;return o=r=void 0,u=t,a=e.apply(l,n),a}function v(e){return u=e,i=setTimeout(g,t),c?f(e):a}function h(e){var n=e-s,o=e-u,r=t-n;return d?Mn(r,l-o):r}function m(e){var n=e-s,o=e-u;return void 0===s||n>=t||n<0||d&&o>=l}function g(){var e=mn();if(m(e))return y(e);i=setTimeout(g,h(e))}function y(e){return i=void 0,p&&o?f(e):(o=r=void 0,a)}function b(){void 0!==i&&clearTimeout(i),u=0,o=s=r=i=void 0}function R(){return void 0===i?a:y(mn())}function w(){var e=mn(),n=m(e);if(o=arguments,r=this,s=e,n){if(void 0===i)return v(s);if(d)return clearTimeout(i),i=setTimeout(g,t),f(s)}return void 0===i&&(i=setTimeout(g,t)),a}return t=In(t)||0,(0,fn.A)(n)&&(c=!!n.leading,d="maxWait"in n,l=d?Ln(In(n.maxWait)||0,t):l,p="trailing"in n?!!n.trailing:p),w.cancel=b,w.flush=R,w}var Wn=Nn,Dn=n(6032);const Fn=()=>c.oc&&/firefox/i.test(window.navigator.userAgent);let $n;const Bn=`\n height:0 !important;\n visibility:hidden !important;\n ${Fn()?"":"overflow:hidden !important;"}\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important;\n`,Pn=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function Kn(e){const t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),o=Number.parseFloat(t.getPropertyValue("padding-bottom"))+Number.parseFloat(t.getPropertyValue("padding-top")),r=Number.parseFloat(t.getPropertyValue("border-bottom-width"))+Number.parseFloat(t.getPropertyValue("border-top-width")),l=Pn.map((e=>`${e}:${t.getPropertyValue(e)}`)).join(";");return{contextStyle:l,paddingSize:o,borderSize:r,boxSizing:n}}function jn(e,t=1,n){var o;$n||($n=document.createElement("textarea"),document.body.appendChild($n));const{paddingSize:r,borderSize:l,boxSizing:a,contextStyle:i}=Kn(e);$n.setAttribute("style",`${i};${Bn}`),$n.value=e.value||e.placeholder||"";let s=$n.scrollHeight;const u={};"border-box"===a?s+=l:"content-box"===a&&(s-=r),$n.value="";const c=$n.scrollHeight-r;if((0,z.Et)(t)){let e=c*t;"border-box"===a&&(e=e+r+l),s=Math.max(e,s),u.minHeight=`${e}px`}if((0,z.Et)(n)){let e=c*n;"border-box"===a&&(e=e+r+l),s=Math.min(e,s)}return u.height=`${s}px`,null==(o=$n.parentNode)||o.removeChild($n),$n=void 0,u}var Vn=n(3845);const Xn=e=>e,Un=(0,H.b_)({id:{type:String,default:void 0},size:Vn.mU,disabled:Boolean,modelValue:{type:(0,H.jq)([String,Number,Object]),default:""},maxlength:{type:[String,Number]},minlength:{type:[String,Number]},type:{type:String,default:"text"},resize:{type:String,values:["none","both","horizontal","vertical"]},autosize:{type:(0,H.jq)([Boolean,Object]),default:!1},autocomplete:{type:String,default:"off"},formatter:{type:Function},parser:{type:Function},placeholder:{type:String},form:{type:String},readonly:{type:Boolean,default:!1},clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},suffixIcon:{type:en},prefixIcon:{type:en},containerRole:{type:String,default:void 0},label:{type:String,default:void 0},tabindex:{type:[String,Number],default:0},validateEvent:{type:Boolean,default:!0},inputStyle:{type:(0,H.jq)([Object,Array,String]),default:()=>Xn({})},autofocus:{type:Boolean,default:!1}}),Hn={[G]:e=>(0,u.Kg)(e),input:e=>(0,u.Kg)(e),change:e=>(0,u.Kg)(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,clear:()=>!0,mouseleave:e=>e instanceof MouseEvent,mouseenter:e=>e instanceof MouseEvent,keydown:e=>e instanceof Event,compositionstart:e=>e instanceof CompositionEvent,compositionupdate:e=>e instanceof CompositionEvent,compositionend:e=>e instanceof CompositionEvent};var zn=n(1154);const Gn=["class","style"],qn=/^on[A-Z]/,Yn=(e={})=>{const{excludeListeners:t=!1,excludeKeys:n}=e,o=(0,i.EW)((()=>((null==n?void 0:n.value)||[]).concat(Gn))),r=(0,i.nI)();return r?(0,i.EW)((()=>{var e;return(0,zn.A)(Object.entries(null==(e=r.proxy)?void 0:e.$attrs).filter((([e])=>!o.value.includes(e)&&!(t&&qn.test(e)))))})):((0,ne.U)("use-attrs","getCurrentInstance() returned null. useAttrs() must be called at the top of a setup function"),(0,i.EW)((()=>({}))))},Qn=Symbol("formContextKey"),Zn=Symbol("formItemContextKey"),Jn={prefix:Math.floor(1e4*Math.random()),current:0},eo=Symbol("elIdInjection"),to=()=>(0,i.nI)()?(0,i.WQ)(eo,Jn):Jn,no=e=>{const t=to();c.oc||t!==Jn||(0,ne.U)("IdInjection","Looks like you are using server rendering, you must provide a id provider to ensure the hydration process to be succeed\nusage: app.provide(ID_INJECTION_KEY, {\n prefix: number,\n current: number,\n})");const n=(0,ee.E9)(),o=(0,i.EW)((()=>(0,s.R1)(e)||`${n.value}-id-${t.prefix}-${t.current++}`));return o},oo=()=>{const e=(0,i.WQ)(Qn,void 0),t=(0,i.WQ)(Zn,void 0);return{form:e,formItem:t}},ro=(e,{formItemContext:t,disableIdGeneration:n,disableIdManagement:o})=>{n||(n=(0,s.KR)(!1)),o||(o=(0,s.KR)(!1));const r=(0,s.KR)();let l;const a=(0,i.EW)((()=>{var n;return!!(!e.label&&t&&t.inputIds&&(null==(n=t.inputIds)?void 0:n.length)<=1)}));return(0,i.sV)((()=>{l=(0,i.wB)([(0,s.lW)(e,"id"),n],(([e,n])=>{const l=null!=e?e:n?void 0:no().value;l!==r.value&&((null==t?void 0:t.removeInputId)&&(r.value&&t.removeInputId(r.value),(null==o?void 0:o.value)||n||!l||t.addInputId(l)),r.value=l)}),{immediate:!0})})),(0,i.hi)((()=>{l&&l(),(null==t?void 0:t.removeInputId)&&r.value&&t.removeInputId(r.value)})),{isLabeledByFormItem:a,inputId:r}},lo=e=>{const t=(0,i.nI)();return(0,i.EW)((()=>{var n,o;return null==(o=null==(n=null==t?void 0:t.proxy)?void 0:n.$props)?void 0:o[e]}))},ao=(e,t={})=>{const n=(0,s.KR)(void 0),o=t.prop?n:lo("size"),r=t.global?n:(0,Vn.wC)(),l=t.form?{size:void 0}:(0,i.WQ)(Qn,void 0),a=t.formItem?{size:void 0}:(0,i.WQ)(Zn,void 0);return(0,i.EW)((()=>o.value||(0,s.R1)(e)||(null==a?void 0:a.size)||(null==l?void 0:l.size)||r.value||""))},io=e=>{const t=lo("disabled"),n=(0,i.WQ)(Qn,void 0);return(0,i.EW)((()=>t.value||(0,s.R1)(e)||(null==n?void 0:n.disabled)||!1))};function so(e,{afterFocus:t,beforeBlur:n,afterBlur:o}={}){const r=(0,i.nI)(),{emit:l}=r,a=(0,s.IJ)(),c=(0,s.KR)(!1),d=e=>{c.value||(c.value=!0,l("focus",e),null==t||t())},p=e=>{var t;const r=!!(0,u.Tn)(n)&&n(e);r||e.relatedTarget&&(null==(t=a.value)?void 0:t.contains(e.relatedTarget))||(c.value=!1,l("blur",e),null==o||o())},f=()=>{var t;null==(t=e.value)||t.focus()};return(0,i.wB)(a,(e=>{e&&e.setAttribute("tabindex","-1")})),h(a,"click",f),{wrapperRef:a,isFocused:c,handleFocus:d,handleBlur:p}}function uo(e){const t=(0,s.KR)();function n(){if(void 0==e.value)return;const{selectionStart:n,selectionEnd:o,value:r}=e.value;if(null==n||null==o)return;const l=r.slice(0,Math.max(0,n)),a=r.slice(Math.max(0,o));t.value={selectionStart:n,selectionEnd:o,value:r,beforeTxt:l,afterTxt:a}}function o(){if(void 0==e.value||void 0==t.value)return;const{value:n}=e.value,{beforeTxt:o,afterTxt:r,selectionStart:l}=t.value;if(void 0==o||void 0==r||void 0==l)return;let a=n.length;if(n.endsWith(r))a=n.length-r.length;else if(n.startsWith(o))a=o.length;else{const e=o[l-1],t=n.indexOf(e,l-1);-1!==t&&(a=t+1)}e.value.setSelectionRange(a,a)}return[n,o]}const co=e=>/([\uAC00-\uD7AF\u3130-\u318F])+/gi.test(e),po=["role"],fo=["id","minlength","maxlength","type","disabled","readonly","autocomplete","tabindex","aria-label","placeholder","form","autofocus"],vo=["id","minlength","maxlength","tabindex","disabled","readonly","autocomplete","aria-label","placeholder","form","autofocus"],ho=(0,i.pM)({name:"ElInput",inheritAttrs:!1}),mo=(0,i.pM)({...ho,props:Un,emits:Hn,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.OA)(),l=(0,i.Ht)(),a=(0,i.EW)((()=>{const e={};return"combobox"===o.containerRole&&(e["aria-haspopup"]=r["aria-haspopup"],e["aria-owns"]=r["aria-owns"],e["aria-expanded"]=r["aria-expanded"]),e})),d=(0,i.EW)((()=>["textarea"===o.type?R.b():b.b(),b.m(g.value),b.is("disabled",y.value),b.is("exceed",U.value),{[b.b("group")]:l.prepend||l.append,[b.bm("group","append")]:l.append,[b.bm("group","prepend")]:l.prepend,[b.m("prefix")]:l.prefix||o.prefixIcon,[b.m("suffix")]:l.suffix||o.suffixIcon||o.clearable||o.showPassword,[b.bm("suffix","password-clear")]:K.value&&j.value},r.class])),p=(0,i.EW)((()=>[b.e("wrapper"),b.is("focus",A.value)])),f=Yn({excludeKeys:(0,i.EW)((()=>Object.keys(a.value)))}),{form:v,formItem:h}=oo(),{inputId:m}=ro(o,{formItemContext:h}),g=ao(),y=io(),b=(0,ee.DU)("input"),R=(0,ee.DU)("textarea"),w=(0,s.IJ)(),E=(0,s.IJ)(),C=(0,s.KR)(!1),k=(0,s.KR)(!1),x=(0,s.KR)(!1),_=(0,s.KR)(),S=(0,s.IJ)(o.inputStyle),O=(0,i.EW)((()=>w.value||E.value)),{wrapperRef:I,isFocused:A,handleFocus:L,handleBlur:M}=so(O,{afterBlur(){var e;o.validateEvent&&(null==(e=null==h?void 0:h.validate)||e.call(h,"blur").catch((e=>(0,ne.U)(e))))}}),N=(0,i.EW)((()=>{var e;return null!=(e=null==v?void 0:v.statusIcon)&&e})),W=(0,i.EW)((()=>(null==h?void 0:h.validateState)||"")),D=(0,i.EW)((()=>W.value&&rn[W.value])),F=(0,i.EW)((()=>x.value?zt:dt)),$=(0,i.EW)((()=>[r.style])),B=(0,i.EW)((()=>[o.inputStyle,S.value,{resize:o.resize}])),P=(0,i.EW)((()=>(0,Dn.A)(o.modelValue)?"":String(o.modelValue))),K=(0,i.EW)((()=>o.clearable&&!y.value&&!o.readonly&&!!P.value&&(A.value||C.value))),j=(0,i.EW)((()=>o.showPassword&&!y.value&&!o.readonly&&!!P.value&&(!!P.value||A.value))),V=(0,i.EW)((()=>o.showWordLimit&&!!o.maxlength&&("text"===o.type||"textarea"===o.type)&&!y.value&&!o.readonly&&!o.showPassword)),X=(0,i.EW)((()=>P.value.length)),U=(0,i.EW)((()=>!!V.value&&X.value>Number(o.maxlength))),H=(0,i.EW)((()=>!!l.suffix||!!o.suffixIcon||K.value||o.showPassword||V.value||!!W.value&&N.value)),[z,q]=uo(w);T(E,(e=>{if(Z(),!V.value||"both"!==o.resize)return;const t=e[0],{width:n}=t.contentRect;_.value={right:`calc(100% - ${n+15+6}px)`}}));const Y=()=>{const{type:e,autosize:t}=o;if(c.oc&&"textarea"===e&&E.value)if(t){const e=(0,u.Gv)(t)?t.minRows:void 0,n=(0,u.Gv)(t)?t.maxRows:void 0,o=jn(E.value,e,n);S.value={overflowY:"hidden",...o},(0,i.dY)((()=>{E.value.offsetHeight,S.value=o}))}else S.value={minHeight:jn(E.value).minHeight}},Q=e=>{let t=!1;return()=>{var n;if(t||!o.autosize)return;const r=null===(null==(n=E.value)?void 0:n.offsetParent);r||(e(),t=!0)}},Z=Q(Y),J=()=>{const e=O.value,t=o.formatter?o.formatter(P.value):P.value;e&&e.value!==t&&(e.value=t)},te=async e=>{z();let{value:t}=e.target;o.formatter&&(t=o.parser?o.parser(t):t),k.value||(t!==P.value?(n(G,t),n("input",t),await(0,i.dY)(),J(),q()):J())},oe=e=>{n("change",e.target.value)},re=e=>{n("compositionstart",e),k.value=!0},le=e=>{var t;n("compositionupdate",e);const o=null==(t=e.target)?void 0:t.value,r=o[o.length-1]||"";k.value=!co(r)},ae=e=>{n("compositionend",e),k.value&&(k.value=!1,te(e))},ie=()=>{x.value=!x.value,se()},se=async()=>{var e;await(0,i.dY)(),null==(e=O.value)||e.focus()},ue=()=>{var e;return null==(e=O.value)?void 0:e.blur()},ce=e=>{C.value=!1,n("mouseleave",e)},de=e=>{C.value=!0,n("mouseenter",e)},pe=e=>{n("keydown",e)},fe=()=>{var e;null==(e=O.value)||e.select()},ve=()=>{n(G,""),n("change",""),n("clear"),n("input","")};return(0,i.wB)((()=>o.modelValue),(()=>{var e;(0,i.dY)((()=>Y())),o.validateEvent&&(null==(e=null==h?void 0:h.validate)||e.call(h,"change").catch((e=>(0,ne.U)(e))))})),(0,i.wB)(P,(()=>J())),(0,i.wB)((()=>o.type),(async()=>{await(0,i.dY)(),J(),Y()})),(0,i.sV)((()=>{!o.formatter&&o.parser&&(0,ne.U)("ElInput","If you set the parser, you also need to set the formatter."),J(),(0,i.dY)(Y)})),t({input:w,textarea:E,ref:O,textareaStyle:B,autosize:(0,s.lW)(o,"autosize"),focus:se,blur:ue,select:fe,clear:ve,resizeTextarea:Y}),(e,t)=>(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",(0,i.v6)((0,s.R1)(a),{class:(0,s.R1)(d),style:(0,s.R1)($),role:e.containerRole,onMouseenter:de,onMouseleave:ce}),[(0,i.Q3)(" input "),"textarea"!==e.type?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.Q3)(" prepend slot "),e.$slots.prepend?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(b).be("group","prepend"))},[(0,i.RG)(e.$slots,"prepend")],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{ref_key:"wrapperRef",ref:I,class:(0,u.C4)((0,s.R1)(p))},[(0,i.Q3)(" prefix slot "),e.$slots.prefix||e.prefixIcon?((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(b).e("prefix"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(b).e("prefix-inner"))},[(0,i.RG)(e.$slots,"prefix"),e.prefixIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(b).e("icon"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.prefixIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],2)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("input",(0,i.v6)({id:(0,s.R1)(m),ref_key:"input",ref:w,class:(0,s.R1)(b).e("inner")},(0,s.R1)(f),{minlength:e.minlength,maxlength:e.maxlength,type:e.showPassword?x.value?"text":"password":e.type,disabled:(0,s.R1)(y),readonly:e.readonly,autocomplete:e.autocomplete,tabindex:e.tabindex,"aria-label":e.label,placeholder:e.placeholder,style:e.inputStyle,form:e.form,autofocus:e.autofocus,onCompositionstart:re,onCompositionupdate:le,onCompositionend:ae,onInput:te,onFocus:t[0]||(t[0]=(...e)=>(0,s.R1)(L)&&(0,s.R1)(L)(...e)),onBlur:t[1]||(t[1]=(...e)=>(0,s.R1)(M)&&(0,s.R1)(M)(...e)),onChange:oe,onKeydown:pe}),null,16,fo),(0,i.Q3)(" suffix slot "),(0,s.R1)(H)?((0,i.uX)(),(0,i.CE)("span",{key:1,class:(0,u.C4)((0,s.R1)(b).e("suffix"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(b).e("suffix-inner"))},[(0,s.R1)(K)&&(0,s.R1)(j)&&(0,s.R1)(V)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.RG)(e.$slots,"suffix"),e.suffixIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(b).e("icon"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.suffixIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],64)),(0,s.R1)(K)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)([(0,s.R1)(b).e("icon"),(0,s.R1)(b).e("clear")]),onMousedown:(0,ge.D$)((0,s.R1)(u.tE),["prevent"]),onClick:ve},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(qe))])),_:1},8,["class","onMousedown"])):(0,i.Q3)("v-if",!0),(0,s.R1)(j)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:2,class:(0,u.C4)([(0,s.R1)(b).e("icon"),(0,s.R1)(b).e("password")]),onClick:ie},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(F))))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,s.R1)(V)?((0,i.uX)(),(0,i.CE)("span",{key:3,class:(0,u.C4)((0,s.R1)(b).e("count"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(b).e("count-inner"))},(0,u.v_)((0,s.R1)(X))+" / "+(0,u.v_)(e.maxlength),3)],2)):(0,i.Q3)("v-if",!0),(0,s.R1)(W)&&(0,s.R1)(D)&&(0,s.R1)(N)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:4,class:(0,u.C4)([(0,s.R1)(b).e("icon"),(0,s.R1)(b).e("validateIcon"),(0,s.R1)(b).is("loading","validating"===(0,s.R1)(W))])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(D))))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],2)],2)):(0,i.Q3)("v-if",!0)],2),(0,i.Q3)(" append slot "),e.$slots.append?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(b).be("group","append"))},[(0,i.RG)(e.$slots,"append")],2)):(0,i.Q3)("v-if",!0)],64)):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.Q3)(" textarea "),(0,i.Lk)("textarea",(0,i.v6)({id:(0,s.R1)(m),ref_key:"textarea",ref:E,class:(0,s.R1)(R).e("inner")},(0,s.R1)(f),{minlength:e.minlength,maxlength:e.maxlength,tabindex:e.tabindex,disabled:(0,s.R1)(y),readonly:e.readonly,autocomplete:e.autocomplete,style:(0,s.R1)(B),"aria-label":e.label,placeholder:e.placeholder,form:e.form,autofocus:e.autofocus,onCompositionstart:re,onCompositionupdate:le,onCompositionend:ae,onInput:te,onFocus:t[2]||(t[2]=(...e)=>(0,s.R1)(L)&&(0,s.R1)(L)(...e)),onBlur:t[3]||(t[3]=(...e)=>(0,s.R1)(M)&&(0,s.R1)(M)(...e)),onChange:oe,onKeydown:pe}),null,16,vo),(0,s.R1)(V)?((0,i.uX)(),(0,i.CE)("span",{key:0,style:(0,u.Tr)(_.value),class:(0,u.C4)((0,s.R1)(b).e("count"))},(0,u.v_)((0,s.R1)(X))+" / "+(0,u.v_)(e.maxlength),7)):(0,i.Q3)("v-if",!0)],64))],16,po)),[[ge.aG,"hidden"!==e.type]])}});var go=J(mo,[["__file","input.vue"]]);const yo=pe(go),bo=4,Ro={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}},wo=({move:e,size:t,bar:n})=>({[n.size]:t,transform:`translate${n.axis}(${e}%)`}),Eo=Symbol("scrollbarContextKey"),Co=(0,H.b_)({vertical:Boolean,size:String,move:Number,ratio:{type:Number,required:!0},always:Boolean}),ko="Thumb",xo=(0,i.pM)({__name:"thumb",props:Co,setup(e){const t=e,n=(0,i.WQ)(Eo),o=(0,ee.DU)("scrollbar");n||(0,ne.$)(ko,"can not inject scrollbar context");const r=(0,s.KR)(),l=(0,s.KR)(),a=(0,s.KR)({}),d=(0,s.KR)(!1);let p=!1,f=!1,v=c.oc?document.onselectstart:null;const m=(0,i.EW)((()=>Ro[t.vertical?"vertical":"horizontal"])),g=(0,i.EW)((()=>wo({size:t.size,move:t.move,bar:m.value}))),y=(0,i.EW)((()=>r.value[m.value.offset]**2/n.wrapElement[m.value.scrollSize]/t.ratio/l.value[m.value.offset])),b=e=>{var t;if(e.stopPropagation(),e.ctrlKey||[1,2].includes(e.button))return;null==(t=window.getSelection())||t.removeAllRanges(),w(e);const n=e.currentTarget;n&&(a.value[m.value.axis]=n[m.value.offset]-(e[m.value.client]-n.getBoundingClientRect()[m.value.direction]))},R=e=>{if(!l.value||!r.value||!n.wrapElement)return;const t=Math.abs(e.target.getBoundingClientRect()[m.value.direction]-e[m.value.client]),o=l.value[m.value.offset]/2,a=100*(t-o)*y.value/r.value[m.value.offset];n.wrapElement[m.value.scroll]=a*n.wrapElement[m.value.scrollSize]/100},w=e=>{e.stopImmediatePropagation(),p=!0,document.addEventListener("mousemove",E),document.addEventListener("mouseup",C),v=document.onselectstart,document.onselectstart=()=>!1},E=e=>{if(!r.value||!l.value)return;if(!1===p)return;const t=a.value[m.value.axis];if(!t)return;const o=-1*(r.value.getBoundingClientRect()[m.value.direction]-e[m.value.client]),i=l.value[m.value.offset]-t,s=100*(o-i)*y.value/r.value[m.value.offset];n.wrapElement[m.value.scroll]=s*n.wrapElement[m.value.scrollSize]/100},C=()=>{p=!1,a.value[m.value.axis]=0,document.removeEventListener("mousemove",E),document.removeEventListener("mouseup",C),_(),f&&(d.value=!1)},k=()=>{f=!1,d.value=!!t.size},x=()=>{f=!0,d.value=p};(0,i.xo)((()=>{_(),document.removeEventListener("mouseup",C)}));const _=()=>{document.onselectstart!==v&&(document.onselectstart=v)};return h((0,s.lW)(n,"scrollbarElement"),"mousemove",k),h((0,s.lW)(n,"scrollbarElement"),"mouseleave",x),(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:(0,s.R1)(o).b("fade"),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("div",{ref_key:"instance",ref:r,class:(0,u.C4)([(0,s.R1)(o).e("bar"),(0,s.R1)(o).is((0,s.R1)(m).key)]),onMousedown:R},[(0,i.Lk)("div",{ref_key:"thumb",ref:l,class:(0,u.C4)((0,s.R1)(o).e("thumb")),style:(0,u.Tr)((0,s.R1)(g)),onMousedown:b},null,38)],34),[[ge.aG,e.always||d.value]])])),_:1},8,["name"]))}});var _o=J(xo,[["__file","thumb.vue"]]);const So=(0,H.b_)({always:{type:Boolean,default:!0},minSize:{type:Number,required:!0}}),To=(0,i.pM)({__name:"bar",props:So,setup(e,{expose:t}){const n=e,o=(0,i.WQ)(Eo),r=(0,s.KR)(0),l=(0,s.KR)(0),a=(0,s.KR)(""),u=(0,s.KR)(""),c=(0,s.KR)(1),d=(0,s.KR)(1),p=e=>{if(e){const t=e.offsetHeight-bo,n=e.offsetWidth-bo;l.value=100*e.scrollTop/t*c.value,r.value=100*e.scrollLeft/n*d.value}},f=()=>{const e=null==o?void 0:o.wrapElement;if(!e)return;const t=e.offsetHeight-bo,r=e.offsetWidth-bo,l=t**2/e.scrollHeight,i=r**2/e.scrollWidth,s=Math.max(l,n.minSize),p=Math.max(i,n.minSize);c.value=l/(t-l)/(s/(t-s)),d.value=i/(r-i)/(p/(r-p)),u.value=s+bo((0,i.uX)(),(0,i.CE)(i.FK,null,[(0,i.bF)(_o,{move:r.value,ratio:d.value,size:a.value,always:e.always},null,8,["move","ratio","size","always"]),(0,i.bF)(_o,{move:l.value,ratio:c.value,size:u.value,vertical:"",always:e.always},null,8,["move","ratio","size","always"])],64))}});var Oo=J(To,[["__file","bar.vue"]]);const Io=(0,H.b_)({height:{type:[String,Number],default:""},maxHeight:{type:[String,Number],default:""},native:{type:Boolean,default:!1},wrapStyle:{type:(0,H.jq)([String,Object,Array]),default:""},wrapClass:{type:[String,Array],default:""},viewClass:{type:[String,Array],default:""},viewStyle:{type:[String,Array,Object],default:""},noresize:Boolean,tag:{type:String,default:"div"},always:Boolean,minSize:{type:Number,default:20},id:String,role:String,ariaLabel:String,ariaOrientation:{type:String,values:["horizontal","vertical"]}}),Ao={scroll:({scrollTop:e,scrollLeft:t})=>[e,t].every(z.Et)},Lo="ElScrollbar",Mo=(0,i.pM)({name:Lo}),No=(0,i.pM)({...Mo,props:Io,emits:Ao,setup(e,{expose:t,emit:n}){const o=e,r=(0,ee.DU)("scrollbar");let l,a;const c=(0,s.KR)(),d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)(),v=(0,i.EW)((()=>{const e={};return o.height&&(e.height=(0,te._V)(o.height)),o.maxHeight&&(e.maxHeight=(0,te._V)(o.maxHeight)),[o.wrapStyle,e]})),m=(0,i.EW)((()=>[o.wrapClass,r.e("wrap"),{[r.em("wrap","hidden-default")]:!o.native}])),g=(0,i.EW)((()=>[r.e("view"),o.viewClass])),y=()=>{var e;d.value&&(null==(e=f.value)||e.handleScroll(d.value),n("scroll",{scrollTop:d.value.scrollTop,scrollLeft:d.value.scrollLeft}))};function b(e,t){(0,u.Gv)(e)?d.value.scrollTo(e):(0,z.Et)(e)&&(0,z.Et)(t)&&d.value.scrollTo(e,t)}const R=e=>{(0,z.Et)(e)?d.value.scrollTop=e:(0,ne.U)(Lo,"value must be a number")},w=e=>{(0,z.Et)(e)?d.value.scrollLeft=e:(0,ne.U)(Lo,"value must be a number")},E=()=>{var e;null==(e=f.value)||e.update()};return(0,i.wB)((()=>o.noresize),(e=>{e?(null==l||l(),null==a||a()):(({stop:l}=T(p,E)),a=h("resize",E))}),{immediate:!0}),(0,i.wB)((()=>[o.maxHeight,o.height]),(()=>{o.native||(0,i.dY)((()=>{var e;E(),d.value&&(null==(e=f.value)||e.handleScroll(d.value))}))})),(0,i.Gt)(Eo,(0,s.Kh)({scrollbarElement:c,wrapElement:d})),(0,i.sV)((()=>{o.native||(0,i.dY)((()=>{E()}))})),(0,i.$u)((()=>E())),t({wrapRef:d,update:E,scrollTo:b,setScrollTop:R,setScrollLeft:w,handleScroll:y}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"scrollbarRef",ref:c,class:(0,u.C4)((0,s.R1)(r).b())},[(0,i.Lk)("div",{ref_key:"wrapRef",ref:d,class:(0,u.C4)((0,s.R1)(m)),style:(0,u.Tr)((0,s.R1)(v)),onScroll:y},[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),{id:e.id,ref_key:"resizeRef",ref:p,class:(0,u.C4)((0,s.R1)(g)),style:(0,u.Tr)(e.viewStyle),role:e.role,"aria-label":e.ariaLabel,"aria-orientation":e.ariaOrientation},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["id","class","style","role","aria-label","aria-orientation"]))],38),e.native?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.Wv)(Oo,{key:0,ref_key:"barRef",ref:f,always:e.always,"min-size":e.minSize},null,8,["always","min-size"]))],2))}});var Wo=J(No,[["__file","scrollbar.vue"]]);const Do=pe(Wo),Fo=Symbol("popper"),$o=Symbol("popperContent"),Bo=["dialog","grid","group","listbox","menu","navigation","tooltip","tree"],Po=(0,H.b_)({role:{type:String,values:Bo,default:"tooltip"}}),Ko=(0,i.pM)({name:"ElPopper",inheritAttrs:!1}),jo=(0,i.pM)({...Ko,props:Po,setup(e,{expose:t}){const n=e,o=(0,s.KR)(),r=(0,s.KR)(),l=(0,s.KR)(),a=(0,s.KR)(),u=(0,i.EW)((()=>n.role)),c={triggerRef:o,popperInstanceRef:r,contentRef:l,referenceRef:a,role:u};return t(c),(0,i.Gt)(Fo,c),(e,t)=>(0,i.RG)(e.$slots,"default")}});var Vo=J(jo,[["__file","popper.vue"]]);const Xo=pe(Vo),Uo=Symbol("elTooltip");function Ho(){let e;const t=(t,o)=>{n(),e=window.setTimeout(t,o)},n=()=>window.clearTimeout(e);return(0,c.Uo)((()=>n())),{registerTimeout:t,cancelTimeout:n}}const zo=(0,H.b_)({showAfter:{type:Number,default:0},hideAfter:{type:Number,default:200},autoClose:{type:Number,default:0}}),Go=({showAfter:e,hideAfter:t,autoClose:n,open:o,close:r})=>{const{registerTimeout:l}=Ho(),{registerTimeout:a,cancelTimeout:i}=Ho(),u=t=>{l((()=>{o(t);const e=(0,s.R1)(n);(0,z.Et)(e)&&e>0&&a((()=>{r(t)}),e)}),(0,s.R1)(e))},c=e=>{i(),l((()=>{r(e)}),(0,s.R1)(t))};return{onOpen:u,onClose:c}};var qo="top",Yo="bottom",Qo="right",Zo="left",Jo="auto",er=[qo,Yo,Qo,Zo],tr="start",nr="end",or="clippingParents",rr="viewport",lr="popper",ar="reference",ir=er.reduce((function(e,t){return e.concat([t+"-"+tr,t+"-"+nr])}),[]),sr=[].concat(er,[Jo]).reduce((function(e,t){return e.concat([t,t+"-"+tr,t+"-"+nr])}),[]),ur="beforeRead",cr="read",dr="afterRead",pr="beforeMain",fr="main",vr="afterMain",hr="beforeWrite",mr="write",gr="afterWrite",yr=[ur,cr,dr,pr,fr,vr,hr,mr,gr];function br(e){return e?(e.nodeName||"").toLowerCase():null}function Rr(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function wr(e){var t=Rr(e).Element;return e instanceof t||e instanceof Element}function Er(e){var t=Rr(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function Cr(e){if("undefined"==typeof ShadowRoot)return!1;var t=Rr(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}function kr(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},o=t.attributes[e]||{},r=t.elements[e];!Er(r)||!br(r)||(Object.assign(r.style,n),Object.keys(o).forEach((function(e){var t=o[e];!1===t?r.removeAttribute(e):r.setAttribute(e,!0===t?"":t)})))}))}function xr(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(e){var o=t.elements[e],r=t.attributes[e]||{},l=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]),a=l.reduce((function(e,t){return e[t]="",e}),{});!Er(o)||!br(o)||(Object.assign(o.style,a),Object.keys(r).forEach((function(e){o.removeAttribute(e)})))}))}}var _r={name:"applyStyles",enabled:!0,phase:"write",fn:kr,effect:xr,requires:["computeStyles"]};function Sr(e){return e.split("-")[0]}var Tr=Math.max,Or=Math.min,Ir=Math.round;function Ar(e,t){void 0===t&&(t=!1);var n=e.getBoundingClientRect(),o=1,r=1;if(Er(e)&&t){var l=e.offsetHeight,a=e.offsetWidth;a>0&&(o=Ir(n.width)/a||1),l>0&&(r=Ir(n.height)/l||1)}return{width:n.width/o,height:n.height/r,top:n.top/r,right:n.right/o,bottom:n.bottom/r,left:n.left/o,x:n.left/o,y:n.top/r}}function Lr(e){var t=Ar(e),n=e.offsetWidth,o=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-o)<=1&&(o=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:o}}function Mr(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&Cr(n)){var o=t;do{if(o&&e.isSameNode(o))return!0;o=o.parentNode||o.host}while(o)}return!1}function Nr(e){return Rr(e).getComputedStyle(e)}function Wr(e){return["table","td","th"].indexOf(br(e))>=0}function Dr(e){return((wr(e)?e.ownerDocument:e.document)||window.document).documentElement}function Fr(e){return"html"===br(e)?e:e.assignedSlot||e.parentNode||(Cr(e)?e.host:null)||Dr(e)}function $r(e){return Er(e)&&"fixed"!==Nr(e).position?e.offsetParent:null}function Br(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox"),n=-1!==navigator.userAgent.indexOf("Trident");if(n&&Er(e)){var o=Nr(e);if("fixed"===o.position)return null}var r=Fr(e);for(Cr(r)&&(r=r.host);Er(r)&&["html","body"].indexOf(br(r))<0;){var l=Nr(r);if("none"!==l.transform||"none"!==l.perspective||"paint"===l.contain||-1!==["transform","perspective"].indexOf(l.willChange)||t&&"filter"===l.willChange||t&&l.filter&&"none"!==l.filter)return r;r=r.parentNode}return null}function Pr(e){for(var t=Rr(e),n=$r(e);n&&Wr(n)&&"static"===Nr(n).position;)n=$r(n);return n&&("html"===br(n)||"body"===br(n)&&"static"===Nr(n).position)?t:n||Br(e)||t}function Kr(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function jr(e,t,n){return Tr(e,Or(t,n))}function Vr(e,t,n){var o=jr(e,t,n);return o>n?n:o}function Xr(){return{top:0,right:0,bottom:0,left:0}}function Ur(e){return Object.assign({},Xr(),e)}function Hr(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}var zr=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,Ur("number"!=typeof e?e:Hr(e,er))};function Gr(e){var t,n=e.state,o=e.name,r=e.options,l=n.elements.arrow,a=n.modifiersData.popperOffsets,i=Sr(n.placement),s=Kr(i),u=[Zo,Qo].indexOf(i)>=0,c=u?"height":"width";if(l&&a){var d=zr(r.padding,n),p=Lr(l),f="y"===s?qo:Zo,v="y"===s?Yo:Qo,h=n.rects.reference[c]+n.rects.reference[s]-a[s]-n.rects.popper[c],m=a[s]-n.rects.reference[s],g=Pr(l),y=g?"y"===s?g.clientHeight||0:g.clientWidth||0:0,b=h/2-m/2,R=d[f],w=y-p[c]-d[v],E=y/2-p[c]/2+b,C=jr(R,E,w),k=s;n.modifiersData[o]=(t={},t[k]=C,t.centerOffset=C-E,t)}}function qr(e){var t=e.state,n=e.options,o=n.element,r=void 0===o?"[data-popper-arrow]":o;null!=r&&("string"==typeof r&&(r=t.elements.popper.querySelector(r),!r)||!Mr(t.elements.popper,r)||(t.elements.arrow=r))}var Yr={name:"arrow",enabled:!0,phase:"main",fn:Gr,effect:qr,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Qr(e){return e.split("-")[1]}var Zr={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Jr(e){var t=e.x,n=e.y,o=window,r=o.devicePixelRatio||1;return{x:Ir(t*r)/r||0,y:Ir(n*r)/r||0}}function el(e){var t,n=e.popper,o=e.popperRect,r=e.placement,l=e.variation,a=e.offsets,i=e.position,s=e.gpuAcceleration,u=e.adaptive,c=e.roundOffsets,d=e.isFixed,p=a.x,f=void 0===p?0:p,v=a.y,h=void 0===v?0:v,m="function"==typeof c?c({x:f,y:h}):{x:f,y:h};f=m.x,h=m.y;var g=a.hasOwnProperty("x"),y=a.hasOwnProperty("y"),b=Zo,R=qo,w=window;if(u){var E=Pr(n),C="clientHeight",k="clientWidth";if(E===Rr(n)&&(E=Dr(n),"static"!==Nr(E).position&&"absolute"===i&&(C="scrollHeight",k="scrollWidth")),r===qo||(r===Zo||r===Qo)&&l===nr){R=Yo;var x=d&&E===w&&w.visualViewport?w.visualViewport.height:E[C];h-=x-o.height,h*=s?1:-1}if(r===Zo||(r===qo||r===Yo)&&l===nr){b=Qo;var _=d&&E===w&&w.visualViewport?w.visualViewport.width:E[k];f-=_-o.width,f*=s?1:-1}}var S,T=Object.assign({position:i},u&&Zr),O=!0===c?Jr({x:f,y:h}):{x:f,y:h};return f=O.x,h=O.y,s?Object.assign({},T,(S={},S[R]=y?"0":"",S[b]=g?"0":"",S.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+h+"px)":"translate3d("+f+"px, "+h+"px, 0)",S)):Object.assign({},T,(t={},t[R]=y?h+"px":"",t[b]=g?f+"px":"",t.transform="",t))}function tl(e){var t=e.state,n=e.options,o=n.gpuAcceleration,r=void 0===o||o,l=n.adaptive,a=void 0===l||l,i=n.roundOffsets,s=void 0===i||i,u={placement:Sr(t.placement),variation:Qr(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,el(Object.assign({},u,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:s})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,el(Object.assign({},u,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:s})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var nl={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:tl,data:{}},ol={passive:!0};function rl(e){var t=e.state,n=e.instance,o=e.options,r=o.scroll,l=void 0===r||r,a=o.resize,i=void 0===a||a,s=Rr(t.elements.popper),u=[].concat(t.scrollParents.reference,t.scrollParents.popper);return l&&u.forEach((function(e){e.addEventListener("scroll",n.update,ol)})),i&&s.addEventListener("resize",n.update,ol),function(){l&&u.forEach((function(e){e.removeEventListener("scroll",n.update,ol)})),i&&s.removeEventListener("resize",n.update,ol)}}var ll={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:rl,data:{}},al={left:"right",right:"left",bottom:"top",top:"bottom"};function il(e){return e.replace(/left|right|bottom|top/g,(function(e){return al[e]}))}var sl={start:"end",end:"start"};function ul(e){return e.replace(/start|end/g,(function(e){return sl[e]}))}function cl(e){var t=Rr(e),n=t.pageXOffset,o=t.pageYOffset;return{scrollLeft:n,scrollTop:o}}function dl(e){return Ar(Dr(e)).left+cl(e).scrollLeft}function pl(e){var t=Rr(e),n=Dr(e),o=t.visualViewport,r=n.clientWidth,l=n.clientHeight,a=0,i=0;return o&&(r=o.width,l=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(a=o.offsetLeft,i=o.offsetTop)),{width:r,height:l,x:a+dl(e),y:i}}function fl(e){var t,n=Dr(e),o=cl(e),r=null==(t=e.ownerDocument)?void 0:t.body,l=Tr(n.scrollWidth,n.clientWidth,r?r.scrollWidth:0,r?r.clientWidth:0),a=Tr(n.scrollHeight,n.clientHeight,r?r.scrollHeight:0,r?r.clientHeight:0),i=-o.scrollLeft+dl(e),s=-o.scrollTop;return"rtl"===Nr(r||n).direction&&(i+=Tr(n.clientWidth,r?r.clientWidth:0)-l),{width:l,height:a,x:i,y:s}}function vl(e){var t=Nr(e),n=t.overflow,o=t.overflowX,r=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+r+o)}function hl(e){return["html","body","#document"].indexOf(br(e))>=0?e.ownerDocument.body:Er(e)&&vl(e)?e:hl(Fr(e))}function ml(e,t){var n;void 0===t&&(t=[]);var o=hl(e),r=o===(null==(n=e.ownerDocument)?void 0:n.body),l=Rr(o),a=r?[l].concat(l.visualViewport||[],vl(o)?o:[]):o,i=t.concat(a);return r?i:i.concat(ml(Fr(a)))}function gl(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function yl(e){var t=Ar(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 bl(e,t){return t===rr?gl(pl(e)):wr(t)?yl(t):gl(fl(Dr(e)))}function Rl(e){var t=ml(Fr(e)),n=["absolute","fixed"].indexOf(Nr(e).position)>=0,o=n&&Er(e)?Pr(e):e;return wr(o)?t.filter((function(e){return wr(e)&&Mr(e,o)&&"body"!==br(e)})):[]}function wl(e,t,n){var o="clippingParents"===t?Rl(e):[].concat(t),r=[].concat(o,[n]),l=r[0],a=r.reduce((function(t,n){var o=bl(e,n);return t.top=Tr(o.top,t.top),t.right=Or(o.right,t.right),t.bottom=Or(o.bottom,t.bottom),t.left=Tr(o.left,t.left),t}),bl(e,l));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}function El(e){var t,n=e.reference,o=e.element,r=e.placement,l=r?Sr(r):null,a=r?Qr(r):null,i=n.x+n.width/2-o.width/2,s=n.y+n.height/2-o.height/2;switch(l){case qo:t={x:i,y:n.y-o.height};break;case Yo:t={x:i,y:n.y+n.height};break;case Qo:t={x:n.x+n.width,y:s};break;case Zo:t={x:n.x-o.width,y:s};break;default:t={x:n.x,y:n.y}}var u=l?Kr(l):null;if(null!=u){var c="y"===u?"height":"width";switch(a){case tr:t[u]=t[u]-(n[c]/2-o[c]/2);break;case nr:t[u]=t[u]+(n[c]/2-o[c]/2);break}}return t}function Cl(e,t){void 0===t&&(t={});var n=t,o=n.placement,r=void 0===o?e.placement:o,l=n.boundary,a=void 0===l?or:l,i=n.rootBoundary,s=void 0===i?rr:i,u=n.elementContext,c=void 0===u?lr:u,d=n.altBoundary,p=void 0!==d&&d,f=n.padding,v=void 0===f?0:f,h=Ur("number"!=typeof v?v:Hr(v,er)),m=c===lr?ar:lr,g=e.rects.popper,y=e.elements[p?m:c],b=wl(wr(y)?y:y.contextElement||Dr(e.elements.popper),a,s),R=Ar(e.elements.reference),w=El({reference:R,element:g,strategy:"absolute",placement:r}),E=gl(Object.assign({},g,w)),C=c===lr?E:R,k={top:b.top-C.top+h.top,bottom:C.bottom-b.bottom+h.bottom,left:b.left-C.left+h.left,right:C.right-b.right+h.right},x=e.modifiersData.offset;if(c===lr&&x){var _=x[r];Object.keys(k).forEach((function(e){var t=[Qo,Yo].indexOf(e)>=0?1:-1,n=[qo,Yo].indexOf(e)>=0?"y":"x";k[e]+=_[n]*t}))}return k}function kl(e,t){void 0===t&&(t={});var n=t,o=n.placement,r=n.boundary,l=n.rootBoundary,a=n.padding,i=n.flipVariations,s=n.allowedAutoPlacements,u=void 0===s?sr:s,c=Qr(o),d=c?i?ir:ir.filter((function(e){return Qr(e)===c})):er,p=d.filter((function(e){return u.indexOf(e)>=0}));0===p.length&&(p=d);var f=p.reduce((function(t,n){return t[n]=Cl(e,{placement:n,boundary:r,rootBoundary:l,padding:a})[Sr(n)],t}),{});return Object.keys(f).sort((function(e,t){return f[e]-f[t]}))}function xl(e){if(Sr(e)===Jo)return[];var t=il(e);return[ul(e),t,ul(t)]}function _l(e){var t=e.state,n=e.options,o=e.name;if(!t.modifiersData[o]._skip){for(var r=n.mainAxis,l=void 0===r||r,a=n.altAxis,i=void 0===a||a,s=n.fallbackPlacements,u=n.padding,c=n.boundary,d=n.rootBoundary,p=n.altBoundary,f=n.flipVariations,v=void 0===f||f,h=n.allowedAutoPlacements,m=t.options.placement,g=Sr(m),y=g===m,b=s||(y||!v?[il(m)]:xl(m)),R=[m].concat(b).reduce((function(e,n){return e.concat(Sr(n)===Jo?kl(t,{placement:n,boundary:c,rootBoundary:d,padding:u,flipVariations:v,allowedAutoPlacements:h}):n)}),[]),w=t.rects.reference,E=t.rects.popper,C=new Map,k=!0,x=R[0],_=0;_=0,A=I?"width":"height",L=Cl(t,{placement:S,boundary:c,rootBoundary:d,altBoundary:p,padding:u}),M=I?O?Qo:Zo:O?Yo:qo;w[A]>E[A]&&(M=il(M));var N=il(M),W=[];if(l&&W.push(L[T]<=0),i&&W.push(L[M]<=0,L[N]<=0),W.every((function(e){return e}))){x=S,k=!1;break}C.set(S,W)}if(k)for(var D=v?3:1,F=function(e){var t=R.find((function(t){var n=C.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return x=t,"break"},$=D;$>0;$--){var B=F($);if("break"===B)break}t.placement!==x&&(t.modifiersData[o]._skip=!0,t.placement=x,t.reset=!0)}}var Sl={name:"flip",enabled:!0,phase:"main",fn:_l,requiresIfExists:["offset"],data:{_skip:!1}};function Tl(e,t,n){return void 0===n&&(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 Ol(e){return[qo,Qo,Yo,Zo].some((function(t){return e[t]>=0}))}function Il(e){var t=e.state,n=e.name,o=t.rects.reference,r=t.rects.popper,l=t.modifiersData.preventOverflow,a=Cl(t,{elementContext:"reference"}),i=Cl(t,{altBoundary:!0}),s=Tl(a,o),u=Tl(i,r,l),c=Ol(s),d=Ol(u);t.modifiersData[n]={referenceClippingOffsets:s,popperEscapeOffsets:u,isReferenceHidden:c,hasPopperEscaped:d},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":c,"data-popper-escaped":d})}var Al={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:Il};function Ll(e,t,n){var o=Sr(e),r=[Zo,qo].indexOf(o)>=0?-1:1,l="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=l[0],i=l[1];return a=a||0,i=(i||0)*r,[Zo,Qo].indexOf(o)>=0?{x:i,y:a}:{x:a,y:i}}function Ml(e){var t=e.state,n=e.options,o=e.name,r=n.offset,l=void 0===r?[0,0]:r,a=sr.reduce((function(e,n){return e[n]=Ll(n,t.rects,l),e}),{}),i=a[t.placement],s=i.x,u=i.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=s,t.modifiersData.popperOffsets.y+=u),t.modifiersData[o]=a}var Nl={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:Ml};function Wl(e){var t=e.state,n=e.name;t.modifiersData[n]=El({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}var Dl={name:"popperOffsets",enabled:!0,phase:"read",fn:Wl,data:{}};function Fl(e){return"x"===e?"y":"x"}function $l(e){var t=e.state,n=e.options,o=e.name,r=n.mainAxis,l=void 0===r||r,a=n.altAxis,i=void 0!==a&&a,s=n.boundary,u=n.rootBoundary,c=n.altBoundary,d=n.padding,p=n.tether,f=void 0===p||p,v=n.tetherOffset,h=void 0===v?0:v,m=Cl(t,{boundary:s,rootBoundary:u,padding:d,altBoundary:c}),g=Sr(t.placement),y=Qr(t.placement),b=!y,R=Kr(g),w=Fl(R),E=t.modifiersData.popperOffsets,C=t.rects.reference,k=t.rects.popper,x="function"==typeof h?h(Object.assign({},t.rects,{placement:t.placement})):h,_="number"==typeof x?{mainAxis:x,altAxis:x}:Object.assign({mainAxis:0,altAxis:0},x),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,T={x:0,y:0};if(E){if(l){var O,I="y"===R?qo:Zo,A="y"===R?Yo:Qo,L="y"===R?"height":"width",M=E[R],N=M+m[I],W=M-m[A],D=f?-k[L]/2:0,F=y===tr?C[L]:k[L],$=y===tr?-k[L]:-C[L],B=t.elements.arrow,P=f&&B?Lr(B):{width:0,height:0},K=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:Xr(),j=K[I],V=K[A],X=jr(0,C[L],P[L]),U=b?C[L]/2-D-X-j-_.mainAxis:F-X-j-_.mainAxis,H=b?-C[L]/2+D+X+V+_.mainAxis:$+X+V+_.mainAxis,z=t.elements.arrow&&Pr(t.elements.arrow),G=z?"y"===R?z.clientTop||0:z.clientLeft||0:0,q=null!=(O=null==S?void 0:S[R])?O:0,Y=M+U-q-G,Q=M+H-q,Z=jr(f?Or(N,Y):N,M,f?Tr(W,Q):W);E[R]=Z,T[R]=Z-M}if(i){var J,ee="x"===R?qo:Zo,te="x"===R?Yo:Qo,ne=E[w],oe="y"===w?"height":"width",re=ne+m[ee],le=ne-m[te],ae=-1!==[qo,Zo].indexOf(g),ie=null!=(J=null==S?void 0:S[w])?J:0,se=ae?re:ne-C[oe]-k[oe]-ie+_.altAxis,ue=ae?ne+C[oe]+k[oe]-ie-_.altAxis:le,ce=f&&ae?Vr(se,ne,ue):jr(f?se:re,ne,f?ue:le);E[w]=ce,T[w]=ce-ne}t.modifiersData[o]=T}}var Bl={name:"preventOverflow",enabled:!0,phase:"main",fn:$l,requiresIfExists:["offset"]};function Pl(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}function Kl(e){return e!==Rr(e)&&Er(e)?Pl(e):cl(e)}function jl(e){var t=e.getBoundingClientRect(),n=Ir(t.width)/e.offsetWidth||1,o=Ir(t.height)/e.offsetHeight||1;return 1!==n||1!==o}function Vl(e,t,n){void 0===n&&(n=!1);var o=Er(t),r=Er(t)&&jl(t),l=Dr(t),a=Ar(e,r),i={scrollLeft:0,scrollTop:0},s={x:0,y:0};return(o||!o&&!n)&&(("body"!==br(t)||vl(l))&&(i=Kl(t)),Er(t)?(s=Ar(t,!0),s.x+=t.clientLeft,s.y+=t.clientTop):l&&(s.x=dl(l))),{x:a.left+i.scrollLeft-s.x,y:a.top+i.scrollTop-s.y,width:a.width,height:a.height}}function Xl(e){var t=new Map,n=new Set,o=[];function r(e){n.add(e.name);var l=[].concat(e.requires||[],e.requiresIfExists||[]);l.forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&r(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),o}function Ul(e){var t=Xl(e);return yr.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}function Hl(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}function zl(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}var Gl={placement:"bottom",modifiers:[],strategy:"absolute"};function ql(){for(var e=arguments.length,t=new Array(e),n=0;n({})},strategy:{type:String,values:ea,default:"absolute"}}),na=(0,H.b_)({...ta,id:String,style:{type:(0,H.jq)([String,Array,Object])},className:{type:(0,H.jq)([String,Array,Object])},effect:{type:String,default:"dark"},visible:Boolean,enterable:{type:Boolean,default:!0},pure:Boolean,focusOnShow:{type:Boolean,default:!1},trapping:{type:Boolean,default:!1},popperClass:{type:(0,H.jq)([String,Array,Object])},popperStyle:{type:(0,H.jq)([String,Array,Object])},referenceEl:{type:(0,H.jq)(Object)},triggerTargetEl:{type:(0,H.jq)(Object)},stopPopperMouseEvent:{type:Boolean,default:!0},ariaLabel:{type:String,default:void 0},virtualTriggering:Boolean,zIndex:Number}),oa={mouseenter:e=>e instanceof MouseEvent,mouseleave:e=>e instanceof MouseEvent,focus:()=>!0,blur:()=>!0,close:()=>!0},ra=(0,H.b_)({...zo,...na,appendTo:{type:(0,H.jq)([String,Object])},content:{type:String,default:""},rawContent:{type:Boolean,default:!1},persistent:Boolean,ariaLabel:String,visible:{type:(0,H.jq)(Boolean),default:null},transition:String,teleported:{type:Boolean,default:!0},disabled:Boolean}),la=(0,H.b_)({virtualRef:{type:(0,H.jq)(Object)},virtualTriggering:Boolean,onMouseenter:{type:(0,H.jq)(Function)},onMouseleave:{type:(0,H.jq)(Function)},onClick:{type:(0,H.jq)(Function)},onKeydown:{type:(0,H.jq)(Function)},onFocus:{type:(0,H.jq)(Function)},onBlur:{type:(0,H.jq)(Function)},onContextmenu:{type:(0,H.jq)(Function)},id:String,open:Boolean}),aa={tab:"Tab",enter:"Enter",space:"Space",left:"ArrowLeft",up:"ArrowUp",right:"ArrowRight",down:"ArrowDown",esc:"Escape",delete:"Delete",backspace:"Backspace",numpadEnter:"NumpadEnter",pageUp:"PageUp",pageDown:"PageDown",home:"Home",end:"End"},ia=(0,H.b_)({...la,disabled:Boolean,trigger:{type:(0,H.jq)([String,Array]),default:"hover"},triggerKeys:{type:(0,H.jq)(Array),default:()=>[aa.enter,aa.space]}}),sa=(0,H.Y8)({type:(0,H.jq)(Boolean),default:null}),ua=(0,H.Y8)({type:(0,H.jq)(Function)}),ca=e=>{const t=`update:${e}`,n=`onUpdate:${e}`,o=[t],r={[e]:sa,[n]:ua},l=({indicator:o,toggleReason:r,shouldHideWhenRouteChanges:l,shouldProceed:a,onShow:s,onHide:d})=>{const p=(0,i.nI)(),{emit:f}=p,v=p.props,h=(0,i.EW)((()=>(0,u.Tn)(v[n]))),m=(0,i.EW)((()=>null===v[e])),g=e=>{!0!==o.value&&(o.value=!0,r&&(r.value=e),(0,u.Tn)(s)&&s(e))},y=e=>{!1!==o.value&&(o.value=!1,r&&(r.value=e),(0,u.Tn)(d)&&d(e))},b=e=>{if(!0===v.disabled||(0,u.Tn)(a)&&!a())return;const n=h.value&&c.oc;n&&f(t,!0),!m.value&&n||g(e)},R=e=>{if(!0===v.disabled||!c.oc)return;const n=h.value&&c.oc;n&&f(t,!1),!m.value&&n||y(e)},w=e=>{(0,z.Lm)(e)&&(v.disabled&&e?h.value&&f(t,!1):o.value!==e&&(e?g():y()))},E=()=>{o.value?R():b()};return(0,i.wB)((()=>v[e]),w),l&&void 0!==p.appContext.config.globalProperties.$route&&(0,i.wB)((()=>({...p.proxy.$route})),(()=>{l.value&&o.value&&R()})),(0,i.sV)((()=>{w(v[e])})),{hide:R,show:b,toggle:E,hasUpdateHandler:h}};return{useModelToggle:l,useModelToggleProps:r,useModelToggleEmits:o}},{useModelToggle:da,useModelToggleProps:pa,useModelToggleEmits:fa}=ca("modelValue"),va=(0,H.b_)({arrowOffset:{type:Number,default:5}}),{useModelToggleProps:ha,useModelToggleEmits:ma,useModelToggle:ga}=ca("visible"),ya=(0,H.b_)({...Po,...ha,...ra,...ia,...va,showArrow:{type:Boolean,default:!0}}),ba=[...ma,"before-show","before-hide","show","hide","open","close"],Ra=(e,t)=>(0,u.cy)(e)?e.includes(t):e===t,wa=(e,t,n)=>o=>{Ra((0,s.R1)(e),t)&&n(o)},Ea=(e,t,{checkForDefaultPrevented:n=!0}={})=>{const o=o=>{const r=null==e?void 0:e(o);if(!1===n||!r)return null==t?void 0:t(o)};return o},Ca=e=>t=>"mouse"===t.pointerType?e(t):void 0,ka=Symbol("elForwardRef"),xa=e=>{const t=t=>{e.value=t};(0,i.Gt)(ka,{setForwardRef:t})},_a=e=>({mounted(t){e(t)},updated(t){e(t)},unmounted(){e(null)}}),Sa="ElOnlyChild",Ta=(0,i.pM)({name:Sa,setup(e,{slots:t,attrs:n}){var o;const r=(0,i.WQ)(ka),l=_a(null!=(o=null==r?void 0:r.setForwardRef)?o:u.tE);return()=>{var e;const o=null==(e=t.default)?void 0:e.call(t,n);if(!o)return null;if(o.length>1)return(0,ne.U)(Sa,"requires exact only one valid child."),null;const r=Oa(o);return r?(0,i.bo)((0,i.E3)(r,n),[[l]]):((0,ne.U)(Sa,"no valid child node found"),null)}}});function Oa(e){if(!e)return null;const t=e;for(const n of t){if((0,u.Gv)(n))switch(n.type){case i.Mw:continue;case i.EY:case"svg":return Ia(n);case i.FK:return Oa(n.children);default:return n}return Ia(n)}return null}function Ia(e){const t=(0,ee.DU)("only-child");return(0,i.bF)("span",{class:t.e("content")},[e])}const Aa=(0,i.pM)({name:"ElPopperTrigger",inheritAttrs:!1}),La=(0,i.pM)({...Aa,props:la,setup(e,{expose:t}){const n=e,{role:o,triggerRef:r}=(0,i.WQ)(Fo,void 0);xa(r);const l=(0,i.EW)((()=>u.value?n.id:void 0)),a=(0,i.EW)((()=>{if(o&&"tooltip"===o.value)return n.open&&n.id?n.id:void 0})),u=(0,i.EW)((()=>{if(o&&"tooltip"!==o.value)return o.value})),c=(0,i.EW)((()=>u.value?`${n.open}`:void 0));let d;return(0,i.sV)((()=>{(0,i.wB)((()=>n.virtualRef),(e=>{e&&(r.value=p(e))}),{immediate:!0}),(0,i.wB)(r,((e,t)=>{null==d||d(),d=void 0,(0,z.vq)(e)&&(["onMouseenter","onMouseleave","onClick","onKeydown","onFocus","onBlur","onContextmenu"].forEach((o=>{var r;const l=n[o];l&&(e.addEventListener(o.slice(2).toLowerCase(),l),null==(r=null==t?void 0:t.removeEventListener)||r.call(t,o.slice(2).toLowerCase(),l))})),d=(0,i.wB)([l,a,u,c],(t=>{["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach(((n,o)=>{(0,Dn.A)(t[o])?e.removeAttribute(n):e.setAttribute(n,t[o])}))}),{immediate:!0})),(0,z.vq)(t)&&["aria-controls","aria-describedby","aria-haspopup","aria-expanded"].forEach((e=>t.removeAttribute(e)))}),{immediate:!0})})),(0,i.xo)((()=>{null==d||d(),d=void 0})),t({triggerRef:r}),(e,t)=>e.virtualTriggering?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ta),(0,i.v6)({key:0},e.$attrs,{"aria-controls":(0,s.R1)(l),"aria-describedby":(0,s.R1)(a),"aria-expanded":(0,s.R1)(c),"aria-haspopup":(0,s.R1)(u)}),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16,["aria-controls","aria-describedby","aria-expanded","aria-haspopup"]))}});var Ma=J(La,[["__file","trigger.vue"]]);const Na=(0,i.pM)({name:"ElTooltipTrigger"}),Wa=(0,i.pM)({...Na,props:ia,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("tooltip"),{controlled:r,id:l,open:a,onOpen:c,onClose:d,onToggle:p}=(0,i.WQ)(Uo,void 0),f=(0,s.KR)(null),v=()=>{if((0,s.R1)(r)||n.disabled)return!0},h=(0,s.lW)(n,"trigger"),m=Ea(v,wa(h,"hover",c)),g=Ea(v,wa(h,"hover",d)),y=Ea(v,wa(h,"click",(e=>{0===e.button&&p(e)}))),b=Ea(v,wa(h,"focus",c)),R=Ea(v,wa(h,"focus",d)),w=Ea(v,wa(h,"contextmenu",(e=>{e.preventDefault(),p(e)}))),E=Ea(v,(e=>{const{code:t}=e;n.triggerKeys.includes(t)&&(e.preventDefault(),p(e))}));return t({triggerRef:f}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ma),{id:(0,s.R1)(l),"virtual-ref":e.virtualRef,open:(0,s.R1)(a),"virtual-triggering":e.virtualTriggering,class:(0,u.C4)((0,s.R1)(o).e("trigger")),onBlur:(0,s.R1)(R),onClick:(0,s.R1)(y),onContextmenu:(0,s.R1)(w),onFocus:(0,s.R1)(b),onMouseenter:(0,s.R1)(m),onMouseleave:(0,s.R1)(g),onKeydown:(0,s.R1)(E)},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["id","virtual-ref","open","virtual-triggering","class","onBlur","onClick","onContextmenu","onFocus","onMouseenter","onMouseleave","onKeydown"]))}});var Da=J(Wa,[["__file","trigger.vue"]]);let Fa;const $a=()=>{const e=(0,ee.E9)(),t=to(),n=(0,i.EW)((()=>`${e.value}-popper-container-${t.prefix}`)),o=(0,i.EW)((()=>`#${n.value}`));return{id:n,selector:o}},Ba=e=>{const t=document.createElement("div");return t.id=e,document.body.appendChild(t),t},Pa=()=>{const{id:e,selector:t}=$a();return(0,i.KC)((()=>{c.oc&&(Fa||document.body.querySelector(t.value)||(Fa=Ba(e.value)))})),{id:e,selector:t}},Ka=(e,t)=>{const n=(0,s.KR)(!1),o=(0,s.KR)(),r=()=>{t("focus")},l=e=>{var n;"pointer"!==(null==(n=e.detail)?void 0:n.focusReason)&&(o.value="first",t("blur"))},a=t=>{e.visible&&!n.value&&(t.target&&(o.value=t.target),n.value=!0)},i=t=>{e.trapping||("pointer"===t.detail.focusReason&&t.preventDefault(),n.value=!1)},u=()=>{n.value=!1,t("close")};return{focusStartRef:o,trapped:n,onFocusAfterReleased:l,onFocusAfterTrapped:r,onFocusInTrap:a,onFocusoutPrevented:i,onReleaseRequested:u}};function ja(e){return void 0===e}var Va=ja;const Xa=(e,t=[])=>{const{placement:n,strategy:o,popperOptions:r}=e,l={placement:n,strategy:o,...r,modifiers:[...Ha(e),...t]};return za(l,null==r?void 0:r.modifiers),l},Ua=e=>{if(c.oc)return p(e)};function Ha(e){const{offset:t,gpuAcceleration:n,fallbackPlacements:o}=e;return[{name:"offset",options:{offset:[0,null!=t?t:12]}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5,fallbackPlacements:o}},{name:"computeStyles",options:{gpuAcceleration:n}}]}function za(e,t){t&&(e.modifiers=[...e.modifiers,...null!=t?t:[]])}const Ga=(e,t,n={})=>{const o={name:"updateState",enabled:!0,phase:"write",fn:({state:e})=>{const t=qa(e);Object.assign(a.value,t)},requires:["computeStyles"]},r=(0,i.EW)((()=>{const{onFirstUpdate:e,placement:t,strategy:r,modifiers:l}=(0,s.R1)(n);return{onFirstUpdate:e,placement:t||"bottom",strategy:r||"absolute",modifiers:[...l||[],o,{name:"applyStyles",enabled:!1}]}})),l=(0,s.IJ)(),a=(0,s.KR)({styles:{popper:{position:(0,s.R1)(r).strategy,left:"0",top:"0"},arrow:{position:"absolute"}},attributes:{}}),u=()=>{l.value&&(l.value.destroy(),l.value=void 0)};return(0,i.wB)(r,(e=>{const t=(0,s.R1)(l);t&&t.setOptions(e)}),{deep:!0}),(0,i.wB)([e,t],(([e,t])=>{u(),e&&t&&(l.value=Jl(e,t,(0,s.R1)(r)))})),(0,i.xo)((()=>{u()})),{state:(0,i.EW)((()=>{var e;return{...(null==(e=(0,s.R1)(l))?void 0:e.state)||{}}})),styles:(0,i.EW)((()=>(0,s.R1)(a).styles)),attributes:(0,i.EW)((()=>(0,s.R1)(a).attributes)),update:()=>{var e;return null==(e=(0,s.R1)(l))?void 0:e.update()},forceUpdate:()=>{var e;return null==(e=(0,s.R1)(l))?void 0:e.forceUpdate()},instanceRef:(0,i.EW)((()=>(0,s.R1)(l)))}};function qa(e){const t=Object.keys(e.elements),n=(0,zn.A)(t.map((t=>[t,e.styles[t]||{}]))),o=(0,zn.A)(t.map((t=>[t,e.attributes[t]])));return{styles:n,attributes:o}}const Ya=0,Qa=e=>{const{popperInstanceRef:t,contentRef:n,triggerRef:o,role:r}=(0,i.WQ)(Fo,void 0),l=(0,s.KR)(),a=(0,s.KR)(),u=(0,i.EW)((()=>({name:"eventListeners",enabled:!!e.visible}))),c=(0,i.EW)((()=>{var e;const t=(0,s.R1)(l),n=null!=(e=(0,s.R1)(a))?e:Ya;return{name:"arrow",enabled:!Va(t),options:{element:t,padding:n}}})),d=(0,i.EW)((()=>({onFirstUpdate:()=>{m()},...Xa(e,[(0,s.R1)(c),(0,s.R1)(u)])}))),p=(0,i.EW)((()=>Ua(e.referenceEl)||(0,s.R1)(o))),{attributes:f,state:v,styles:h,update:m,forceUpdate:g,instanceRef:y}=Ga(p,n,d);return(0,i.wB)(y,(e=>t.value=e)),(0,i.sV)((()=>{(0,i.wB)((()=>{var e;return null==(e=(0,s.R1)(p))?void 0:e.getBoundingClientRect()}),(()=>{m()}))})),{attributes:f,arrowRef:l,contentRef:n,instanceRef:y,state:v,styles:h,role:r,forceUpdate:g,update:m}};var Za=n(2401);const Ja=(e,{attributes:t,styles:n,role:o})=>{const{nextZIndex:r}=(0,Za.YK)(),l=(0,ee.DU)("popper"),a=(0,i.EW)((()=>(0,s.R1)(t).popper)),u=(0,s.KR)((0,z.Et)(e.zIndex)?e.zIndex:r()),c=(0,i.EW)((()=>[l.b(),l.is("pure",e.pure),l.is(e.effect),e.popperClass])),d=(0,i.EW)((()=>[{zIndex:(0,s.R1)(u)},(0,s.R1)(n).popper,e.popperStyle||{}])),p=(0,i.EW)((()=>"dialog"===o.value?"false":void 0)),f=(0,i.EW)((()=>(0,s.R1)(n).arrow||{})),v=()=>{u.value=(0,z.Et)(e.zIndex)?e.zIndex:r()};return{ariaModal:p,arrowStyle:f,contentAttrs:a,contentClass:c,contentStyle:d,contentZIndex:u,updateZIndex:v}},ei="focus-trap.focus-after-trapped",ti="focus-trap.focus-after-released",ni="focus-trap.focusout-prevented",oi={cancelable:!0,bubbles:!1},ri={cancelable:!0,bubbles:!1},li="focusAfterTrapped",ai="focusAfterReleased",ii=Symbol("elFocusTrap"),si=(0,s.KR)(),ui=(0,s.KR)(0),ci=(0,s.KR)(0);let di=0;const pi=e=>{const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:e=>{const t="INPUT"===e.tagName&&"hidden"===e.type;return e.disabled||e.hidden||t?NodeFilter.FILTER_SKIP:e.tabIndex>=0||e===document.activeElement?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});while(n.nextNode())t.push(n.currentNode);return t},fi=(e,t)=>{for(const n of e)if(!vi(n,t))return n},vi=(e,t)=>{if("hidden"===getComputedStyle(e).visibility)return!0;while(e){if(t&&e===t)return!1;if("none"===getComputedStyle(e).display)return!0;e=e.parentElement}return!1},hi=e=>{const t=pi(e),n=fi(t,e),o=fi(t.reverse(),e);return[n,o]},mi=e=>e instanceof HTMLInputElement&&"select"in e,gi=(e,t)=>{if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),ci.value=window.performance.now(),e!==n&&mi(e)&&t&&e.select()}};function yi(e,t){const n=[...e],o=e.indexOf(t);return-1!==o&&n.splice(o,1),n}const bi=()=>{let e=[];const t=t=>{const n=e[0];n&&t!==n&&n.pause(),e=yi(e,t),e.unshift(t)},n=t=>{var n,o;e=yi(e,t),null==(o=null==(n=e[0])?void 0:n.resume)||o.call(n)};return{push:t,remove:n}},Ri=(e,t=!1)=>{const n=document.activeElement;for(const o of e)if(gi(o,t),document.activeElement!==n)return},wi=bi(),Ei=()=>ui.value>ci.value,Ci=()=>{si.value="pointer",ui.value=window.performance.now()},ki=()=>{si.value="keyboard",ui.value=window.performance.now()},xi=()=>((0,i.sV)((()=>{0===di&&(document.addEventListener("mousedown",Ci),document.addEventListener("touchstart",Ci),document.addEventListener("keydown",ki)),di++})),(0,i.xo)((()=>{di--,di<=0&&(document.removeEventListener("mousedown",Ci),document.removeEventListener("touchstart",Ci),document.removeEventListener("keydown",ki))})),{focusReason:si,lastUserFocusTimestamp:ui,lastAutomatedFocusTimestamp:ci}),_i=e=>new CustomEvent(ni,{...ri,detail:e});let Si=[];const Ti=e=>{const t=e;t.key===aa.esc&&Si.forEach((e=>e(t)))},Oi=e=>{(0,i.sV)((()=>{0===Si.length&&document.addEventListener("keydown",Ti),c.oc&&Si.push(e)})),(0,i.xo)((()=>{Si=Si.filter((t=>t!==e)),0===Si.length&&c.oc&&document.removeEventListener("keydown",Ti)}))},Ii=(0,i.pM)({name:"ElFocusTrap",inheritAttrs:!1,props:{loop:Boolean,trapped:Boolean,focusTrapEl:Object,focusStartEl:{type:[Object,String],default:"first"}},emits:[li,ai,"focusin","focusout","focusout-prevented","release-requested"],setup(e,{emit:t}){const n=(0,s.KR)();let o,r;const{focusReason:l}=xi();Oi((n=>{e.trapped&&!a.paused&&t("release-requested",n)}));const a={paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}},c=n=>{if(!e.loop&&!e.trapped)return;if(a.paused)return;const{key:o,altKey:r,ctrlKey:i,metaKey:s,currentTarget:u,shiftKey:c}=n,{loop:d}=e,p=o===aa.tab&&!r&&!i&&!s,f=document.activeElement;if(p&&f){const e=u,[o,r]=hi(e),a=o&&r;if(a)if(c||f!==r){if(c&&[o,e].includes(f)){const e=_i({focusReason:l.value});t("focusout-prevented",e),e.defaultPrevented||(n.preventDefault(),d&&gi(r,!0))}}else{const e=_i({focusReason:l.value});t("focusout-prevented",e),e.defaultPrevented||(n.preventDefault(),d&&gi(o,!0))}else if(f===e){const e=_i({focusReason:l.value});t("focusout-prevented",e),e.defaultPrevented||n.preventDefault()}}};(0,i.Gt)(ii,{focusTrapRef:n,onKeydown:c}),(0,i.wB)((()=>e.focusTrapEl),(e=>{e&&(n.value=e)}),{immediate:!0}),(0,i.wB)([n],(([e],[t])=>{e&&(e.addEventListener("keydown",c),e.addEventListener("focusin",f),e.addEventListener("focusout",v)),t&&(t.removeEventListener("keydown",c),t.removeEventListener("focusin",f),t.removeEventListener("focusout",v))}));const d=e=>{t(li,e)},p=e=>t(ai,e),f=l=>{const i=(0,s.R1)(n);if(!i)return;const u=l.target,c=l.relatedTarget,d=u&&i.contains(u);if(!e.trapped){const e=c&&i.contains(c);e||(o=c)}d&&t("focusin",l),a.paused||e.trapped&&(d?r=u:gi(r,!0))},v=o=>{const i=(0,s.R1)(n);if(!a.paused&&i)if(e.trapped){const n=o.relatedTarget;(0,Dn.A)(n)||i.contains(n)||setTimeout((()=>{if(!a.paused&&e.trapped){const e=_i({focusReason:l.value});t("focusout-prevented",e),e.defaultPrevented||gi(r,!0)}}),0)}else{const e=o.target,n=e&&i.contains(e);n||t("focusout",o)}};async function h(){await(0,i.dY)();const t=(0,s.R1)(n);if(t){wi.push(a);const n=t.contains(document.activeElement)?o:document.activeElement;o=n;const r=t.contains(n);if(!r){const o=new Event(ei,oi);t.addEventListener(ei,d),t.dispatchEvent(o),o.defaultPrevented||(0,i.dY)((()=>{let o=e.focusStartEl;(0,u.Kg)(o)||(gi(o),document.activeElement!==o&&(o="first")),"first"===o&&Ri(pi(t),!0),document.activeElement!==n&&"container"!==o||gi(t)}))}}}function m(){const e=(0,s.R1)(n);if(e){e.removeEventListener(ei,d);const t=new CustomEvent(ti,{...oi,detail:{focusReason:l.value}});e.addEventListener(ti,p),e.dispatchEvent(t),t.defaultPrevented||"keyboard"!=l.value&&Ei()&&!e.contains(document.activeElement)||gi(null!=o?o:document.body),e.removeEventListener(ti,p),wi.remove(a)}}return(0,i.sV)((()=>{e.trapped&&h(),(0,i.wB)((()=>e.trapped),(e=>{e?h():m()}))})),(0,i.xo)((()=>{e.trapped&&m()})),{onKeydown:c}}});function Ai(e,t,n,o,r,l){return(0,i.RG)(e.$slots,"default",{handleKeydown:e.onKeydown})}var Li=J(Ii,[["render",Ai],["__file","focus-trap.vue"]]);const Mi=(0,i.pM)({name:"ElPopperContent"}),Ni=(0,i.pM)({...Mi,props:na,emits:oa,setup(e,{expose:t,emit:n}){const o=e,{focusStartRef:r,trapped:l,onFocusAfterReleased:a,onFocusAfterTrapped:c,onFocusInTrap:d,onFocusoutPrevented:p,onReleaseRequested:f}=Ka(o,n),{attributes:v,arrowRef:h,contentRef:m,styles:g,instanceRef:y,role:b,update:R}=Qa(o),{ariaModal:w,arrowStyle:E,contentAttrs:C,contentClass:k,contentStyle:x,updateZIndex:_}=Ja(o,{styles:g,attributes:v,role:b}),S=(0,i.WQ)(Zn,void 0),T=(0,s.KR)();let O;(0,i.Gt)($o,{arrowStyle:E,arrowRef:h,arrowOffset:T}),S&&(S.addInputId||S.removeInputId)&&(0,i.Gt)(Zn,{...S,addInputId:u.tE,removeInputId:u.tE});const I=(e=!0)=>{R(),e&&_()},A=()=>{I(!1),o.visible&&o.focusOnShow?l.value=!0:!1===o.visible&&(l.value=!1)};return(0,i.sV)((()=>{(0,i.wB)((()=>o.triggerTargetEl),((e,t)=>{null==O||O(),O=void 0;const n=(0,s.R1)(e||m.value),r=(0,s.R1)(t||m.value);(0,z.vq)(n)&&(O=(0,i.wB)([b,()=>o.ariaLabel,w,()=>o.id],(e=>{["role","aria-label","aria-modal","id"].forEach(((t,o)=>{(0,Dn.A)(e[o])?n.removeAttribute(t):n.setAttribute(t,e[o])}))}),{immediate:!0})),r!==n&&(0,z.vq)(r)&&["role","aria-label","aria-modal","id"].forEach((e=>{r.removeAttribute(e)}))}),{immediate:!0}),(0,i.wB)((()=>o.visible),A,{immediate:!0})})),(0,i.xo)((()=>{null==O||O(),O=void 0})),t({popperContentRef:m,popperInstanceRef:y,updatePopper:I,contentStyle:x}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",(0,i.v6)({ref_key:"contentRef",ref:m},(0,s.R1)(C),{style:(0,s.R1)(x),class:(0,s.R1)(k),tabindex:"-1",onMouseenter:t[0]||(t[0]=t=>e.$emit("mouseenter",t)),onMouseleave:t[1]||(t[1]=t=>e.$emit("mouseleave",t))}),[(0,i.bF)((0,s.R1)(Li),{trapped:(0,s.R1)(l),"trap-on-focus-in":!0,"focus-trap-el":(0,s.R1)(m),"focus-start-el":(0,s.R1)(r),onFocusAfterTrapped:(0,s.R1)(c),onFocusAfterReleased:(0,s.R1)(a),onFocusin:(0,s.R1)(d),onFocusoutPrevented:(0,s.R1)(p),onReleaseRequested:(0,s.R1)(f)},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["trapped","focus-trap-el","focus-start-el","onFocusAfterTrapped","onFocusAfterReleased","onFocusin","onFocusoutPrevented","onReleaseRequested"])],16))}});var Wi=J(Ni,[["__file","content.vue"]]);const Di=(0,i.pM)({name:"ElTooltipContent",inheritAttrs:!1}),Fi=(0,i.pM)({...Di,props:ra,setup(e,{expose:t}){const n=e,{selector:o}=$a(),r=(0,ee.DU)("tooltip"),l=(0,s.KR)(null),a=(0,s.KR)(!1),{controlled:u,id:c,open:d,trigger:p,onClose:f,onOpen:v,onShow:h,onHide:m,onBeforeShow:y,onBeforeHide:b}=(0,i.WQ)(Uo,void 0),R=(0,i.EW)((()=>n.transition||`${r.namespace.value}-fade-in-linear`)),w=(0,i.EW)((()=>n.persistent));(0,i.xo)((()=>{a.value=!0}));const E=(0,i.EW)((()=>!!(0,s.R1)(w)||(0,s.R1)(d))),C=(0,i.EW)((()=>!n.disabled&&(0,s.R1)(d))),k=(0,i.EW)((()=>n.appendTo||o.value)),x=(0,i.EW)((()=>{var e;return null!=(e=n.style)?e:{}})),_=(0,i.EW)((()=>!(0,s.R1)(d))),S=()=>{m()},T=()=>{if((0,s.R1)(u))return!0},O=Ea(T,(()=>{n.enterable&&"hover"===(0,s.R1)(p)&&v()})),I=Ea(T,(()=>{"hover"===(0,s.R1)(p)&&f()})),A=()=>{var e,t;null==(t=null==(e=l.value)?void 0:e.updatePopper)||t.call(e),null==y||y()},L=()=>{null==b||b()},M=()=>{h(),W=g((0,i.EW)((()=>{var e;return null==(e=l.value)?void 0:e.popperContentRef})),(()=>{if((0,s.R1)(u))return;const e=(0,s.R1)(p);"hover"!==e&&f()}))},N=()=>{n.virtualTriggering||f()};let W;return(0,i.wB)((()=>(0,s.R1)(d)),(e=>{e||null==W||W()}),{flush:"post"}),(0,i.wB)((()=>n.content),(()=>{var e,t;null==(t=null==(e=l.value)?void 0:e.updatePopper)||t.call(e)})),t({contentRef:l}),(e,t)=>((0,i.uX)(),(0,i.Wv)(i.Im,{disabled:!e.teleported,to:(0,s.R1)(k)},[(0,i.bF)(ge.eB,{name:(0,s.R1)(R),onAfterLeave:S,onBeforeEnter:A,onAfterEnter:M,onBeforeLeave:L},{default:(0,i.k6)((()=>[(0,s.R1)(E)?(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,s.R1)(Wi),(0,i.v6)({key:0,id:(0,s.R1)(c),ref_key:"contentRef",ref:l},e.$attrs,{"aria-label":e.ariaLabel,"aria-hidden":(0,s.R1)(_),"boundaries-padding":e.boundariesPadding,"fallback-placements":e.fallbackPlacements,"gpu-acceleration":e.gpuAcceleration,offset:e.offset,placement:e.placement,"popper-options":e.popperOptions,strategy:e.strategy,effect:e.effect,enterable:e.enterable,pure:e.pure,"popper-class":e.popperClass,"popper-style":[e.popperStyle,(0,s.R1)(x)],"reference-el":e.referenceEl,"trigger-target-el":e.triggerTargetEl,visible:(0,s.R1)(C),"z-index":e.zIndex,onMouseenter:(0,s.R1)(O),onMouseleave:(0,s.R1)(I),onBlur:N,onClose:(0,s.R1)(f)}),{default:(0,i.k6)((()=>[a.value?(0,i.Q3)("v-if",!0):(0,i.RG)(e.$slots,"default",{key:0})])),_:3},16,["id","aria-label","aria-hidden","boundaries-padding","fallback-placements","gpu-acceleration","offset","placement","popper-options","strategy","effect","enterable","pure","popper-class","popper-style","reference-el","trigger-target-el","visible","z-index","onMouseenter","onMouseleave","onClose"])),[[ge.aG,(0,s.R1)(C)]]):(0,i.Q3)("v-if",!0)])),_:3},8,["name"])],8,["disabled","to"]))}});var $i=J(Fi,[["__file","content.vue"]]);const Bi=(0,i.pM)({name:"ElPopperArrow",inheritAttrs:!1}),Pi=(0,i.pM)({...Bi,props:va,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("popper"),{arrowOffset:r,arrowRef:l,arrowStyle:a}=(0,i.WQ)($o,void 0);return(0,i.wB)((()=>n.arrowOffset),(e=>{r.value=e})),(0,i.xo)((()=>{l.value=void 0})),t({arrowRef:l}),(e,t)=>((0,i.uX)(),(0,i.CE)("span",{ref_key:"arrowRef",ref:l,class:(0,u.C4)((0,s.R1)(o).e("arrow")),style:(0,u.Tr)((0,s.R1)(a)),"data-popper-arrow":""},null,6))}});var Ki=J(Pi,[["__file","arrow.vue"]]);const ji=["innerHTML"],Vi={key:1},Xi=(0,i.pM)({name:"ElTooltip"}),Ui=(0,i.pM)({...Xi,props:ya,emits:ba,setup(e,{expose:t,emit:n}){const o=e;Pa();const r=no(),l=(0,s.KR)(),a=(0,s.KR)(),c=()=>{var e;const t=(0,s.R1)(l);t&&(null==(e=t.popperInstanceRef)||e.update())},d=(0,s.KR)(!1),p=(0,s.KR)(),{show:f,hide:v,hasUpdateHandler:h}=ga({indicator:d,toggleReason:p}),{onOpen:m,onClose:g}=Go({showAfter:(0,s.lW)(o,"showAfter"),hideAfter:(0,s.lW)(o,"hideAfter"),autoClose:(0,s.lW)(o,"autoClose"),open:f,close:v}),y=(0,i.EW)((()=>(0,z.Lm)(o.visible)&&!h.value));(0,i.Gt)(Uo,{controlled:y,id:r,open:(0,s.tB)(d),trigger:(0,s.lW)(o,"trigger"),onOpen:e=>{m(e)},onClose:e=>{g(e)},onToggle:e=>{(0,s.R1)(d)?g(e):m(e)},onShow:()=>{n("show",p.value)},onHide:()=>{n("hide",p.value)},onBeforeShow:()=>{n("before-show",p.value)},onBeforeHide:()=>{n("before-hide",p.value)},updatePopper:c}),(0,i.wB)((()=>o.disabled),(e=>{e&&d.value&&(d.value=!1)}));const b=e=>{var t,n;const o=null==(n=null==(t=a.value)?void 0:t.contentRef)?void 0:n.popperContentRef,r=(null==e?void 0:e.relatedTarget)||document.activeElement;return o&&o.contains(r)};return(0,i.Y4)((()=>d.value&&v())),t({popperRef:l,contentRef:a,isFocusInsideContent:b,updatePopper:c,onOpen:m,onClose:g,hide:v}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(Xo),{ref_key:"popperRef",ref:l,role:e.role},{default:(0,i.k6)((()=>[(0,i.bF)(Da,{disabled:e.disabled,trigger:e.trigger,"trigger-keys":e.triggerKeys,"virtual-ref":e.virtualRef,"virtual-triggering":e.virtualTriggering},{default:(0,i.k6)((()=>[e.$slots.default?(0,i.RG)(e.$slots,"default",{key:0}):(0,i.Q3)("v-if",!0)])),_:3},8,["disabled","trigger","trigger-keys","virtual-ref","virtual-triggering"]),(0,i.bF)($i,{ref_key:"contentRef",ref:a,"aria-label":e.ariaLabel,"boundaries-padding":e.boundariesPadding,content:e.content,disabled:e.disabled,effect:e.effect,enterable:e.enterable,"fallback-placements":e.fallbackPlacements,"hide-after":e.hideAfter,"gpu-acceleration":e.gpuAcceleration,offset:e.offset,persistent:e.persistent,"popper-class":e.popperClass,"popper-style":e.popperStyle,placement:e.placement,"popper-options":e.popperOptions,pure:e.pure,"raw-content":e.rawContent,"reference-el":e.referenceEl,"trigger-target-el":e.triggerTargetEl,"show-after":e.showAfter,strategy:e.strategy,teleported:e.teleported,transition:e.transition,"virtual-triggering":e.virtualTriggering,"z-index":e.zIndex,"append-to":e.appendTo},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"content",{},(()=>[e.rawContent?((0,i.uX)(),(0,i.CE)("span",{key:0,innerHTML:e.content},null,8,ji)):((0,i.uX)(),(0,i.CE)("span",Vi,(0,u.v_)(e.content),1))])),e.showArrow?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ki),{key:0,"arrow-offset":e.arrowOffset},null,8,["arrow-offset"])):(0,i.Q3)("v-if",!0)])),_:3},8,["aria-label","boundaries-padding","content","disabled","effect","enterable","fallback-placements","hide-after","gpu-acceleration","offset","persistent","popper-class","popper-style","placement","popper-options","pure","raw-content","reference-el","trigger-target-el","show-after","strategy","teleported","transition","virtual-triggering","z-index","append-to"])])),_:3},8,["role"]))}});var Hi=J(Ui,[["__file","tooltip.vue"]]);const zi=pe(Hi),Gi=(0,H.b_)({valueKey:{type:String,default:"value"},modelValue:{type:[String,Number],default:""},debounce:{type:Number,default:300},placement:{type:(0,H.jq)(String),values:["top","top-start","top-end","bottom","bottom-start","bottom-end"],default:"bottom-start"},fetchSuggestions:{type:(0,H.jq)([Function,Array]),default:u.tE},popperClass:{type:String,default:""},triggerOnFocus:{type:Boolean,default:!0},selectWhenUnmatched:{type:Boolean,default:!1},hideLoading:{type:Boolean,default:!1},label:{type:String},teleported:ra.teleported,highlightFirstItem:{type:Boolean,default:!1},fitInputWidth:{type:Boolean,default:!1},clearable:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},name:String}),qi={[G]:e=>(0,u.Kg)(e),[Y]:e=>(0,u.Kg)(e),[q]:e=>(0,u.Kg)(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,clear:()=>!0,select:e=>(0,u.Gv)(e)},Yi=["aria-expanded","aria-owns"],Qi={key:0},Zi=["id","aria-selected","onClick"],Ji="ElAutocomplete",es=(0,i.pM)({name:Ji,inheritAttrs:!1}),ts=(0,i.pM)({...es,props:Gi,emits:qi,setup(e,{expose:t,emit:n}){const o=e,r=Yn(),l=(0,i.OA)(),a=io(),c=(0,ee.DU)("autocomplete"),d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)(),v=(0,s.KR)();let h=!1,m=!1;const y=(0,s.KR)([]),b=(0,s.KR)(-1),R=(0,s.KR)(""),w=(0,s.KR)(!1),E=(0,s.KR)(!1),C=(0,s.KR)(!1),k=no(),x=(0,i.EW)((()=>l.style)),_=(0,i.EW)((()=>{const e=y.value.length>0;return(e||C.value)&&w.value})),S=(0,i.EW)((()=>!o.hideLoading&&C.value)),T=(0,i.EW)((()=>d.value?Array.from(d.value.$el.querySelectorAll("input")):[])),O=()=>{_.value&&(R.value=`${d.value.$el.offsetWidth}px`)},I=()=>{b.value=-1},A=async e=>{if(E.value)return;const t=e=>{C.value=!1,E.value||((0,u.cy)(e)?(y.value=e,b.value=o.highlightFirstItem?0:-1):(0,ne.$)(Ji,"autocomplete suggestions must be an array"))};if(C.value=!0,(0,u.cy)(o.fetchSuggestions))t(o.fetchSuggestions);else{const n=await o.fetchSuggestions(e,t);(0,u.cy)(n)&&t(n)}},L=Wn(A,o.debounce),M=e=>{const t=!!e;if(n(Y,e),n(G,e),E.value=!1,w.value||(w.value=t),!o.triggerOnFocus&&!e)return E.value=!0,void(y.value=[]);L(e)},N=e=>{var t;a.value||("INPUT"!==(null==(t=e.target)?void 0:t.tagName)||T.value.includes(document.activeElement))&&(w.value=!0)},W=e=>{n(q,e)},D=e=>{m?m=!1:(w.value=!0,n("focus",e),o.triggerOnFocus&&!h&&L(String(o.modelValue)))},F=e=>{setTimeout((()=>{var t;(null==(t=f.value)?void 0:t.isFocusInsideContent())?m=!0:(w.value&&K(),n("blur",e))}))},$=()=>{w.value=!1,n(G,""),n("clear")},B=async()=>{_.value&&b.value>=0&&b.value{_.value&&(e.preventDefault(),e.stopPropagation(),K())},K=()=>{w.value=!1},j=()=>{var e;null==(e=d.value)||e.focus()},V=()=>{var e;null==(e=d.value)||e.blur()},X=async e=>{n(Y,e[o.valueKey]),n(G,e[o.valueKey]),n("select",e),y.value=[],b.value=-1},U=e=>{if(!_.value||C.value)return;if(e<0)return void(b.value=-1);e>=y.value.length&&(e=y.value.length-1);const t=p.value.querySelector(`.${c.be("suggestion","wrap")}`),n=t.querySelectorAll(`.${c.be("suggestion","list")} li`),o=n[e],r=t.scrollTop,{offsetTop:l,scrollHeight:a}=o;l+a>r+t.clientHeight&&(t.scrollTop+=a),l{_.value&&K()})),(0,i.sV)((()=>{d.value.ref.setAttribute("role","textbox"),d.value.ref.setAttribute("aria-autocomplete","list"),d.value.ref.setAttribute("aria-controls","id"),d.value.ref.setAttribute("aria-activedescendant",`${k.value}-item-${b.value}`),h=d.value.ref.hasAttribute("readonly")})),t({highlightedIndex:b,activated:w,loading:C,inputRef:d,popperRef:f,suggestions:y,handleSelect:X,handleKeyEnter:B,focus:j,blur:V,close:K,highlight:U}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),{ref_key:"popperRef",ref:f,visible:(0,s.R1)(_),placement:e.placement,"fallback-placements":["bottom-start","top-start"],"popper-class":[(0,s.R1)(c).e("popper"),e.popperClass],teleported:e.teleported,"gpu-acceleration":!1,pure:"","manual-mode":"",effect:"light",trigger:"click",transition:`${(0,s.R1)(c).namespace.value}-zoom-in-top`,persistent:"",role:"listbox",onBeforeShow:O,onHide:I},{content:(0,i.k6)((()=>[(0,i.Lk)("div",{ref_key:"regionRef",ref:p,class:(0,u.C4)([(0,s.R1)(c).b("suggestion"),(0,s.R1)(c).is("loading",(0,s.R1)(S))]),style:(0,u.Tr)({[e.fitInputWidth?"width":"minWidth"]:R.value,outline:"none"}),role:"region"},[(0,i.bF)((0,s.R1)(Do),{id:(0,s.R1)(k),tag:"ul","wrap-class":(0,s.R1)(c).be("suggestion","wrap"),"view-class":(0,s.R1)(c).be("suggestion","list"),role:"listbox"},{default:(0,i.k6)((()=>[(0,s.R1)(S)?((0,i.uX)(),(0,i.CE)("li",Qi,[(0,i.RG)(e.$slots,"loading",{},(()=>[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(c).is("loading"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ht))])),_:1},8,["class"])]))])):((0,i.uX)(!0),(0,i.CE)(i.FK,{key:1},(0,i.pI)(y.value,((t,n)=>((0,i.uX)(),(0,i.CE)("li",{id:`${(0,s.R1)(k)}-item-${n}`,key:n,class:(0,u.C4)({highlighted:b.value===n}),role:"option","aria-selected":b.value===n,onClick:e=>X(t)},[(0,i.RG)(e.$slots,"default",{item:t},(()=>[(0,i.eW)((0,u.v_)(t[e.valueKey]),1)]))],10,Zi)))),128))])),_:3},8,["id","wrap-class","view-class"])],6)])),default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref_key:"listboxRef",ref:v,class:(0,u.C4)([(0,s.R1)(c).b(),e.$attrs.class]),style:(0,u.Tr)((0,s.R1)(x)),role:"combobox","aria-haspopup":"listbox","aria-expanded":(0,s.R1)(_),"aria-owns":(0,s.R1)(k)},[(0,i.bF)((0,s.R1)(yo),(0,i.v6)({ref_key:"inputRef",ref:d},(0,s.R1)(r),{clearable:e.clearable,disabled:(0,s.R1)(a),name:e.name,"model-value":e.modelValue,onInput:M,onChange:W,onFocus:D,onBlur:F,onClear:$,onKeydown:[t[0]||(t[0]=(0,ge.jR)((0,ge.D$)((e=>U(b.value-1)),["prevent"]),["up"])),t[1]||(t[1]=(0,ge.jR)((0,ge.D$)((e=>U(b.value+1)),["prevent"]),["down"])),(0,ge.jR)(B,["enter"]),(0,ge.jR)(K,["tab"]),(0,ge.jR)(P,["esc"])],onMousedown:N}),(0,i.eX)({_:2},[e.$slots.prepend?{name:"prepend",fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"prepend")]))}:void 0,e.$slots.append?{name:"append",fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"append")]))}:void 0,e.$slots.prefix?{name:"prefix",fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"prefix")]))}:void 0,e.$slots.suffix?{name:"suffix",fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"suffix")]))}:void 0]),1040,["clearable","disabled","name","model-value","onKeydown"])],14,Yi)])),_:3},8,["visible","placement","popper-class","teleported","transition"]))}});var ns=J(ts,[["__file","autocomplete.vue"]]);const os=pe(ns);var rs=n(1211);const ls=(0,H.b_)({size:{type:[Number,String],values:rs.I,default:"",validator:e=>(0,z.Et)(e)},shape:{type:String,values:["circle","square"],default:"circle"},icon:{type:en},src:{type:String,default:""},alt:String,srcSet:String,fit:{type:(0,H.jq)(String),default:"cover"}}),as={error:e=>e instanceof Event},is=["src","alt","srcset"],ss=(0,i.pM)({name:"ElAvatar"}),us=(0,i.pM)({...ss,props:ls,emits:as,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("avatar"),r=(0,s.KR)(!1),l=(0,i.EW)((()=>{const{size:e,icon:t,shape:r}=n,l=[o.b()];return(0,u.Kg)(e)&&l.push(o.m(e)),t&&l.push(o.m("icon")),r&&l.push(o.m(r)),l})),a=(0,i.EW)((()=>{const{size:e}=n;return(0,z.Et)(e)?o.cssVarBlock({size:(0,te._V)(e)||""}):void 0})),c=(0,i.EW)((()=>({objectFit:n.fit})));function d(e){r.value=!0,t("error",e)}return(0,i.wB)((()=>n.src),(()=>r.value=!1)),(e,t)=>((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(l)),style:(0,u.Tr)((0,s.R1)(a))},[!e.src&&!e.srcSet||r.value?e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1})):(0,i.RG)(e.$slots,"default",{key:2}):((0,i.uX)(),(0,i.CE)("img",{key:0,src:e.src,alt:e.alt,srcset:e.srcSet,style:(0,u.Tr)((0,s.R1)(c)),onError:d},null,44,is))],6))}});var cs=J(us,[["__file","avatar.vue"]]);const ds=pe(cs),ps={visibilityHeight:{type:Number,default:200},target:{type:String,default:""},right:{type:Number,default:40},bottom:{type:Number,default:40}},fs={click:e=>e instanceof MouseEvent},vs=(e,t,n)=>{const o=(0,s.IJ)(),r=(0,s.IJ)(),l=(0,s.KR)(!1),a=()=>{o.value&&(l.value=o.value.scrollTop>=e.visibilityHeight)},u=e=>{var n;null==(n=o.value)||n.scrollTo({top:0,behavior:"smooth"}),t("click",e)},d=(0,c.k3)(a,300,!0);return h(r,"scroll",d),(0,i.sV)((()=>{var t;r.value=document,o.value=document.documentElement,e.target&&(o.value=null!=(t=document.querySelector(e.target))?t:void 0,o.value||(0,ne.$)(n,`target does not exist: ${e.target}`),r.value=o.value),a()})),{visible:l,handleClick:u}},hs="ElBacktop",ms=(0,i.pM)({name:hs}),gs=(0,i.pM)({...ms,props:ps,emits:fs,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("backtop"),{handleClick:r,visible:l}=vs(n,t,hs),a=(0,i.EW)((()=>({right:`${n.right}px`,bottom:`${n.bottom}px`})));return(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:`${(0,s.R1)(o).namespace.value}-fade-in`},{default:(0,i.k6)((()=>[(0,s.R1)(l)?((0,i.uX)(),(0,i.CE)("div",{key:0,style:(0,u.Tr)((0,s.R1)(a)),class:(0,u.C4)((0,s.R1)(o).b()),onClick:t[0]||(t[0]=(0,ge.D$)(((...e)=>(0,s.R1)(r)&&(0,s.R1)(r)(...e)),["stop"]))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(o).e("icon"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Be))])),_:1},8,["class"])]))],6)):(0,i.Q3)("v-if",!0)])),_:3},8,["name"]))}});var ys=J(gs,[["__file","backtop.vue"]]);const bs=pe(ys),Rs=(0,H.b_)({value:{type:[String,Number],default:""},max:{type:Number,default:99},isDot:Boolean,hidden:Boolean,type:{type:String,values:["primary","success","warning","info","danger"],default:"danger"}}),ws=["textContent"],Es=(0,i.pM)({name:"ElBadge"}),Cs=(0,i.pM)({...Es,props:Rs,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("badge"),r=(0,i.EW)((()=>n.isDot?"":(0,z.Et)(n.value)&&(0,z.Et)(n.max)&&n.max((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(o).b())},[(0,i.RG)(e.$slots,"default"),(0,i.bF)(ge.eB,{name:`${(0,s.R1)(o).namespace.value}-zoom-in-center`,persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("sup",{class:(0,u.C4)([(0,s.R1)(o).e("content"),(0,s.R1)(o).em("content",e.type),(0,s.R1)(o).is("fixed",!!e.$slots.default),(0,s.R1)(o).is("dot",e.isDot)]),textContent:(0,u.v_)((0,s.R1)(r))},null,10,ws),[[ge.aG,!e.hidden&&((0,s.R1)(r)||e.isDot)]])])),_:1},8,["name"])],2))}});var ks=J(Cs,[["__file","badge.vue"]]);const xs=pe(ks),_s=Symbol("breadcrumbKey"),Ss=(0,H.b_)({separator:{type:String,default:"/"},separatorIcon:{type:en}}),Ts=(0,i.pM)({name:"ElBreadcrumb"}),Os=(0,i.pM)({...Ts,props:Ss,setup(e){const t=e,n=(0,ee.DU)("breadcrumb"),o=(0,s.KR)();return(0,i.Gt)(_s,t),(0,i.sV)((()=>{const e=o.value.querySelectorAll(`.${n.e("item")}`);e.length&&e[e.length-1].setAttribute("aria-current","page")})),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"breadcrumb",ref:o,class:(0,u.C4)((0,s.R1)(n).b()),"aria-label":"Breadcrumb",role:"navigation"},[(0,i.RG)(e.$slots,"default")],2))}});var Is=J(Os,[["__file","breadcrumb.vue"]]);const As=(0,H.b_)({to:{type:(0,H.jq)([String,Object]),default:""},replace:{type:Boolean,default:!1}}),Ls=(0,i.pM)({name:"ElBreadcrumbItem"}),Ms=(0,i.pM)({...Ls,props:As,setup(e){const t=e,n=(0,i.nI)(),o=(0,i.WQ)(_s,void 0),r=(0,ee.DU)("breadcrumb"),l=n.appContext.config.globalProperties.$router,a=(0,s.KR)(),c=()=>{t.to&&l&&(t.replace?l.replace(t.to):l.push(t.to))};return(e,t)=>{var n,l;return(0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(r).e("item"))},[(0,i.Lk)("span",{ref_key:"link",ref:a,class:(0,u.C4)([(0,s.R1)(r).e("inner"),(0,s.R1)(r).is("link",!!e.to)]),role:"link",onClick:c},[(0,i.RG)(e.$slots,"default")],2),(null==(n=(0,s.R1)(o))?void 0:n.separatorIcon)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(r).e("separator"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(o).separatorIcon)))])),_:1},8,["class"])):((0,i.uX)(),(0,i.CE)("span",{key:1,class:(0,u.C4)((0,s.R1)(r).e("separator")),role:"presentation"},(0,u.v_)(null==(l=(0,s.R1)(o))?void 0:l.separator),3))],2)}}});var Ns=J(Ms,[["__file","breadcrumb-item.vue"]]);const Ws=pe(Is,{BreadcrumbItem:Ns}),Ds=he(Ns),Fs=Symbol("buttonGroupContextKey"),$s=({from:e,replacement:t,scope:n,version:o,ref:r,type:l="API"},a)=>{(0,i.wB)((()=>(0,s.R1)(a)),(a=>{a&&(0,ne.U)(n,`[${l}] ${e} is about to be deprecated in version ${o}, please use ${t} instead.\nFor more detail, please visit: ${r}\n`)}),{immediate:!0})},Bs=(e,t)=>{$s({from:"type.text",replacement:"link",version:"3.0.0",scope:"props",ref:"https://element-plus.org/en-US/component/button.html#button-attributes"},(0,i.EW)((()=>"text"===e.type)));const n=(0,i.WQ)(Fs,void 0),o=(0,l.H3)("button"),{form:r}=oo(),a=ao((0,i.EW)((()=>null==n?void 0:n.size))),u=io(),c=(0,s.KR)(),d=(0,i.Ht)(),p=(0,i.EW)((()=>e.type||(null==n?void 0:n.type)||"")),f=(0,i.EW)((()=>{var t,n,r;return null!=(r=null!=(n=e.autoInsertSpace)?n:null==(t=o.value)?void 0:t.autoInsertSpace)&&r})),v=(0,i.EW)((()=>"button"===e.tag?{ariaDisabled:u.value||e.loading,disabled:u.value||e.loading,autofocus:e.autofocus,type:e.nativeType}:{})),h=(0,i.EW)((()=>{var e;const t=null==(e=d.default)?void 0:e.call(d);if(f.value&&1===(null==t?void 0:t.length)){const e=t[0];if((null==e?void 0:e.type)===i.EY){const t=e.children;return/^\p{Unified_Ideograph}{2}$/u.test(t.trim())}}return!1})),m=n=>{"reset"===e.nativeType&&(null==r||r.resetFields()),t("click",n)};return{_disabled:u,_size:a,_type:p,_ref:c,_props:v,shouldAddSpace:h,handleClick:m}},Ps=["default","primary","success","warning","info","danger","text",""],Ks=["button","submit","reset"],js=(0,H.b_)({size:Vn.mU,disabled:Boolean,type:{type:String,values:Ps,default:""},icon:{type:en},nativeType:{type:String,values:Ks,default:"button"},loading:Boolean,loadingIcon:{type:en,default:()=>ht},plain:Boolean,text:Boolean,link:Boolean,bg:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean,color:String,dark:Boolean,autoInsertSpace:{type:Boolean,default:void 0},tag:{type:(0,H.jq)([String,Object]),default:"button"}}),Vs={click:e=>e instanceof MouseEvent};function Xs(e,t){Hs(e)&&(e="100%");var n=zs(e);return e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*t),10)/100),Math.abs(e-t)<1e-6?1:(e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t)),e)}function Us(e){return Math.min(1,Math.max(0,e))}function Hs(e){return"string"===typeof e&&-1!==e.indexOf(".")&&1===parseFloat(e)}function zs(e){return"string"===typeof e&&-1!==e.indexOf("%")}function Gs(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function qs(e){return e<=1?"".concat(100*Number(e),"%"):e}function Ys(e){return 1===e.length?"0"+e:String(e)}function Qs(e,t,n){return{r:255*Xs(e,255),g:255*Xs(t,255),b:255*Xs(n,255)}}function Zs(e,t,n){e=Xs(e,255),t=Xs(t,255),n=Xs(n,255);var o=Math.max(e,t,n),r=Math.min(e,t,n),l=0,a=0,i=(o+r)/2;if(o===r)a=0,l=0;else{var s=o-r;switch(a=i>.5?s/(2-o-r):s/(o+r),o){case e:l=(t-n)/s+(t1&&(n-=1),n<1/6?e+6*n*(t-e):n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function eu(e,t,n){var o,r,l;if(e=Xs(e,360),t=Xs(t,100),n=Xs(n,100),0===t)r=n,l=n,o=n;else{var a=n<.5?n*(1+t):n+t-n*t,i=2*n-a;o=Js(i,a,e+1/3),r=Js(i,a,e),l=Js(i,a,e-1/3)}return{r:255*o,g:255*r,b:255*l}}function tu(e,t,n){e=Xs(e,255),t=Xs(t,255),n=Xs(n,255);var o=Math.max(e,t,n),r=Math.min(e,t,n),l=0,a=o,i=o-r,s=0===o?0:i/o;if(o===r)l=0;else{switch(o){case e:l=(t-n)/i+(t>16,g:(65280&e)>>8,b:255&e}}var uu={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",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:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",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:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",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:"#ff0000",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:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function cu(e){var t={r:0,g:0,b:0},n=1,o=null,r=null,l=null,a=!1,i=!1;return"string"===typeof e&&(e=gu(e)),"object"===typeof e&&(yu(e.r)&&yu(e.g)&&yu(e.b)?(t=Qs(e.r,e.g,e.b),a=!0,i="%"===String(e.r).substr(-1)?"prgb":"rgb"):yu(e.h)&&yu(e.s)&&yu(e.v)?(o=qs(e.s),r=qs(e.v),t=nu(e.h,o,r),a=!0,i="hsv"):yu(e.h)&&yu(e.s)&&yu(e.l)&&(o=qs(e.s),l=qs(e.l),t=eu(e.h,o,l),a=!0,i="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=Gs(n),{ok:a,format:e.format||i,r:Math.min(255,Math.max(t.r,0)),g:Math.min(255,Math.max(t.g,0)),b:Math.min(255,Math.max(t.b,0)),a:n}}var du="[-\\+]?\\d+%?",pu="[-\\+]?\\d*\\.\\d+%?",fu="(?:".concat(pu,")|(?:").concat(du,")"),vu="[\\s|\\(]+(".concat(fu,")[,|\\s]+(").concat(fu,")[,|\\s]+(").concat(fu,")\\s*\\)?"),hu="[\\s|\\(]+(".concat(fu,")[,|\\s]+(").concat(fu,")[,|\\s]+(").concat(fu,")[,|\\s]+(").concat(fu,")\\s*\\)?"),mu={CSS_UNIT:new RegExp(fu),rgb:new RegExp("rgb"+vu),rgba:new RegExp("rgba"+hu),hsl:new RegExp("hsl"+vu),hsla:new RegExp("hsla"+hu),hsv:new RegExp("hsv"+vu),hsva:new RegExp("hsva"+hu),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 gu(e){if(e=e.trim().toLowerCase(),0===e.length)return!1;var t=!1;if(uu[e])e=uu[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=mu.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=mu.rgba.exec(e),n?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=mu.hsl.exec(e),n?{h:n[1],s:n[2],l:n[3]}:(n=mu.hsla.exec(e),n?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=mu.hsv.exec(e),n?{h:n[1],s:n[2],v:n[3]}:(n=mu.hsva.exec(e),n?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=mu.hex8.exec(e),n?{r:iu(n[1]),g:iu(n[2]),b:iu(n[3]),a:au(n[4]),format:t?"name":"hex8"}:(n=mu.hex6.exec(e),n?{r:iu(n[1]),g:iu(n[2]),b:iu(n[3]),format:t?"name":"hex"}:(n=mu.hex4.exec(e),n?{r:iu(n[1]+n[1]),g:iu(n[2]+n[2]),b:iu(n[3]+n[3]),a:au(n[4]+n[4]),format:t?"name":"hex8"}:(n=mu.hex3.exec(e),!!n&&{r:iu(n[1]+n[1]),g:iu(n[2]+n[2]),b:iu(n[3]+n[3]),format:t?"name":"hex"})))))))))}function yu(e){return Boolean(mu.CSS_UNIT.exec(String(e)))}var bu=function(){function e(t,n){var o;if(void 0===t&&(t=""),void 0===n&&(n={}),t instanceof e)return t;"number"===typeof t&&(t=su(t)),this.originalInput=t;var r=cu(t);this.originalInput=t,this.r=r.r,this.g=r.g,this.b=r.b,this.a=r.a,this.roundA=Math.round(100*this.a)/100,this.format=null!==(o=n.format)&&void 0!==o?o:r.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=r.ok}return e.prototype.isDark=function(){return this.getBrightness()<128},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e,t,n,o=this.toRgb(),r=o.r/255,l=o.g/255,a=o.b/255;return e=r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4),t=l<=.03928?l/12.92:Math.pow((l+.055)/1.055,2.4),n=a<=.03928?a/12.92:Math.pow((a+.055)/1.055,2.4),.2126*e+.7152*t+.0722*n},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=Gs(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){var e=this.toHsl().s;return 0===e},e.prototype.toHsv=function(){var e=tu(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=tu(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),o=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(n,"%, ").concat(o,"%)"):"hsva(".concat(t,", ").concat(n,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=Zs(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=Zs(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),o=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(n,"%, ").concat(o,"%)"):"hsla(".concat(t,", ").concat(n,"%, ").concat(o,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),ou(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){return void 0===e&&(e=!1),ru(this.r,this.g,this.b,this.a,e)},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),n=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(n,")"):"rgba(".concat(e,", ").concat(t,", ").concat(n,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*Xs(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*Xs(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+ou(this.r,this.g,this.b,!1),t=0,n=Object.entries(uu);t=0,r=!t&&o&&(e.startsWith("hex")||"name"===e);return r?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=Us(n.l),new e(n)},e.prototype.brighten=function(t){void 0===t&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-t/100*255))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-t/100*255))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-t/100*255))),new e(n)},e.prototype.darken=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=Us(n.l),new e(n)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=Us(n.s),new e(n)},e.prototype.saturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=Us(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),o=(n.h+t)%360;return n.h=o<0?360+o:o,new e(n)},e.prototype.mix=function(t,n){void 0===n&&(n=50);var o=this.toRgb(),r=new e(t).toRgb(),l=n/100,a={r:(r.r-o.r)*l+o.r,g:(r.g-o.g)*l+o.g,b:(r.b-o.b)*l+o.b,a:(r.a-o.a)*l+o.a};return new e(a)},e.prototype.analogous=function(t,n){void 0===t&&(t=6),void 0===n&&(n=30);var o=this.toHsl(),r=360/n,l=[this];for(o.h=(o.h-(r*t>>1)+720)%360;--t;)o.h=(o.h+r)%360,l.push(new e(o));return l},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);var n=this.toHsv(),o=n.h,r=n.s,l=n.v,a=[],i=1/t;while(t--)a.push(new e({h:o,s:r,v:l})),l=(l+i)%1;return a},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),o=new e(t).toRgb(),r=n.a+o.a*(1-n.a);return new e({r:(n.r*n.a+o.r*o.a*(1-n.a))/r,g:(n.g*n.a+o.g*o.a*(1-n.a))/r,b:(n.b*n.a+o.b*o.a*(1-n.a))/r,a:r})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),o=n.h,r=[this],l=360/t,a=1;a{let o={};const r=e.color;if(r){const l=new bu(r),a=e.dark?l.tint(20).toString():Ru(l,20);if(e.plain)o=n.cssVarBlock({"bg-color":e.dark?Ru(l,90):l.tint(90).toString(),"text-color":r,"border-color":e.dark?Ru(l,50):l.tint(50).toString(),"hover-text-color":`var(${n.cssVarName("color-white")})`,"hover-bg-color":r,"hover-border-color":r,"active-bg-color":a,"active-text-color":`var(${n.cssVarName("color-white")})`,"active-border-color":a}),t.value&&(o[n.cssVarBlockName("disabled-bg-color")]=e.dark?Ru(l,90):l.tint(90).toString(),o[n.cssVarBlockName("disabled-text-color")]=e.dark?Ru(l,50):l.tint(50).toString(),o[n.cssVarBlockName("disabled-border-color")]=e.dark?Ru(l,80):l.tint(80).toString());else{const i=e.dark?Ru(l,30):l.tint(30).toString(),s=l.isDark()?`var(${n.cssVarName("color-white")})`:`var(${n.cssVarName("color-black")})`;if(o=n.cssVarBlock({"bg-color":r,"text-color":s,"border-color":r,"hover-bg-color":i,"hover-text-color":s,"hover-border-color":i,"active-bg-color":a,"active-border-color":a}),t.value){const t=e.dark?Ru(l,50):l.tint(50).toString();o[n.cssVarBlockName("disabled-bg-color")]=t,o[n.cssVarBlockName("disabled-text-color")]=e.dark?"rgba(255, 255, 255, 0.5)":`var(${n.cssVarName("color-white")})`,o[n.cssVarBlockName("disabled-border-color")]=t}}}return o}))}const Eu=(0,i.pM)({name:"ElButton"}),Cu=(0,i.pM)({...Eu,props:js,emits:Vs,setup(e,{expose:t,emit:n}){const o=e,r=wu(o),l=(0,ee.DU)("button"),{_ref:a,_size:c,_type:d,_disabled:p,_props:f,shouldAddSpace:v,handleClick:h}=Bs(o,n);return t({ref:a,size:c,type:d,disabled:p,shouldAddSpace:v}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),(0,i.v6)({ref_key:"_ref",ref:a},(0,s.R1)(f),{class:[(0,s.R1)(l).b(),(0,s.R1)(l).m((0,s.R1)(d)),(0,s.R1)(l).m((0,s.R1)(c)),(0,s.R1)(l).is("disabled",(0,s.R1)(p)),(0,s.R1)(l).is("loading",e.loading),(0,s.R1)(l).is("plain",e.plain),(0,s.R1)(l).is("round",e.round),(0,s.R1)(l).is("circle",e.circle),(0,s.R1)(l).is("text",e.text),(0,s.R1)(l).is("link",e.link),(0,s.R1)(l).is("has-bg",e.bg)],style:(0,s.R1)(r),onClick:(0,s.R1)(h)}),{default:(0,i.k6)((()=>[e.loading?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[e.$slots.loading?(0,i.RG)(e.$slots,"loading",{key:0}):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)((0,s.R1)(l).is("loading"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.loadingIcon)))])),_:1},8,["class"]))],64)):e.icon||e.$slots.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1},{default:(0,i.k6)((()=>[e.icon?((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon),{key:0})):(0,i.RG)(e.$slots,"icon",{key:1})])),_:3})):(0,i.Q3)("v-if",!0),e.$slots.default?((0,i.uX)(),(0,i.CE)("span",{key:2,class:(0,u.C4)({[(0,s.R1)(l).em("text","expand")]:(0,s.R1)(v)})},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0)])),_:3},16,["class","style","onClick"]))}});var ku=J(Cu,[["__file","button.vue"]]);const xu={size:js.size,type:js.type},_u=(0,i.pM)({name:"ElButtonGroup"}),Su=(0,i.pM)({..._u,props:xu,setup(e){const t=e;(0,i.Gt)(Fs,(0,s.Kh)({size:(0,s.lW)(t,"size"),type:(0,s.lW)(t,"type")}));const n=(0,ee.DU)("button");return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)(`${(0,s.R1)(n).b("group")}`)},[(0,i.RG)(e.$slots,"default")],2))}});var Tu=J(Su,[["__file","button-group.vue"]]);const Ou=pe(ku,{ButtonGroup:Tu}),Iu=he(Tu);var Au=n(1576);const Lu=(e,t)=>[e>0?e-1:void 0,e,eArray.from(Array.from({length:e}).keys()),Nu=e=>e.replace(/\W?m{1,2}|\W?ZZ/g,"").replace(/\W?h{1,2}|\W?s{1,3}|\W?a/gi,"").trim(),Wu=e=>e.replace(/\W?D{1,2}|\W?Do|\W?d{1,4}|\W?M{1,4}|\W?Y{2,4}/g,"").trim(),Du=function(e,t){const n=(0,u.$P)(e),o=(0,u.$P)(t);return n&&o?e.getTime()===t.getTime():!n&&!o&&e===t},Fu=function(e,t){const n=(0,u.cy)(e),o=(0,u.cy)(t);return n&&o?e.length===t.length&&e.every(((e,n)=>Du(e,t[n]))):!n&&!o&&Du(e,t)},$u=function(e,t,n){const o=(0,z.Im)(t)||"x"===t?Au(e).locale(n):Au(e,t).locale(n);return o.isValid()?o:void 0},Bu=function(e,t,n){return(0,z.Im)(t)?e:"x"===t?+e:Au(e).locale(n).format(t)},Pu=(e,t)=>{var n;const o=[],r=null==t?void 0:t();for(let l=0;l{const n=e.subtract(1,"month").endOf("month").date();return Mu(t).map(((e,o)=>n-(t-o-1)))},ju=e=>{const t=e.daysInMonth();return Mu(t).map(((e,t)=>t+1))},Vu=e=>Mu(e.length/7).map((t=>{const n=7*t;return e.slice(n,n+7)})),Xu=(0,H.b_)({selectedDay:{type:(0,H.jq)(Object)},range:{type:(0,H.jq)(Array)},date:{type:(0,H.jq)(Object),required:!0},hideHeader:{type:Boolean}}),Uu={pick:e=>(0,u.Gv)(e)};var Hu=n(2317),zu=n(6268);const Gu=["year","month","date","dates","week","datetime","datetimerange","daterange","monthrange"],qu=["sun","mon","tue","wed","thu","fri","sat"],Yu=(e,t)=>{Au.extend(Hu);const n=Au.localeData().firstDayOfWeek(),{t:o,lang:r}=(0,zu.Ym)(),l=Au().locale(r.value),a=(0,i.EW)((()=>!!e.range&&!!e.range.length)),s=(0,i.EW)((()=>{let t=[];if(a.value){const[n,o]=e.range,r=Mu(o.date()-n.date()+1).map((e=>({text:n.date()+e,type:"current"})));let l=r.length%7;l=0===l?0:7-l;const a=Mu(l).map(((e,t)=>({text:t+1,type:"next"})));t=r.concat(a)}else{const o=e.date.startOf("month").day(),r=Ku(e.date,(o-n+7)%7).map((e=>({text:e,type:"prev"}))),l=ju(e.date).map((e=>({text:e,type:"current"})));t=[...r,...l];const a=7-(t.length%7||7),i=Mu(a).map(((e,t)=>({text:t+1,type:"next"})));t=t.concat(i)}return Vu(t)})),u=(0,i.EW)((()=>{const e=n;return 0===e?qu.map((e=>o(`el.datepicker.weeks.${e}`))):qu.slice(e).concat(qu.slice(0,e)).map((e=>o(`el.datepicker.weeks.${e}`)))})),c=(t,n)=>{switch(n){case"prev":return e.date.startOf("month").subtract(1,"month").date(t);case"next":return e.date.startOf("month").add(1,"month").date(t);case"current":return e.date.date(t)}},d=({text:e,type:n})=>{const o=c(e,n);t("pick",o)},p=({text:t,type:n})=>{const o=c(t,n);return{isSelected:o.isSame(e.selectedDay),type:`${n}-month`,day:o.format("YYYY-MM-DD"),date:o.toDate()}};return{now:l,isInRange:a,rows:s,weekDays:u,getFormattedDate:c,handlePickDay:d,getSlotData:p}},Qu={key:0},Zu=["onClick"],Ju=(0,i.pM)({name:"DateTable"}),ec=(0,i.pM)({...Ju,props:Xu,emits:Uu,setup(e,{expose:t,emit:n}){const o=e,{isInRange:r,now:l,rows:a,weekDays:c,getFormattedDate:d,handlePickDay:p,getSlotData:f}=Yu(o,n),v=(0,ee.DU)("calendar-table"),h=(0,ee.DU)("calendar-day"),m=({text:e,type:t})=>{const n=[t];if("current"===t){const r=d(e,t);r.isSame(o.selectedDay,"day")&&n.push(h.is("selected")),r.isSame(l,"day")&&n.push(h.is("today"))}return n};return t({getFormattedDate:d}),(e,t)=>((0,i.uX)(),(0,i.CE)("table",{class:(0,u.C4)([(0,s.R1)(v).b(),(0,s.R1)(v).is("range",(0,s.R1)(r))]),cellspacing:"0",cellpadding:"0"},[e.hideHeader?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("thead",Qu,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(c),(e=>((0,i.uX)(),(0,i.CE)("th",{key:e},(0,u.v_)(e),1)))),128))])),(0,i.Lk)("tbody",null,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(a),((t,n)=>((0,i.uX)(),(0,i.CE)("tr",{key:n,class:(0,u.C4)({[(0,s.R1)(v).e("row")]:!0,[(0,s.R1)(v).em("row","hide-border")]:0===n&&e.hideHeader})},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(t,((t,n)=>((0,i.uX)(),(0,i.CE)("td",{key:n,class:(0,u.C4)(m(t)),onClick:e=>(0,s.R1)(p)(t)},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(h).b())},[(0,i.RG)(e.$slots,"date-cell",{data:(0,s.R1)(f)(t)},(()=>[(0,i.Lk)("span",null,(0,u.v_)(t.text),1)]))],2)],10,Zu)))),128))],2)))),128))])],2))}});var tc=J(ec,[["__file","date-table.vue"]]);const nc=(e,t)=>{const n=e.endOf("month"),o=t.startOf("month"),r=n.isSame(o,"week"),l=r?o.add(1,"week"):o;return[[e,n],[l.startOf("week"),t]]},oc=(e,t)=>{const n=e.endOf("month"),o=e.add(1,"month").startOf("month"),r=n.isSame(o,"week")?o.add(1,"week"):o,l=r.endOf("month"),a=t.startOf("month"),i=l.isSame(a,"week")?a.add(1,"week"):a;return[[e,n],[r.startOf("week"),l],[i.startOf("week"),t]]},rc=(e,t,n)=>{const o=(0,i.Ht)(),{lang:r}=(0,zu.Ym)(),l=(0,s.KR)(),a=Au().locale(r.value),u=(0,i.EW)({get(){return e.modelValue?d.value:l.value},set(e){if(!e)return;l.value=e;const n=e.toDate();t(Y,n),t(G,n)}}),c=(0,i.EW)((()=>{if(!e.range)return[];const t=e.range.map((e=>Au(e).locale(r.value))),[o,l]=t;return o.isAfter(l)?((0,ne.U)(n,"end time should be greater than start time"),[]):o.isSame(l,"month")?m(o,l):o.add(1,"month").month()!==l.month()?((0,ne.U)(n,"start time and end time interval must not exceed two months"),[]):m(o,l)})),d=(0,i.EW)((()=>e.modelValue?Au(e.modelValue).locale(r.value):u.value||(c.value.length?c.value[0][0]:a))),p=(0,i.EW)((()=>d.value.subtract(1,"month").date(1))),f=(0,i.EW)((()=>d.value.add(1,"month").date(1))),v=(0,i.EW)((()=>d.value.subtract(1,"year").date(1))),h=(0,i.EW)((()=>d.value.add(1,"year").date(1))),m=(e,t)=>{const o=e.startOf("week"),r=t.endOf("week"),l=o.get("month"),a=r.get("month");return l===a?[[o,r]]:(l+1)%12===a?nc(o,r):l+2===a||(l+1)%11===a?oc(o,r):((0,ne.U)(n,"start time and end time interval must not exceed two months"),[])},g=e=>{u.value=e},y=e=>{const t={"prev-month":p.value,"next-month":f.value,"prev-year":v.value,"next-year":h.value,today:a},n=t[e];n.isSame(d.value,"day")||g(n)};return $s({from:'"dateCell"',replacement:'"date-cell"',scope:"ElCalendar",version:"2.3.0",ref:"https://element-plus.org/en-US/component/calendar.html#slots",type:"Slot"},(0,i.EW)((()=>!!o.dateCell))),{calculateValidatedDateRange:m,date:d,realSelectedDay:u,pickDay:g,selectDate:y,validatedRange:c}},lc=e=>(0,u.cy)(e)&&2===e.length&&e.every((e=>(0,u.$P)(e))),ac=(0,H.b_)({modelValue:{type:Date},range:{type:(0,H.jq)(Array),validator:lc}}),ic={[G]:e=>(0,u.$P)(e),[Y]:e=>(0,u.$P)(e)},sc="ElCalendar",uc=(0,i.pM)({name:sc}),cc=(0,i.pM)({...uc,props:ac,emits:ic,setup(e,{expose:t,emit:n}){const o=e,r=(0,ee.DU)("calendar"),{calculateValidatedDateRange:l,date:a,pickDay:c,realSelectedDay:d,selectDate:p,validatedRange:f}=rc(o,n,sc),{t:v}=(0,zu.Ym)(),h=(0,i.EW)((()=>{const e=`el.datepicker.month${a.value.format("M")}`;return`${a.value.year()} ${v("el.datepicker.year")} ${v(e)}`}));return t({selectedDay:d,pickDay:c,selectDate:p,calculateValidatedDateRange:l}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(r).b())},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("header"))},[(0,i.RG)(e.$slots,"header",{date:(0,s.R1)(h)},(()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("title"))},(0,u.v_)((0,s.R1)(h)),3),0===(0,s.R1)(f).length?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(r).e("button-group"))},[(0,i.bF)((0,s.R1)(Iu),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ou),{size:"small",onClick:t[0]||(t[0]=e=>(0,s.R1)(p)("prev-month"))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(v)("el.datepicker.prevMonth")),1)])),_:1}),(0,i.bF)((0,s.R1)(Ou),{size:"small",onClick:t[1]||(t[1]=e=>(0,s.R1)(p)("today"))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(v)("el.datepicker.today")),1)])),_:1}),(0,i.bF)((0,s.R1)(Ou),{size:"small",onClick:t[2]||(t[2]=e=>(0,s.R1)(p)("next-month"))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(v)("el.datepicker.nextMonth")),1)])),_:1})])),_:1})],2)):(0,i.Q3)("v-if",!0)]))],2),0===(0,s.R1)(f).length?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(r).e("body"))},[(0,i.bF)(tc,{date:(0,s.R1)(a),"selected-day":(0,s.R1)(d),onPick:(0,s.R1)(c)},(0,i.eX)({_:2},[e.$slots["date-cell"]||e.$slots.dateCell?{name:"date-cell",fn:(0,i.k6)((t=>[e.$slots["date-cell"]?(0,i.RG)(e.$slots,"date-cell",(0,u._B)((0,i.v6)({key:0},t))):(0,i.RG)(e.$slots,"dateCell",(0,u._B)((0,i.v6)({key:1},t)))]))}:void 0]),1032,["date","selected-day","onPick"])],2)):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(r).e("body"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(f),((t,n)=>((0,i.uX)(),(0,i.Wv)(tc,{key:n,date:t[0],"selected-day":(0,s.R1)(d),range:t,"hide-header":0!==n,onPick:(0,s.R1)(c)},(0,i.eX)({_:2},[e.$slots["date-cell"]||e.$slots.dateCell?{name:"date-cell",fn:(0,i.k6)((t=>[e.$slots["date-cell"]?(0,i.RG)(e.$slots,"date-cell",(0,u._B)((0,i.v6)({key:0},t))):(0,i.RG)(e.$slots,"dateCell",(0,u._B)((0,i.v6)({key:1},t)))]))}:void 0]),1032,["date","selected-day","range","hide-header","onPick"])))),128))],2))],2))}});var dc=J(cc,[["__file","calendar.vue"]]);const pc=pe(dc),fc=(0,H.b_)({header:{type:String,default:""},footer:{type:String,default:""},bodyStyle:{type:(0,H.jq)([String,Object,Array]),default:""},bodyClass:String,shadow:{type:String,values:["always","hover","never"],default:"always"}}),vc=(0,i.pM)({name:"ElCard"}),hc=(0,i.pM)({...vc,props:fc,setup(e){const t=(0,ee.DU)("card");return(e,n)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(t).b(),(0,s.R1)(t).is(`${e.shadow}-shadow`)])},[e.$slots.header||e.header?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(t).e("header"))},[(0,i.RG)(e.$slots,"header",{},(()=>[(0,i.eW)((0,u.v_)(e.header),1)]))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(t).e("body"),e.bodyClass]),style:(0,u.Tr)(e.bodyStyle)},[(0,i.RG)(e.$slots,"default")],6),e.$slots.footer||e.footer?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(t).e("footer"))},[(0,i.RG)(e.$slots,"footer",{},(()=>[(0,i.eW)((0,u.v_)(e.footer),1)]))],2)):(0,i.Q3)("v-if",!0)],2))}});var mc=J(hc,[["__file","card.vue"]]);const gc=pe(mc),yc=(0,H.b_)({initialIndex:{type:Number,default:0},height:{type:String,default:""},trigger:{type:String,values:["hover","click"],default:"hover"},autoplay:{type:Boolean,default:!0},interval:{type:Number,default:3e3},indicatorPosition:{type:String,values:["","none","outside"],default:""},arrow:{type:String,values:["always","hover","never"],default:"hover"},type:{type:String,values:["","card"],default:""},loop:{type:Boolean,default:!0},direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},pauseOnHover:{type:Boolean,default:!0}}),bc={change:(e,t)=>[e,t].every(z.Et)};var Rc="Expected a function";function wc(e,t,n){var o=!0,r=!0;if("function"!=typeof e)throw new TypeError(Rc);return(0,fn.A)(n)&&(o="leading"in n?!!n.leading:o,r="trailing"in n?!!n.trailing:r),Wn(e,t,{leading:o,maxWait:t,trailing:r})}var Ec=wc;const Cc=Symbol("carouselContextKey"),kc="utils/vue/vnode";var xc=(e=>(e[e["TEXT"]=1]="TEXT",e[e["CLASS"]=2]="CLASS",e[e["STYLE"]=4]="STYLE",e[e["PROPS"]=8]="PROPS",e[e["FULL_PROPS"]=16]="FULL_PROPS",e[e["HYDRATE_EVENTS"]=32]="HYDRATE_EVENTS",e[e["STABLE_FRAGMENT"]=64]="STABLE_FRAGMENT",e[e["KEYED_FRAGMENT"]=128]="KEYED_FRAGMENT",e[e["UNKEYED_FRAGMENT"]=256]="UNKEYED_FRAGMENT",e[e["NEED_PATCH"]=512]="NEED_PATCH",e[e["DYNAMIC_SLOTS"]=1024]="DYNAMIC_SLOTS",e[e["HOISTED"]=-1]="HOISTED",e[e["BAIL"]=-2]="BAIL",e))(xc||{});function _c(e){return(0,i.vv)(e)&&e.type===i.FK}function Sc(e){return(0,i.vv)(e)&&e.type===i.Mw}function Tc(e){return(0,i.vv)(e)&&!_c(e)&&!Sc(e)}const Oc=e=>{if(!(0,i.vv)(e))return(0,ne.U)(kc,"[getNormalizedProps] must be a VNode"),{};const t=e.props||{},n=((0,i.vv)(e.type)?e.type.props:void 0)||{},o={};return Object.keys(n).forEach((e=>{(0,u.$3)(n[e],"default")&&(o[e]=n[e].default)})),Object.keys(t).forEach((e=>{o[(0,u.PT)(e)]=t[e]})),o},Ic=e=>{if(!(0,u.cy)(e)||e.length>1)throw new Error("expect to receive a single Vue element child");return e[0]},Ac=e=>{const t=(0,u.cy)(e)?e:[e],n=[];return t.forEach((e=>{var t;(0,u.cy)(e)?n.push(...Ac(e)):(0,i.vv)(e)&&(0,u.cy)(e.children)?n.push(...Ac(e.children)):(n.push(e),(0,i.vv)(e)&&(null==(t=e.component)?void 0:t.subTree)&&n.push(...Ac(e.component.subTree)))})),n},Lc=(e,t,n)=>{const o=Ac(e.subTree).filter((e=>{var n;return(0,i.vv)(e)&&(null==(n=e.type)?void 0:n.name)===t&&!!e.component})),r=o.map((e=>e.component.uid));return r.map((e=>n[e])).filter((e=>!!e))},Mc=(e,t)=>{const n={},o=(0,s.IJ)([]),r=r=>{n[r.uid]=r,o.value=Lc(e,t,n)},l=e=>{delete n[e],o.value=o.value.filter((t=>t.uid!==e))};return{children:o,addChild:r,removeChild:l}},Nc=300,Wc=(e,t,n)=>{const{children:o,addChild:r,removeChild:l}=Mc((0,i.nI)(),"ElCarouselItem"),a=(0,i.Ht)(),c=(0,s.KR)(-1),d=(0,s.KR)(null),p=(0,s.KR)(!1),f=(0,s.KR)(),v=(0,s.KR)(0),h=(0,s.KR)(!0),m=(0,i.EW)((()=>"never"!==e.arrow&&!(0,s.R1)(b))),g=(0,i.EW)((()=>o.value.some((e=>e.props.label.toString().length>0)))),y=(0,i.EW)((()=>"card"===e.type)),b=(0,i.EW)((()=>"vertical"===e.direction)),R=(0,i.EW)((()=>"auto"!==e.height?{height:e.height}:{height:`${v.value}px`,overflow:"hidden"})),w=Ec((e=>{S(e)}),Nc,{trailing:!0}),E=Ec((e=>{D(e)}),Nc),C=e=>!h.value||(c.value<=1?e<=1:e>1);function k(){d.value&&(clearInterval(d.value),d.value=null)}function x(){e.interval<=0||!e.autoplay||d.value||(d.value=setInterval((()=>_()),e.interval))}const _=()=>{c.valuee.props.name===t));e.length>0&&(t=o.value.indexOf(e[0]))}if(t=Number(t),Number.isNaN(t)||t!==Math.floor(t))return void(0,ne.U)(n,"index must be integer.");const r=o.value.length,l=c.value;c.value=t<0?e.loop?r-1:0:t>=r?e.loop?0:r-1:t,l===c.value&&O(l),B()}function O(e){o.value.forEach(((t,n)=>{t.translateItem(n,c.value,e)}))}function I(e,t){var n,r,l,a;const i=(0,s.R1)(o),u=i.length;if(0===u||!e.states.inStage)return!1;const c=t+1,d=t-1,p=u-1,f=i[p].states.active,v=i[0].states.active,h=null==(r=null==(n=i[c])?void 0:n.states)?void 0:r.active,m=null==(a=null==(l=i[d])?void 0:l.states)?void 0:a.active;return t===p&&v||h?"left":!!(0===t&&f||m)&&"right"}function A(){p.value=!0,e.pauseOnHover&&k()}function L(){p.value=!1,x()}function M(e){(0,s.R1)(b)||o.value.forEach(((t,n)=>{e===I(t,n)&&(t.states.hover=!0)}))}function N(){(0,s.R1)(b)||o.value.forEach((e=>{e.states.hover=!1}))}function W(e){c.value=e}function D(t){"hover"===e.trigger&&t!==c.value&&(c.value=t)}function F(){S(c.value-1)}function $(){S(c.value+1)}function B(){k(),e.pauseOnHover||x()}function P(t){"auto"===e.height&&(v.value=t)}function K(){var t;const n=null==(t=a.default)?void 0:t.call(a);if(!n)return null;const o=Ac(n),r="ElCarouselItem",l=o.filter((e=>(0,i.vv)(e)&&e.type.name===r));return 2===(null==l?void 0:l.length)&&e.loop&&!y.value?(h.value=!0,l):(h.value=!1,null)}(0,i.wB)((()=>c.value),((e,n)=>{O(n),h.value&&(e%=2,n%=2),n>-1&&t("change",e,n)})),(0,i.wB)((()=>e.autoplay),(e=>{e?x():k()})),(0,i.wB)((()=>e.loop),(()=>{S(c.value)})),(0,i.wB)((()=>e.interval),(()=>{B()}));const j=(0,s.IJ)();return(0,i.sV)((()=>{(0,i.wB)((()=>o.value),(()=>{o.value.length>0&&S(e.initialIndex)}),{immediate:!0}),j.value=T(f.value,(()=>{O()})),x()})),(0,i.xo)((()=>{k(),f.value&&j.value&&j.value.stop()})),(0,i.Gt)(Cc,{root:f,isCardType:y,isVertical:b,items:o,loop:e.loop,addItem:r,removeItem:l,setActiveItem:S,setContainerHeight:P}),{root:f,activeIndex:c,arrowDisplay:m,hasLabel:g,hover:p,isCardType:y,items:o,isVertical:b,containerStyle:R,isItemsTwoLength:h,handleButtonEnter:M,handleButtonLeave:N,handleIndicatorClick:W,handleMouseEnter:A,handleMouseLeave:L,setActiveItem:S,prev:F,next:$,PlaceholderItem:K,isTwoLengthShow:C,throttledArrowClick:w,throttledIndicatorHover:E}},Dc=["aria-label"],Fc=["aria-label"],$c=["onMouseenter","onClick"],Bc=["aria-label"],Pc={key:0},Kc="ElCarousel",jc=(0,i.pM)({name:Kc}),Vc=(0,i.pM)({...jc,props:yc,emits:bc,setup(e,{expose:t,emit:n}){const o=e,{root:r,activeIndex:l,arrowDisplay:a,hasLabel:c,hover:d,isCardType:p,items:f,isVertical:v,containerStyle:h,handleButtonEnter:m,handleButtonLeave:g,handleIndicatorClick:y,handleMouseEnter:b,handleMouseLeave:R,setActiveItem:w,prev:E,next:C,PlaceholderItem:k,isTwoLengthShow:x,throttledArrowClick:_,throttledIndicatorHover:S}=Wc(o,n,Kc),T=(0,ee.DU)("carousel"),{t:O}=(0,zu.Ym)(),I=(0,i.EW)((()=>{const e=[T.b(),T.m(o.direction)];return(0,s.R1)(p)&&e.push(T.m("card")),e})),A=(0,i.EW)((()=>{const e=[T.e("indicators"),T.em("indicators",o.direction)];return(0,s.R1)(c)&&e.push(T.em("indicators","labels")),"outside"===o.indicatorPosition&&e.push(T.em("indicators","outside")),(0,s.R1)(v)&&e.push(T.em("indicators","right")),e}));return t({setActiveItem:w,prev:E,next:C}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"root",ref:r,class:(0,u.C4)((0,s.R1)(I)),onMouseenter:t[6]||(t[6]=(0,ge.D$)(((...e)=>(0,s.R1)(b)&&(0,s.R1)(b)(...e)),["stop"])),onMouseleave:t[7]||(t[7]=(0,ge.D$)(((...e)=>(0,s.R1)(R)&&(0,s.R1)(R)(...e)),["stop"]))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(T).e("container")),style:(0,u.Tr)((0,s.R1)(h))},[(0,s.R1)(a)?((0,i.uX)(),(0,i.Wv)(ge.eB,{key:0,name:"carousel-arrow-left",persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(T).e("arrow"),(0,s.R1)(T).em("arrow","left")]),"aria-label":(0,s.R1)(O)("el.carousel.leftArrow"),onMouseenter:t[0]||(t[0]=e=>(0,s.R1)(m)("left")),onMouseleave:t[1]||(t[1]=(...e)=>(0,s.R1)(g)&&(0,s.R1)(g)(...e)),onClick:t[2]||(t[2]=(0,ge.D$)((e=>(0,s.R1)(_)((0,s.R1)(l)-1)),["stop"]))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1})],42,Dc),[[ge.aG,("always"===e.arrow||(0,s.R1)(d))&&(o.loop||(0,s.R1)(l)>0)]])])),_:1})):(0,i.Q3)("v-if",!0),(0,s.R1)(a)?((0,i.uX)(),(0,i.Wv)(ge.eB,{key:1,name:"carousel-arrow-right",persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(T).e("arrow"),(0,s.R1)(T).em("arrow","right")]),"aria-label":(0,s.R1)(O)("el.carousel.rightArrow"),onMouseenter:t[3]||(t[3]=e=>(0,s.R1)(m)("right")),onMouseleave:t[4]||(t[4]=(...e)=>(0,s.R1)(g)&&(0,s.R1)(g)(...e)),onClick:t[5]||(t[5]=(0,ge.D$)((e=>(0,s.R1)(_)((0,s.R1)(l)+1)),["stop"]))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})],42,Fc),[[ge.aG,("always"===e.arrow||(0,s.R1)(d))&&(o.loop||(0,s.R1)(l)<(0,s.R1)(f).length-1)]])])),_:1})):(0,i.Q3)("v-if",!0),(0,i.bF)((0,s.R1)(k)),(0,i.RG)(e.$slots,"default")],6),"none"!==e.indicatorPosition?((0,i.uX)(),(0,i.CE)("ul",{key:0,class:(0,u.C4)((0,s.R1)(A))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(f),((t,n)=>(0,i.bo)(((0,i.uX)(),(0,i.CE)("li",{key:n,class:(0,u.C4)([(0,s.R1)(T).e("indicator"),(0,s.R1)(T).em("indicator",e.direction),(0,s.R1)(T).is("active",n===(0,s.R1)(l))]),onMouseenter:e=>(0,s.R1)(S)(n),onClick:(0,ge.D$)((e=>(0,s.R1)(y)(n)),["stop"])},[(0,i.Lk)("button",{class:(0,u.C4)((0,s.R1)(T).e("button")),"aria-label":(0,s.R1)(O)("el.carousel.indicator",{index:n+1})},[(0,s.R1)(c)?((0,i.uX)(),(0,i.CE)("span",Pc,(0,u.v_)(t.props.label),1)):(0,i.Q3)("v-if",!0)],10,Bc)],42,$c)),[[ge.aG,(0,s.R1)(x)(n)]]))),128))],2)):(0,i.Q3)("v-if",!0)],34))}});var Xc=J(Vc,[["__file","carousel.vue"]]);const Uc=(0,H.b_)({name:{type:String,default:""},label:{type:[String,Number],default:""}}),Hc=(e,t)=>{const n=(0,i.WQ)(Cc),o=(0,i.nI)();n||(0,ne.U)(t,"usage: "),o||(0,ne.U)(t,"compositional hook can only be invoked inside setups");const r=.83,l=(0,s.KR)(),a=(0,s.KR)(!1),u=(0,s.KR)(0),c=(0,s.KR)(1),d=(0,s.KR)(!1),p=(0,s.KR)(!1),f=(0,s.KR)(!1),v=(0,s.KR)(!1),{isCardType:h,isVertical:m}=n;function g(e,t,n){const o=n-1,r=t-1,l=t+1,a=n/2;return 0===t&&e===o?-1:t===o&&0===e?n:e=a?n+1:e>l&&e-t>=a?-2:e}function y(e,t){var o,l;const a=(0,s.R1)(m)?(null==(o=n.root.value)?void 0:o.offsetHeight)||0:(null==(l=n.root.value)?void 0:l.offsetWidth)||0;return f.value?a*((2-r)*(e-t)+1)/4:e{var a;const i=(0,s.R1)(h),R=null!=(a=n.items.value.length)?a:Number.NaN,w=e===t;i||(0,z.b0)(o)||(v.value=w||e===o),!w&&R>2&&n.loop&&(e=g(e,t,R));const E=(0,s.R1)(m);d.value=w,i?(f.value=Math.round(Math.abs(e-t))<=1,u.value=y(e,t),c.value=(0,s.R1)(d)?1:r):u.value=b(e,t,E),p.value=!0,w&&l.value&&n.setContainerHeight(l.value.offsetHeight)};function w(){if(n&&(0,s.R1)(h)){const e=n.items.value.findIndex((({uid:e})=>e===o.uid));n.setActiveItem(e)}}return(0,i.sV)((()=>{n.addItem({props:e,states:(0,s.Kh)({hover:a,translate:u,scale:c,active:d,ready:p,inStage:f,animating:v}),uid:o.uid,translateItem:R})})),(0,i.hi)((()=>{n.removeItem(o.uid)})),{carouselItemRef:l,active:d,animating:v,hover:a,inStage:f,isVertical:m,translate:u,isCardType:h,scale:c,ready:p,handleItemClick:w}},zc="ElCarouselItem",Gc=(0,i.pM)({name:"ElCarouselItem"}),qc=(0,i.pM)({...Gc,props:Uc,setup(e){const t=e,n=(0,ee.DU)("carousel"),{carouselItemRef:o,active:r,animating:l,hover:a,inStage:c,isVertical:d,translate:p,isCardType:f,scale:v,ready:h,handleItemClick:m}=Hc(t,zc),g=(0,i.EW)((()=>[n.e("item"),n.is("active",r.value),n.is("in-stage",c.value),n.is("hover",a.value),n.is("animating",l.value),{[n.em("item","card")]:f.value,[n.em("item","card-vertical")]:f.value&&d.value}])),y=(0,i.EW)((()=>{const e="translate"+((0,s.R1)(d)?"Y":"X"),t=`${e}(${(0,s.R1)(p)}px)`,n=`scale(${(0,s.R1)(v)})`,o=[t,n].join(" ");return{transform:o}}));return(e,t)=>(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{ref_key:"carouselItemRef",ref:o,class:(0,u.C4)((0,s.R1)(g)),style:(0,u.Tr)((0,s.R1)(y)),onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(m)&&(0,s.R1)(m)(...e))},[(0,s.R1)(f)?(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(n).e("mask"))},null,2)),[[ge.aG,!(0,s.R1)(r)]]):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"default")],6)),[[ge.aG,(0,s.R1)(h)]])}});var Yc=J(qc,[["__file","carousel-item.vue"]]);const Qc=pe(Xc,{CarouselItem:Yc}),Zc=he(Yc);var Jc=n(7433);function ed(){this.__data__=new Jc.A,this.size=0}var td=ed;function nd(e){var t=this.__data__,n=t["delete"](e);return this.size=t.size,n}var od=nd;function rd(e){return this.__data__.get(e)}var ld=rd;function ad(e){return this.__data__.has(e)}var id=ad,sd=n(6062),ud=n(7788),cd=200;function dd(e,t){var n=this.__data__;if(n instanceof Jc.A){var o=n.__data__;if(!sd.A||o.length-1&&e%1==0&&e<=Xd}var Hd=Ud,zd="[object Arguments]",Gd="[object Array]",qd="[object Boolean]",Yd="[object Date]",Qd="[object Error]",Zd="[object Function]",Jd="[object Map]",ep="[object Number]",tp="[object Object]",np="[object RegExp]",op="[object Set]",rp="[object String]",lp="[object WeakMap]",ap="[object ArrayBuffer]",ip="[object DataView]",sp="[object Float32Array]",up="[object Float64Array]",cp="[object Int8Array]",dp="[object Int16Array]",pp="[object Int32Array]",fp="[object Uint8Array]",vp="[object Uint8ClampedArray]",hp="[object Uint16Array]",mp="[object Uint32Array]",gp={};function yp(e){return(0,kd.A)(e)&&Hd(e.length)&&!!gp[(0,Cd.A)(e)]}gp[sp]=gp[up]=gp[cp]=gp[dp]=gp[pp]=gp[fp]=gp[vp]=gp[hp]=gp[mp]=!0,gp[zd]=gp[Gd]=gp[ap]=gp[qd]=gp[ip]=gp[Yd]=gp[Qd]=gp[Zd]=gp[Jd]=gp[ep]=gp[tp]=gp[np]=gp[op]=gp[rp]=gp[lp]=!1;var bp=yp;function Rp(e){return function(t){return e(t)}}var wp=Rp,Ep=n(339),Cp="object"==typeof exports&&exports&&!exports.nodeType&&exports,kp=Cp&&"object"==typeof module&&module&&!module.nodeType&&module,xp=kp&&kp.exports===Cp,_p=xp&&Ep.A.process,Sp=function(){try{var e=kp&&kp.require&&kp.require("util").types;return e||_p&&_p.binding&&_p.binding("util")}catch(t){}}(),Tp=Sp,Op=Tp&&Tp.isTypedArray,Ip=Op?wp(Op):bp,Ap=Ip,Lp=Object.prototype,Mp=Lp.hasOwnProperty;function Np(e,t){var n=(0,Md.A)(e),o=!n&&Ld(e),r=!n&&!o&&jd(e),l=!n&&!o&&!r&&Ap(e),a=n||o||r||l,i=a?Ed(e.length,String):[],s=i.length;for(var u in e)!t&&!Mp.call(e,u)||a&&("length"==u||r&&("offset"==u||"parent"==u)||l&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||(0,Vd.A)(u,s))||i.push(u);return i}var Wp=Np,Dp=Object.prototype;function Fp(e){var t=e&&e.constructor,n="function"==typeof t&&t.prototype||Dp;return e===n}var $p=Fp;function Bp(e,t){return function(n){return e(t(n))}}var Pp=Bp,Kp=Pp(Object.keys,Object),jp=Kp,Vp=Object.prototype,Xp=Vp.hasOwnProperty;function Up(e){if(!$p(e))return jp(e);var t=[];for(var n in Object(e))Xp.call(e,n)&&"constructor"!=n&&t.push(n);return t}var Hp=Up,zp=n(7083);function Gp(e){return null!=e&&Hd(e.length)&&!(0,zp.A)(e)}var qp=Gp;function Yp(e){return qp(e)?Wp(e):Hp(e)}var Qp=Yp;function Zp(e,t){return e&&Rd(t,Qp(t),e)}var Jp=Zp;function ef(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}var tf=ef,nf=Object.prototype,of=nf.hasOwnProperty;function rf(e){if(!(0,fn.A)(e))return tf(e);var t=$p(e),n=[];for(var o in e)("constructor"!=o||!t&&of.call(e,o))&&n.push(o);return n}var lf=rf;function af(e){return qp(e)?Wp(e,!0):lf(e)}var sf=af;function uf(e,t){return e&&Rd(t,sf(t),e)}var cf=uf,df="object"==typeof exports&&exports&&!exports.nodeType&&exports,pf=df&&"object"==typeof module&&module&&!module.nodeType&&module,ff=pf&&pf.exports===df,vf=ff?vn.A.Buffer:void 0,hf=vf?vf.allocUnsafe:void 0;function mf(e,t){if(t)return e.slice();var n=e.length,o=hf?hf(n):new e.constructor(n);return e.copy(o),o}var gf=mf;function yf(e,t){var n=-1,o=e.length;t||(t=Array(o));while(++ni))return!1;var u=l.get(e),c=l.get(t);if(u&&c)return u==t&&c==e;var d=-1,p=!0,f=n&fm?new im:void 0;l.set(e,t),l.set(t,e);while(++d0&&n(i)?t>1?rg(i,t-1,n,o,r):Lf(r,i):o||(r[r.length]=i)}return r}var lg=rg,ag=1/0;function ig(e){var t=null==e?0:e.length;return t?lg(e,ag):[]}var sg=ig;const ug={modelValue:{type:[Number,String,Boolean],default:void 0},label:{type:[String,Boolean,Number,Object],default:void 0},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:{type:String,default:void 0},trueLabel:{type:[String,Number],default:void 0},falseLabel:{type:[String,Number],default:void 0},id:{type:String,default:void 0},controls:{type:String,default:void 0},border:Boolean,size:Vn.mU,tabindex:[String,Number],validateEvent:{type:Boolean,default:!0}},cg={[G]:e=>(0,u.Kg)(e)||(0,z.Et)(e)||(0,z.Lm)(e),change:e=>(0,u.Kg)(e)||(0,z.Et)(e)||(0,z.Lm)(e)},dg=Symbol("checkboxGroupContextKey"),pg=({model:e,isChecked:t})=>{const n=(0,i.WQ)(dg,void 0),o=(0,i.EW)((()=>{var o,r;const l=null==(o=null==n?void 0:n.max)?void 0:o.value,a=null==(r=null==n?void 0:n.min)?void 0:r.value;return!(0,z.b0)(l)&&e.value.length>=l&&!t.value||!(0,z.b0)(a)&&e.value.length<=a&&t.value})),r=io((0,i.EW)((()=>(null==n?void 0:n.disabled.value)||o.value)));return{isDisabled:r,isLimitDisabled:o}},fg=(e,{model:t,isLimitExceeded:n,hasOwnLabel:o,isDisabled:r,isLabeledByFormItem:l})=>{const a=(0,i.WQ)(dg,void 0),{formItem:s}=oo(),{emit:u}=(0,i.nI)();function c(t){var n,o;return t===e.trueLabel||!0===t?null==(n=e.trueLabel)||n:null!=(o=e.falseLabel)&&o}function d(e,t){u("change",c(e),t)}function p(e){if(n.value)return;const t=e.target;u("change",c(t.checked),e)}async function f(a){if(!n.value&&!o.value&&!r.value&&l.value){const n=a.composedPath(),o=n.some((e=>"LABEL"===e.tagName));o||(t.value=c([!1,e.falseLabel].includes(t.value)),await(0,i.dY)(),d(t.value,a))}}const v=(0,i.EW)((()=>(null==a?void 0:a.validateEvent)||e.validateEvent));return(0,i.wB)((()=>e.modelValue),(()=>{v.value&&(null==s||s.validate("change").catch((e=>(0,ne.U)(e))))})),{handleChange:p,onClickRoot:f}},vg=e=>{const t=(0,s.KR)(!1),{emit:n}=(0,i.nI)(),o=(0,i.WQ)(dg,void 0),r=(0,i.EW)((()=>!1===(0,z.b0)(o))),l=(0,s.KR)(!1),a=(0,i.EW)({get(){var n,l;return r.value?null==(n=null==o?void 0:o.modelValue)?void 0:n.value:null!=(l=e.modelValue)?l:t.value},set(e){var i,s;r.value&&(0,u.cy)(e)?(l.value=void 0!==(null==(i=null==o?void 0:o.max)?void 0:i.value)&&e.length>(null==o?void 0:o.max.value)&&e.length>a.value.length,!1===l.value&&(null==(s=null==o?void 0:o.changeEvent)||s.call(o,e))):(n(G,e),t.value=e)}});return{model:a,isGroup:r,isLimitExceeded:l}},hg=(e,t,{model:n})=>{const o=(0,i.WQ)(dg,void 0),r=(0,s.KR)(!1),l=(0,i.EW)((()=>{const t=n.value;return(0,z.Lm)(t)?t:(0,u.cy)(t)?(0,u.Gv)(e.label)?t.map(s.ux).some((t=>eg(t,e.label))):t.map(s.ux).includes(e.label):null!==t&&void 0!==t?t===e.trueLabel:!!t})),a=ao((0,i.EW)((()=>{var e;return null==(e=null==o?void 0:o.size)?void 0:e.value})),{prop:!0}),c=ao((0,i.EW)((()=>{var e;return null==(e=null==o?void 0:o.size)?void 0:e.value}))),d=(0,i.EW)((()=>!!t.default||!(0,Dn.A)(e.label)));return{checkboxButtonSize:a,isChecked:l,isFocused:r,checkboxSize:c,hasOwnLabel:d}},mg=(e,{model:t})=>{function n(){(0,u.cy)(t.value)&&!t.value.includes(e.label)?t.value.push(e.label):t.value=e.trueLabel||!0}e.checked&&n()},gg=(e,t)=>{const{formItem:n}=oo(),{model:o,isGroup:r,isLimitExceeded:l}=vg(e),{isFocused:a,isChecked:i,checkboxButtonSize:s,checkboxSize:u,hasOwnLabel:c}=hg(e,t,{model:o}),{isDisabled:d}=pg({model:o,isChecked:i}),{inputId:p,isLabeledByFormItem:f}=ro(e,{formItemContext:n,disableIdGeneration:c,disableIdManagement:r}),{handleChange:v,onClickRoot:h}=fg(e,{model:o,isLimitExceeded:l,hasOwnLabel:c,isDisabled:d,isLabeledByFormItem:f});return mg(e,{model:o}),{inputId:p,isLabeledByFormItem:f,isChecked:i,isDisabled:d,isFocused:a,checkboxButtonSize:s,checkboxSize:u,hasOwnLabel:c,model:o,handleChange:v,onClickRoot:h}},yg=["id","indeterminate","name","tabindex","disabled","true-value","false-value"],bg=["id","indeterminate","disabled","value","name","tabindex"],Rg=(0,i.pM)({name:"ElCheckbox"}),wg=(0,i.pM)({...Rg,props:ug,emits:cg,setup(e){const t=e,n=(0,i.Ht)(),{inputId:o,isLabeledByFormItem:r,isChecked:l,isDisabled:a,isFocused:c,checkboxSize:d,hasOwnLabel:p,model:f,handleChange:v,onClickRoot:h}=gg(t,n),m=(0,ee.DU)("checkbox"),g=(0,i.EW)((()=>[m.b(),m.m(d.value),m.is("disabled",a.value),m.is("bordered",t.border),m.is("checked",l.value)])),y=(0,i.EW)((()=>[m.e("input"),m.is("disabled",a.value),m.is("checked",l.value),m.is("indeterminate",t.indeterminate),m.is("focus",c.value)]));return(e,t)=>((0,i.uX)(),(0,i.Wv)((0,i.$y)(!(0,s.R1)(p)&&(0,s.R1)(r)?"span":"label"),{class:(0,u.C4)((0,s.R1)(g)),"aria-controls":e.indeterminate?e.controls:null,onClick:(0,s.R1)(h)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(y))},[e.trueLabel||e.falseLabel?(0,i.bo)(((0,i.uX)(),(0,i.CE)("input",{key:0,id:(0,s.R1)(o),"onUpdate:modelValue":t[0]||(t[0]=e=>(0,s.i9)(f)?f.value=e:null),class:(0,u.C4)((0,s.R1)(m).e("original")),type:"checkbox",indeterminate:e.indeterminate,name:e.name,tabindex:e.tabindex,disabled:(0,s.R1)(a),"true-value":e.trueLabel,"false-value":e.falseLabel,onChange:t[1]||(t[1]=(...e)=>(0,s.R1)(v)&&(0,s.R1)(v)(...e)),onFocus:t[2]||(t[2]=e=>c.value=!0),onBlur:t[3]||(t[3]=e=>c.value=!1),onClick:t[4]||(t[4]=(0,ge.D$)((()=>{}),["stop"]))},null,42,yg)),[[ge.lH,(0,s.R1)(f)]]):(0,i.bo)(((0,i.uX)(),(0,i.CE)("input",{key:1,id:(0,s.R1)(o),"onUpdate:modelValue":t[5]||(t[5]=e=>(0,s.i9)(f)?f.value=e:null),class:(0,u.C4)((0,s.R1)(m).e("original")),type:"checkbox",indeterminate:e.indeterminate,disabled:(0,s.R1)(a),value:e.label,name:e.name,tabindex:e.tabindex,onChange:t[6]||(t[6]=(...e)=>(0,s.R1)(v)&&(0,s.R1)(v)(...e)),onFocus:t[7]||(t[7]=e=>c.value=!0),onBlur:t[8]||(t[8]=e=>c.value=!1),onClick:t[9]||(t[9]=(0,ge.D$)((()=>{}),["stop"]))},null,42,bg)),[[ge.lH,(0,s.R1)(f)]]),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(m).e("inner"))},null,2)],2),(0,s.R1)(p)?((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(m).e("label"))},[(0,i.RG)(e.$slots,"default"),e.$slots.default?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.eW)((0,u.v_)(e.label),1)],64))],2)):(0,i.Q3)("v-if",!0)])),_:3},8,["class","aria-controls","onClick"]))}});var Eg=J(wg,[["__file","checkbox.vue"]]);const Cg=["name","tabindex","disabled","true-value","false-value"],kg=["name","tabindex","disabled","value"],xg=(0,i.pM)({name:"ElCheckboxButton"}),_g=(0,i.pM)({...xg,props:ug,emits:cg,setup(e){const t=e,n=(0,i.Ht)(),{isFocused:o,isChecked:r,isDisabled:l,checkboxButtonSize:a,model:c,handleChange:d}=gg(t,n),p=(0,i.WQ)(dg,void 0),f=(0,ee.DU)("checkbox"),v=(0,i.EW)((()=>{var e,t,n,o;const r=null!=(t=null==(e=null==p?void 0:p.fill)?void 0:e.value)?t:"";return{backgroundColor:r,borderColor:r,color:null!=(o=null==(n=null==p?void 0:p.textColor)?void 0:n.value)?o:"",boxShadow:r?`-1px 0 0 0 ${r}`:void 0}})),h=(0,i.EW)((()=>[f.b("button"),f.bm("button",a.value),f.is("disabled",l.value),f.is("checked",r.value),f.is("focus",o.value)]));return(e,t)=>((0,i.uX)(),(0,i.CE)("label",{class:(0,u.C4)((0,s.R1)(h))},[e.trueLabel||e.falseLabel?(0,i.bo)(((0,i.uX)(),(0,i.CE)("input",{key:0,"onUpdate:modelValue":t[0]||(t[0]=e=>(0,s.i9)(c)?c.value=e:null),class:(0,u.C4)((0,s.R1)(f).be("button","original")),type:"checkbox",name:e.name,tabindex:e.tabindex,disabled:(0,s.R1)(l),"true-value":e.trueLabel,"false-value":e.falseLabel,onChange:t[1]||(t[1]=(...e)=>(0,s.R1)(d)&&(0,s.R1)(d)(...e)),onFocus:t[2]||(t[2]=e=>o.value=!0),onBlur:t[3]||(t[3]=e=>o.value=!1),onClick:t[4]||(t[4]=(0,ge.D$)((()=>{}),["stop"]))},null,42,Cg)),[[ge.lH,(0,s.R1)(c)]]):(0,i.bo)(((0,i.uX)(),(0,i.CE)("input",{key:1,"onUpdate:modelValue":t[5]||(t[5]=e=>(0,s.i9)(c)?c.value=e:null),class:(0,u.C4)((0,s.R1)(f).be("button","original")),type:"checkbox",name:e.name,tabindex:e.tabindex,disabled:(0,s.R1)(l),value:e.label,onChange:t[6]||(t[6]=(...e)=>(0,s.R1)(d)&&(0,s.R1)(d)(...e)),onFocus:t[7]||(t[7]=e=>o.value=!0),onBlur:t[8]||(t[8]=e=>o.value=!1),onClick:t[9]||(t[9]=(0,ge.D$)((()=>{}),["stop"]))},null,42,kg)),[[ge.lH,(0,s.R1)(c)]]),e.$slots.default||e.label?((0,i.uX)(),(0,i.CE)("span",{key:2,class:(0,u.C4)((0,s.R1)(f).be("button","inner")),style:(0,u.Tr)((0,s.R1)(r)?(0,s.R1)(v):void 0)},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.eW)((0,u.v_)(e.label),1)]))],6)):(0,i.Q3)("v-if",!0)],2))}});var Sg=J(_g,[["__file","checkbox-button.vue"]]),Tg=n(2623),Og=n(203),Ig=n(5014);function Ag(e,t,n){var o=-1,r=t.length,l={};while(++o0){if(++t>=ny)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}var ay=ly,iy=ay(ty),sy=iy;function uy(e){return sy(Gg(e,void 0,Vg),e+"")}var cy=uy,dy=cy((function(e,t){return null==e?{}:Kg(e,t)})),py=dy;const fy=(0,H.b_)({modelValue:{type:(0,H.jq)(Array),default:()=>[]},disabled:Boolean,min:Number,max:Number,size:Vn.mU,label:String,fill:String,textColor:String,tag:{type:String,default:"div"},validateEvent:{type:Boolean,default:!0}}),vy={[G]:e=>(0,u.cy)(e),change:e=>(0,u.cy)(e)},hy=(0,i.pM)({name:"ElCheckboxGroup"}),my=(0,i.pM)({...hy,props:fy,emits:vy,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("checkbox"),{formItem:r}=oo(),{inputId:l,isLabeledByFormItem:a}=ro(n,{formItemContext:r}),c=async e=>{t(G,e),await(0,i.dY)(),t("change",e)},d=(0,i.EW)({get(){return n.modelValue},set(e){c(e)}});return(0,i.Gt)(dg,{...py((0,s.QW)(n),["size","min","max","disabled","validateEvent","fill","textColor"]),modelValue:d,changeEvent:c}),(0,i.wB)((()=>n.modelValue),(()=>{n.validateEvent&&(null==r||r.validate("change").catch((e=>(0,ne.U)(e))))})),(e,t)=>{var n;return(0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),{id:(0,s.R1)(l),class:(0,u.C4)((0,s.R1)(o).b("group")),role:"group","aria-label":(0,s.R1)(a)?void 0:e.label||"checkbox-group","aria-labelledby":(0,s.R1)(a)?null==(n=(0,s.R1)(r))?void 0:n.labelId:void 0},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["id","class","aria-label","aria-labelledby"])}}});var gy=J(my,[["__file","checkbox-group.vue"]]);const yy=pe(Eg,{CheckboxButton:Sg,CheckboxGroup:gy}),by=he(Sg),Ry=he(gy),wy=(0,H.b_)({size:Vn.mU,disabled:Boolean,label:{type:[String,Number,Boolean],default:""}}),Ey=(0,H.b_)({...wy,modelValue:{type:[String,Number,Boolean],default:""},name:{type:String,default:""},border:Boolean}),Cy={[G]:e=>(0,u.Kg)(e)||(0,z.Et)(e)||(0,z.Lm)(e),[q]:e=>(0,u.Kg)(e)||(0,z.Et)(e)||(0,z.Lm)(e)},ky=Symbol("radioGroupKey"),xy=(e,t)=>{const n=(0,s.KR)(),o=(0,i.WQ)(ky,void 0),r=(0,i.EW)((()=>!!o)),l=(0,i.EW)({get(){return r.value?o.modelValue:e.modelValue},set(l){r.value?o.changeEvent(l):t&&t(G,l),n.value.checked=e.modelValue===e.label}}),a=ao((0,i.EW)((()=>null==o?void 0:o.size))),u=io((0,i.EW)((()=>null==o?void 0:o.disabled))),c=(0,s.KR)(!1),d=(0,i.EW)((()=>u.value||r.value&&l.value!==e.label?-1:0));return{radioRef:n,isGroup:r,radioGroup:o,focus:c,size:a,disabled:u,tabIndex:d,modelValue:l}},_y=["value","name","disabled"],Sy=(0,i.pM)({name:"ElRadio"}),Ty=(0,i.pM)({...Sy,props:Ey,emits:Cy,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("radio"),{radioRef:r,radioGroup:l,focus:a,size:c,disabled:d,modelValue:p}=xy(n,t);function f(){(0,i.dY)((()=>t("change",p.value)))}return(e,t)=>{var n;return(0,i.uX)(),(0,i.CE)("label",{class:(0,u.C4)([(0,s.R1)(o).b(),(0,s.R1)(o).is("disabled",(0,s.R1)(d)),(0,s.R1)(o).is("focus",(0,s.R1)(a)),(0,s.R1)(o).is("bordered",e.border),(0,s.R1)(o).is("checked",(0,s.R1)(p)===e.label),(0,s.R1)(o).m((0,s.R1)(c))])},[(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(o).e("input"),(0,s.R1)(o).is("disabled",(0,s.R1)(d)),(0,s.R1)(o).is("checked",(0,s.R1)(p)===e.label)])},[(0,i.bo)((0,i.Lk)("input",{ref_key:"radioRef",ref:r,"onUpdate:modelValue":t[0]||(t[0]=e=>(0,s.i9)(p)?p.value=e:null),class:(0,u.C4)((0,s.R1)(o).e("original")),value:e.label,name:e.name||(null==(n=(0,s.R1)(l))?void 0:n.name),disabled:(0,s.R1)(d),type:"radio",onFocus:t[1]||(t[1]=e=>a.value=!0),onBlur:t[2]||(t[2]=e=>a.value=!1),onChange:f,onClick:t[3]||(t[3]=(0,ge.D$)((()=>{}),["stop"]))},null,42,_y),[[ge.XL,(0,s.R1)(p)]]),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(o).e("inner"))},null,2)],2),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(o).e("label")),onKeydown:t[4]||(t[4]=(0,ge.D$)((()=>{}),["stop"]))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.eW)((0,u.v_)(e.label),1)]))],34)],2)}}});var Oy=J(Ty,[["__file","radio.vue"]]);const Iy=(0,H.b_)({...wy,name:{type:String,default:""}}),Ay=["value","name","disabled"],Ly=(0,i.pM)({name:"ElRadioButton"}),My=(0,i.pM)({...Ly,props:Iy,setup(e){const t=e,n=(0,ee.DU)("radio"),{radioRef:o,focus:r,size:l,disabled:a,modelValue:c,radioGroup:d}=xy(t),p=(0,i.EW)((()=>({backgroundColor:(null==d?void 0:d.fill)||"",borderColor:(null==d?void 0:d.fill)||"",boxShadow:(null==d?void 0:d.fill)?`-1px 0 0 0 ${d.fill}`:"",color:(null==d?void 0:d.textColor)||""})));return(e,t)=>{var f;return(0,i.uX)(),(0,i.CE)("label",{class:(0,u.C4)([(0,s.R1)(n).b("button"),(0,s.R1)(n).is("active",(0,s.R1)(c)===e.label),(0,s.R1)(n).is("disabled",(0,s.R1)(a)),(0,s.R1)(n).is("focus",(0,s.R1)(r)),(0,s.R1)(n).bm("button",(0,s.R1)(l))])},[(0,i.bo)((0,i.Lk)("input",{ref_key:"radioRef",ref:o,"onUpdate:modelValue":t[0]||(t[0]=e=>(0,s.i9)(c)?c.value=e:null),class:(0,u.C4)((0,s.R1)(n).be("button","original-radio")),value:e.label,type:"radio",name:e.name||(null==(f=(0,s.R1)(d))?void 0:f.name),disabled:(0,s.R1)(a),onFocus:t[1]||(t[1]=e=>r.value=!0),onBlur:t[2]||(t[2]=e=>r.value=!1),onClick:t[3]||(t[3]=(0,ge.D$)((()=>{}),["stop"]))},null,42,Ay),[[ge.XL,(0,s.R1)(c)]]),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(n).be("button","inner")),style:(0,u.Tr)((0,s.R1)(c)===e.label?(0,s.R1)(p):{}),onKeydown:t[4]||(t[4]=(0,ge.D$)((()=>{}),["stop"]))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.eW)((0,u.v_)(e.label),1)]))],38)],2)}}});var Ny=J(My,[["__file","radio-button.vue"]]);const Wy=(0,H.b_)({id:{type:String,default:void 0},size:Vn.mU,disabled:Boolean,modelValue:{type:[String,Number,Boolean],default:""},fill:{type:String,default:""},label:{type:String,default:void 0},textColor:{type:String,default:""},name:{type:String,default:void 0},validateEvent:{type:Boolean,default:!0}}),Dy=Cy,Fy=["id","aria-label","aria-labelledby"],$y=(0,i.pM)({name:"ElRadioGroup"}),By=(0,i.pM)({...$y,props:Wy,emits:Dy,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("radio"),r=no(),l=(0,s.KR)(),{formItem:a}=oo(),{inputId:c,isLabeledByFormItem:d}=ro(n,{formItemContext:a}),p=e=>{t(G,e),(0,i.dY)((()=>t("change",e)))};(0,i.sV)((()=>{const e=l.value.querySelectorAll("[type=radio]"),t=e[0];!Array.from(e).some((e=>e.checked))&&t&&(t.tabIndex=0)}));const f=(0,i.EW)((()=>n.name||r.value));return(0,i.Gt)(ky,(0,s.Kh)({...(0,s.QW)(n),changeEvent:p,name:f})),(0,i.wB)((()=>n.modelValue),(()=>{n.validateEvent&&(null==a||a.validate("change").catch((e=>(0,ne.U)(e))))})),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{id:(0,s.R1)(c),ref_key:"radioGroupRef",ref:l,class:(0,u.C4)((0,s.R1)(o).b("group")),role:"radiogroup","aria-label":(0,s.R1)(d)?void 0:e.label||"radio-group","aria-labelledby":(0,s.R1)(d)?(0,s.R1)(a).labelId:void 0},[(0,i.RG)(e.$slots,"default")],10,Fy))}});var Py=J(By,[["__file","radio-group.vue"]]);const Ky=pe(Oy,{RadioButton:Ny,RadioGroup:Py}),jy=he(Py),Vy=he(Ny);var Xy=(0,i.pM)({name:"NodeContent",setup(){const e=(0,ee.DU)("cascader-node");return{ns:e}},render(){const{ns:e}=this,{node:t,panel:n}=this.$parent,{data:o,label:r}=t,{renderLabelFn:l}=n;return(0,i.h)("span",{class:e.e("label")},l?l({node:t,data:o}):r)}});const Uy=Symbol(),Hy=(0,i.pM)({name:"ElCascaderNode",components:{ElCheckbox:yy,ElRadio:Ky,NodeContent:Xy,ElIcon:Ee,Check:Ke,Loading:ht,ArrowRight:Oe},props:{node:{type:Object,required:!0},menuId:String},emits:["expand"],setup(e,{emit:t}){const n=(0,i.WQ)(Uy),o=(0,ee.DU)("cascader-node"),r=(0,i.EW)((()=>n.isHoverMenu)),l=(0,i.EW)((()=>n.config.multiple)),a=(0,i.EW)((()=>n.config.checkStrictly)),s=(0,i.EW)((()=>{var e;return null==(e=n.checkedNodes[0])?void 0:e.uid})),u=(0,i.EW)((()=>e.node.isDisabled)),c=(0,i.EW)((()=>e.node.isLeaf)),d=(0,i.EW)((()=>a.value&&!c.value||!u.value)),p=(0,i.EW)((()=>v(n.expandingNode))),f=(0,i.EW)((()=>a.value&&n.checkedNodes.some(v))),v=t=>{var n;const{level:o,uid:r}=e.node;return(null==(n=null==t?void 0:t.pathNodes[o-1])?void 0:n.uid)===r},h=()=>{p.value||n.expandNode(e.node)},m=t=>{const{node:o}=e;t!==o.checked&&n.handleCheckChange(o,t)},g=()=>{n.lazyLoad(e.node,(()=>{c.value||h()}))},y=e=>{r.value&&(b(),!c.value&&t("expand",e))},b=()=>{const{node:t}=e;d.value&&!t.loading&&(t.loaded?h():g())},R=()=>{r.value&&!c.value||(!c.value||u.value||a.value||l.value?b():E(!0))},w=t=>{a.value?(m(t),e.node.loaded&&h()):E(t)},E=t=>{e.node.loaded?(m(t),!a.value&&h()):g()};return{panel:n,isHoverMenu:r,multiple:l,checkStrictly:a,checkedNodeId:s,isDisabled:u,isLeaf:c,expandable:d,inExpandingPath:p,inCheckedPath:f,ns:o,handleHoverExpand:y,handleExpand:b,handleClick:R,handleCheck:E,handleSelectCheck:w}}}),zy=["id","aria-haspopup","aria-owns","aria-expanded","tabindex"],Gy=(0,i.Lk)("span",null,null,-1);function qy(e,t,n,o,r,l){const a=(0,i.g2)("el-checkbox"),s=(0,i.g2)("el-radio"),c=(0,i.g2)("check"),d=(0,i.g2)("el-icon"),p=(0,i.g2)("node-content"),f=(0,i.g2)("loading"),v=(0,i.g2)("arrow-right");return(0,i.uX)(),(0,i.CE)("li",{id:`${e.menuId}-${e.node.uid}`,role:"menuitem","aria-haspopup":!e.isLeaf,"aria-owns":e.isLeaf?null:e.menuId,"aria-expanded":e.inExpandingPath,tabindex:e.expandable?-1:void 0,class:(0,u.C4)([e.ns.b(),e.ns.is("selectable",e.checkStrictly),e.ns.is("active",e.node.checked),e.ns.is("disabled",!e.expandable),e.inExpandingPath&&"in-active-path",e.inCheckedPath&&"in-checked-path"]),onMouseenter:t[2]||(t[2]=(...t)=>e.handleHoverExpand&&e.handleHoverExpand(...t)),onFocus:t[3]||(t[3]=(...t)=>e.handleHoverExpand&&e.handleHoverExpand(...t)),onClick:t[4]||(t[4]=(...t)=>e.handleClick&&e.handleClick(...t))},[(0,i.Q3)(" prefix "),e.multiple?((0,i.uX)(),(0,i.Wv)(a,{key:0,"model-value":e.node.checked,indeterminate:e.node.indeterminate,disabled:e.isDisabled,onClick:t[0]||(t[0]=(0,ge.D$)((()=>{}),["stop"])),"onUpdate:modelValue":e.handleSelectCheck},null,8,["model-value","indeterminate","disabled","onUpdate:modelValue"])):e.checkStrictly?((0,i.uX)(),(0,i.Wv)(s,{key:1,"model-value":e.checkedNodeId,label:e.node.uid,disabled:e.isDisabled,"onUpdate:modelValue":e.handleSelectCheck,onClick:t[1]||(t[1]=(0,ge.D$)((()=>{}),["stop"]))},{default:(0,i.k6)((()=>[(0,i.Q3)("\n Add an empty element to avoid render label,\n do not use empty fragment here for https://github.com/vuejs/vue-next/pull/2485\n "),Gy])),_:1},8,["model-value","label","disabled","onUpdate:modelValue"])):e.isLeaf&&e.node.checked?((0,i.uX)(),(0,i.Wv)(d,{key:2,class:(0,u.C4)(e.ns.e("prefix"))},{default:(0,i.k6)((()=>[(0,i.bF)(c)])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.Q3)(" content "),(0,i.bF)(p),(0,i.Q3)(" postfix "),e.isLeaf?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)(i.FK,{key:3},[e.node.loading?((0,i.uX)(),(0,i.Wv)(d,{key:0,class:(0,u.C4)([e.ns.is("loading"),e.ns.e("postfix")])},{default:(0,i.k6)((()=>[(0,i.bF)(f)])),_:1},8,["class"])):((0,i.uX)(),(0,i.Wv)(d,{key:1,class:(0,u.C4)(["arrow-right",e.ns.e("postfix")])},{default:(0,i.k6)((()=>[(0,i.bF)(v)])),_:1},8,["class"]))],64))],42,zy)}var Yy=J(Hy,[["render",qy],["__file","node.vue"]]);const Qy=(0,i.pM)({name:"ElCascaderMenu",components:{Loading:ht,ElIcon:Ee,ElScrollbar:Do,ElCascaderNode:Yy},props:{nodes:{type:Array,required:!0},index:{type:Number,required:!0}},setup(e){const t=(0,i.nI)(),n=(0,ee.DU)("cascader-menu"),{t:o}=(0,zu.Ym)(),r=no();let l=null,a=null;const u=(0,i.WQ)(Uy),c=(0,s.KR)(null),d=(0,i.EW)((()=>!e.nodes.length)),p=(0,i.EW)((()=>!u.initialLoaded)),f=(0,i.EW)((()=>`${r.value}-${e.index}`)),v=e=>{l=e.target},h=e=>{if(u.isHoverMenu&&l&&c.value)if(l.contains(e.target)){m();const n=t.vnode.el,{left:o}=n.getBoundingClientRect(),{offsetWidth:r,offsetHeight:a}=n,i=e.clientX-o,s=l.offsetTop,u=s+l.offsetHeight;c.value.innerHTML=`\n \n \n `}else a||(a=window.setTimeout(g,u.config.hoverThreshold))},m=()=>{a&&(clearTimeout(a),a=null)},g=()=>{c.value&&(c.value.innerHTML="",m())};return{ns:n,panel:u,hoverZone:c,isEmpty:d,isLoading:p,menuId:f,t:o,handleExpand:v,handleMouseMove:h,clearHoverZone:g}}});function Zy(e,t,n,o,r,l){const a=(0,i.g2)("el-cascader-node"),s=(0,i.g2)("loading"),c=(0,i.g2)("el-icon"),d=(0,i.g2)("el-scrollbar");return(0,i.uX)(),(0,i.Wv)(d,{key:e.menuId,tag:"ul",role:"menu",class:(0,u.C4)(e.ns.b()),"wrap-class":e.ns.e("wrap"),"view-class":[e.ns.e("list"),e.ns.is("empty",e.isEmpty)],onMousemove:e.handleMouseMove,onMouseleave:e.clearHoverZone},{default:(0,i.k6)((()=>{var t;return[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.nodes,(t=>((0,i.uX)(),(0,i.Wv)(a,{key:t.uid,node:t,"menu-id":e.menuId,onExpand:e.handleExpand},null,8,["node","menu-id","onExpand"])))),128)),e.isLoading?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.ns.e("empty-text"))},[(0,i.bF)(c,{size:"14",class:(0,u.C4)(e.ns.is("loading"))},{default:(0,i.k6)((()=>[(0,i.bF)(s)])),_:1},8,["class"]),(0,i.eW)(" "+(0,u.v_)(e.t("el.cascader.loading")),1)],2)):e.isEmpty?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)(e.ns.e("empty-text"))},(0,u.v_)(e.t("el.cascader.noData")),3)):(null==(t=e.panel)?void 0:t.isHoverMenu)?((0,i.uX)(),(0,i.CE)("svg",{key:2,ref:"hoverZone",class:(0,u.C4)(e.ns.e("hover-zone"))},null,2)):(0,i.Q3)("v-if",!0)]})),_:1},8,["class","wrap-class","view-class","onMousemove","onMouseleave"])}var Jy=J(Qy,[["render",Zy],["__file","menu.vue"]]);const eb=(e="")=>e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d"),tb=e=>(0,u.ZH)(e);let nb=0;const ob=e=>{const t=[e];let{parent:n}=e;while(n)t.unshift(n),n=n.parent;return t};class rb{constructor(e,t,n,o=!1){this.data=e,this.config=t,this.parent=n,this.root=o,this.uid=nb++,this.checked=!1,this.indeterminate=!1,this.loading=!1;const{value:r,label:l,children:a}=t,i=e[a],s=ob(this);this.level=o?0:n?n.level+1:1,this.value=e[r],this.label=e[l],this.pathNodes=s,this.pathValues=s.map((e=>e.value)),this.pathLabels=s.map((e=>e.label)),this.childrenData=i,this.children=(i||[]).map((e=>new rb(e,t,this))),this.loaded=!t.lazy||this.isLeaf||!(0,z.Im)(i)}get isDisabled(){const{data:e,parent:t,config:n}=this,{disabled:o,checkStrictly:r}=n,l=(0,u.Tn)(o)?o(e,this):!!e[o];return l||!r&&(null==t?void 0:t.isDisabled)}get isLeaf(){const{data:e,config:t,childrenData:n,loaded:o}=this,{lazy:r,leaf:l}=t,a=(0,u.Tn)(l)?l(e,this):e[l];return(0,z.b0)(a)?!(r&&!o)&&!(Array.isArray(n)&&n.length):!!a}get valueByOption(){return this.config.emitPath?this.pathValues:this.value}appendChild(e){const{childrenData:t,children:n}=this,o=new rb(e,this.config,this);return Array.isArray(t)?t.push(e):this.childrenData=[e],n.push(o),o}calcText(e,t){const n=e?this.pathLabels.join(t):this.label;return this.text=n,n}broadcast(e,...t){const n=`onParent${tb(e)}`;this.children.forEach((o=>{o&&(o.broadcast(e,...t),o[n]&&o[n](...t))}))}emit(e,...t){const{parent:n}=this,o=`onChild${tb(e)}`;n&&(n[o]&&n[o](...t),n.emit(e,...t))}onParentCheck(e){this.isDisabled||this.setCheckState(e)}onChildCheck(){const{children:e}=this,t=e.filter((e=>!e.isDisabled)),n=!!t.length&&t.every((e=>e.checked));this.setCheckState(n)}setCheckState(e){const t=this.children.length,n=this.children.reduce(((e,t)=>{const n=t.checked?1:t.indeterminate?.5:0;return e+n}),0);this.checked=this.loaded&&this.children.filter((e=>!e.isDisabled)).every((e=>e.loaded&&e.checked))&&e,this.indeterminate=this.loaded&&n!==t&&n>0}doCheck(e){if(this.checked===e)return;const{checkStrictly:t,multiple:n}=this.config;t||!n?this.checked=e:(this.broadcast("check",e),this.setCheckState(e),this.emit("check"))}}const lb=(e,t)=>e.reduce(((e,n)=>(n.isLeaf?e.push(n):(!t&&e.push(n),e=e.concat(lb(n.children,t))),e)),[]);class ab{constructor(e,t){this.config=t;const n=(e||[]).map((e=>new rb(e,this.config)));this.nodes=n,this.allNodes=lb(n,!1),this.leafNodes=lb(n,!0)}getNodes(){return this.nodes}getFlattedNodes(e){return e?this.leafNodes:this.allNodes}appendNode(e,t){const n=t?t.appendChild(e):new rb(e,this.config);t||this.nodes.push(n),this.allNodes.push(n),n.isLeaf&&this.leafNodes.push(n)}appendNodes(e,t){e.forEach((e=>this.appendNode(e,t)))}getNodeByValue(e,t=!1){if(!e&&0!==e)return null;const n=this.getFlattedNodes(t).find((t=>eg(t.value,e)||eg(t.pathValues,e)));return n||null}getSameNode(e){if(!e)return null;const t=this.getFlattedNodes(!1).find((({value:t,level:n})=>eg(e.value,t)&&e.level===n));return t||null}}const ib=(0,H.b_)({modelValue:{type:(0,H.jq)([Number,String,Array])},options:{type:(0,H.jq)(Array),default:()=>[]},props:{type:(0,H.jq)(Object),default:()=>({})}}),sb={expandTrigger:"click",multiple:!1,checkStrictly:!1,emitPath:!0,lazy:!1,lazyLoad:u.tE,value:"value",label:"label",children:"children",leaf:"leaf",disabled:"disabled",hoverThreshold:500},ub=e=>(0,i.EW)((()=>({...sb,...e.props}))),cb='a[href],button:not([disabled]),button:not([hidden]),:not([tabindex="-1"]),input:not([disabled]),input:not([type="hidden"]),select:not([disabled]),textarea:not([disabled])',db=e=>{const t=getComputedStyle(e);return"fixed"!==t.position&&null!==e.offsetParent},pb=e=>Array.from(e.querySelectorAll(cb)).filter((e=>fb(e)&&db(e))),fb=e=>{if(e.tabIndex>0||0===e.tabIndex&&null!==e.getAttribute("tabIndex"))return!0;if(e.disabled)return!1;switch(e.nodeName){case"A":return!!e.href&&"ignore"!==e.rel;case"INPUT":return!("hidden"===e.type||"file"===e.type);case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}},vb=function(e,t,...n){let o;o=t.includes("mouse")||t.includes("click")?"MouseEvents":t.includes("key")?"KeyboardEvent":"HTMLEvents";const r=document.createEvent(o);return r.initEvent(t,...n),e.dispatchEvent(r),e},hb=e=>!e.getAttribute("aria-owns"),mb=(e,t,n)=>{const{parentNode:o}=e;if(!o)return null;const r=o.querySelectorAll(n),l=Array.prototype.indexOf.call(r,e);return r[l+t]||null},gb=e=>{e&&(e.focus(),!hb(e)&&e.click())},yb=e=>{if(!e)return 0;const t=e.id.split("-");return Number(t[t.length-2])},bb=e=>{if(!e)return;const t=e.querySelector("input");t?t.click():hb(e)&&e.click()},Rb=(e,t)=>{const n=t.slice(0),o=n.map((e=>e.uid)),r=e.reduce(((e,t)=>{const r=o.indexOf(t.uid);return r>-1&&(e.push(t),n.splice(r,1),o.splice(r,1)),e}),[]);return r.push(...n),r},wb=e=>[...new Set(e)],Eb=e=>e||0===e?Array.isArray(e)?e:[e]:[],Cb=(0,i.pM)({name:"ElCascaderPanel",components:{ElCascaderMenu:Jy},props:{...ib,border:{type:Boolean,default:!0},renderLabel:Function},emits:[G,q,"close","expand-change"],setup(e,{emit:t,slots:n}){let o=!1;const r=(0,ee.DU)("cascader"),l=ub(e);let a=null;const u=(0,s.KR)(!0),d=(0,s.KR)([]),p=(0,s.KR)(null),f=(0,s.KR)([]),v=(0,s.KR)(null),h=(0,s.KR)([]),m=(0,i.EW)((()=>"hover"===l.value.expandTrigger)),g=(0,i.EW)((()=>e.renderLabel||n.default)),y=()=>{const{options:t}=e,n=l.value;o=!1,a=new ab(t,n),f.value=[a.getNodes()],n.lazy&&(0,z.Im)(e.options)?(u.value=!1,b(void 0,(e=>{e&&(a=new ab(e,n),f.value=[a.getNodes()]),u.value=!0,S(!1,!0)}))):S(!1,!0)},b=(e,t)=>{const n=l.value;e=e||new rb({},n,void 0,!0),e.loading=!0;const o=n=>{const o=e,r=o.root?null:o;n&&(null==a||a.appendNodes(n,r)),o.loading=!1,o.loaded=!0,o.childrenData=o.childrenData||[],t&&t(n)};n.lazyLoad(e,o)},R=(e,n)=>{var o;const{level:r}=e,l=f.value.slice(0,r);let a;e.isLeaf?a=e.pathNodes[r-2]:(a=e,l.push(e.children)),(null==(o=v.value)?void 0:o.uid)!==(null==a?void 0:a.uid)&&(v.value=e,f.value=l,!n&&t("expand-change",(null==e?void 0:e.pathValues)||[]))},w=(e,n,r=!0)=>{const{checkStrictly:a,multiple:i}=l.value,s=h.value[0];o=!0,!i&&(null==s||s.doCheck(!1)),e.doCheck(n),_(),r&&!i&&!a&&t("close"),!r&&!i&&!a&&E(e)},E=e=>{e&&(e=e.parent,E(e),e&&R(e))},C=e=>null==a?void 0:a.getFlattedNodes(e),k=e=>{var t;return null==(t=C(e))?void 0:t.filter((e=>!1!==e.checked))},x=()=>{h.value.forEach((e=>e.doCheck(!1))),_(),f.value=f.value.slice(0,1),v.value=null,t("expand-change",[])},_=()=>{var e;const{checkStrictly:t,multiple:n}=l.value,o=h.value,r=k(!t),a=Rb(o,r),i=a.map((e=>e.valueByOption));h.value=a,p.value=n?i:null!=(e=i[0])?e:null},S=(t=!1,n=!1)=>{const{modelValue:r}=e,{lazy:i,multiple:s,checkStrictly:c}=l.value,d=!c;if(u.value&&!o&&(n||!eg(r,p.value)))if(i&&!t){const e=wb(sg(Eb(r))),t=e.map((e=>null==a?void 0:a.getNodeByValue(e))).filter((e=>!!e&&!e.loaded&&!e.loading));t.length?t.forEach((e=>{b(e,(()=>S(!1,n)))})):S(!0,n)}else{const e=s?Eb(r):[r],t=wb(e.map((e=>null==a?void 0:a.getNodeByValue(e,d))));T(t,n),p.value=em(r)}},T=(t,n=!0)=>{const{checkStrictly:o}=l.value,r=h.value,u=t.filter((e=>!!e&&(o||e.isLeaf))),c=null==a?void 0:a.getSameNode(v.value),d=n&&c||u[0];d?d.pathNodes.forEach((e=>R(e,!0))):v.value=null,r.forEach((e=>e.doCheck(!1))),e.props.multiple?(0,s.Kh)(u).forEach((e=>e.doCheck(!0))):u.forEach((e=>e.doCheck(!0))),h.value=u,(0,i.dY)(O)},O=()=>{c.oc&&d.value.forEach((e=>{const t=null==e?void 0:e.$el;if(t){const e=t.querySelector(`.${r.namespace.value}-scrollbar__wrap`),n=t.querySelector(`.${r.b("node")}.${r.is("active")}`)||t.querySelector(`.${r.b("node")}.in-active-path`);ie(e,n)}}))},I=e=>{const t=e.target,{code:n}=e;switch(n){case aa.up:case aa.down:{e.preventDefault();const o=n===aa.up?-1:1;gb(mb(t,o,`.${r.b("node")}[tabindex="-1"]`));break}case aa.left:{e.preventDefault();const n=d.value[yb(t)-1],o=null==n?void 0:n.$el.querySelector(`.${r.b("node")}[aria-expanded="true"]`);gb(o);break}case aa.right:{e.preventDefault();const n=d.value[yb(t)+1],o=null==n?void 0:n.$el.querySelector(`.${r.b("node")}[tabindex="-1"]`);gb(o);break}case aa.enter:bb(t);break}};return(0,i.Gt)(Uy,(0,s.Kh)({config:l,expandingNode:v,checkedNodes:h,isHoverMenu:m,initialLoaded:u,renderLabelFn:g,lazyLoad:b,expandNode:R,handleCheckChange:w})),(0,i.wB)([l,()=>e.options],y,{deep:!0,immediate:!0}),(0,i.wB)((()=>e.modelValue),(()=>{o=!1,S()}),{deep:!0}),(0,i.wB)((()=>p.value),(n=>{eg(n,e.modelValue)||(t(G,n),t(q,n))})),(0,i.Ic)((()=>d.value=[])),(0,i.sV)((()=>!(0,z.Im)(e.modelValue)&&S())),{ns:r,menuList:d,menus:f,checkedNodes:h,handleKeyDown:I,handleCheckChange:w,getFlattedNodes:C,getCheckedNodes:k,clearCheckedNodes:x,calculateCheckedValue:_,scrollToExpandingNode:O}}});function kb(e,t,n,o,r,l){const a=(0,i.g2)("el-cascader-menu");return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([e.ns.b("panel"),e.ns.is("bordered",e.border)]),onKeydown:t[0]||(t[0]=(...t)=>e.handleKeyDown&&e.handleKeyDown(...t))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.menus,((t,n)=>((0,i.uX)(),(0,i.Wv)(a,{key:n,ref_for:!0,ref:t=>e.menuList[n]=t,index:n,nodes:[...t]},null,8,["index","nodes"])))),128))],34)}var xb=J(Cb,[["render",kb],["__file","index.vue"]]);xb.install=e=>{e.component(xb.name,xb)};const _b=xb,Sb=_b,Tb=(0,H.b_)({type:{type:String,values:["primary","success","info","warning","danger"],default:"primary"},closable:Boolean,disableTransitions:Boolean,hit:Boolean,color:String,size:{type:String,values:rs.I},effect:{type:String,values:["dark","light","plain"],default:"light"},round:Boolean}),Ob={close:e=>e instanceof MouseEvent,click:e=>e instanceof MouseEvent},Ib=(0,i.pM)({name:"ElTag"}),Ab=(0,i.pM)({...Ib,props:Tb,emits:Ob,setup(e,{emit:t}){const n=e,o=ao(),r=(0,ee.DU)("tag"),l=(0,i.EW)((()=>{const{type:e,hit:t,effect:l,closable:a,round:i}=n;return[r.b(),r.is("closable",a),r.m(e||"primary"),r.m(o.value),r.m(l),r.is("hit",t),r.is("round",i)]})),a=e=>{t("close",e)},c=e=>{t("click",e)};return(e,t)=>e.disableTransitions?((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(l)),style:(0,u.Tr)({backgroundColor:e.color}),onClick:c},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(r).e("content"))},[(0,i.RG)(e.$slots,"default")],2),e.closable?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(r).e("close")),onClick:(0,ge.D$)(a,["stop"])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0)],6)):((0,i.uX)(),(0,i.Wv)(ge.eB,{key:1,name:`${(0,s.R1)(r).namespace.value}-zoom-in-center`,appear:""},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l)),style:(0,u.Tr)({backgroundColor:e.color}),onClick:c},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(r).e("content"))},[(0,i.RG)(e.$slots,"default")],2),e.closable?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(r).e("close")),onClick:(0,ge.D$)(a,["stop"])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0)],6)])),_:3},8,["name"]))}});var Lb=J(Ab,[["__file","tag.vue"]]);const Mb=pe(Lb),Nb=(0,H.b_)({...ib,size:Vn.mU,placeholder:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,filterMethod:{type:(0,H.jq)(Function),default:(e,t)=>e.text.includes(t)},separator:{type:String,default:" / "},showAllLevels:{type:Boolean,default:!0},collapseTags:Boolean,maxCollapseTags:{type:Number,default:1},collapseTagsTooltip:{type:Boolean,default:!1},debounce:{type:Number,default:300},beforeFilter:{type:(0,H.jq)(Function),default:()=>!0},popperClass:{type:String,default:""},teleported:ra.teleported,tagType:{...Tb.type,default:"info"},validateEvent:{type:Boolean,default:!0}}),Wb={[G]:e=>!!e||null===e,[q]:e=>!!e||null===e,focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent,visibleChange:e=>(0,z.Lm)(e),expandChange:e=>!!e,removeTag:e=>!!e},Db=new Map;let Fb;function $b(e,t){let n=[];return Array.isArray(t.arg)?n=t.arg:(0,z.vq)(t.arg)&&n.push(t.arg),function(o,r){const l=t.instance.popperRef,a=o.target,i=null==r?void 0:r.target,s=!t||!t.instance,u=!a||!i,c=e.contains(a)||e.contains(i),d=e===a,p=n.length&&n.some((e=>null==e?void 0:e.contains(a)))||n.length&&n.includes(i),f=l&&(l.contains(a)||l.contains(i));s||u||c||d||p||f||t.value(o,r)}}c.oc&&(document.addEventListener("mousedown",(e=>Fb=e)),document.addEventListener("mouseup",(e=>{for(const t of Db.values())for(const{documentHandler:n}of t)n(e,Fb)})));const Bb={beforeMount(e,t){Db.has(e)||Db.set(e,[]),Db.get(e).push({documentHandler:$b(e,t),bindingFn:t.value})},updated(e,t){Db.has(e)||Db.set(e,[]);const n=Db.get(e),o=n.findIndex((e=>e.bindingFn===t.oldValue)),r={documentHandler:$b(e,t),bindingFn:t.value};o>=0?n.splice(o,1,r):n.push(r)},unmounted(e){Db.delete(e)}},Pb={key:0},Kb=["placeholder","onKeydown"],jb=["onClick"],Vb="ElCascader",Xb=(0,i.pM)({name:Vb}),Ub=(0,i.pM)({...Xb,props:Nb,emits:Wb,setup(e,{expose:t,emit:n}){const o=e,r={modifiers:[{name:"arrowPosition",enabled:!0,phase:"main",fn:({state:e})=>{const{modifiersData:t,placement:n}=e;["right","left","bottom","top"].includes(n)||(t.arrow.x=35)},requires:["arrow"]}]},l=(0,i.OA)();let a=0,d=0;const p=(0,ee.DU)("cascader"),f=(0,ee.DU)("input"),{t:v}=(0,zu.Ym)(),{form:h,formItem:m}=oo(),g=(0,s.KR)(null),y=(0,s.KR)(null),b=(0,s.KR)(null),R=(0,s.KR)(null),w=(0,s.KR)(null),C=(0,s.KR)(!1),k=(0,s.KR)(!1),x=(0,s.KR)(!1),_=(0,s.KR)(!1),S=(0,s.KR)(""),O=(0,s.KR)(""),I=(0,s.KR)([]),A=(0,s.KR)([]),L=(0,s.KR)([]),M=(0,s.KR)(!1),N=(0,i.EW)((()=>l.style)),W=(0,i.EW)((()=>o.disabled||(null==h?void 0:h.disabled))),D=(0,i.EW)((()=>o.placeholder||v("el.cascader.placeholder"))),F=(0,i.EW)((()=>O.value||I.value.length>0||M.value?"":D.value)),$=ao(),B=(0,i.EW)((()=>["small"].includes($.value)?"small":"default")),P=(0,i.EW)((()=>!!o.props.multiple)),K=(0,i.EW)((()=>!o.filterable||P.value)),j=(0,i.EW)((()=>P.value?O.value:S.value)),V=(0,i.EW)((()=>{var e;return(null==(e=R.value)?void 0:e.checkedNodes)||[]})),X=(0,i.EW)((()=>!(!o.clearable||W.value||x.value||!k.value)&&!!V.value.length)),U=(0,i.EW)((()=>{const{showAllLevels:e,separator:t}=o,n=V.value;return n.length?P.value?"":n[0].calcText(e,t):""})),H=(0,i.EW)({get(){return em(o.modelValue)},set(e){n(G,e),n(q,e),o.validateEvent&&(null==m||m.validate("change").catch((e=>(0,ne.U)(e))))}}),z=(0,i.EW)((()=>[p.b(),p.m($.value),p.is("disabled",W.value),l.class])),Y=(0,i.EW)((()=>[f.e("icon"),"icon-arrow-down",p.is("reverse",C.value)])),Q=(0,i.EW)((()=>p.is("focus",C.value||_.value))),Z=(0,i.EW)((()=>{var e,t;return null==(t=null==(e=g.value)?void 0:e.popperRef)?void 0:t.contentRef})),J=e=>{var t,r,l;W.value||(e=null!=e?e:!C.value,e!==C.value&&(C.value=e,null==(r=null==(t=y.value)?void 0:t.input)||r.setAttribute("aria-expanded",`${e}`),e?(te(),(0,i.dY)(null==(l=R.value)?void 0:l.scrollToExpandingNode)):o.filterable&&he(),n("visibleChange",e)))},te=()=>{(0,i.dY)((()=>{var e;null==(e=g.value)||e.updatePopper()}))},oe=()=>{x.value=!1},re=e=>{const{showAllLevels:t,separator:n}=o;return{node:e,key:e.uid,text:e.calcText(t,n),hitState:!1,closable:!W.value&&!e.isDisabled,isCollapseTag:!1}},le=e=>{var t;const o=e.node;o.doCheck(!1),null==(t=R.value)||t.calculateCheckedValue(),n("removeTag",o.valueByOption)},ae=()=>{if(!P.value)return;const e=V.value,t=[],n=[];if(e.forEach((e=>n.push(re(e)))),A.value=n,e.length){e.slice(0,o.maxCollapseTags).forEach((e=>t.push(re(e))));const n=e.slice(o.maxCollapseTags),r=n.length;r&&(o.collapseTags?t.push({key:-1,text:`+ ${r}`,closable:!1,isCollapseTag:!0}):n.forEach((e=>t.push(re(e)))))}I.value=t},ie=()=>{var e,t;const{filterMethod:n,showAllLevels:r,separator:l}=o,a=null==(t=null==(e=R.value)?void 0:e.getFlattedNodes(!o.props.checkStrictly))?void 0:t.filter((e=>!e.isDisabled&&(e.calcText(r,l),n(e,j.value))));P.value&&(I.value.forEach((e=>{e.hitState=!1})),A.value.forEach((e=>{e.hitState=!1}))),x.value=!0,L.value=a,te()},se=()=>{var e;let t;t=x.value&&w.value?w.value.$el.querySelector(`.${p.e("suggestion-item")}`):null==(e=R.value)?void 0:e.$el.querySelector(`.${p.b("node")}[tabindex="-1"]`),t&&(t.focus(),!x.value&&t.click())},ue=()=>{var e,t;const n=null==(e=y.value)?void 0:e.input,o=b.value,r=null==(t=w.value)?void 0:t.$el;if(c.oc&&n){if(r){const e=r.querySelector(`.${p.e("suggestion-list")}`);e.style.minWidth=`${n.offsetWidth}px`}if(o){const{offsetHeight:e}=o,t=I.value.length>0?`${Math.max(e+6,a)}px`:`${a}px`;n.style.height=t,te()}}},ce=e=>{var t;return null==(t=R.value)?void 0:t.getCheckedNodes(e)},de=e=>{te(),n("expandChange",e)},pe=e=>{var t;const n=null==(t=e.target)?void 0:t.value;if("compositionend"===e.type)M.value=!1,(0,i.dY)((()=>ke(n)));else{const e=n[n.length-1]||"";M.value=!co(e)}},fe=e=>{if(!M.value)switch(e.code){case aa.enter:J();break;case aa.down:J(!0),(0,i.dY)(se),e.preventDefault();break;case aa.esc:!0===C.value&&(e.preventDefault(),e.stopPropagation(),J(!1));break;case aa.tab:J(!1);break}},ve=()=>{var e;null==(e=R.value)||e.clearCheckedNodes(),!C.value&&o.filterable&&he(),J(!1)},he=()=>{const{value:e}=U;S.value=e,O.value=e},me=e=>{var t,n;const{checked:o}=e;P.value?null==(t=R.value)||t.handleCheckChange(e,!o,!1):(!o&&(null==(n=R.value)||n.handleCheckChange(e,!0,!1)),J(!1))},ye=e=>{const t=e.target,{code:n}=e;switch(n){case aa.up:case aa.down:{const e=n===aa.up?-1:1;gb(mb(t,e,`.${p.e("suggestion-item")}[tabindex="-1"]`));break}case aa.enter:t.click();break}},be=()=>{const e=I.value,t=e[e.length-1];d=O.value?0:d+1,!t||!d||o.collapseTags&&e.length>1||(t.hitState?le(t):t.hitState=!0)},Re=e=>{const t=e.target,o=p.e("search-input");t.className===o&&(_.value=!0),n("focus",e)},we=e=>{_.value=!1,n("blur",e)},Ce=Wn((()=>{const{value:e}=j;if(!e)return;const t=o.beforeFilter(e);(0,u.yL)(t)?t.then(ie).catch((()=>{})):!1!==t?ie():oe()}),o.debounce),ke=(e,t)=>{!C.value&&J(!0),(null==t?void 0:t.isComposing)||(e?Ce():oe())},_e=e=>Number.parseFloat(E(f.cssVarName("input-height"),e).value)-2;return(0,i.wB)(x,te),(0,i.wB)([V,W],ae),(0,i.wB)(I,(()=>{(0,i.dY)((()=>ue()))})),(0,i.wB)($,(async()=>{await(0,i.dY)();const e=y.value.input;a=_e(e)||a,ue()})),(0,i.wB)(U,he,{immediate:!0}),(0,i.sV)((()=>{const e=y.value.input,t=_e(e);a=e.offsetHeight||t,T(e,ue)})),t({getCheckedNodes:ce,cascaderPanelRef:R,togglePopperVisible:J,contentRef:Z}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),{ref_key:"tooltipRef",ref:g,visible:C.value,teleported:e.teleported,"popper-class":[(0,s.R1)(p).e("dropdown"),e.popperClass],"popper-options":r,"fallback-placements":["bottom-start","bottom","top-start","top","right","left"],"stop-popper-mouse-event":!1,"gpu-acceleration":!1,placement:"bottom-start",transition:`${(0,s.R1)(p).namespace.value}-zoom-in-top`,effect:"light",pure:"",persistent:"",onHide:oe},{default:(0,i.k6)((()=>[(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(z)),style:(0,u.Tr)((0,s.R1)(N)),onClick:t[5]||(t[5]=()=>J(!(0,s.R1)(K)||void 0)),onKeydown:fe,onMouseenter:t[6]||(t[6]=e=>k.value=!0),onMouseleave:t[7]||(t[7]=e=>k.value=!1)},[(0,i.bF)((0,s.R1)(yo),{ref_key:"input",ref:y,modelValue:S.value,"onUpdate:modelValue":t[1]||(t[1]=e=>S.value=e),placeholder:(0,s.R1)(F),readonly:(0,s.R1)(K),disabled:(0,s.R1)(W),"validate-event":!1,size:(0,s.R1)($),class:(0,u.C4)((0,s.R1)(Q)),tabindex:(0,s.R1)(P)&&e.filterable&&!(0,s.R1)(W)?-1:void 0,onCompositionstart:pe,onCompositionupdate:pe,onCompositionend:pe,onFocus:Re,onBlur:we,onInput:ke},{suffix:(0,i.k6)((()=>[(0,s.R1)(X)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:"clear",class:(0,u.C4)([(0,s.R1)(f).e("icon"),"icon-circle-close"]),onClick:(0,ge.D$)(ve,["stop"])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(qe))])),_:1},8,["class","onClick"])):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:"arrow-down",class:(0,u.C4)((0,s.R1)(Y)),onClick:t[0]||(t[0]=(0,ge.D$)((e=>J()),["stop"]))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(xe))])),_:1},8,["class"]))])),_:1},8,["modelValue","placeholder","readonly","disabled","size","class","tabindex"]),(0,s.R1)(P)?((0,i.uX)(),(0,i.CE)("div",{key:0,ref_key:"tagWrapper",ref:b,class:(0,u.C4)((0,s.R1)(p).e("tags"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(I.value,(t=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(Mb),{key:t.key,type:e.tagType,size:(0,s.R1)(B),hit:t.hitState,closable:t.closable,"disable-transitions":"",onClose:e=>le(t)},{default:(0,i.k6)((()=>[!1===t.isCollapseTag?((0,i.uX)(),(0,i.CE)("span",Pb,(0,u.v_)(t.text),1)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),{key:1,disabled:C.value||!e.collapseTagsTooltip,"fallback-placements":["bottom","top","right","left"],placement:"bottom",effect:"light"},{default:(0,i.k6)((()=>[(0,i.Lk)("span",null,(0,u.v_)(t.text),1)])),content:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(p).e("collapse-tags"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(A.value.slice(e.maxCollapseTags),((t,n)=>((0,i.uX)(),(0,i.CE)("div",{key:n,class:(0,u.C4)((0,s.R1)(p).e("collapse-tag"))},[((0,i.uX)(),(0,i.Wv)((0,s.R1)(Mb),{key:t.key,class:"in-tooltip",type:e.tagType,size:(0,s.R1)(B),hit:t.hitState,closable:t.closable,"disable-transitions":"",onClose:e=>le(t)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",null,(0,u.v_)(t.text),1)])),_:2},1032,["type","size","hit","closable","onClose"]))],2)))),128))],2)])),_:2},1032,["disabled"]))])),_:2},1032,["type","size","hit","closable","onClose"])))),128)),e.filterable&&!(0,s.R1)(W)?(0,i.bo)(((0,i.uX)(),(0,i.CE)("input",{key:0,"onUpdate:modelValue":t[2]||(t[2]=e=>O.value=e),type:"text",class:(0,u.C4)((0,s.R1)(p).e("search-input")),placeholder:(0,s.R1)(U)?"":(0,s.R1)(D),onInput:t[3]||(t[3]=e=>ke(O.value,e)),onClick:t[4]||(t[4]=(0,ge.D$)((e=>J(!0)),["stop"])),onKeydown:(0,ge.jR)(be,["delete"]),onCompositionstart:pe,onCompositionupdate:pe,onCompositionend:pe,onFocus:Re,onBlur:we},null,42,Kb)),[[ge.Jo,O.value]]):(0,i.Q3)("v-if",!0)],2)):(0,i.Q3)("v-if",!0)],38)),[[(0,s.R1)(Bb),()=>J(!1),(0,s.R1)(Z)]])])),content:(0,i.k6)((()=>[(0,i.bo)((0,i.bF)((0,s.R1)(_b),{ref_key:"cascaderPanelRef",ref:R,modelValue:(0,s.R1)(H),"onUpdate:modelValue":t[8]||(t[8]=e=>(0,s.i9)(H)?H.value=e:null),options:e.options,props:o.props,border:!1,"render-label":e.$slots.default,onExpandChange:de,onClose:t[9]||(t[9]=t=>e.$nextTick((()=>J(!1))))},null,8,["modelValue","options","props","render-label"]),[[ge.aG,!x.value]]),e.filterable?(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,s.R1)(Do),{key:0,ref_key:"suggestionPanel",ref:w,tag:"ul",class:(0,u.C4)((0,s.R1)(p).e("suggestion-panel")),"view-class":(0,s.R1)(p).e("suggestion-list"),onKeydown:ye},{default:(0,i.k6)((()=>[L.value.length?((0,i.uX)(!0),(0,i.CE)(i.FK,{key:0},(0,i.pI)(L.value,(e=>((0,i.uX)(),(0,i.CE)("li",{key:e.uid,class:(0,u.C4)([(0,s.R1)(p).e("suggestion-item"),(0,s.R1)(p).is("checked",e.checked)]),tabindex:-1,onClick:t=>me(e)},[(0,i.Lk)("span",null,(0,u.v_)(e.text),1),e.checked?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ke))])),_:1})):(0,i.Q3)("v-if",!0)],10,jb)))),128)):(0,i.RG)(e.$slots,"empty",{key:1},(()=>[(0,i.Lk)("li",{class:(0,u.C4)((0,s.R1)(p).e("empty-text"))},(0,u.v_)((0,s.R1)(v)("el.cascader.noMatch")),3)]))])),_:3},8,["class","view-class"])),[[ge.aG,x.value]]):(0,i.Q3)("v-if",!0)])),_:3},8,["visible","teleported","popper-class","transition"]))}});var Hb=J(Ub,[["__file","cascader.vue"]]);Hb.install=e=>{e.component(Hb.name,Hb)};const zb=Hb,Gb=zb,qb=(0,H.b_)({checked:{type:Boolean,default:!1},type:{type:String,values:["primary","success","info","warning","danger"],default:"primary"}}),Yb={"update:checked":e=>(0,z.Lm)(e),[q]:e=>(0,z.Lm)(e)},Qb=(0,i.pM)({name:"ElCheckTag"}),Zb=(0,i.pM)({...Qb,props:qb,emits:Yb,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("check-tag"),r=(0,i.EW)((()=>[o.b(),o.is("checked",n.checked),o.m(n.type||"primary")])),l=()=>{const e=!n.checked;t(q,e),t("update:checked",e)};return(e,t)=>((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(r)),onClick:l},[(0,i.RG)(e.$slots,"default")],2))}});var Jb=J(Zb,[["__file","check-tag.vue"]]);const eR=pe(Jb),tR=(0,H.b_)({tag:{type:String,default:"div"},span:{type:Number,default:24},offset:{type:Number,default:0},pull:{type:Number,default:0},push:{type:Number,default:0},xs:{type:(0,H.jq)([Number,Object]),default:()=>Xn({})},sm:{type:(0,H.jq)([Number,Object]),default:()=>Xn({})},md:{type:(0,H.jq)([Number,Object]),default:()=>Xn({})},lg:{type:(0,H.jq)([Number,Object]),default:()=>Xn({})},xl:{type:(0,H.jq)([Number,Object]),default:()=>Xn({})}}),nR=Symbol("rowContextKey"),oR=(0,i.pM)({name:"ElCol"}),rR=(0,i.pM)({...oR,props:tR,setup(e){const t=e,{gutter:n}=(0,i.WQ)(nR,{gutter:(0,i.EW)((()=>0))}),o=(0,ee.DU)("col"),r=(0,i.EW)((()=>{const e={};return n.value&&(e.paddingLeft=e.paddingRight=n.value/2+"px"),e})),l=(0,i.EW)((()=>{const e=[],r=["span","offset","pull","push"];r.forEach((n=>{const r=t[n];(0,z.Et)(r)&&("span"===n?e.push(o.b(`${t[n]}`)):r>0&&e.push(o.b(`${n}-${t[n]}`)))}));const l=["xs","sm","md","lg","xl"];return l.forEach((n=>{(0,z.Et)(t[n])?e.push(o.b(`${n}-${t[n]}`)):(0,u.Gv)(t[n])&&Object.entries(t[n]).forEach((([t,r])=>{e.push("span"!==t?o.b(`${n}-${t}-${r}`):o.b(`${n}-${r}`))}))})),n.value&&e.push(o.is("guttered")),[o.b(),e]}));return(e,t)=>((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),{class:(0,u.C4)((0,s.R1)(l)),style:(0,u.Tr)((0,s.R1)(r))},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["class","style"]))}});var lR=J(rR,[["__file","col.vue"]]);const aR=pe(lR),iR=e=>(0,z.Et)(e)||(0,u.Kg)(e)||(0,u.cy)(e),sR=(0,H.b_)({accordion:Boolean,modelValue:{type:(0,H.jq)([Array,String,Number]),default:()=>Xn([])}}),uR={[G]:iR,[q]:iR},cR=Symbol("collapseContextKey");function dR(){if(!arguments.length)return[];var e=arguments[0];return(0,Md.A)(e)?e:[e]}var pR=dR;const fR=(e,t)=>{const n=(0,s.KR)(pR(e.modelValue)),o=o=>{n.value=o;const r=e.accordion?n.value[0]:n.value;t(G,r),t(q,r)},r=t=>{if(e.accordion)o([n.value[0]===t?"":t]);else{const e=[...n.value],r=e.indexOf(t);r>-1?e.splice(r,1):e.push(t),o(e)}};return(0,i.wB)((()=>e.modelValue),(()=>n.value=pR(e.modelValue)),{deep:!0}),(0,i.Gt)(cR,{activeNames:n,handleItemClick:r}),{activeNames:n,setActiveNames:o}},vR=()=>{const e=(0,ee.DU)("collapse"),t=(0,i.EW)((()=>e.b()));return{rootKls:t}},hR=(0,i.pM)({name:"ElCollapse"}),mR=(0,i.pM)({...hR,props:sR,emits:uR,setup(e,{expose:t,emit:n}){const o=e,{activeNames:r,setActiveNames:l}=fR(o,n),{rootKls:a}=vR();return t({activeNames:r,setActiveNames:l}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(a))},[(0,i.RG)(e.$slots,"default")],2))}});var gR=J(mR,[["__file","collapse.vue"]]);const yR=(0,i.pM)({name:"ElCollapseTransition"}),bR=(0,i.pM)({...yR,setup(e){const t=(0,ee.DU)("collapse-transition"),n=e=>{e.style.maxHeight="",e.style.overflow=e.dataset.oldOverflow,e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom},o={beforeEnter(e){e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.style.height&&(e.dataset.elExistsHeight=e.style.height),e.style.maxHeight=0,e.style.paddingTop=0,e.style.paddingBottom=0},enter(e){requestAnimationFrame((()=>{e.dataset.oldOverflow=e.style.overflow,e.dataset.elExistsHeight?e.style.maxHeight=e.dataset.elExistsHeight:0!==e.scrollHeight?e.style.maxHeight=`${e.scrollHeight}px`:e.style.maxHeight=0,e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom,e.style.overflow="hidden"}))},afterEnter(e){e.style.maxHeight="",e.style.overflow=e.dataset.oldOverflow},enterCancelled(e){n(e)},beforeLeave(e){e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.dataset.oldOverflow=e.style.overflow,e.style.maxHeight=`${e.scrollHeight}px`,e.style.overflow="hidden"},leave(e){0!==e.scrollHeight&&(e.style.maxHeight=0,e.style.paddingTop=0,e.style.paddingBottom=0)},afterLeave(e){n(e)},leaveCancelled(e){n(e)}};return(e,n)=>((0,i.uX)(),(0,i.Wv)(ge.eB,(0,i.v6)({name:(0,s.R1)(t).b()},(0,i.Tb)(o)),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16,["name"]))}});var RR=J(bR,[["__file","collapse-transition.vue"]]);RR.install=e=>{e.component(RR.name,RR)};const wR=RR,ER=wR,CR=(0,H.b_)({title:{type:String,default:""},name:{type:(0,H.jq)([String,Number]),default:void 0},disabled:Boolean}),kR=e=>{const t=(0,i.WQ)(cR),{namespace:n}=(0,ee.DU)("collapse"),o=(0,s.KR)(!1),r=(0,s.KR)(!1),l=to(),a=(0,i.EW)((()=>l.current++)),u=(0,i.EW)((()=>{var t;return null!=(t=e.name)?t:`${n.value}-id-${l.prefix}-${(0,s.R1)(a)}`})),c=(0,i.EW)((()=>null==t?void 0:t.activeNames.value.includes((0,s.R1)(u)))),d=()=>{setTimeout((()=>{r.value?r.value=!1:o.value=!0}),50)},p=()=>{e.disabled||(null==t||t.handleItemClick((0,s.R1)(u)),o.value=!1,r.value=!0)},f=()=>{null==t||t.handleItemClick((0,s.R1)(u))};return{focusing:o,id:a,isActive:c,handleFocus:d,handleHeaderClick:p,handleEnterClick:f}},xR=(e,{focusing:t,isActive:n,id:o})=>{const r=(0,ee.DU)("collapse"),l=(0,i.EW)((()=>[r.b("item"),r.is("active",(0,s.R1)(n)),r.is("disabled",e.disabled)])),a=(0,i.EW)((()=>[r.be("item","header"),r.is("active",(0,s.R1)(n)),{focusing:(0,s.R1)(t)&&!e.disabled}])),u=(0,i.EW)((()=>[r.be("item","arrow"),r.is("active",(0,s.R1)(n))])),c=(0,i.EW)((()=>r.be("item","wrap"))),d=(0,i.EW)((()=>r.be("item","content"))),p=(0,i.EW)((()=>r.b(`content-${(0,s.R1)(o)}`))),f=(0,i.EW)((()=>r.b(`head-${(0,s.R1)(o)}`)));return{arrowKls:u,headKls:a,rootKls:l,itemWrapperKls:c,itemContentKls:d,scopedContentId:p,scopedHeadId:f}},_R=["id","aria-expanded","aria-controls","aria-describedby","tabindex"],SR=["id","aria-hidden","aria-labelledby"],TR=(0,i.pM)({name:"ElCollapseItem"}),OR=(0,i.pM)({...TR,props:CR,setup(e,{expose:t}){const n=e,{focusing:o,id:r,isActive:l,handleFocus:a,handleHeaderClick:c,handleEnterClick:d}=kR(n),{arrowKls:p,headKls:f,rootKls:v,itemWrapperKls:h,itemContentKls:m,scopedContentId:g,scopedHeadId:y}=xR(n,{focusing:o,isActive:l,id:r});return t({isActive:l}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(v))},[(0,i.Lk)("button",{id:(0,s.R1)(y),class:(0,u.C4)((0,s.R1)(f)),"aria-expanded":(0,s.R1)(l),"aria-controls":(0,s.R1)(g),"aria-describedby":(0,s.R1)(g),tabindex:e.disabled?-1:0,type:"button",onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(c)&&(0,s.R1)(c)(...e)),onKeydown:t[1]||(t[1]=(0,ge.jR)((0,ge.D$)(((...e)=>(0,s.R1)(d)&&(0,s.R1)(d)(...e)),["stop","prevent"]),["space","enter"])),onFocus:t[2]||(t[2]=(...e)=>(0,s.R1)(a)&&(0,s.R1)(a)(...e)),onBlur:t[3]||(t[3]=e=>o.value=!1)},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title),1)])),(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(p))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1},8,["class"])],42,_R),(0,i.bF)((0,s.R1)(wR),null,{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("div",{id:(0,s.R1)(g),role:"region",class:(0,u.C4)((0,s.R1)(h)),"aria-hidden":!(0,s.R1)(l),"aria-labelledby":(0,s.R1)(y)},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(m))},[(0,i.RG)(e.$slots,"default")],2)],10,SR),[[ge.aG,(0,s.R1)(l)]])])),_:3})],2))}});var IR=J(OR,[["__file","collapse-item.vue"]]);const AR=pe(gR,{CollapseItem:IR}),LR=he(IR),MR=(0,H.b_)({color:{type:(0,H.jq)(Object),required:!0},vertical:{type:Boolean,default:!1}});let NR=!1;function WR(e,t){if(!c.oc)return;const n=function(e){var n;null==(n=t.drag)||n.call(t,e)},o=function(e){var r;document.removeEventListener("mousemove",n),document.removeEventListener("mouseup",o),document.removeEventListener("touchmove",n),document.removeEventListener("touchend",o),document.onselectstart=null,document.ondragstart=null,NR=!1,null==(r=t.end)||r.call(t,e)},r=function(e){var r;NR||(e.preventDefault(),document.onselectstart=()=>!1,document.ondragstart=()=>!1,document.addEventListener("mousemove",n),document.addEventListener("mouseup",o),document.addEventListener("touchmove",n),document.addEventListener("touchend",o),NR=!0,null==(r=t.start)||r.call(t,e))};e.addEventListener("mousedown",r),e.addEventListener("touchstart",r)}const DR=(e,t)=>{if(!c.oc||!e||!t)return!1;const n=e.getBoundingClientRect();let o;return o=t instanceof Element?t.getBoundingClientRect():{top:0,right:window.innerWidth,bottom:window.innerHeight,left:0},n.topo.top&&n.right>o.left&&n.left{let t=0,n=e;while(n)t+=n.offsetTop,n=n.offsetParent;return t},$R=(e,t)=>Math.abs(FR(e)-FR(t)),BR=e=>{let t,n;return"touchend"===e.type?(n=e.changedTouches[0].clientY,t=e.changedTouches[0].clientX):e.type.startsWith("touch")?(n=e.touches[0].clientY,t=e.touches[0].clientX):(n=e.clientY,t=e.clientX),{clientX:t,clientY:n}},PR=e=>{const t=(0,i.nI)(),n=(0,s.IJ)(),o=(0,s.IJ)();function r(e){const t=e.target;t!==n.value&&l(e)}function l(r){if(!o.value||!n.value)return;const l=t.vnode.el,a=l.getBoundingClientRect(),{clientX:i,clientY:s}=BR(r);if(e.vertical){let t=s-a.top;t=Math.max(n.value.offsetHeight/2,t),t=Math.min(t,a.height-n.value.offsetHeight/2),e.color.set("alpha",Math.round((t-n.value.offsetHeight/2)/(a.height-n.value.offsetHeight)*100))}else{let t=i-a.left;t=Math.max(n.value.offsetWidth/2,t),t=Math.min(t,a.width-n.value.offsetWidth/2),e.color.set("alpha",Math.round((t-n.value.offsetWidth/2)/(a.width-n.value.offsetWidth)*100))}}return{thumb:n,bar:o,handleDrag:l,handleClick:r}},KR=(e,{bar:t,thumb:n,handleDrag:o})=>{const r=(0,i.nI)(),l=(0,ee.DU)("color-alpha-slider"),a=(0,s.KR)(0),u=(0,s.KR)(0),c=(0,s.KR)();function d(){if(!n.value)return 0;if(e.vertical)return 0;const t=r.vnode.el,o=e.color.get("alpha");return t?Math.round(o*(t.offsetWidth-n.value.offsetWidth/2)/100):0}function p(){if(!n.value)return 0;const t=r.vnode.el;if(!e.vertical)return 0;const o=e.color.get("alpha");return t?Math.round(o*(t.offsetHeight-n.value.offsetHeight/2)/100):0}function f(){if(e.color&&e.color.value){const{r:t,g:n,b:o}=e.color.toRgb();return`linear-gradient(to right, rgba(${t}, ${n}, ${o}, 0) 0%, rgba(${t}, ${n}, ${o}, 1) 100%)`}return""}function v(){a.value=d(),u.value=p(),c.value=f()}(0,i.sV)((()=>{if(!t.value||!n.value)return;const e={drag:e=>{o(e)},end:e=>{o(e)}};WR(t.value,e),WR(n.value,e),v()})),(0,i.wB)((()=>e.color.get("alpha")),(()=>v())),(0,i.wB)((()=>e.color.value),(()=>v()));const h=(0,i.EW)((()=>[l.b(),l.is("vertical",e.vertical)])),m=(0,i.EW)((()=>l.e("bar"))),g=(0,i.EW)((()=>l.e("thumb"))),y=(0,i.EW)((()=>({background:c.value}))),b=(0,i.EW)((()=>({left:(0,te._V)(a.value),top:(0,te._V)(u.value)})));return{rootKls:h,barKls:m,barStyle:y,thumbKls:g,thumbStyle:b,update:v}},jR="ElColorAlphaSlider",VR=(0,i.pM)({name:jR}),XR=(0,i.pM)({...VR,props:MR,setup(e,{expose:t}){const n=e,{bar:o,thumb:r,handleDrag:l,handleClick:a}=PR(n),{rootKls:c,barKls:d,barStyle:p,thumbKls:f,thumbStyle:v,update:h}=KR(n,{bar:o,thumb:r,handleDrag:l});return t({update:h,bar:o,thumb:r}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(c))},[(0,i.Lk)("div",{ref_key:"bar",ref:o,class:(0,u.C4)((0,s.R1)(d)),style:(0,u.Tr)((0,s.R1)(p)),onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(a)&&(0,s.R1)(a)(...e))},null,6),(0,i.Lk)("div",{ref_key:"thumb",ref:r,class:(0,u.C4)((0,s.R1)(f)),style:(0,u.Tr)((0,s.R1)(v))},null,6)],2))}});var UR=J(XR,[["__file","alpha-slider.vue"]]);const HR=(0,i.pM)({name:"ElColorHueSlider",props:{color:{type:Object,required:!0},vertical:Boolean},setup(e){const t=(0,ee.DU)("color-hue-slider"),n=(0,i.nI)(),o=(0,s.KR)(),r=(0,s.KR)(),l=(0,s.KR)(0),a=(0,s.KR)(0),u=(0,i.EW)((()=>e.color.get("hue")));function c(e){const t=e.target;t!==o.value&&d(e)}function d(t){if(!r.value||!o.value)return;const l=n.vnode.el,a=l.getBoundingClientRect(),{clientX:i,clientY:s}=BR(t);let u;if(e.vertical){let e=s-a.top;e=Math.min(e,a.height-o.value.offsetHeight/2),e=Math.max(o.value.offsetHeight/2,e),u=Math.round((e-o.value.offsetHeight/2)/(a.height-o.value.offsetHeight)*360)}else{let e=i-a.left;e=Math.min(e,a.width-o.value.offsetWidth/2),e=Math.max(o.value.offsetWidth/2,e),u=Math.round((e-o.value.offsetWidth/2)/(a.width-o.value.offsetWidth)*360)}e.color.set("hue",u)}function p(){if(!o.value)return 0;const t=n.vnode.el;if(e.vertical)return 0;const r=e.color.get("hue");return t?Math.round(r*(t.offsetWidth-o.value.offsetWidth/2)/360):0}function f(){if(!o.value)return 0;const t=n.vnode.el;if(!e.vertical)return 0;const r=e.color.get("hue");return t?Math.round(r*(t.offsetHeight-o.value.offsetHeight/2)/360):0}function v(){l.value=p(),a.value=f()}return(0,i.wB)((()=>u.value),(()=>{v()})),(0,i.sV)((()=>{if(!r.value||!o.value)return;const e={drag:e=>{d(e)},end:e=>{d(e)}};WR(r.value,e),WR(o.value,e),v()})),{bar:r,thumb:o,thumbLeft:l,thumbTop:a,hueValue:u,handleClick:c,update:v,ns:t}}});function zR(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([e.ns.b(),e.ns.is("vertical",e.vertical)])},[(0,i.Lk)("div",{ref:"bar",class:(0,u.C4)(e.ns.e("bar")),onClick:t[0]||(t[0]=(...t)=>e.handleClick&&e.handleClick(...t))},null,2),(0,i.Lk)("div",{ref:"thumb",class:(0,u.C4)(e.ns.e("thumb")),style:(0,u.Tr)({left:e.thumbLeft+"px",top:e.thumbTop+"px"})},null,6)],2)}var GR=J(HR,[["render",zR],["__file","hue-slider.vue"]]);const qR=(0,H.b_)({modelValue:String,id:String,showAlpha:Boolean,colorFormat:String,disabled:Boolean,size:Vn.mU,popperClass:{type:String,default:""},label:{type:String,default:void 0},tabindex:{type:[String,Number],default:0},predefine:{type:(0,H.jq)(Array)},validateEvent:{type:Boolean,default:!0}}),YR={[G]:e=>(0,u.Kg)(e)||(0,Dn.A)(e),[q]:e=>(0,u.Kg)(e)||(0,Dn.A)(e),activeChange:e=>(0,u.Kg)(e)||(0,Dn.A)(e),focus:e=>e instanceof FocusEvent,blur:e=>e instanceof FocusEvent},QR=Symbol("colorPickerContextKey"),ZR=function(e,t,n){return[e,t*n/((e=(2-t)*n)<1?e:2-e)||0,e/2]},JR=function(e){return"string"===typeof e&&e.includes(".")&&1===Number.parseFloat(e)},ew=function(e){return"string"===typeof e&&e.includes("%")},tw=function(e,t){JR(e)&&(e="100%");const n=ew(e);return e=Math.min(t,Math.max(0,Number.parseFloat(`${e}`))),n&&(e=Number.parseInt(""+e*t,10)/100),Math.abs(e-t)<1e-6?1:e%t/Number.parseFloat(t)},nw={10:"A",11:"B",12:"C",13:"D",14:"E",15:"F"},ow=e=>{e=Math.min(Math.round(e),255);const t=Math.floor(e/16),n=e%16;return`${nw[t]||t}${nw[n]||n}`},rw=function({r:e,g:t,b:n}){return Number.isNaN(+e)||Number.isNaN(+t)||Number.isNaN(+n)?"":`#${ow(e)}${ow(t)}${ow(n)}`},lw={A:10,B:11,C:12,D:13,E:14,F:15},aw=function(e){return 2===e.length?16*(lw[e[0].toUpperCase()]||+e[0])+(lw[e[1].toUpperCase()]||+e[1]):lw[e[1].toUpperCase()]||+e[1]},iw=function(e,t,n){t/=100,n/=100;let o=t;const r=Math.max(n,.01);n*=2,t*=n<=1?n:2-n,o*=r<=1?r:2-r;const l=(n+t)/2,a=0===n?2*o/(r+o):2*t/(n+t);return{h:e,s:100*a,v:100*l}},sw=(e,t,n)=>{e=tw(e,255),t=tw(t,255),n=tw(n,255);const o=Math.max(e,t,n),r=Math.min(e,t,n);let l;const a=o,i=o-r,s=0===o?0:i/o;if(o===r)l=0;else{switch(o){case e:l=(t-n)/i+(t{this._hue=Math.max(0,Math.min(360,e)),this._saturation=Math.max(0,Math.min(100,t)),this._value=Math.max(0,Math.min(100,n)),this.doOnChange()};if(e.includes("hsl")){const n=e.replace(/hsla|hsl|\(|\)/gm,"").split(/\s|,/g).filter((e=>""!==e)).map(((e,t)=>t>2?Number.parseFloat(e):Number.parseInt(e,10)));if(4===n.length?this._alpha=100*Number.parseFloat(n[3]):3===n.length&&(this._alpha=100),n.length>=3){const{h:e,s:o,v:r}=iw(n[0],n[1],n[2]);t(e,o,r)}}else if(e.includes("hsv")){const n=e.replace(/hsva|hsv|\(|\)/gm,"").split(/\s|,/g).filter((e=>""!==e)).map(((e,t)=>t>2?Number.parseFloat(e):Number.parseInt(e,10)));4===n.length?this._alpha=100*Number.parseFloat(n[3]):3===n.length&&(this._alpha=100),n.length>=3&&t(n[0],n[1],n[2])}else if(e.includes("rgb")){const n=e.replace(/rgba|rgb|\(|\)/gm,"").split(/\s|,/g).filter((e=>""!==e)).map(((e,t)=>t>2?Number.parseFloat(e):Number.parseInt(e,10)));if(4===n.length?this._alpha=100*Number.parseFloat(n[3]):3===n.length&&(this._alpha=100),n.length>=3){const{h:e,s:o,v:r}=sw(n[0],n[1],n[2]);t(e,o,r)}}else if(e.includes("#")){const n=e.replace("#","").trim();if(!/^[0-9a-fA-F]{3}$|^[0-9a-fA-F]{6}$|^[0-9a-fA-F]{8}$/.test(n))return;let o,r,l;3===n.length?(o=aw(n[0]+n[0]),r=aw(n[1]+n[1]),l=aw(n[2]+n[2])):6!==n.length&&8!==n.length||(o=aw(n.slice(0,2)),r=aw(n.slice(2,4)),l=aw(n.slice(4,6))),8===n.length?this._alpha=aw(n.slice(6))/255*100:3!==n.length&&6!==n.length||(this._alpha=100);const{h:a,s:i,v:s}=sw(o,r,l);t(a,i,s)}}compare(e){return Math.abs(e._hue-this._hue)<2&&Math.abs(e._saturation-this._saturation)<1&&Math.abs(e._value-this._value)<1&&Math.abs(e._alpha-this._alpha)<1}doOnChange(){const{_hue:e,_saturation:t,_value:n,_alpha:o,format:r}=this;if(this.enableAlpha)switch(r){case"hsl":{const o=ZR(e,t/100,n/100);this.value=`hsla(${e}, ${Math.round(100*o[1])}%, ${Math.round(100*o[2])}%, ${this.get("alpha")/100})`;break}case"hsv":this.value=`hsva(${e}, ${Math.round(t)}%, ${Math.round(n)}%, ${this.get("alpha")/100})`;break;case"hex":this.value=`${rw(uw(e,t,n))}${ow(255*o/100)}`;break;default:{const{r:o,g:r,b:l}=uw(e,t,n);this.value=`rgba(${o}, ${r}, ${l}, ${this.get("alpha")/100})`}}else switch(r){case"hsl":{const o=ZR(e,t/100,n/100);this.value=`hsl(${e}, ${Math.round(100*o[1])}%, ${Math.round(100*o[2])}%)`;break}case"hsv":this.value=`hsv(${e}, ${Math.round(t)}%, ${Math.round(n)}%)`;break;case"rgb":{const{r:o,g:r,b:l}=uw(e,t,n);this.value=`rgb(${o}, ${r}, ${l})`;break}default:this.value=rw(uw(e,t,n))}}}const dw=(0,i.pM)({props:{colors:{type:Array,required:!0},color:{type:Object,required:!0}},setup(e){const t=(0,ee.DU)("color-predefine"),{currentColor:n}=(0,i.WQ)(QR),o=(0,s.KR)(l(e.colors,e.color));function r(t){e.color.fromString(e.colors[t])}function l(e,t){return e.map((e=>{const n=new cw;return n.enableAlpha=!0,n.format="rgba",n.fromString(e),n.selected=n.value===t.value,n}))}return(0,i.wB)((()=>n.value),(e=>{const t=new cw;t.fromString(e),o.value.forEach((e=>{e.selected=t.compare(e)}))})),(0,i.nT)((()=>{o.value=l(e.colors,e.color)})),{rgbaColors:o,handleSelect:r,ns:t}}}),pw=["onClick"];function fw(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)(e.ns.b())},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("colors"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.rgbaColors,((t,n)=>((0,i.uX)(),(0,i.CE)("div",{key:e.colors[n],class:(0,u.C4)([e.ns.e("color-selector"),e.ns.is("alpha",t._alpha<100),{selected:t.selected}]),onClick:t=>e.handleSelect(n)},[(0,i.Lk)("div",{style:(0,u.Tr)({backgroundColor:t.value})},null,4)],10,pw)))),128))],2)],2)}var vw=J(dw,[["render",fw],["__file","predefine.vue"]]);const hw=(0,i.pM)({name:"ElSlPanel",props:{color:{type:Object,required:!0}},setup(e){const t=(0,ee.DU)("color-svpanel"),n=(0,i.nI)(),o=(0,s.KR)(0),r=(0,s.KR)(0),l=(0,s.KR)("hsl(0, 100%, 50%)"),a=(0,i.EW)((()=>{const t=e.color.get("hue"),n=e.color.get("value");return{hue:t,value:n}}));function u(){const t=e.color.get("saturation"),a=e.color.get("value"),i=n.vnode.el,{clientWidth:s,clientHeight:u}=i;r.value=t*s/100,o.value=(100-a)*u/100,l.value=`hsl(${e.color.get("hue")}, 100%, 50%)`}function c(t){const l=n.vnode.el,a=l.getBoundingClientRect(),{clientX:i,clientY:s}=BR(t);let u=i-a.left,c=s-a.top;u=Math.max(0,u),u=Math.min(u,a.width),c=Math.max(0,c),c=Math.min(c,a.height),r.value=u,o.value=c,e.color.set({saturation:u/a.width*100,value:100-c/a.height*100})}return(0,i.wB)((()=>a.value),(()=>{u()})),(0,i.sV)((()=>{WR(n.vnode.el,{drag:e=>{c(e)},end:e=>{c(e)}}),u()})),{cursorTop:o,cursorLeft:r,background:l,colorValue:a,handleDrag:c,update:u,ns:t}}}),mw=(0,i.Lk)("div",null,null,-1),gw=[mw];function yw(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)(e.ns.b()),style:(0,u.Tr)({backgroundColor:e.background})},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("white"))},null,2),(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("black"))},null,2),(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("cursor")),style:(0,u.Tr)({top:e.cursorTop+"px",left:e.cursorLeft+"px"})},gw,6)],6)}var bw=J(hw,[["render",yw],["__file","sv-panel.vue"]]);const Rw=["onKeydown"],ww=["id","aria-label","aria-labelledby","aria-description","aria-disabled","tabindex"],Ew=(0,i.pM)({name:"ElColorPicker"}),Cw=(0,i.pM)({...Ew,props:qR,emits:YR,setup(e,{expose:t,emit:n}){const o=e,{t:r}=(0,zu.Ym)(),l=(0,ee.DU)("color"),{formItem:a}=oo(),c=ao(),d=io(),{inputId:p,isLabeledByFormItem:f}=ro(o,{formItemContext:a}),v=(0,s.KR)(),h=(0,s.KR)(),m=(0,s.KR)(),g=(0,s.KR)(),y=(0,s.KR)(),b=(0,s.KR)(),{isFocused:R,handleFocus:w,handleBlur:E}=so(y,{beforeBlur(e){var t;return null==(t=g.value)?void 0:t.isFocusInsideContent(e)},afterBlur(){W(!1),B()}}),C=e=>{if(d.value)return q();w(e)};let k=!0;const x=(0,s.Kh)(new cw({enableAlpha:o.showAlpha,format:o.colorFormat||"",value:o.modelValue})),_=(0,s.KR)(!1),S=(0,s.KR)(!1),T=(0,s.KR)(""),O=(0,i.EW)((()=>o.modelValue||S.value?N(x,o.showAlpha):"transparent")),I=(0,i.EW)((()=>o.modelValue||S.value?x.value:"")),A=(0,i.EW)((()=>f.value?void 0:o.label||r("el.colorpicker.defaultLabel"))),L=(0,i.EW)((()=>f.value?null==a?void 0:a.labelId:void 0)),M=(0,i.EW)((()=>[l.b("picker"),l.is("disabled",d.value),l.bm("picker",c.value),l.is("focused",R.value)]));function N(e,t){if(!(e instanceof cw))throw new TypeError("color should be instance of _color Class");const{r:n,g:o,b:r}=e.toRgb();return t?`rgba(${n}, ${o}, ${r}, ${e.get("alpha")/100})`:`rgb(${n}, ${o}, ${r})`}function W(e){_.value=e}const D=Wn(W,100,{leading:!0});function F(){d.value||W(!0)}function $(){D(!1),B()}function B(){(0,i.dY)((()=>{o.modelValue?x.fromString(o.modelValue):(x.value="",(0,i.dY)((()=>{S.value=!1})))}))}function P(){d.value||D(!_.value)}function K(){x.fromString(T.value)}function j(){const e=x.value;n(G,e),n("change",e),o.validateEvent&&(null==a||a.validate("change").catch((e=>(0,ne.U)(e)))),D(!1),(0,i.dY)((()=>{const e=new cw({enableAlpha:o.showAlpha,format:o.colorFormat||"",value:o.modelValue});x.compare(e)||B()}))}function V(){D(!1),n(G,null),n("change",null),null!==o.modelValue&&o.validateEvent&&(null==a||a.validate("change").catch((e=>(0,ne.U)(e)))),B()}function X(e){if(_.value&&($(),R.value)){const t=new FocusEvent("focus",e);E(t)}}function U(e){e.preventDefault(),e.stopPropagation(),W(!1),B()}function H(e){switch(e.code){case aa.enter:case aa.space:e.preventDefault(),e.stopPropagation(),F(),b.value.focus();break;case aa.esc:U(e);break}}function z(){y.value.focus()}function q(){y.value.blur()}return(0,i.sV)((()=>{o.modelValue&&(T.value=I.value)})),(0,i.wB)((()=>o.modelValue),(e=>{e?e&&e!==x.value&&(k=!1,x.fromString(e)):S.value=!1})),(0,i.wB)((()=>I.value),(e=>{T.value=e,k&&n("activeChange",e),k=!0})),(0,i.wB)((()=>x.value),(()=>{o.modelValue||S.value||(S.value=!0)})),(0,i.wB)((()=>_.value),(()=>{(0,i.dY)((()=>{var e,t,n;null==(e=v.value)||e.update(),null==(t=h.value)||t.update(),null==(n=m.value)||n.update()}))})),(0,i.Gt)(QR,{currentColor:I}),t({color:x,show:F,hide:$,focus:z,blur:q}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),{ref_key:"popper",ref:g,visible:_.value,"show-arrow":!1,"fallback-placements":["bottom","top","right","left"],offset:0,"gpu-acceleration":!1,"popper-class":[(0,s.R1)(l).be("picker","panel"),(0,s.R1)(l).b("dropdown"),e.popperClass],"stop-popper-mouse-event":!1,effect:"light",trigger:"click",transition:`${(0,s.R1)(l).namespace.value}-zoom-in-top`,persistent:"",onHide:t[2]||(t[2]=e=>W(!1))},{content:(0,i.k6)((()=>[(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{onKeydown:(0,ge.jR)(U,["esc"])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).be("dropdown","main-wrapper"))},[(0,i.bF)(GR,{ref_key:"hue",ref:v,class:"hue-slider",color:(0,s.R1)(x),vertical:""},null,8,["color"]),(0,i.bF)(bw,{ref_key:"sv",ref:h,color:(0,s.R1)(x)},null,8,["color"])],2),e.showAlpha?((0,i.uX)(),(0,i.Wv)(UR,{key:0,ref_key:"alpha",ref:m,color:(0,s.R1)(x)},null,8,["color"])):(0,i.Q3)("v-if",!0),e.predefine?((0,i.uX)(),(0,i.Wv)(vw,{key:1,ref:"predefine",color:(0,s.R1)(x),colors:e.predefine},null,8,["color","colors"])):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).be("dropdown","btns"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l).be("dropdown","value"))},[(0,i.bF)((0,s.R1)(yo),{ref_key:"inputRef",ref:b,modelValue:T.value,"onUpdate:modelValue":t[0]||(t[0]=e=>T.value=e),"validate-event":!1,size:"small",onKeyup:(0,ge.jR)(K,["enter"]),onBlur:K},null,8,["modelValue","onKeyup"])],2),(0,i.bF)((0,s.R1)(Ou),{class:(0,u.C4)((0,s.R1)(l).be("dropdown","link-btn")),text:"",size:"small",onClick:V},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(r)("el.colorpicker.clear")),1)])),_:1},8,["class"]),(0,i.bF)((0,s.R1)(Ou),{plain:"",size:"small",class:(0,u.C4)((0,s.R1)(l).be("dropdown","btn")),onClick:j},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(r)("el.colorpicker.confirm")),1)])),_:1},8,["class"])],2)],40,Rw)),[[(0,s.R1)(Bb),X]])])),default:(0,i.k6)((()=>[(0,i.Lk)("div",{id:(0,s.R1)(p),ref_key:"triggerRef",ref:y,class:(0,u.C4)((0,s.R1)(M)),role:"button","aria-label":(0,s.R1)(A),"aria-labelledby":(0,s.R1)(L),"aria-description":(0,s.R1)(r)("el.colorpicker.description",{color:e.modelValue||""}),"aria-disabled":(0,s.R1)(d),tabindex:(0,s.R1)(d)?-1:e.tabindex,onKeydown:H,onFocus:C,onBlur:t[1]||(t[1]=(...e)=>(0,s.R1)(E)&&(0,s.R1)(E)(...e))},[(0,s.R1)(d)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(l).be("picker","mask"))},null,2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).be("picker","trigger")),onClick:P},[(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(l).be("picker","color"),(0,s.R1)(l).is("alpha",e.showAlpha)])},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l).be("picker","color-inner")),style:(0,u.Tr)({backgroundColor:(0,s.R1)(O)})},[(0,i.bo)((0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)([(0,s.R1)(l).be("picker","icon"),(0,s.R1)(l).is("icon-arrow-down")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(xe))])),_:1},8,["class"]),[[ge.aG,e.modelValue||S.value]]),(0,i.bo)((0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)([(0,s.R1)(l).be("picker","empty"),(0,s.R1)(l).is("icon-close")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1},8,["class"]),[[ge.aG,!e.modelValue&&!S.value]])],6)],2)],2)],42,ww)])),_:1},8,["visible","popper-class","transition"]))}});var kw=J(Cw,[["__file","color-picker.vue"]]);const xw=pe(kw),_w=(0,H.b_)({a11y:{type:Boolean,default:!0},locale:{type:(0,H.jq)(Object)},size:Vn.mU,button:{type:(0,H.jq)(Object)},experimentalFeatures:{type:(0,H.jq)(Object)},keyboardNavigation:{type:Boolean,default:!0},message:{type:(0,H.jq)(Object)},zIndex:Number,namespace:{type:String,default:"el"}}),Sw={},Tw=(0,i.pM)({name:"ElConfigProvider",props:_w,setup(e,{slots:t}){(0,i.wB)((()=>e.message),(e=>{Object.assign(Sw,null!=e?e:{})}),{immediate:!0,deep:!0});const n=(0,l.Vh)(e);return()=>(0,i.RG)(t,"default",{config:null==n?void 0:n.value})}}),Ow=pe(Tw),Iw=(0,i.pM)({name:"ElContainer"}),Aw=(0,i.pM)({...Iw,props:{direction:{type:String}},setup(e){const t=e,n=(0,i.Ht)(),o=(0,ee.DU)("container"),r=(0,i.EW)((()=>{if("vertical"===t.direction)return!0;if("horizontal"===t.direction)return!1;if(n&&n.default){const e=n.default();return e.some((e=>{const t=e.type.name;return"ElHeader"===t||"ElFooter"===t}))}return!1}));return(e,t)=>((0,i.uX)(),(0,i.CE)("section",{class:(0,u.C4)([(0,s.R1)(o).b(),(0,s.R1)(o).is("vertical",(0,s.R1)(r))])},[(0,i.RG)(e.$slots,"default")],2))}});var Lw=J(Aw,[["__file","container.vue"]]);const Mw=(0,i.pM)({name:"ElAside"}),Nw=(0,i.pM)({...Mw,props:{width:{type:String,default:null}},setup(e){const t=e,n=(0,ee.DU)("aside"),o=(0,i.EW)((()=>t.width?n.cssVarBlock({width:t.width}):{}));return(e,t)=>((0,i.uX)(),(0,i.CE)("aside",{class:(0,u.C4)((0,s.R1)(n).b()),style:(0,u.Tr)((0,s.R1)(o))},[(0,i.RG)(e.$slots,"default")],6))}});var Ww=J(Nw,[["__file","aside.vue"]]);const Dw=(0,i.pM)({name:"ElFooter"}),Fw=(0,i.pM)({...Dw,props:{height:{type:String,default:null}},setup(e){const t=e,n=(0,ee.DU)("footer"),o=(0,i.EW)((()=>t.height?n.cssVarBlock({height:t.height}):{}));return(e,t)=>((0,i.uX)(),(0,i.CE)("footer",{class:(0,u.C4)((0,s.R1)(n).b()),style:(0,u.Tr)((0,s.R1)(o))},[(0,i.RG)(e.$slots,"default")],6))}});var $w=J(Fw,[["__file","footer.vue"]]);const Bw=(0,i.pM)({name:"ElHeader"}),Pw=(0,i.pM)({...Bw,props:{height:{type:String,default:null}},setup(e){const t=e,n=(0,ee.DU)("header"),o=(0,i.EW)((()=>t.height?n.cssVarBlock({height:t.height}):{}));return(e,t)=>((0,i.uX)(),(0,i.CE)("header",{class:(0,u.C4)((0,s.R1)(n).b()),style:(0,u.Tr)((0,s.R1)(o))},[(0,i.RG)(e.$slots,"default")],6))}});var Kw=J(Pw,[["__file","header.vue"]]);const jw=(0,i.pM)({name:"ElMain"}),Vw=(0,i.pM)({...jw,setup(e){const t=(0,ee.DU)("main");return(e,n)=>((0,i.uX)(),(0,i.CE)("main",{class:(0,u.C4)((0,s.R1)(t).b())},[(0,i.RG)(e.$slots,"default")],2))}});var Xw=J(Vw,[["__file","main.vue"]]);const Uw=pe(Lw,{Aside:Ww,Footer:$w,Header:Kw,Main:Xw}),Hw=he(Ww),zw=he($w),Gw=he(Kw),qw=he(Xw);var Yw=n(6110),Qw=n(4642),Zw=n(7515),Jw=n(5806),eE=n(3569),tE=n(464),nE=n(2899);const oE=Symbol(),rE=(0,H.b_)({disabledHours:{type:(0,H.jq)(Function)},disabledMinutes:{type:(0,H.jq)(Function)},disabledSeconds:{type:(0,H.jq)(Function)}}),lE=(0,H.b_)({visible:Boolean,actualVisible:{type:Boolean,default:void 0},format:{type:String,default:""}}),aE=(0,H.b_)({id:{type:(0,H.jq)([Array,String])},name:{type:(0,H.jq)([Array,String]),default:""},popperClass:{type:String,default:""},format:String,valueFormat:String,dateFormat:String,timeFormat:String,type:{type:String,default:""},clearable:{type:Boolean,default:!0},clearIcon:{type:(0,H.jq)([String,Object]),default:qe},editable:{type:Boolean,default:!0},prefixIcon:{type:(0,H.jq)([String,Object]),default:""},size:Vn.mU,readonly:Boolean,disabled:Boolean,placeholder:{type:String,default:""},popperOptions:{type:(0,H.jq)(Object),default:()=>({})},modelValue:{type:(0,H.jq)([Date,Array,String,Number]),default:""},rangeSeparator:{type:String,default:"-"},startPlaceholder:String,endPlaceholder:String,defaultValue:{type:(0,H.jq)([Date,Array])},defaultTime:{type:(0,H.jq)([Date,Array])},isRange:Boolean,...rE,disabledDate:{type:Function},cellClassName:{type:Function},shortcuts:{type:Array,default:()=>[]},arrowControl:Boolean,label:{type:String,default:void 0},tabindex:{type:(0,H.jq)([String,Number]),default:0},validateEvent:{type:Boolean,default:!0},unlinkPanels:Boolean}),iE=(0,H.b_)({...aE,type:{type:(0,H.jq)(String),default:"date"}}),sE=["date","dates","year","month","week","range"],uE=(0,H.b_)({disabledDate:{type:(0,H.jq)(Function)},date:{type:(0,H.jq)(Object),required:!0},minDate:{type:(0,H.jq)(Object)},maxDate:{type:(0,H.jq)(Object)},parsedValue:{type:(0,H.jq)([Object,Array])},rangeState:{type:(0,H.jq)(Object),default:()=>({endDate:null,selecting:!1})}}),cE=(0,H.b_)({type:{type:(0,H.jq)(String),required:!0,values:Gu},dateFormat:String,timeFormat:String}),dE=(0,H.b_)({unlinkPanels:Boolean,parsedValue:{type:(0,H.jq)(Array)}}),pE=e=>({type:String,values:sE,default:e}),fE=(0,H.b_)({...cE,parsedValue:{type:(0,H.jq)([Object,Array])},visible:{type:Boolean},format:{type:String,default:""}}),vE=(0,H.b_)({...uE,cellClassName:{type:(0,H.jq)(Function)},showWeekNumber:Boolean,selectionMode:pE("date")}),hE=["changerange","pick","select"],mE=e=>{if(!(0,u.cy)(e))return!1;const[t,n]=e;return Au.isDayjs(t)&&Au.isDayjs(n)&&t.isSameOrBefore(n)},gE=(e,{lang:t,unit:n,unlinkPanels:o})=>{let r;if((0,u.cy)(e)){let[r,l]=e.map((e=>Au(e).locale(t)));return o||(l=r.add(1,n)),[r,l]}return r=e?Au(e):Au(),r=r.locale(t),[r,r.add(1,n)]},yE=(e,t,{columnIndexOffset:n,startDate:o,nextEndDate:r,now:l,unit:a,relativeDateGetter:i,setCellMetadata:s,setRowMetadata:u})=>{for(let c=0;c["normal","today"].includes(e),RE=(e,t)=>{const{lang:n}=(0,zu.Ym)(),o=(0,s.KR)(),r=(0,s.KR)(),l=(0,s.KR)(),a=(0,s.KR)(),u=(0,s.KR)([[],[],[],[],[],[]]);let c=!1;const d=e.date.$locale().weekStart||7,p=e.date.locale("en").localeData().weekdaysShort().map((e=>e.toLowerCase())),f=(0,i.EW)((()=>d>3?7-d:-d)),v=(0,i.EW)((()=>{const t=e.date.startOf("month");return t.subtract(t.day()||7,"day")})),h=(0,i.EW)((()=>p.concat(p).slice(d,d+7))),m=(0,i.EW)((()=>Vg((0,s.R1)(E)).some((e=>e.isCurrent)))),g=(0,i.EW)((()=>{const t=e.date.startOf("month"),n=t.day()||7,o=t.daysInMonth(),r=t.subtract(1,"month").daysInMonth();return{startOfMonthDay:n,dateCountOfMonth:o,dateCountOfLastMonth:r}})),y=(0,i.EW)((()=>"dates"===e.selectionMode?Eb(e.parsedValue):[])),b=(e,{count:t,rowIndex:n,columnIndex:o})=>{const{startOfMonthDay:r,dateCountOfMonth:l,dateCountOfLastMonth:a}=(0,s.R1)(g),i=(0,s.R1)(f);if(!(n>=0&&n<=1))return t<=l?e.text=t:(e.text=t-l,e.type="next-month"),!0;{const l=r+i<0?7+r+i:r+i;if(o+7*n>=l)return e.text=t,!0;e.text=a-(l-o%7)+1+7*n,e.type="prev-month"}return!1},R=(t,{columnIndex:n,rowIndex:o},r)=>{const{disabledDate:l,cellClassName:a}=e,i=(0,s.R1)(y),u=b(t,{count:r,rowIndex:o,columnIndex:n}),c=t.dayjs.toDate();return t.selected=i.find((e=>e.valueOf()===t.dayjs.valueOf())),t.isSelected=!!t.selected,t.isCurrent=k(t),t.disabled=null==l?void 0:l(c),t.customClass=null==a?void 0:a(c),u},w=t=>{if("week"===e.selectionMode){const[n,o]=e.showWeekNumber?[1,7]:[0,6],r=D(t[n+1]);t[n].inRange=r,t[n].start=r,t[o].inRange=r,t[o].end=r}},E=(0,i.EW)((()=>{const{minDate:t,maxDate:o,rangeState:r,showWeekNumber:l}=e,a=(0,s.R1)(f),i=(0,s.R1)(u),c="day";let d=1;if(l)for(let e=0;e<6;e++)i[e][0]||(i[e][0]={type:"week",text:(0,s.R1)(v).add(7*e+1,c).week()});return yE({row:6,column:7},i,{startDate:t,columnIndexOffset:l?1:0,nextEndDate:r.endDate||o||r.selecting&&t||null,now:Au().locale((0,s.R1)(n)).startOf(c),unit:c,relativeDateGetter:e=>(0,s.R1)(v).add(e-a,c),setCellMetadata:(...e)=>{R(...e,d)&&(d+=1)},setRowMetadata:w}),i}));(0,i.wB)((()=>e.date),(async()=>{var e;(null==(e=(0,s.R1)(o))?void 0:e.contains(document.activeElement))&&(await(0,i.dY)(),await C())}));const C=async()=>{var e;return null==(e=(0,s.R1)(r))?void 0:e.focus()},k=t=>"date"===e.selectionMode&&bE(t.type)&&x(t,e.parsedValue),x=(t,o)=>!!o&&Au(o).locale((0,s.R1)(n)).isSame(e.date.date(Number(t.text)),"day"),_=(t,n)=>{const o=7*t+(n-(e.showWeekNumber?1:0))-(0,s.R1)(f);return(0,s.R1)(v).add(o,"day")},S=n=>{var o;if(!e.rangeState.selecting)return;let r=n.target;if("SPAN"===r.tagName&&(r=null==(o=r.parentNode)?void 0:o.parentNode),"DIV"===r.tagName&&(r=r.parentNode),"TD"!==r.tagName)return;const i=r.parentNode.rowIndex-1,u=r.cellIndex;(0,s.R1)(E)[i][u].disabled||i===(0,s.R1)(l)&&u===(0,s.R1)(a)||(l.value=i,a.value=u,t("changerange",{selecting:!0,endDate:_(i,u)}))},T=e=>!(0,s.R1)(m)&&1===(null==e?void 0:e.text)&&"normal"===e.type||e.isCurrent,O=t=>{c||(0,s.R1)(m)||"date"!==e.selectionMode||W(t,!0)},I=e=>{const t=e.target.closest("td");t&&(c=!0)},A=e=>{const t=e.target.closest("td");t&&(c=!1)},L=n=>{e.rangeState.selecting&&e.minDate?(n>=e.minDate?t("pick",{minDate:e.minDate,maxDate:n}):t("pick",{minDate:n,maxDate:e.minDate}),t("select",!1)):(t("pick",{minDate:n,maxDate:null}),t("select",!0))},M=e=>{const n=e.week(),o=`${e.year()}w${n}`;t("pick",{year:e.year(),week:n,value:o,date:e.startOf("week")})},N=(n,o)=>{const r=o?Eb(e.parsedValue).filter((e=>(null==e?void 0:e.valueOf())!==n.valueOf())):Eb(e.parsedValue).concat([n]);t("pick",r)},W=(n,o=!1)=>{const r=n.target.closest("td");if(!r)return;const l=r.parentNode.rowIndex-1,a=r.cellIndex,i=(0,s.R1)(E)[l][a];if(i.disabled||"week"===i.type)return;const u=_(l,a);switch(e.selectionMode){case"range":L(u);break;case"date":t("pick",u,o);break;case"week":M(u);break;case"dates":N(u,!!i.selected);break;default:break}},D=t=>{if("week"!==e.selectionMode)return!1;let n=e.date.startOf("day");if("prev-month"===t.type&&(n=n.subtract(1,"month")),"next-month"===t.type&&(n=n.add(1,"month")),n=n.date(Number.parseInt(t.text,10)),e.parsedValue&&!Array.isArray(e.parsedValue)){const t=(e.parsedValue.day()-d+7)%7-1,o=e.parsedValue.subtract(t,"day");return o.isSame(n,"day")}return!1};return{WEEKS:h,rows:E,tbodyRef:o,currentCellRef:r,focus:C,isCurrent:k,isWeekActive:D,isSelectedCell:T,handlePickDate:W,handleMouseUp:A,handleMouseDown:I,handleMouseMove:S,handleFocus:O}},wE=(e,{isCurrent:t,isWeekActive:n})=>{const o=(0,ee.DU)("date-table"),{t:r}=(0,zu.Ym)(),l=(0,i.EW)((()=>[o.b(),{"is-week-mode":"week"===e.selectionMode}])),a=(0,i.EW)((()=>r("el.datepicker.dateTablePrompt"))),s=(0,i.EW)((()=>r("el.datepicker.week"))),u=n=>{const o=[];return bE(n.type)&&!n.disabled?(o.push("available"),"today"===n.type&&o.push("today")):o.push(n.type),t(n)&&o.push("current"),n.inRange&&(bE(n.type)||"week"===e.selectionMode)&&(o.push("in-range"),n.start&&o.push("start-date"),n.end&&o.push("end-date")),n.disabled&&o.push("disabled"),n.selected&&o.push("selected"),n.customClass&&o.push(n.customClass),o.join(" ")},c=e=>[o.e("row"),{current:n(e)}];return{tableKls:l,tableLabel:a,weekLabel:s,getCellClasses:u,getRowKls:c,t:r}},EE=(0,H.b_)({cell:{type:(0,H.jq)(Object)}});var CE=(0,i.pM)({name:"ElDatePickerCell",props:EE,setup(e){const t=(0,ee.DU)("date-table-cell"),{slots:n}=(0,i.WQ)(oE);return()=>{const{cell:o}=e;return(0,i.RG)(n,"default",{...o},(()=>[(0,i.bF)("div",{class:t.b()},[(0,i.bF)("span",{class:t.e("text")},[null==o?void 0:o.text])])]))}}});const kE=["aria-label"],xE={key:0,scope:"col"},_E=["aria-label"],SE=["aria-current","aria-selected","tabindex"],TE=(0,i.pM)({__name:"basic-date-table",props:vE,emits:hE,setup(e,{expose:t,emit:n}){const o=e,{WEEKS:r,rows:l,tbodyRef:a,currentCellRef:c,focus:d,isCurrent:p,isWeekActive:f,isSelectedCell:v,handlePickDate:h,handleMouseUp:m,handleMouseDown:g,handleMouseMove:y,handleFocus:b}=RE(o,n),{tableLabel:R,tableKls:w,weekLabel:E,getCellClasses:C,getRowKls:k,t:x}=wE(o,{isCurrent:p,isWeekActive:f});return t({focus:d}),(e,t)=>((0,i.uX)(),(0,i.CE)("table",{"aria-label":(0,s.R1)(R),class:(0,u.C4)((0,s.R1)(w)),cellspacing:"0",cellpadding:"0",role:"grid",onClick:t[1]||(t[1]=(...e)=>(0,s.R1)(h)&&(0,s.R1)(h)(...e)),onMousemove:t[2]||(t[2]=(...e)=>(0,s.R1)(y)&&(0,s.R1)(y)(...e)),onMousedown:t[3]||(t[3]=(0,ge.D$)(((...e)=>(0,s.R1)(g)&&(0,s.R1)(g)(...e)),["prevent"])),onMouseup:t[4]||(t[4]=(...e)=>(0,s.R1)(m)&&(0,s.R1)(m)(...e))},[(0,i.Lk)("tbody",{ref_key:"tbodyRef",ref:a},[(0,i.Lk)("tr",null,[e.showWeekNumber?((0,i.uX)(),(0,i.CE)("th",xE,(0,u.v_)((0,s.R1)(E)),1)):(0,i.Q3)("v-if",!0),((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(r),((e,t)=>((0,i.uX)(),(0,i.CE)("th",{key:t,"aria-label":(0,s.R1)(x)("el.datepicker.weeksFull."+e),scope:"col"},(0,u.v_)((0,s.R1)(x)("el.datepicker.weeks."+e)),9,_E)))),128))]),((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(l),((e,n)=>((0,i.uX)(),(0,i.CE)("tr",{key:n,class:(0,u.C4)((0,s.R1)(k)(e[1]))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e,((e,o)=>((0,i.uX)(),(0,i.CE)("td",{key:`${n}.${o}`,ref_for:!0,ref:t=>(0,s.R1)(v)(e)&&(c.value=t),class:(0,u.C4)((0,s.R1)(C)(e)),"aria-current":e.isCurrent?"date":void 0,"aria-selected":e.isCurrent,tabindex:(0,s.R1)(v)(e)?0:-1,onFocus:t[0]||(t[0]=(...e)=>(0,s.R1)(b)&&(0,s.R1)(b)(...e))},[(0,i.bF)((0,s.R1)(CE),{cell:e},null,8,["cell"])],42,SE)))),128))],2)))),128))],512)],42,kE))}});var OE=J(TE,[["__file","basic-date-table.vue"]]);const IE=(0,H.b_)({...uE,selectionMode:pE("month")}),AE=["aria-label"],LE=["aria-selected","aria-label","tabindex","onKeydown"],ME={class:"cell"},NE=(0,i.pM)({__name:"basic-month-table",props:IE,emits:["changerange","pick","select"],setup(e,{expose:t,emit:n}){const o=e,r=(e,t,n)=>{const o=Au().locale(n).startOf("month").month(t).year(e),r=o.daysInMonth();return Mu(r).map((e=>o.add(e,"day").toDate()))},l=(0,ee.DU)("month-table"),{t:a,lang:c}=(0,zu.Ym)(),d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)(o.date.locale("en").localeData().monthsShort().map((e=>e.toLowerCase()))),v=(0,s.KR)([[],[],[]]),h=(0,s.KR)(),m=(0,s.KR)(),g=(0,i.EW)((()=>{var e,t;const n=v.value,r=Au().locale(c.value).startOf("month");for(let l=0;l<3;l++){const a=n[l];for(let n=0;n<4;n++){const i=a[n]||(a[n]={row:l,column:n,type:"normal",inRange:!1,start:!1,end:!1,text:-1,disabled:!1});i.type="normal";const s=4*l+n,u=o.date.startOf("year").month(s),c=o.rangeState.endDate||o.maxDate||o.rangeState.selecting&&o.minDate||null;i.inRange=!!(o.minDate&&u.isSameOrAfter(o.minDate,"month")&&c&&u.isSameOrBefore(c,"month"))||!!(o.minDate&&u.isSameOrBefore(o.minDate,"month")&&c&&u.isSameOrAfter(c,"month")),(null==(e=o.minDate)?void 0:e.isSameOrAfter(c))?(i.start=!(!c||!u.isSame(c,"month")),i.end=o.minDate&&u.isSame(o.minDate,"month")):(i.start=!(!o.minDate||!u.isSame(o.minDate,"month")),i.end=!(!c||!u.isSame(c,"month")));const d=r.isSame(u);d&&(i.type="today"),i.text=s,i.disabled=(null==(t=o.disabledDate)?void 0:t.call(o,u.toDate()))||!1}}return n})),y=()=>{var e;null==(e=p.value)||e.focus()},b=e=>{const t={},n=o.date.year(),l=new Date,a=e.text;return t.disabled=!!o.disabledDate&&r(n,a,c.value).every(o.disabledDate),t.current=Eb(o.parsedValue).findIndex((e=>Au.isDayjs(e)&&e.year()===n&&e.month()===a))>=0,t.today=l.getFullYear()===n&&l.getMonth()===a,e.inRange&&(t["in-range"]=!0,e.start&&(t["start-date"]=!0),e.end&&(t["end-date"]=!0)),t},R=e=>{const t=o.date.year(),n=e.text;return Eb(o.date).findIndex((e=>e.year()===t&&e.month()===n))>=0},w=e=>{var t;if(!o.rangeState.selecting)return;let r=e.target;if("SPAN"===r.tagName&&(r=null==(t=r.parentNode)?void 0:t.parentNode),"DIV"===r.tagName&&(r=r.parentNode),"TD"!==r.tagName)return;const l=r.parentNode.rowIndex,a=r.cellIndex;g.value[l][a].disabled||l===h.value&&a===m.value||(h.value=l,m.value=a,n("changerange",{selecting:!0,endDate:o.date.startOf("year").month(4*l+a)}))},E=e=>{var t;const r=null==(t=e.target)?void 0:t.closest("td");if("TD"!==(null==r?void 0:r.tagName))return;if((0,te.nB)(r,"disabled"))return;const l=r.cellIndex,a=r.parentNode.rowIndex,i=4*a+l,s=o.date.startOf("year").month(i);"range"===o.selectionMode?o.rangeState.selecting?(o.minDate&&s>=o.minDate?n("pick",{minDate:o.minDate,maxDate:s}):n("pick",{minDate:s,maxDate:o.minDate}),n("select",!1)):(n("pick",{minDate:s,maxDate:null}),n("select",!0)):n("pick",i)};return(0,i.wB)((()=>o.date),(async()=>{var e,t;(null==(e=d.value)?void 0:e.contains(document.activeElement))&&(await(0,i.dY)(),null==(t=p.value)||t.focus())})),t({focus:y}),(e,t)=>((0,i.uX)(),(0,i.CE)("table",{role:"grid","aria-label":(0,s.R1)(a)("el.datepicker.monthTablePrompt"),class:(0,u.C4)((0,s.R1)(l).b()),onClick:E,onMousemove:w},[(0,i.Lk)("tbody",{ref_key:"tbodyRef",ref:d},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(g),((e,t)=>((0,i.uX)(),(0,i.CE)("tr",{key:t},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e,((e,t)=>((0,i.uX)(),(0,i.CE)("td",{key:t,ref_for:!0,ref:t=>R(e)&&(p.value=t),class:(0,u.C4)(b(e)),"aria-selected":`${R(e)}`,"aria-label":(0,s.R1)(a)("el.datepicker.month"+(+e.text+1)),tabindex:R(e)?0:-1,onKeydown:[(0,ge.jR)((0,ge.D$)(E,["prevent","stop"]),["space"]),(0,ge.jR)((0,ge.D$)(E,["prevent","stop"]),["enter"])]},[(0,i.Lk)("div",null,[(0,i.Lk)("span",ME,(0,u.v_)((0,s.R1)(a)("el.datepicker.months."+f.value[e.text])),1)])],42,LE)))),128))])))),128))],512)],42,AE))}});var WE=J(NE,[["__file","basic-month-table.vue"]]);const{date:DE,disabledDate:FE,parsedValue:$E}=uE,BE=(0,H.b_)({date:DE,disabledDate:FE,parsedValue:$E}),PE=["aria-label"],KE=["aria-selected","tabindex","onKeydown"],jE={class:"cell"},VE={key:1},XE=(0,i.pM)({__name:"basic-year-table",props:BE,emits:["pick"],setup(e,{expose:t,emit:n}){const o=e,r=(e,t)=>{const n=Au(String(e)).locale(t).startOf("year"),o=n.endOf("year"),r=o.dayOfYear();return Mu(r).map((e=>n.add(e,"day").toDate()))},l=(0,ee.DU)("year-table"),{t:a,lang:c}=(0,zu.Ym)(),d=(0,s.KR)(),p=(0,s.KR)(),f=(0,i.EW)((()=>10*Math.floor(o.date.year()/10))),v=()=>{var e;null==(e=p.value)||e.focus()},h=e=>{const t={},n=Au().locale(c.value);return t.disabled=!!o.disabledDate&&r(e,c.value).every(o.disabledDate),t.current=Eb(o.parsedValue).findIndex((t=>t.year()===e))>=0,t.today=n.year()===e,t},m=e=>e===f.value&&o.date.year()f.value+9||Eb(o.date).findIndex((t=>t.year()===e))>=0,g=e=>{const t=e.target,o=t.closest("td");if(o&&o.textContent){if((0,te.nB)(o,"disabled"))return;const e=o.textContent||o.innerText;n("pick",Number(e))}};return(0,i.wB)((()=>o.date),(async()=>{var e,t;(null==(e=d.value)?void 0:e.contains(document.activeElement))&&(await(0,i.dY)(),null==(t=p.value)||t.focus())})),t({focus:v}),(e,t)=>((0,i.uX)(),(0,i.CE)("table",{role:"grid","aria-label":(0,s.R1)(a)("el.datepicker.yearTablePrompt"),class:(0,u.C4)((0,s.R1)(l).b()),onClick:g},[(0,i.Lk)("tbody",{ref_key:"tbodyRef",ref:d},[((0,i.uX)(),(0,i.CE)(i.FK,null,(0,i.pI)(3,((e,t)=>(0,i.Lk)("tr",{key:t},[((0,i.uX)(),(0,i.CE)(i.FK,null,(0,i.pI)(4,((e,n)=>((0,i.uX)(),(0,i.CE)(i.FK,{key:t+"_"+n},[4*t+n<10?((0,i.uX)(),(0,i.CE)("td",{key:0,ref_for:!0,ref:e=>m((0,s.R1)(f)+4*t+n)&&(p.value=e),class:(0,u.C4)(["available",h((0,s.R1)(f)+4*t+n)]),"aria-selected":`${m((0,s.R1)(f)+4*t+n)}`,tabindex:m((0,s.R1)(f)+4*t+n)?0:-1,onKeydown:[(0,ge.jR)((0,ge.D$)(g,["prevent","stop"]),["space"]),(0,ge.jR)((0,ge.D$)(g,["prevent","stop"]),["enter"])]},[(0,i.Lk)("span",jE,(0,u.v_)((0,s.R1)(f)+4*t+n),1)],42,KE)):((0,i.uX)(),(0,i.CE)("td",VE))],64)))),64))]))),64))],512)],10,PE))}});var UE=J(XE,[["__file","basic-year-table.vue"]]);const HE=(0,H.b_)({...lE,datetimeRole:String,parsedValue:{type:(0,H.jq)(Object)}}),zE=({getAvailableHours:e,getAvailableMinutes:t,getAvailableSeconds:n})=>{const o=(o,r,l,a)=>{const i={hour:e,minute:t,second:n};let s=o;return["hour","minute","second"].forEach((e=>{if(i[e]){let t;const n=i[e];switch(e){case"minute":t=n(s.hour(),r,a);break;case"second":t=n(s.hour(),s.minute(),r,a);break;default:t=n(r,a);break}if((null==t?void 0:t.length)&&!t.includes(s[e]())){const n=l?0:t.length-1;s=s[e](t[n])}}})),s},r={},l=([e,t])=>{r[e]=t};return{timePickerOptions:r,getAvailableTime:o,onSetOption:l}},GE=e=>{const t=(e,t)=>e||t,n=e=>!0!==e;return e.map(t).filter(n)},qE=(e,t,n)=>{const o=(t,n)=>Pu(24,e&&(()=>null==e?void 0:e(t,n))),r=(e,n,o)=>Pu(60,t&&(()=>null==t?void 0:t(e,n,o))),l=(e,t,o,r)=>Pu(60,n&&(()=>null==n?void 0:n(e,t,o,r)));return{getHoursList:o,getMinutesList:r,getSecondsList:l}},YE=(e,t,n)=>{const{getHoursList:o,getMinutesList:r,getSecondsList:l}=qE(e,t,n),a=(e,t)=>GE(o(e,t)),i=(e,t,n)=>GE(r(e,t,n)),s=(e,t,n,o)=>GE(l(e,t,n,o));return{getAvailableHours:a,getAvailableMinutes:i,getAvailableSeconds:s}},QE=e=>{const t=(0,s.KR)(e.parsedValue);return(0,i.wB)((()=>e.visible),(n=>{n||(t.value=e.parsedValue)})),t},ZE=["hours","minutes","seconds"],JE="HH:mm:ss",eC="YYYY-MM-DD",tC={date:eC,dates:eC,week:"gggg[w]ww",year:"YYYY",month:"YYYY-MM",datetime:`${eC} ${JE}`,monthrange:"YYYY-MM",daterange:eC,datetimerange:`${eC} ${JE}`},nC=(0,H.b_)({role:{type:String,required:!0},spinnerDate:{type:(0,H.jq)(Object),required:!0},showSeconds:{type:Boolean,default:!0},arrowControl:Boolean,amPmMode:{type:(0,H.jq)(String),default:""},...rE}),oC=100,rC=600,lC={beforeMount(e,t){const n=t.value,{interval:o=oC,delay:r=rC}=(0,u.Tn)(n)?{}:n;let l,a;const i=()=>(0,u.Tn)(n)?n():n.handler(),s=()=>{a&&(clearTimeout(a),a=void 0),l&&(clearInterval(l),l=void 0)};e.addEventListener("mousedown",(e=>{0===e.button&&(s(),i(),document.addEventListener("mouseup",(()=>s()),{once:!0}),a=setTimeout((()=>{l=setInterval((()=>{i()}),o)}),r))}))}},aC=["onClick"],iC=["onMouseenter"],sC=(0,i.pM)({__name:"basic-time-spinner",props:nC,emits:["change","select-range","set-option"],setup(e,{emit:t}){const n=e,o=(0,ee.DU)("time"),{getHoursList:r,getMinutesList:l,getSecondsList:a}=qE(n.disabledHours,n.disabledMinutes,n.disabledSeconds);let c=!1;const d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)(),v=(0,s.KR)(),h={hours:p,minutes:f,seconds:v},m=(0,i.EW)((()=>n.showSeconds?ZE:ZE.slice(0,2))),g=(0,i.EW)((()=>{const{spinnerDate:e}=n,t=e.hour(),o=e.minute(),r=e.second();return{hours:t,minutes:o,seconds:r}})),y=(0,i.EW)((()=>{const{hours:e,minutes:t}=(0,s.R1)(g);return{hours:r(n.role),minutes:l(e,n.role),seconds:a(e,t,n.role)}})),b=(0,i.EW)((()=>{const{hours:e,minutes:t,seconds:n}=(0,s.R1)(g);return{hours:Lu(e,23),minutes:Lu(t,59),seconds:Lu(n,59)}})),R=Wn((e=>{c=!1,C(e)}),200),w=e=>{const t=!!n.amPmMode;if(!t)return"";const o="A"===n.amPmMode;let r=e<12?" am":" pm";return o&&(r=r.toUpperCase()),r},E=e=>{let n;switch(e){case"hours":n=[0,2];break;case"minutes":n=[3,5];break;case"seconds":n=[6,8];break}const[o,r]=n;t("select-range",o,r),d.value=e},C=e=>{_(e,(0,s.R1)(g)[e])},k=()=>{C("hours"),C("minutes"),C("seconds")},x=e=>e.querySelector(`.${o.namespace.value}-scrollbar__wrap`),_=(e,t)=>{if(n.arrowControl)return;const o=(0,s.R1)(h[e]);o&&o.$el&&(x(o.$el).scrollTop=Math.max(0,t*S(e)))},S=e=>{const t=(0,s.R1)(h[e]),n=null==t?void 0:t.$el.querySelector("li");return n&&Number.parseFloat((0,te.gd)(n,"height"))||0},T=()=>{I(1)},O=()=>{I(-1)},I=e=>{d.value||E("hours");const t=d.value,n=(0,s.R1)(g)[t],o="hours"===d.value?24:60,r=A(t,n,e,o);L(t,r),_(t,r),(0,i.dY)((()=>E(t)))},A=(e,t,n,o)=>{let r=(t+n+o)%o;const l=(0,s.R1)(y)[e];while(l[r]&&r!==t)r=(r+n+o)%o;return r},L=(e,o)=>{const r=(0,s.R1)(y)[e],l=r[o];if(l)return;const{hours:a,minutes:i,seconds:u}=(0,s.R1)(g);let c;switch(e){case"hours":c=n.spinnerDate.hour(o).minute(i).second(u);break;case"minutes":c=n.spinnerDate.hour(a).minute(o).second(u);break;case"seconds":c=n.spinnerDate.hour(a).minute(i).second(o);break}t("change",c)},M=(e,{value:t,disabled:n})=>{n||(L(e,t),E(e),_(e,t))},N=e=>{c=!0,R(e);const t=Math.min(Math.round((x((0,s.R1)(h[e]).$el).scrollTop-(.5*W(e)-10)/S(e)+3)/S(e)),"hours"===e?23:59);L(e,t)},W=e=>(0,s.R1)(h[e]).$el.offsetHeight,D=()=>{const e=e=>{const t=(0,s.R1)(h[e]);t&&t.$el&&(x(t.$el).onscroll=()=>{N(e)})};e("hours"),e("minutes"),e("seconds")};(0,i.sV)((()=>{(0,i.dY)((()=>{!n.arrowControl&&D(),k(),"start"===n.role&&E("hours")}))}));const F=(e,t)=>{h[t].value=e};return t("set-option",[`${n.role}_scrollDown`,I]),t("set-option",[`${n.role}_emitSelectRange`,E]),(0,i.wB)((()=>n.spinnerDate),(()=>{c||k()})),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(o).b("spinner"),{"has-seconds":e.showSeconds}])},[e.arrowControl?(0,i.Q3)("v-if",!0):((0,i.uX)(!0),(0,i.CE)(i.FK,{key:0},(0,i.pI)((0,s.R1)(m),(t=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(Do),{key:t,ref_for:!0,ref:e=>F(e,t),class:(0,u.C4)((0,s.R1)(o).be("spinner","wrapper")),"wrap-style":"max-height: inherit;","view-class":(0,s.R1)(o).be("spinner","list"),noresize:"",tag:"ul",onMouseenter:e=>E(t),onMousemove:e=>C(t)},{default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(y)[t],((n,r)=>((0,i.uX)(),(0,i.CE)("li",{key:r,class:(0,u.C4)([(0,s.R1)(o).be("spinner","item"),(0,s.R1)(o).is("active",r===(0,s.R1)(g)[t]),(0,s.R1)(o).is("disabled",n)]),onClick:e=>M(t,{value:r,disabled:n})},["hours"===t?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.eW)((0,u.v_)(("0"+(e.amPmMode?r%12||12:r)).slice(-2))+(0,u.v_)(w(r)),1)],64)):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.eW)((0,u.v_)(("0"+r).slice(-2)),1)],64))],10,aC)))),128))])),_:2},1032,["class","view-class","onMouseenter","onMousemove"])))),128)),e.arrowControl?((0,i.uX)(!0),(0,i.CE)(i.FK,{key:1},(0,i.pI)((0,s.R1)(m),(t=>((0,i.uX)(),(0,i.CE)("div",{key:t,class:(0,u.C4)([(0,s.R1)(o).be("spinner","wrapper"),(0,s.R1)(o).is("arrow")]),onMouseenter:e=>E(t)},[(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{class:(0,u.C4)(["arrow-up",(0,s.R1)(o).be("spinner","arrow")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ae))])),_:1},8,["class"])),[[(0,s.R1)(lC),O]]),(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{class:(0,u.C4)(["arrow-down",(0,s.R1)(o).be("spinner","arrow")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(xe))])),_:1},8,["class"])),[[(0,s.R1)(lC),T]]),(0,i.Lk)("ul",{class:(0,u.C4)((0,s.R1)(o).be("spinner","list"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(b)[t],((n,r)=>((0,i.uX)(),(0,i.CE)("li",{key:r,class:(0,u.C4)([(0,s.R1)(o).be("spinner","item"),(0,s.R1)(o).is("active",n===(0,s.R1)(g)[t]),(0,s.R1)(o).is("disabled",(0,s.R1)(y)[t][n])])},["number"===typeof n?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},["hours"===t?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.eW)((0,u.v_)(("0"+(e.amPmMode?n%12||12:n)).slice(-2))+(0,u.v_)(w(n)),1)],64)):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.eW)((0,u.v_)(("0"+n).slice(-2)),1)],64))],64)):(0,i.Q3)("v-if",!0)],2)))),128))],2)],42,iC)))),128)):(0,i.Q3)("v-if",!0)],2))}});var uC=J(sC,[["__file","basic-time-spinner.vue"]]);const cC=(0,i.pM)({__name:"panel-time-pick",props:HE,emits:["pick","select-range","set-picker-option"],setup(e,{emit:t}){const n=e,o=(0,i.WQ)("EP_PICKER_BASE"),{arrowControl:r,disabledHours:l,disabledMinutes:a,disabledSeconds:c,defaultValue:d}=o.props,{getAvailableHours:p,getAvailableMinutes:f,getAvailableSeconds:v}=YE(l,a,c),h=(0,ee.DU)("time"),{t:m,lang:g}=(0,zu.Ym)(),y=(0,s.KR)([0,2]),b=QE(n),R=(0,i.EW)((()=>(0,z.b0)(n.actualVisible)?`${h.namespace.value}-zoom-in-top`:"")),w=(0,i.EW)((()=>n.format.includes("ss"))),E=(0,i.EW)((()=>n.format.includes("A")?"A":n.format.includes("a")?"a":"")),C=e=>{const t=Au(e).locale(g.value),n=M(t);return t.isSame(n)},k=()=>{t("pick",b.value,!1)},x=(e=!1,o=!1)=>{o||t("pick",n.parsedValue,e)},_=e=>{if(!n.visible)return;const o=M(e).millisecond(0);t("pick",o,!0)},S=(e,n)=>{t("select-range",e,n),y.value=[e,n]},T=e=>{const t=[0,3].concat(w.value?[6]:[]),n=["hours","minutes"].concat(w.value?["seconds"]:[]),o=t.indexOf(y.value[0]),r=(o+e+t.length)%t.length;I["start_emitSelectRange"](n[r])},O=e=>{const t=e.code,{left:n,right:o,up:r,down:l}=aa;if([n,o].includes(t)){const o=t===n?-1:1;return T(o),void e.preventDefault()}if([r,l].includes(t)){const n=t===r?-1:1;return I["start_scrollDown"](n),void e.preventDefault()}},{timePickerOptions:I,onSetOption:A,getAvailableTime:L}=zE({getAvailableHours:p,getAvailableMinutes:f,getAvailableSeconds:v}),M=e=>L(e,n.datetimeRole||"",!0),N=e=>e?Au(e,n.format).locale(g.value):null,W=e=>e?e.format(n.format):null,D=()=>Au(d).locale(g.value);return t("set-picker-option",["isValidValue",C]),t("set-picker-option",["formatToString",W]),t("set-picker-option",["parseUserInput",N]),t("set-picker-option",["handleKeydownInput",O]),t("set-picker-option",["getRangeAvailableTime",M]),t("set-picker-option",["getDefaultValue",D]),(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:(0,s.R1)(R)},{default:(0,i.k6)((()=>[e.actualVisible||e.visible?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(h).b("panel"))},[(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(h).be("panel","content"),{"has-seconds":(0,s.R1)(w)}])},[(0,i.bF)(uC,{ref:"spinner",role:e.datetimeRole||"start","arrow-control":(0,s.R1)(r),"show-seconds":(0,s.R1)(w),"am-pm-mode":(0,s.R1)(E),"spinner-date":e.parsedValue,"disabled-hours":(0,s.R1)(l),"disabled-minutes":(0,s.R1)(a),"disabled-seconds":(0,s.R1)(c),onChange:_,onSetOption:(0,s.R1)(A),onSelectRange:S},null,8,["role","arrow-control","show-seconds","am-pm-mode","spinner-date","disabled-hours","disabled-minutes","disabled-seconds","onSetOption"])],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(h).be("panel","footer"))},[(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(h).be("panel","btn"),"cancel"]),onClick:k},(0,u.v_)((0,s.R1)(m)("el.datepicker.cancel")),3),(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(h).be("panel","btn"),"confirm"]),onClick:t[0]||(t[0]=e=>x())},(0,u.v_)((0,s.R1)(m)("el.datepicker.confirm")),3)],2)],2)):(0,i.Q3)("v-if",!0)])),_:1},8,["name"]))}});var dC=J(cC,[["__file","panel-time-pick.vue"]]);const pC=["onClick"],fC=["aria-label"],vC=["aria-label"],hC=["aria-label"],mC=["aria-label"],gC=(0,i.pM)({__name:"panel-date-pick",props:fE,emits:["pick","set-picker-option","panel-change"],setup(e,{emit:t}){const n=e,o=(e,t,n)=>!0,r=(0,ee.DU)("picker-panel"),l=(0,ee.DU)("date-picker"),a=(0,i.OA)(),c=(0,i.Ht)(),{t:d,lang:p}=(0,zu.Ym)(),f=(0,i.WQ)("EP_PICKER_BASE"),v=(0,i.WQ)(Uo),{shortcuts:h,disabledDate:m,cellClassName:g,defaultTime:y}=f.props,b=(0,s.lW)(f.props,"defaultValue"),R=(0,s.KR)(),w=(0,s.KR)(Au().locale(p.value)),E=(0,s.KR)(!1);let C=!1;const k=(0,i.EW)((()=>Au(y).locale(p.value))),x=(0,i.EW)((()=>w.value.month())),_=(0,i.EW)((()=>w.value.year())),S=(0,s.KR)([]),T=(0,s.KR)(null),O=(0,s.KR)(null),I=e=>!(S.value.length>0)||o(e,S.value,n.format||"HH:mm:ss"),A=e=>!y||J.value||E.value||C?U.value?e.millisecond(0):e.startOf("day"):k.value.year(e.year()).month(e.month()).date(e.date()),L=(e,...n)=>{if(e)if((0,u.cy)(e)){const o=e.map(A);t("pick",o,...n)}else t("pick",A(e),...n);else t("pick",e,...n);T.value=null,O.value=null,E.value=!1,C=!1},M=async(e,t)=>{if("date"===B.value){let o=n.parsedValue?n.parsedValue.year(e.year()).month(e.month()).date(e.date()):e;I(o)||(o=S.value[0][0].year(e.year()).month(e.month()).date(e.date())),w.value=o,L(o,U.value||t),"datetime"===n.type&&(await(0,i.dY)(),fe())}else"week"===B.value?L(e.date):"dates"===B.value&&L(e,!0)},N=e=>{const t=e?"add":"subtract";w.value=w.value[t](1,"month"),me("month")},W=e=>{const t=w.value,n=e?"add":"subtract";w.value="year"===D.value?t[n](10,"year"):t[n](1,"year"),me("year")},D=(0,s.KR)("date"),F=(0,i.EW)((()=>{const e=d("el.datepicker.year");if("year"===D.value){const t=10*Math.floor(_.value/10);return e?`${t} ${e} - ${t+9} ${e}`:`${t} - ${t+9}`}return`${_.value} ${e}`})),$=e=>{const n=(0,u.Tn)(e.value)?e.value():e.value;if(n)return C=!0,void L(Au(n).locale(p.value));e.onClick&&e.onClick({attrs:a,slots:c,emit:t})},B=(0,i.EW)((()=>{const{type:e}=n;return["week","month","year","dates"].includes(e)?e:"date"})),P=(0,i.EW)((()=>"date"===B.value?D.value:B.value)),K=(0,i.EW)((()=>!!h.length)),j=async e=>{w.value=w.value.startOf("month").month(e),"month"===B.value?L(w.value,!1):(D.value="date",["month","year","date","week"].includes(B.value)&&(L(w.value,!0),await(0,i.dY)(),fe())),me("month")},V=async e=>{"year"===B.value?(w.value=w.value.startOf("year").year(e),L(w.value,!1)):(w.value=w.value.year(e),D.value="month",["month","year","date","week"].includes(B.value)&&(L(w.value,!0),await(0,i.dY)(),fe())),me("year")},X=async e=>{D.value=e,await(0,i.dY)(),fe()},U=(0,i.EW)((()=>"datetime"===n.type||"datetimerange"===n.type)),H=(0,i.EW)((()=>U.value||"dates"===B.value)),z=(0,i.EW)((()=>!!m&&(!n.parsedValue||((0,u.cy)(n.parsedValue)?m(n.parsedValue[0].toDate()):m(n.parsedValue.toDate()))))),G=()=>{if("dates"===B.value)L(n.parsedValue);else{let e=n.parsedValue;if(!e){const t=Au(y).locale(p.value),n=pe();e=t.year(n.year()).month(n.month()).date(n.date())}w.value=e,L(e)}},q=(0,i.EW)((()=>!!m&&m(Au().locale(p.value).toDate()))),Y=()=>{const e=Au().locale(p.value),t=e.toDate();E.value=!0,m&&m(t)||!I(t)||(w.value=Au().locale(p.value),L(w.value))},Q=(0,i.EW)((()=>n.timeFormat||Wu(n.format))),Z=(0,i.EW)((()=>n.dateFormat||Nu(n.format))),J=(0,i.EW)((()=>O.value?O.value:n.parsedValue||b.value?(n.parsedValue||w.value).format(Q.value):void 0)),te=(0,i.EW)((()=>T.value?T.value:n.parsedValue||b.value?(n.parsedValue||w.value).format(Z.value):void 0)),ne=(0,s.KR)(!1),oe=()=>{ne.value=!0},re=()=>{ne.value=!1},le=e=>({hour:e.hour(),minute:e.minute(),second:e.second(),year:e.year(),month:e.month(),date:e.date()}),ae=(e,t,o)=>{const{hour:r,minute:l,second:a}=le(e),i=n.parsedValue?n.parsedValue.hour(r).minute(l).second(a):e;w.value=i,L(w.value,!0),o||(ne.value=t)},ie=e=>{const t=Au(e,Q.value).locale(p.value);if(t.isValid()&&I(t)){const{year:e,month:n,date:o}=le(w.value);w.value=t.year(e).month(n).date(o),O.value=null,ne.value=!1,L(w.value,!0)}},se=e=>{const t=Au(e,Z.value).locale(p.value);if(t.isValid()){if(m&&m(t.toDate()))return;const{hour:e,minute:n,second:o}=le(w.value);w.value=t.hour(e).minute(n).second(o),T.value=null,L(w.value,!0)}},ue=e=>Au.isDayjs(e)&&e.isValid()&&(!m||!m(e.toDate())),ce=e=>"dates"===B.value?e.map((e=>e.format(n.format))):e.format(n.format),de=e=>Au(e,n.format).locale(p.value),pe=()=>{const e=Au(b.value).locale(p.value);if(!b.value){const e=k.value;return Au().hour(e.hour()).minute(e.minute()).second(e.second()).locale(p.value)}return e},fe=async()=>{var e;["week","month","year","date"].includes(B.value)&&(null==(e=R.value)||e.focus(),"week"===B.value&&he(aa.down))},ve=e=>{const{code:t}=e,n=[aa.up,aa.down,aa.left,aa.right,aa.home,aa.end,aa.pageUp,aa.pageDown];n.includes(t)&&(he(t),e.stopPropagation(),e.preventDefault()),[aa.enter,aa.space,aa.numpadEnter].includes(t)&&null===T.value&&null===O.value&&(e.preventDefault(),L(w.value,!1))},he=e=>{var n;const{up:o,down:r,left:l,right:a,home:i,end:s,pageUp:c,pageDown:d}=aa,f={year:{[o]:-4,[r]:4,[l]:-1,[a]:1,offset:(e,t)=>e.setFullYear(e.getFullYear()+t)},month:{[o]:-4,[r]:4,[l]:-1,[a]:1,offset:(e,t)=>e.setMonth(e.getMonth()+t)},week:{[o]:-1,[r]:1,[l]:-1,[a]:1,offset:(e,t)=>e.setDate(e.getDate()+7*t)},date:{[o]:-7,[r]:7,[l]:-1,[a]:1,[i]:e=>-e.getDay(),[s]:e=>6-e.getDay(),[c]:e=>-new Date(e.getFullYear(),e.getMonth(),0).getDate(),[d]:e=>new Date(e.getFullYear(),e.getMonth()+1,0).getDate(),offset:(e,t)=>e.setDate(e.getDate()+t)}},v=w.value.toDate();while(Math.abs(w.value.diff(v,"year",!0))<1){const o=f[P.value];if(!o)return;if(o.offset(v,(0,u.Tn)(o[e])?o[e](v):null!=(n=o[e])?n:0),m&&m(v))break;const r=Au(v).locale(p.value);w.value=r,t("pick",r,!0);break}},me=e=>{t("panel-change",w.value.toDate(),e,D.value)};return(0,i.wB)((()=>B.value),(e=>{["month","year"].includes(e)?D.value=e:D.value="date"}),{immediate:!0}),(0,i.wB)((()=>D.value),(()=>{null==v||v.updatePopper()})),(0,i.wB)((()=>b.value),(e=>{e&&(w.value=pe())}),{immediate:!0}),(0,i.wB)((()=>n.parsedValue),(e=>{if(e){if("dates"===B.value)return;if(Array.isArray(e))return;w.value=e}else w.value=pe()}),{immediate:!0}),t("set-picker-option",["isValidValue",ue]),t("set-picker-option",["formatToString",ce]),t("set-picker-option",["parseUserInput",de]),t("set-picker-option",["handleFocusPicker",fe]),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(r).b(),(0,s.R1)(l).b(),{"has-sidebar":e.$slots.sidebar||(0,s.R1)(K),"has-time":(0,s.R1)(U)}])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("body-wrapper"))},[(0,i.RG)(e.$slots,"sidebar",{class:(0,u.C4)((0,s.R1)(r).e("sidebar"))}),(0,s.R1)(K)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(r).e("sidebar"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(h),((e,t)=>((0,i.uX)(),(0,i.CE)("button",{key:t,type:"button",class:(0,u.C4)((0,s.R1)(r).e("shortcut")),onClick:t=>$(e)},(0,u.v_)(e.text),11,pC)))),128))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("body"))},[(0,s.R1)(U)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(l).e("time-header"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l).e("editor-wrap"))},[(0,i.bF)((0,s.R1)(yo),{placeholder:(0,s.R1)(d)("el.datepicker.selectDate"),"model-value":(0,s.R1)(te),size:"small","validate-event":!1,onInput:t[0]||(t[0]=e=>T.value=e),onChange:se},null,8,["placeholder","model-value"])],2),(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(l).e("editor-wrap"))},[(0,i.bF)((0,s.R1)(yo),{placeholder:(0,s.R1)(d)("el.datepicker.selectTime"),"model-value":(0,s.R1)(J),size:"small","validate-event":!1,onFocus:oe,onInput:t[1]||(t[1]=e=>O.value=e),onChange:ie},null,8,["placeholder","model-value"]),(0,i.bF)((0,s.R1)(dC),{visible:ne.value,format:(0,s.R1)(Q),"parsed-value":w.value,onPick:ae},null,8,["visible","format","parsed-value"])],2)),[[(0,s.R1)(Bb),re]])],2)):(0,i.Q3)("v-if",!0),(0,i.bo)((0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(l).e("header"),("year"===D.value||"month"===D.value)&&(0,s.R1)(l).e("header--bordered")])},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l).e("prev-btn"))},[(0,i.Lk)("button",{type:"button","aria-label":(0,s.R1)(d)("el.datepicker.prevYear"),class:(0,u.C4)(["d-arrow-left",(0,s.R1)(r).e("icon-btn")]),onClick:t[2]||(t[2]=e=>W(!1))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(tt))])),_:1})],10,fC),(0,i.bo)((0,i.Lk)("button",{type:"button","aria-label":(0,s.R1)(d)("el.datepicker.prevMonth"),class:(0,u.C4)([(0,s.R1)(r).e("icon-btn"),"arrow-left"]),onClick:t[3]||(t[3]=e=>N(!1))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1})],10,vC),[[ge.aG,"date"===D.value]])],2),(0,i.Lk)("span",{role:"button",class:(0,u.C4)((0,s.R1)(l).e("header-label")),"aria-live":"polite",tabindex:"0",onKeydown:t[4]||(t[4]=(0,ge.jR)((e=>X("year")),["enter"])),onClick:t[5]||(t[5]=e=>X("year"))},(0,u.v_)((0,s.R1)(F)),35),(0,i.bo)((0,i.Lk)("span",{role:"button","aria-live":"polite",tabindex:"0",class:(0,u.C4)([(0,s.R1)(l).e("header-label"),{active:"month"===D.value}]),onKeydown:t[6]||(t[6]=(0,ge.jR)((e=>X("month")),["enter"])),onClick:t[7]||(t[7]=e=>X("month"))},(0,u.v_)((0,s.R1)(d)(`el.datepicker.month${(0,s.R1)(x)+1}`)),35),[[ge.aG,"date"===D.value]]),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(l).e("next-btn"))},[(0,i.bo)((0,i.Lk)("button",{type:"button","aria-label":(0,s.R1)(d)("el.datepicker.nextMonth"),class:(0,u.C4)([(0,s.R1)(r).e("icon-btn"),"arrow-right"]),onClick:t[8]||(t[8]=e=>N(!0))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})],10,hC),[[ge.aG,"date"===D.value]]),(0,i.Lk)("button",{type:"button","aria-label":(0,s.R1)(d)("el.datepicker.nextYear"),class:(0,u.C4)([(0,s.R1)(r).e("icon-btn"),"d-arrow-right"]),onClick:t[9]||(t[9]=e=>W(!0))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ot))])),_:1})],10,mC)],2)],2),[[ge.aG,"time"!==D.value]]),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("content")),onKeydown:ve},["date"===D.value?((0,i.uX)(),(0,i.Wv)(OE,{key:0,ref_key:"currentViewRef",ref:R,"selection-mode":(0,s.R1)(B),date:w.value,"parsed-value":e.parsedValue,"disabled-date":(0,s.R1)(m),"cell-class-name":(0,s.R1)(g),onPick:M},null,8,["selection-mode","date","parsed-value","disabled-date","cell-class-name"])):(0,i.Q3)("v-if",!0),"year"===D.value?((0,i.uX)(),(0,i.Wv)(UE,{key:1,ref_key:"currentViewRef",ref:R,date:w.value,"disabled-date":(0,s.R1)(m),"parsed-value":e.parsedValue,onPick:V},null,8,["date","disabled-date","parsed-value"])):(0,i.Q3)("v-if",!0),"month"===D.value?((0,i.uX)(),(0,i.Wv)(WE,{key:2,ref_key:"currentViewRef",ref:R,date:w.value,"parsed-value":e.parsedValue,"disabled-date":(0,s.R1)(m),onPick:j},null,8,["date","parsed-value","disabled-date"])):(0,i.Q3)("v-if",!0)],34)],2)],2),(0,i.bo)((0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("footer"))},[(0,i.bo)((0,i.bF)((0,s.R1)(Ou),{text:"",size:"small",class:(0,u.C4)((0,s.R1)(r).e("link-btn")),disabled:(0,s.R1)(q),onClick:Y},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(d)("el.datepicker.now")),1)])),_:1},8,["class","disabled"]),[[ge.aG,"dates"!==(0,s.R1)(B)]]),(0,i.bF)((0,s.R1)(Ou),{plain:"",size:"small",class:(0,u.C4)((0,s.R1)(r).e("link-btn")),disabled:(0,s.R1)(z),onClick:G},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(d)("el.datepicker.confirm")),1)])),_:1},8,["class","disabled"])],2),[[ge.aG,(0,s.R1)(H)&&"date"===D.value]])],2))}});var yC=J(gC,[["__file","panel-date-pick.vue"]]);const bC=(0,H.b_)({...cE,...dE}),RC=e=>{const{emit:t}=(0,i.nI)(),n=(0,i.OA)(),o=(0,i.Ht)(),r=r=>{const l=(0,u.Tn)(r.value)?r.value():r.value;l?t("pick",[Au(l[0]).locale(e.value),Au(l[1]).locale(e.value)]):r.onClick&&r.onClick({attrs:n,slots:o,emit:t})};return r},wC=(e,{defaultValue:t,leftDate:n,rightDate:o,unit:r,onParsedValueChanged:l})=>{const{emit:a}=(0,i.nI)(),{pickerNs:c}=(0,i.WQ)(oE),d=(0,ee.DU)("date-range-picker"),{t:p,lang:f}=(0,zu.Ym)(),v=RC(f),h=(0,s.KR)(),m=(0,s.KR)(),g=(0,s.KR)({endDate:null,selecting:!1}),y=e=>{g.value=e},b=(e=!1)=>{const t=(0,s.R1)(h),n=(0,s.R1)(m);mE([t,n])&&a("pick",[t,n],e)},R=e=>{g.value.selecting=e,e||(g.value.endDate=null)},w=()=>{const[l,a]=gE((0,s.R1)(t),{lang:(0,s.R1)(f),unit:r,unlinkPanels:e.unlinkPanels});h.value=void 0,m.value=void 0,n.value=l,o.value=a};return(0,i.wB)(t,(e=>{e&&w()}),{immediate:!0}),(0,i.wB)((()=>e.parsedValue),(e=>{if((0,u.cy)(e)&&2===e.length){const[t,o]=e;h.value=t,n.value=t,m.value=o,l((0,s.R1)(h),(0,s.R1)(m))}else w()}),{immediate:!0}),{minDate:h,maxDate:m,rangeState:g,lang:f,ppNs:c,drpNs:d,handleChangeRange:y,handleRangeConfirm:b,handleShortcutClick:v,onSelect:R,t:p}},EC=["onClick"],CC=["aria-label"],kC=["aria-label"],xC=["disabled","aria-label"],_C=["disabled","aria-label"],SC=["disabled","aria-label"],TC=["disabled","aria-label"],OC=["aria-label"],IC=["aria-label"],AC="month",LC=(0,i.pM)({__name:"panel-date-range",props:bC,emits:["pick","set-picker-option","calendar-change","panel-change"],setup(e,{emit:t}){const n=e,o=(0,i.WQ)("EP_PICKER_BASE"),{disabledDate:r,cellClassName:l,format:a,defaultTime:c,clearable:d}=o.props,p=(0,s.lW)(o.props,"shortcuts"),f=(0,s.lW)(o.props,"defaultValue"),{lang:v}=(0,zu.Ym)(),h=(0,s.KR)(Au().locale(v.value)),m=(0,s.KR)(Au().locale(v.value).add(1,AC)),{minDate:g,maxDate:y,rangeState:b,ppNs:R,drpNs:w,handleChangeRange:E,handleRangeConfirm:C,handleShortcutClick:k,onSelect:x,t:_}=wC(n,{defaultValue:f,leftDate:h,rightDate:m,unit:AC,onParsedValueChanged:ge}),S=(0,s.KR)({min:null,max:null}),T=(0,s.KR)({min:null,max:null}),O=(0,i.EW)((()=>`${h.value.year()} ${_("el.datepicker.year")} ${_(`el.datepicker.month${h.value.month()+1}`)}`)),I=(0,i.EW)((()=>`${m.value.year()} ${_("el.datepicker.year")} ${_(`el.datepicker.month${m.value.month()+1}`)}`)),A=(0,i.EW)((()=>h.value.year())),L=(0,i.EW)((()=>h.value.month())),M=(0,i.EW)((()=>m.value.year())),N=(0,i.EW)((()=>m.value.month())),W=(0,i.EW)((()=>!!p.value.length)),D=(0,i.EW)((()=>null!==S.value.min?S.value.min:g.value?g.value.format(K.value):"")),F=(0,i.EW)((()=>null!==S.value.max?S.value.max:y.value||g.value?(y.value||g.value).format(K.value):"")),$=(0,i.EW)((()=>null!==T.value.min?T.value.min:g.value?g.value.format(P.value):"")),B=(0,i.EW)((()=>null!==T.value.max?T.value.max:y.value||g.value?(y.value||g.value).format(P.value):"")),P=(0,i.EW)((()=>n.timeFormat||Wu(a))),K=(0,i.EW)((()=>n.dateFormat||Nu(a))),j=e=>mE(e)&&(!r||!r(e[0].toDate())&&!r(e[1].toDate())),V=()=>{h.value=h.value.subtract(1,"year"),n.unlinkPanels||(m.value=h.value.add(1,"month")),Q("year")},X=()=>{h.value=h.value.subtract(1,"month"),n.unlinkPanels||(m.value=h.value.add(1,"month")),Q("month")},U=()=>{n.unlinkPanels?m.value=m.value.add(1,"year"):(h.value=h.value.add(1,"year"),m.value=h.value.add(1,"month")),Q("year")},H=()=>{n.unlinkPanels?m.value=m.value.add(1,"month"):(h.value=h.value.add(1,"month"),m.value=h.value.add(1,"month")),Q("month")},z=()=>{h.value=h.value.add(1,"year"),Q("year")},G=()=>{h.value=h.value.add(1,"month"),Q("month")},q=()=>{m.value=m.value.subtract(1,"year"),Q("year")},Y=()=>{m.value=m.value.subtract(1,"month"),Q("month")},Q=e=>{t("panel-change",[h.value.toDate(),m.value.toDate()],e)},Z=(0,i.EW)((()=>{const e=(L.value+1)%12,t=L.value+1>=12?1:0;return n.unlinkPanels&&new Date(A.value+t,e)n.unlinkPanels&&12*M.value+N.value-(12*A.value+L.value+1)>=12)),ee=(0,i.EW)((()=>!(g.value&&y.value&&!b.value.selecting&&mE([g.value,y.value])))),te=(0,i.EW)((()=>"datetime"===n.type||"datetimerange"===n.type)),ne=(e,t)=>{if(e){if(c){const n=Au(c[t]||c).locale(v.value);return n.year(e.year()).month(e.month()).date(e.date())}return e}},oe=(e,n=!0)=>{const o=e.minDate,r=e.maxDate,l=ne(o,0),a=ne(r,1);y.value===a&&g.value===l||(t("calendar-change",[o.toDate(),r&&r.toDate()]),y.value=a,g.value=l,n&&!te.value&&C())},re=(0,s.KR)(!1),le=(0,s.KR)(!1),ae=()=>{re.value=!1},ie=()=>{le.value=!1},se=(e,t)=>{S.value[t]=e;const o=Au(e,K.value).locale(v.value);if(o.isValid()){if(r&&r(o.toDate()))return;"min"===t?(h.value=o,g.value=(g.value||h.value).year(o.year()).month(o.month()).date(o.date()),n.unlinkPanels||y.value&&!y.value.isBefore(g.value)||(m.value=o.add(1,"month"),y.value=g.value.add(1,"month"))):(m.value=o,y.value=(y.value||m.value).year(o.year()).month(o.month()).date(o.date()),n.unlinkPanels||g.value&&!g.value.isAfter(y.value)||(h.value=o.subtract(1,"month"),g.value=y.value.subtract(1,"month")))}},ue=(e,t)=>{S.value[t]=null},ce=(e,t)=>{T.value[t]=e;const n=Au(e,P.value).locale(v.value);n.isValid()&&("min"===t?(re.value=!0,g.value=(g.value||h.value).hour(n.hour()).minute(n.minute()).second(n.second()),y.value&&!y.value.isBefore(g.value)||(y.value=g.value)):(le.value=!0,y.value=(y.value||m.value).hour(n.hour()).minute(n.minute()).second(n.second()),m.value=y.value,y.value&&y.value.isBefore(g.value)&&(g.value=y.value)))},de=(e,t)=>{T.value[t]=null,"min"===t?(h.value=g.value,re.value=!1):(m.value=y.value,le.value=!1)},pe=(e,t,n)=>{T.value.min||(e&&(h.value=e,g.value=(g.value||h.value).hour(e.hour()).minute(e.minute()).second(e.second())),n||(re.value=t),y.value&&!y.value.isBefore(g.value)||(y.value=g.value,m.value=e))},fe=(e,t,n)=>{T.value.max||(e&&(m.value=e,y.value=(y.value||m.value).hour(e.hour()).minute(e.minute()).second(e.second())),n||(le.value=t),y.value&&y.value.isBefore(g.value)&&(g.value=y.value))},ve=()=>{h.value=gE((0,s.R1)(f),{lang:(0,s.R1)(v),unit:"month",unlinkPanels:n.unlinkPanels})[0],m.value=h.value.add(1,"month"),t("pick",null)},he=e=>(0,u.cy)(e)?e.map((e=>e.format(a))):e.format(a),me=e=>(0,u.cy)(e)?e.map((e=>Au(e,a).locale(v.value))):Au(e,a).locale(v.value);function ge(e,t){if(n.unlinkPanels&&t){const n=(null==e?void 0:e.year())||0,o=(null==e?void 0:e.month())||0,r=t.year(),l=t.month();m.value=n===r&&o===l?t.add(1,AC):t}else m.value=h.value.add(1,AC),t&&(m.value=m.value.hour(t.hour()).minute(t.minute()).second(t.second()))}return t("set-picker-option",["isValidValue",j]),t("set-picker-option",["parseUserInput",me]),t("set-picker-option",["formatToString",he]),t("set-picker-option",["handleClear",ve]),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(R).b(),(0,s.R1)(w).b(),{"has-sidebar":e.$slots.sidebar||(0,s.R1)(W),"has-time":(0,s.R1)(te)}])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(R).e("body-wrapper"))},[(0,i.RG)(e.$slots,"sidebar",{class:(0,u.C4)((0,s.R1)(R).e("sidebar"))}),(0,s.R1)(W)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(R).e("sidebar"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(p),((e,t)=>((0,i.uX)(),(0,i.CE)("button",{key:t,type:"button",class:(0,u.C4)((0,s.R1)(R).e("shortcut")),onClick:t=>(0,s.R1)(k)(e)},(0,u.v_)(e.text),11,EC)))),128))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(R).e("body"))},[(0,s.R1)(te)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(w).e("time-header"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(w).e("editors-wrap"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(w).e("time-picker-wrap"))},[(0,i.bF)((0,s.R1)(yo),{size:"small",disabled:(0,s.R1)(b).selecting,placeholder:(0,s.R1)(_)("el.datepicker.startDate"),class:(0,u.C4)((0,s.R1)(w).e("editor")),"model-value":(0,s.R1)(D),"validate-event":!1,onInput:t[0]||(t[0]=e=>se(e,"min")),onChange:t[1]||(t[1]=e=>ue(e,"min"))},null,8,["disabled","placeholder","class","model-value"])],2),(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(w).e("time-picker-wrap"))},[(0,i.bF)((0,s.R1)(yo),{size:"small",class:(0,u.C4)((0,s.R1)(w).e("editor")),disabled:(0,s.R1)(b).selecting,placeholder:(0,s.R1)(_)("el.datepicker.startTime"),"model-value":(0,s.R1)($),"validate-event":!1,onFocus:t[2]||(t[2]=e=>re.value=!0),onInput:t[3]||(t[3]=e=>ce(e,"min")),onChange:t[4]||(t[4]=e=>de(e,"min"))},null,8,["class","disabled","placeholder","model-value"]),(0,i.bF)((0,s.R1)(dC),{visible:re.value,format:(0,s.R1)(P),"datetime-role":"start","parsed-value":h.value,onPick:pe},null,8,["visible","format","parsed-value"])],2)),[[(0,s.R1)(Bb),ae]])],2),(0,i.Lk)("span",null,[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})]),(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(w).e("editors-wrap"),"is-right"])},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(w).e("time-picker-wrap"))},[(0,i.bF)((0,s.R1)(yo),{size:"small",class:(0,u.C4)((0,s.R1)(w).e("editor")),disabled:(0,s.R1)(b).selecting,placeholder:(0,s.R1)(_)("el.datepicker.endDate"),"model-value":(0,s.R1)(F),readonly:!(0,s.R1)(g),"validate-event":!1,onInput:t[5]||(t[5]=e=>se(e,"max")),onChange:t[6]||(t[6]=e=>ue(e,"max"))},null,8,["class","disabled","placeholder","model-value","readonly"])],2),(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(w).e("time-picker-wrap"))},[(0,i.bF)((0,s.R1)(yo),{size:"small",class:(0,u.C4)((0,s.R1)(w).e("editor")),disabled:(0,s.R1)(b).selecting,placeholder:(0,s.R1)(_)("el.datepicker.endTime"),"model-value":(0,s.R1)(B),readonly:!(0,s.R1)(g),"validate-event":!1,onFocus:t[7]||(t[7]=e=>(0,s.R1)(g)&&(le.value=!0)),onInput:t[8]||(t[8]=e=>ce(e,"max")),onChange:t[9]||(t[9]=e=>de(e,"max"))},null,8,["class","disabled","placeholder","model-value","readonly"]),(0,i.bF)((0,s.R1)(dC),{"datetime-role":"end",visible:le.value,format:(0,s.R1)(P),"parsed-value":m.value,onPick:fe},null,8,["visible","format","parsed-value"])],2)),[[(0,s.R1)(Bb),ie]])],2)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)([[(0,s.R1)(R).e("content"),(0,s.R1)(w).e("content")],"is-left"])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(w).e("header"))},[(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(R).e("icon-btn"),"d-arrow-left"]),"aria-label":(0,s.R1)(_)("el.datepicker.prevYear"),onClick:V},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(tt))])),_:1})],10,CC),(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(R).e("icon-btn"),"arrow-left"]),"aria-label":(0,s.R1)(_)("el.datepicker.prevMonth"),onClick:X},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1})],10,kC),e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:0,type:"button",disabled:!(0,s.R1)(J),class:(0,u.C4)([[(0,s.R1)(R).e("icon-btn"),{"is-disabled":!(0,s.R1)(J)}],"d-arrow-right"]),"aria-label":(0,s.R1)(_)("el.datepicker.nextYear"),onClick:z},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ot))])),_:1})],10,xC)):(0,i.Q3)("v-if",!0),e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:1,type:"button",disabled:!(0,s.R1)(Z),class:(0,u.C4)([[(0,s.R1)(R).e("icon-btn"),{"is-disabled":!(0,s.R1)(Z)}],"arrow-right"]),"aria-label":(0,s.R1)(_)("el.datepicker.nextMonth"),onClick:G},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})],10,_C)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",null,(0,u.v_)((0,s.R1)(O)),1)],2),(0,i.bF)(OE,{"selection-mode":"range",date:h.value,"min-date":(0,s.R1)(g),"max-date":(0,s.R1)(y),"range-state":(0,s.R1)(b),"disabled-date":(0,s.R1)(r),"cell-class-name":(0,s.R1)(l),onChangerange:(0,s.R1)(E),onPick:oe,onSelect:(0,s.R1)(x)},null,8,["date","min-date","max-date","range-state","disabled-date","cell-class-name","onChangerange","onSelect"])],2),(0,i.Lk)("div",{class:(0,u.C4)([[(0,s.R1)(R).e("content"),(0,s.R1)(w).e("content")],"is-right"])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(w).e("header"))},[e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:0,type:"button",disabled:!(0,s.R1)(J),class:(0,u.C4)([[(0,s.R1)(R).e("icon-btn"),{"is-disabled":!(0,s.R1)(J)}],"d-arrow-left"]),"aria-label":(0,s.R1)(_)("el.datepicker.prevYear"),onClick:q},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(tt))])),_:1})],10,SC)):(0,i.Q3)("v-if",!0),e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:1,type:"button",disabled:!(0,s.R1)(Z),class:(0,u.C4)([[(0,s.R1)(R).e("icon-btn"),{"is-disabled":!(0,s.R1)(Z)}],"arrow-left"]),"aria-label":(0,s.R1)(_)("el.datepicker.prevMonth"),onClick:Y},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1})],10,TC)):(0,i.Q3)("v-if",!0),(0,i.Lk)("button",{type:"button","aria-label":(0,s.R1)(_)("el.datepicker.nextYear"),class:(0,u.C4)([(0,s.R1)(R).e("icon-btn"),"d-arrow-right"]),onClick:U},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ot))])),_:1})],10,OC),(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(R).e("icon-btn"),"arrow-right"]),"aria-label":(0,s.R1)(_)("el.datepicker.nextMonth"),onClick:H},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})],10,IC),(0,i.Lk)("div",null,(0,u.v_)((0,s.R1)(I)),1)],2),(0,i.bF)(OE,{"selection-mode":"range",date:m.value,"min-date":(0,s.R1)(g),"max-date":(0,s.R1)(y),"range-state":(0,s.R1)(b),"disabled-date":(0,s.R1)(r),"cell-class-name":(0,s.R1)(l),onChangerange:(0,s.R1)(E),onPick:oe,onSelect:(0,s.R1)(x)},null,8,["date","min-date","max-date","range-state","disabled-date","cell-class-name","onChangerange","onSelect"])],2)],2)],2),(0,s.R1)(te)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(R).e("footer"))},[(0,s.R1)(d)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ou),{key:0,text:"",size:"small",class:(0,u.C4)((0,s.R1)(R).e("link-btn")),onClick:ve},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(_)("el.datepicker.clear")),1)])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.bF)((0,s.R1)(Ou),{plain:"",size:"small",class:(0,u.C4)((0,s.R1)(R).e("link-btn")),disabled:(0,s.R1)(ee),onClick:t[10]||(t[10]=e=>(0,s.R1)(C)(!1))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(_)("el.datepicker.confirm")),1)])),_:1},8,["class","disabled"])],2)):(0,i.Q3)("v-if",!0)],2))}});var MC=J(LC,[["__file","panel-date-range.vue"]]);const NC=(0,H.b_)({...dE}),WC=["pick","set-picker-option","calendar-change"],DC=({unlinkPanels:e,leftDate:t,rightDate:n})=>{const{t:o}=(0,zu.Ym)(),r=()=>{t.value=t.value.subtract(1,"year"),e.value||(n.value=n.value.subtract(1,"year"))},l=()=>{e.value||(t.value=t.value.add(1,"year")),n.value=n.value.add(1,"year")},a=()=>{t.value=t.value.add(1,"year")},s=()=>{n.value=n.value.subtract(1,"year")},u=(0,i.EW)((()=>`${t.value.year()} ${o("el.datepicker.year")}`)),c=(0,i.EW)((()=>`${n.value.year()} ${o("el.datepicker.year")}`)),d=(0,i.EW)((()=>t.value.year())),p=(0,i.EW)((()=>n.value.year()===t.value.year()?t.value.year()+1:n.value.year()));return{leftPrevYear:r,rightNextYear:l,leftNextYear:a,rightPrevYear:s,leftLabel:u,rightLabel:c,leftYear:d,rightYear:p}},FC=["onClick"],$C=["disabled"],BC=["disabled"],PC="year",KC=(0,i.pM)({name:"DatePickerMonthRange"}),jC=(0,i.pM)({...KC,props:NC,emits:WC,setup(e,{emit:t}){const n=e,{lang:o}=(0,zu.Ym)(),r=(0,i.WQ)("EP_PICKER_BASE"),{shortcuts:l,disabledDate:a,format:c}=r.props,d=(0,s.lW)(r.props,"defaultValue"),p=(0,s.KR)(Au().locale(o.value)),f=(0,s.KR)(Au().locale(o.value).add(1,PC)),{minDate:v,maxDate:h,rangeState:m,ppNs:g,drpNs:y,handleChangeRange:b,handleRangeConfirm:R,handleShortcutClick:w,onSelect:E}=wC(n,{defaultValue:d,leftDate:p,rightDate:f,unit:PC,onParsedValueChanged:W}),C=(0,i.EW)((()=>!!l.length)),{leftPrevYear:k,rightNextYear:x,leftNextYear:_,rightPrevYear:S,leftLabel:T,rightLabel:O,leftYear:I,rightYear:A}=DC({unlinkPanels:(0,s.lW)(n,"unlinkPanels"),leftDate:p,rightDate:f}),L=(0,i.EW)((()=>n.unlinkPanels&&A.value>I.value+1)),M=(e,n=!0)=>{const o=e.minDate,r=e.maxDate;h.value===r&&v.value===o||(t("calendar-change",[o.toDate(),r&&r.toDate()]),h.value=r,v.value=o,n&&R())},N=e=>e.map((e=>e.format(c)));function W(e,t){if(n.unlinkPanels&&t){const n=(null==e?void 0:e.year())||0,o=t.year();f.value=n===o?t.add(1,PC):t}else f.value=p.value.add(1,PC)}return t("set-picker-option",["formatToString",N]),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(g).b(),(0,s.R1)(y).b(),{"has-sidebar":Boolean(e.$slots.sidebar)||(0,s.R1)(C)}])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(g).e("body-wrapper"))},[(0,i.RG)(e.$slots,"sidebar",{class:(0,u.C4)((0,s.R1)(g).e("sidebar"))}),(0,s.R1)(C)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(g).e("sidebar"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(l),((e,t)=>((0,i.uX)(),(0,i.CE)("button",{key:t,type:"button",class:(0,u.C4)((0,s.R1)(g).e("shortcut")),onClick:t=>(0,s.R1)(w)(e)},(0,u.v_)(e.text),11,FC)))),128))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(g).e("body"))},[(0,i.Lk)("div",{class:(0,u.C4)([[(0,s.R1)(g).e("content"),(0,s.R1)(y).e("content")],"is-left"])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(y).e("header"))},[(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(g).e("icon-btn"),"d-arrow-left"]),onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(k)&&(0,s.R1)(k)(...e))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(tt))])),_:1})],2),e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:0,type:"button",disabled:!(0,s.R1)(L),class:(0,u.C4)([[(0,s.R1)(g).e("icon-btn"),{[(0,s.R1)(g).is("disabled")]:!(0,s.R1)(L)}],"d-arrow-right"]),onClick:t[1]||(t[1]=(...e)=>(0,s.R1)(_)&&(0,s.R1)(_)(...e))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ot))])),_:1})],10,$C)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",null,(0,u.v_)((0,s.R1)(T)),1)],2),(0,i.bF)(WE,{"selection-mode":"range",date:p.value,"min-date":(0,s.R1)(v),"max-date":(0,s.R1)(h),"range-state":(0,s.R1)(m),"disabled-date":(0,s.R1)(a),onChangerange:(0,s.R1)(b),onPick:M,onSelect:(0,s.R1)(E)},null,8,["date","min-date","max-date","range-state","disabled-date","onChangerange","onSelect"])],2),(0,i.Lk)("div",{class:(0,u.C4)([[(0,s.R1)(g).e("content"),(0,s.R1)(y).e("content")],"is-right"])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(y).e("header"))},[e.unlinkPanels?((0,i.uX)(),(0,i.CE)("button",{key:0,type:"button",disabled:!(0,s.R1)(L),class:(0,u.C4)([[(0,s.R1)(g).e("icon-btn"),{"is-disabled":!(0,s.R1)(L)}],"d-arrow-left"]),onClick:t[2]||(t[2]=(...e)=>(0,s.R1)(S)&&(0,s.R1)(S)(...e))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(tt))])),_:1})],10,BC)):(0,i.Q3)("v-if",!0),(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(g).e("icon-btn"),"d-arrow-right"]),onClick:t[3]||(t[3]=(...e)=>(0,s.R1)(x)&&(0,s.R1)(x)(...e))},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ot))])),_:1})],2),(0,i.Lk)("div",null,(0,u.v_)((0,s.R1)(O)),1)],2),(0,i.bF)(WE,{"selection-mode":"range",date:f.value,"min-date":(0,s.R1)(v),"max-date":(0,s.R1)(h),"range-state":(0,s.R1)(m),"disabled-date":(0,s.R1)(a),onChangerange:(0,s.R1)(b),onPick:M,onSelect:(0,s.R1)(E)},null,8,["date","min-date","max-date","range-state","disabled-date","onChangerange","onSelect"])],2)],2)],2)],2))}});var VC=J(jC,[["__file","panel-month-range.vue"]]);const XC=function(e){switch(e){case"daterange":case"datetimerange":return MC;case"monthrange":return VC;default:return yC}},UC=["id","name","placeholder","value","disabled","readonly"],HC=["id","name","placeholder","value","disabled","readonly"],zC=(0,i.pM)({name:"Picker"}),GC=(0,i.pM)({...zC,props:aE,emits:["update:modelValue","change","focus","blur","calendar-change","panel-change","visible-change","keydown"],setup(e,{expose:t,emit:n}){const o=e,r=(0,i.OA)(),{lang:l}=(0,zu.Ym)(),a=(0,ee.DU)("date"),c=(0,ee.DU)("input"),d=(0,ee.DU)("range"),{form:p,formItem:f}=oo(),v=(0,i.WQ)("ElPopperOptions",{}),h=(0,s.KR)(),m=(0,s.KR)(),y=(0,s.KR)(!1),b=(0,s.KR)(!1),R=(0,s.KR)(null);let w=!1,E=!1;const C=(0,i.EW)((()=>[a.b("editor"),a.bm("editor",o.type),c.e("wrapper"),a.is("disabled",j.value),a.is("active",y.value),d.b("editor"),le?d.bm("editor",le.value):"",r.class])),k=(0,i.EW)((()=>[c.e("icon"),d.e("close-icon"),q.value?"":d.e("close-icon--hidden")]));(0,i.wB)(y,(e=>{e?(0,i.dY)((()=>{e&&(R.value=o.modelValue)})):(se.value=null,(0,i.dY)((()=>{x(o.modelValue)})))}));const x=(e,t)=>{!t&&Fu(e,R.value)||(n("change",e),o.validateEvent&&(null==f||f.validate("change").catch((e=>(0,ne.U)(e)))))},_=e=>{if(!Fu(o.modelValue,e)){let t;(0,u.cy)(e)?t=e.map((e=>Bu(e,o.valueFormat,l.value))):e&&(t=Bu(e,o.valueFormat,l.value)),n("update:modelValue",e?t:e,l.value)}},S=e=>{n("keydown",e)},T=(0,i.EW)((()=>{if(m.value){const e=re.value?m.value:m.value.$el;return Array.from(e.querySelectorAll("input"))}return[]})),O=(e,t,n)=>{const o=T.value;o.length&&(n&&"min"!==n?"max"===n&&(o[1].setSelectionRange(e,t),o[1].focus()):(o[0].setSelectionRange(e,t),o[0].focus()))},I=()=>{$(!0,!0),(0,i.dY)((()=>{E=!1}))},A=(e="",t=!1)=>{let n;t||(E=!0),y.value=t,n=(0,u.cy)(e)?e.map((e=>e.toDate())):e?e.toDate():e,se.value=null,_(n)},L=()=>{b.value=!0},M=()=>{n("visible-change",!0)},N=e=>{(null==e?void 0:e.key)===aa.esc&&$(!0,!0)},W=()=>{b.value=!1,y.value=!1,E=!1,n("visible-change",!1)},D=()=>{y.value=!0},F=()=>{y.value=!1},$=(e=!0,t=!1)=>{E=t;const[n,o]=(0,s.R1)(T);let r=n;!e&&re.value&&(r=o),r&&r.focus()},B=e=>{o.readonly||j.value||y.value||E||(y.value=!0,n("focus",e))};let P;const K=e=>{const t=async()=>{setTimeout((()=>{var r;P===t&&((null==(r=h.value)?void 0:r.isFocusInsideContent())&&!w||0!==T.value.filter((e=>e.contains(document.activeElement))).length||(ue(),y.value=!1,n("blur",e),o.validateEvent&&(null==f||f.validate("blur").catch((e=>(0,ne.U)(e))))),w=!1)}),0)};P=t,t()},j=(0,i.EW)((()=>o.disabled||(null==p?void 0:p.disabled))),V=(0,i.EW)((()=>{let e;if(Q.value?Re.value.getDefaultValue&&(e=Re.value.getDefaultValue()):e=(0,u.cy)(o.modelValue)?o.modelValue.map((e=>$u(e,o.valueFormat,l.value))):$u(o.modelValue,o.valueFormat,l.value),Re.value.getRangeAvailableTime){const t=Re.value.getRangeAvailableTime(e);eg(t,e)||(e=t,_((0,u.cy)(e)?e.map((e=>e.toDate())):e.toDate()))}return(0,u.cy)(e)&&e.some((e=>!e))&&(e=[]),e})),X=(0,i.EW)((()=>{if(!Re.value.panelReady)return"";const e=de(V.value);return(0,u.cy)(se.value)?[se.value[0]||e&&e[0]||"",se.value[1]||e&&e[1]||""]:null!==se.value?se.value:!H.value&&Q.value||!y.value&&Q.value?"":e?z.value?e.join(", "):e:""})),U=(0,i.EW)((()=>o.type.includes("time"))),H=(0,i.EW)((()=>o.type.startsWith("time"))),z=(0,i.EW)((()=>"dates"===o.type)),G=(0,i.EW)((()=>o.prefixIcon||(U.value?Qe:We))),q=(0,s.KR)(!1),Y=e=>{o.readonly||j.value||q.value&&(e.stopPropagation(),I(),_(null),x(null,!0),q.value=!1,y.value=!1,Re.value.handleClear&&Re.value.handleClear())},Q=(0,i.EW)((()=>{const{modelValue:e}=o;return!e||(0,u.cy)(e)&&!e.filter(Boolean).length})),Z=async e=>{var t;o.readonly||j.value||("INPUT"!==(null==(t=e.target)?void 0:t.tagName)||T.value.includes(document.activeElement))&&(y.value=!0)},J=()=>{o.readonly||j.value||!Q.value&&o.clearable&&(q.value=!0)},te=()=>{q.value=!1},oe=e=>{var t;o.readonly||j.value||("INPUT"!==(null==(t=e.touches[0].target)?void 0:t.tagName)||T.value.includes(document.activeElement))&&(y.value=!0)},re=(0,i.EW)((()=>o.type.includes("range"))),le=ao(),ae=(0,i.EW)((()=>{var e,t;return null==(t=null==(e=(0,s.R1)(h))?void 0:e.popperRef)?void 0:t.contentRef})),ie=(0,i.EW)((()=>{var e;return(0,s.R1)(re)?(0,s.R1)(m):null==(e=(0,s.R1)(m))?void 0:e.$el}));g(ie,(e=>{const t=(0,s.R1)(ae),n=(0,s.R1)(ie);t&&(e.target===t||e.composedPath().includes(t))||e.target===n||e.composedPath().includes(n)||(y.value=!1)}));const se=(0,s.KR)(null),ue=()=>{if(se.value){const e=ce(X.value);e&&pe(e)&&(_((0,u.cy)(e)?e.map((e=>e.toDate())):e.toDate()),se.value=null)}""===se.value&&(_(null),x(null),se.value=null)},ce=e=>e?Re.value.parseUserInput(e):null,de=e=>e?Re.value.formatToString(e):null,pe=e=>Re.value.isValidValue(e),fe=async e=>{if(o.readonly||j.value)return;const{code:t}=e;if(S(e),t!==aa.esc)if(t===aa.down&&(Re.value.handleFocusPicker&&(e.preventDefault(),e.stopPropagation()),!1===y.value&&(y.value=!0,await(0,i.dY)()),Re.value.handleFocusPicker))Re.value.handleFocusPicker();else{if(t!==aa.tab)return t===aa.enter||t===aa.numpadEnter?((null===se.value||""===se.value||pe(ce(X.value)))&&(ue(),y.value=!1),void e.stopPropagation()):void(se.value?e.stopPropagation():Re.value.handleKeydownInput&&Re.value.handleKeydownInput(e));w=!0}else!0===y.value&&(y.value=!1,e.preventDefault(),e.stopPropagation())},ve=e=>{se.value=e,y.value||(y.value=!0)},he=e=>{const t=e.target;se.value?se.value=[t.value,se.value[1]]:se.value=[t.value,null]},me=e=>{const t=e.target;se.value?se.value=[se.value[0],t.value]:se.value=[null,t.value]},ye=()=>{var e;const t=se.value,n=ce(t&&t[0]),o=(0,s.R1)(V);if(n&&n.isValid()){se.value=[de(n),(null==(e=X.value)?void 0:e[1])||null];const t=[n,o&&(o[1]||null)];pe(t)&&(_(t),se.value=null)}},be=()=>{var e;const t=(0,s.R1)(se),n=ce(t&&t[1]),o=(0,s.R1)(V);if(n&&n.isValid()){se.value=[(null==(e=(0,s.R1)(X))?void 0:e[0])||null,de(n)];const t=[o&&o[0],n];pe(t)&&(_(t),se.value=null)}},Re=(0,s.KR)({}),we=e=>{Re.value[e[0]]=e[1],Re.value.panelReady=!0},Ce=e=>{n("calendar-change",e)},ke=(e,t,o)=>{n("panel-change",e,t,o)};return(0,i.Gt)("EP_PICKER_BASE",{props:o}),t({focus:$,handleFocusInput:B,handleBlurInput:K,handleOpen:D,handleClose:F,onPick:A}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),(0,i.v6)({ref_key:"refPopper",ref:h,visible:y.value,effect:"light",pure:"",trigger:"click"},e.$attrs,{role:"dialog",teleported:"",transition:`${(0,s.R1)(a).namespace.value}-zoom-in-top`,"popper-class":[`${(0,s.R1)(a).namespace.value}-picker__popper`,e.popperClass],"popper-options":(0,s.R1)(v),"fallback-placements":["bottom","top","right","left"],"gpu-acceleration":!1,"stop-popper-mouse-event":!1,"hide-after":0,persistent:"",onBeforeShow:L,onShow:M,onHide:W}),{default:(0,i.k6)((()=>[(0,s.R1)(re)?((0,i.uX)(),(0,i.CE)("div",{key:1,ref_key:"inputRef",ref:m,class:(0,u.C4)((0,s.R1)(C)),style:(0,u.Tr)(e.$attrs.style),onClick:B,onMouseenter:J,onMouseleave:te,onTouchstart:oe,onKeydown:fe},[(0,s.R1)(G)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)([(0,s.R1)(c).e("icon"),(0,s.R1)(d).e("icon")]),onMousedown:(0,ge.D$)(Z,["prevent"]),onTouchstart:oe},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(G))))])),_:1},8,["class","onMousedown"])):(0,i.Q3)("v-if",!0),(0,i.Lk)("input",{id:e.id&&e.id[0],autocomplete:"off",name:e.name&&e.name[0],placeholder:e.startPlaceholder,value:(0,s.R1)(X)&&(0,s.R1)(X)[0],disabled:(0,s.R1)(j),readonly:!e.editable||e.readonly,class:(0,u.C4)((0,s.R1)(d).b("input")),onMousedown:Z,onInput:he,onChange:ye,onFocus:B,onBlur:K},null,42,UC),(0,i.RG)(e.$slots,"range-separator",{},(()=>[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(d).b("separator"))},(0,u.v_)(e.rangeSeparator),3)])),(0,i.Lk)("input",{id:e.id&&e.id[1],autocomplete:"off",name:e.name&&e.name[1],placeholder:e.endPlaceholder,value:(0,s.R1)(X)&&(0,s.R1)(X)[1],disabled:(0,s.R1)(j),readonly:!e.editable||e.readonly,class:(0,u.C4)((0,s.R1)(d).b("input")),onMousedown:Z,onFocus:B,onBlur:K,onInput:me,onChange:be},null,42,HC),e.clearIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)((0,s.R1)(k)),onClick:Y},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.clearIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],38)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(yo),{key:0,id:e.id,ref_key:"inputRef",ref:m,"container-role":"combobox","model-value":(0,s.R1)(X),name:e.name,size:(0,s.R1)(le),disabled:(0,s.R1)(j),placeholder:e.placeholder,class:(0,u.C4)([(0,s.R1)(a).b("editor"),(0,s.R1)(a).bm("editor",e.type),e.$attrs.class]),style:(0,u.Tr)(e.$attrs.style),readonly:!e.editable||e.readonly||(0,s.R1)(z)||"week"===e.type,label:e.label,tabindex:e.tabindex,"validate-event":!1,onInput:ve,onFocus:B,onBlur:K,onKeydown:fe,onChange:ue,onMousedown:Z,onMouseenter:J,onMouseleave:te,onTouchstart:oe,onClick:t[0]||(t[0]=(0,ge.D$)((()=>{}),["stop"]))},{prefix:(0,i.k6)((()=>[(0,s.R1)(G)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(c).e("icon")),onMousedown:(0,ge.D$)(Z,["prevent"]),onTouchstart:oe},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(G))))])),_:1},8,["class","onMousedown"])):(0,i.Q3)("v-if",!0)])),suffix:(0,i.k6)((()=>[q.value&&e.clearIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)(`${(0,s.R1)(c).e("icon")} clear-icon`),onClick:(0,ge.D$)(Y,["stop"])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.clearIcon)))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0)])),_:1},8,["id","model-value","name","size","disabled","placeholder","class","style","readonly","label","tabindex","onKeydown"]))])),content:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default",{visible:y.value,actualVisible:b.value,parsedValue:(0,s.R1)(V),format:e.format,dateFormat:e.dateFormat,timeFormat:e.timeFormat,unlinkPanels:e.unlinkPanels,type:e.type,defaultValue:e.defaultValue,onPick:A,onSelectRange:O,onSetPickerOption:we,onCalendarChange:Ce,onPanelChange:ke,onKeydown:N,onMousedown:t[1]||(t[1]=(0,ge.D$)((()=>{}),["stop"]))})])),_:3},16,["visible","transition","popper-class","popper-options"]))}});var qC=J(GC,[["__file","picker.vue"]]);Au.extend(Hu),Au.extend(Qw),Au.extend(Yw),Au.extend(Zw),Au.extend(Jw),Au.extend(eE),Au.extend(tE),Au.extend(nE);var YC=(0,i.pM)({name:"ElDatePicker",install:null,props:iE,emits:["update:modelValue"],setup(e,{expose:t,emit:n,slots:o}){const r=(0,ee.DU)("picker-panel");(0,i.Gt)("ElPopperOptions",(0,s.Kh)((0,s.lW)(e,"popperOptions"))),(0,i.Gt)(oE,{slots:o,pickerNs:r});const l=(0,s.KR)(),a={focus:(e=!0)=>{var t;null==(t=l.value)||t.focus(e)},handleOpen:()=>{var e;null==(e=l.value)||e.handleOpen()},handleClose:()=>{var e;null==(e=l.value)||e.handleClose()}};t(a);const u=e=>{n("update:modelValue",e)};return()=>{var t;const n=null!=(t=e.format)?t:tC[e.type]||eC,r=XC(e.type);return(0,i.bF)(qC,(0,i.v6)(e,{format:n,type:e.type,ref:l,"onUpdate:modelValue":u}),{default:e=>(0,i.bF)(r,e,null),"range-separator":o["range-separator"]})}}});const QC=YC;QC.install=e=>{e.component(QC.name,QC)};const ZC=QC,JC=Symbol("elDescriptions");var ek=(0,i.pM)({name:"ElDescriptionsCell",props:{cell:{type:Object},tag:{type:String,default:"td"},type:{type:String}},setup(){const e=(0,i.WQ)(JC,{});return{descriptions:e}},render(){var e,t,n,o,r,l,a;const s=Oc(this.cell),u=((null==(e=this.cell)?void 0:e.dirs)||[]).map((e=>{const{dir:t,arg:n,modifiers:o,value:r}=e;return[t,r,n,o]})),{border:c,direction:d}=this.descriptions,p="vertical"===d,f=(null==(o=null==(n=null==(t=this.cell)?void 0:t.children)?void 0:n.label)?void 0:o.call(n))||s.label,v=null==(a=null==(l=null==(r=this.cell)?void 0:r.children)?void 0:l.default)?void 0:a.call(l),h=s.span,m=s.align?`is-${s.align}`:"",g=s.labelAlign?`is-${s.labelAlign}`:m,y=s.className,b=s.labelClassName,R={width:(0,te._V)(s.width),minWidth:(0,te._V)(s.minWidth)},w=(0,ee.DU)("descriptions");switch(this.type){case"label":return(0,i.bo)((0,i.h)(this.tag,{style:R,class:[w.e("cell"),w.e("label"),w.is("bordered-label",c),w.is("vertical-label",p),g,b],colSpan:p?h:1},f),u);case"content":return(0,i.bo)((0,i.h)(this.tag,{style:R,class:[w.e("cell"),w.e("content"),w.is("bordered-content",c),w.is("vertical-content",p),m,y],colSpan:p?h:2*h-1},v),u);default:return(0,i.bo)((0,i.h)("td",{style:R,class:[w.e("cell"),m],colSpan:h},[(0,Dn.A)(f)?void 0:(0,i.h)("span",{class:[w.e("label"),b]},f),(0,i.h)("span",{class:[w.e("content"),y]},v)]),u)}}});const tk=(0,H.b_)({row:{type:(0,H.jq)(Array),default:()=>[]}}),nk={key:1},ok=(0,i.pM)({name:"ElDescriptionsRow"}),rk=(0,i.pM)({...ok,props:tk,setup(e){const t=(0,i.WQ)(JC,{});return(e,n)=>"vertical"===(0,s.R1)(t).direction?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.Lk)("tr",null,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.row,((e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(ek),{key:`tr1-${t}`,cell:e,tag:"th",type:"label"},null,8,["cell"])))),128))]),(0,i.Lk)("tr",null,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.row,((e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(ek),{key:`tr2-${t}`,cell:e,tag:"td",type:"content"},null,8,["cell"])))),128))])],64)):((0,i.uX)(),(0,i.CE)("tr",nk,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.row,((e,n)=>((0,i.uX)(),(0,i.CE)(i.FK,{key:`tr3-${n}`},[(0,s.R1)(t).border?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.bF)((0,s.R1)(ek),{cell:e,tag:"td",type:"label"},null,8,["cell"]),(0,i.bF)((0,s.R1)(ek),{cell:e,tag:"td",type:"content"},null,8,["cell"])],64)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(ek),{key:1,cell:e,tag:"td",type:"both"},null,8,["cell"]))],64)))),128))]))}});var lk=J(rk,[["__file","descriptions-row.vue"]]);const ak=(0,H.b_)({border:{type:Boolean,default:!1},column:{type:Number,default:3},direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},size:Vn.mU,title:{type:String,default:""},extra:{type:String,default:""}}),ik=(0,i.pM)({name:"ElDescriptions"}),sk=(0,i.pM)({...ik,props:ak,setup(e){const t=e,n=(0,ee.DU)("descriptions"),o=ao(),r=(0,i.Ht)();(0,i.Gt)(JC,t);const l=(0,i.EW)((()=>[n.b(),n.m(o.value)])),a=(e,t,n,o=!1)=>(e.props||(e.props={}),t>n&&(e.props.span=n),o&&(e.props.span=t),e),c=()=>{if(!r.default)return[];const e=Ac(r.default()).filter((e=>{var t;return"ElDescriptionsItem"===(null==(t=null==e?void 0:e.type)?void 0:t.name)})),n=[];let o=[],l=t.column,i=0;return e.forEach(((r,s)=>{var u;const c=(null==(u=r.props)?void 0:u.span)||1;if(sl?l:c),s===e.length-1){const e=t.column-i%t.column;return o.push(a(r,e,l,!0)),void n.push(o)}c((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(l))},[e.title||e.extra||e.$slots.title||e.$slots.extra?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(n).e("header"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("title"))},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title),1)]))],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("extra"))},[(0,i.RG)(e.$slots,"extra",{},(()=>[(0,i.eW)((0,u.v_)(e.extra),1)]))],2)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("body"))},[(0,i.Lk)("table",{class:(0,u.C4)([(0,s.R1)(n).e("table"),(0,s.R1)(n).is("bordered",e.border)])},[(0,i.Lk)("tbody",null,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(c(),((e,t)=>((0,i.uX)(),(0,i.Wv)(lk,{key:t,row:e},null,8,["row"])))),128))])],2)],2)],2))}});var uk=J(sk,[["__file","description.vue"]]);const ck=(0,H.b_)({label:{type:String,default:""},span:{type:Number,default:1},width:{type:[String,Number],default:""},minWidth:{type:[String,Number],default:""},align:{type:String,default:"left"},labelAlign:{type:String,default:""},className:{type:String,default:""},labelClassName:{type:String,default:""}}),dk=(0,i.pM)({name:"ElDescriptionsItem",props:ck}),pk=pe(uk,{DescriptionsItem:dk}),fk=he(dk),vk=e=>{if(!e)return{onClick:u.tE,onMousedown:u.tE,onMouseup:u.tE};let t=!1,n=!1;const o=o=>{t&&n&&e(o),t=n=!1},r=e=>{t=e.target===e.currentTarget},l=e=>{n=e.target===e.currentTarget};return{onClick:o,onMousedown:r,onMouseup:l}},hk=(0,H.b_)({mask:{type:Boolean,default:!0},customMaskEvent:{type:Boolean,default:!1},overlayClass:{type:(0,H.jq)([String,Array,Object])},zIndex:{type:(0,H.jq)([String,Number])}}),mk={click:e=>e instanceof MouseEvent},gk="overlay";var yk=(0,i.pM)({name:"ElOverlay",props:hk,emits:mk,setup(e,{slots:t,emit:n}){const o=(0,ee.DU)(gk),r=e=>{n("click",e)},{onClick:l,onMousedown:a,onMouseup:s}=vk(e.customMaskEvent?void 0:r);return()=>e.mask?(0,i.bF)("div",{class:[o.b(),e.overlayClass],style:{zIndex:e.zIndex},onClick:l,onMousedown:a,onMouseup:s},[(0,i.RG)(t,"default")],xc.STYLE|xc.CLASS|xc.PROPS,["onClick","onMouseup","onMousedown"]):(0,i.h)("div",{class:e.overlayClass,style:{zIndex:e.zIndex,position:"fixed",top:"0px",right:"0px",bottom:"0px",left:"0px"}},[(0,i.RG)(t,"default")])}});const bk=yk,Rk=Symbol("dialogInjectionKey"),wk=(0,H.b_)({center:Boolean,alignCenter:Boolean,closeIcon:{type:en},draggable:Boolean,overflow:Boolean,fullscreen:Boolean,showClose:{type:Boolean,default:!0},title:{type:String,default:""},ariaLevel:{type:String,default:"2"}}),Ek={close:()=>!0},Ck=(...e)=>t=>{e.forEach((e=>{(0,u.Tn)(e)?e(t):e.value=t}))},kk=(e,t,n,o)=>{let r={offsetX:0,offsetY:0};const l=t=>{const n=t.clientX,l=t.clientY,{offsetX:a,offsetY:i}=r,s=e.value.getBoundingClientRect(),u=s.left,c=s.top,d=s.width,p=s.height,f=document.documentElement.clientWidth,v=document.documentElement.clientHeight,h=-u+a,m=-c+i,g=f-u-d+a,y=v-c-p+i,b=t=>{let s=a+t.clientX-n,u=i+t.clientY-l;(null==o?void 0:o.value)||(s=Math.min(Math.max(s,h),g),u=Math.min(Math.max(u,m),y)),r={offsetX:s,offsetY:u},e.value&&(e.value.style.transform=`translate(${(0,te._V)(s)}, ${(0,te._V)(u)})`)},R=()=>{document.removeEventListener("mousemove",b),document.removeEventListener("mouseup",R)};document.addEventListener("mousemove",b),document.addEventListener("mouseup",R)},a=()=>{t.value&&e.value&&t.value.addEventListener("mousedown",l)},s=()=>{t.value&&e.value&&t.value.removeEventListener("mousedown",l)};(0,i.sV)((()=>{(0,i.nT)((()=>{n.value?a():s()}))})),(0,i.xo)((()=>{s()}))},xk=["aria-level"],_k=["aria-label"],Sk=["id"],Tk=(0,i.pM)({name:"ElDialogContent"}),Ok=(0,i.pM)({...Tk,props:wk,emits:Ek,setup(e){const t=e,{t:n}=(0,zu.Ym)(),{Close:o}=tn,{dialogRef:r,headerRef:l,bodyId:a,ns:c,style:d}=(0,i.WQ)(Rk),{focusTrapRef:p}=(0,i.WQ)(ii),f=(0,i.EW)((()=>[c.b(),c.is("fullscreen",t.fullscreen),c.is("draggable",t.draggable),c.is("align-center",t.alignCenter),{[c.m("center")]:t.center}])),v=Ck(p,r),h=(0,i.EW)((()=>t.draggable)),m=(0,i.EW)((()=>t.overflow));return kk(r,l,h,m),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref:(0,s.R1)(v),class:(0,u.C4)((0,s.R1)(f)),style:(0,u.Tr)((0,s.R1)(d)),tabindex:"-1"},[(0,i.Lk)("header",{ref_key:"headerRef",ref:l,class:(0,u.C4)([(0,s.R1)(c).e("header"),{"show-close":e.showClose}])},[(0,i.RG)(e.$slots,"header",{},(()=>[(0,i.Lk)("span",{role:"heading","aria-level":e.ariaLevel,class:(0,u.C4)((0,s.R1)(c).e("title"))},(0,u.v_)(e.title),11,xk)])),e.showClose?((0,i.uX)(),(0,i.CE)("button",{key:0,"aria-label":(0,s.R1)(n)("el.dialog.close"),class:(0,u.C4)((0,s.R1)(c).e("headerbtn")),type:"button",onClick:t[0]||(t[0]=t=>e.$emit("close"))},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(c).e("close"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.closeIcon||(0,s.R1)(o))))])),_:1},8,["class"])],10,_k)):(0,i.Q3)("v-if",!0)],2),(0,i.Lk)("div",{id:(0,s.R1)(a),class:(0,u.C4)((0,s.R1)(c).e("body"))},[(0,i.RG)(e.$slots,"default")],10,Sk),e.$slots.footer?((0,i.uX)(),(0,i.CE)("footer",{key:0,class:(0,u.C4)((0,s.R1)(c).e("footer"))},[(0,i.RG)(e.$slots,"footer")],2)):(0,i.Q3)("v-if",!0)],6))}});var Ik=J(Ok,[["__file","dialog-content.vue"]]);const Ak=(0,H.b_)({...wk,appendToBody:Boolean,appendTo:{type:(0,H.jq)(String),default:"body"},beforeClose:{type:(0,H.jq)(Function)},destroyOnClose:Boolean,closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},modal:{type:Boolean,default:!0},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:0},top:{type:String},modelValue:Boolean,modalClass:String,width:{type:[String,Number]},zIndex:{type:Number},trapFocus:{type:Boolean,default:!1},headerAriaLevel:{type:String,default:"2"}}),Lk={open:()=>!0,opened:()=>!0,close:()=>!0,closed:()=>!0,[G]:e=>(0,z.Lm)(e),openAutoFocus:()=>!0,closeAutoFocus:()=>!0},Mk=(e,t={})=>{(0,s.i9)(e)||(0,ne.$)("[useLockscreen]","You need to pass a ref param to this function");const n=t.ns||(0,ee.DU)("popup"),o=(0,s.EW)((()=>n.bm("parent","hidden")));if(!c.oc||(0,te.nB)(document.body,o.value))return;let r=0,l=!1,a="0";const u=()=>{setTimeout((()=>{(0,te.vy)(null==document?void 0:document.body,o.value),l&&document&&(document.body.style.width=a)}),200)};(0,i.wB)(e,(e=>{if(!e)return void u();l=!(0,te.nB)(document.body,o.value),l&&(a=document.body.style.width),r=ae(n.namespace.value);const t=document.documentElement.clientHeight0&&(t||"scroll"===i)&&l&&(document.body.style.width=`calc(100% - ${r}px)`),(0,te.iQ)(document.body,o.value)})),(0,s.jr)((()=>u()))},Nk=(e,t)=>{var n;const o=(0,i.nI)(),r=o.emit,{nextZIndex:a}=(0,Za.YK)();let u="";const d=no(),p=no(),f=(0,s.KR)(!1),v=(0,s.KR)(!1),h=(0,s.KR)(!1),m=(0,s.KR)(null!=(n=e.zIndex)?n:a());let g,y;const b=(0,l.H3)("namespace",ee.Lt),R=(0,i.EW)((()=>{const t={},n=`--${b.value}-dialog`;return e.fullscreen||(e.top&&(t[`${n}-margin-top`]=e.top),e.width&&(t[`${n}-width`]=(0,te._V)(e.width))),t})),w=(0,i.EW)((()=>e.alignCenter?{display:"flex"}:{}));function E(){r("opened")}function C(){r("closed"),r(G,!1),e.destroyOnClose&&(h.value=!1)}function k(){r("close")}function x(){null==y||y(),null==g||g(),e.openDelay&&e.openDelay>0?({stop:g}=(0,c.TO)((()=>O()),e.openDelay)):O()}function _(){null==g||g(),null==y||y(),e.closeDelay&&e.closeDelay>0?({stop:y}=(0,c.TO)((()=>I()),e.closeDelay)):I()}function S(){function t(e){e||(v.value=!0,f.value=!1)}e.beforeClose?e.beforeClose(t):_()}function T(){e.closeOnClickModal&&S()}function O(){c.oc&&(f.value=!0)}function I(){f.value=!1}function A(){r("openAutoFocus")}function L(){r("closeAutoFocus")}function M(e){var t;"pointer"===(null==(t=e.detail)?void 0:t.focusReason)&&e.preventDefault()}function N(){e.closeOnPressEscape&&S()}return e.lockScroll&&Mk(f),(0,i.wB)((()=>e.modelValue),(n=>{n?(v.value=!1,x(),h.value=!0,m.value=Va(e.zIndex)?a():m.value++,(0,i.dY)((()=>{r("open"),t.value&&(t.value.scrollTop=0)}))):f.value&&_()})),(0,i.wB)((()=>e.fullscreen),(e=>{t.value&&(e?(u=t.value.style.transform,t.value.style.transform=""):t.value.style.transform=u)})),(0,i.sV)((()=>{e.modelValue&&(f.value=!0,h.value=!0,x())})),{afterEnter:E,afterLeave:C,beforeLeave:k,handleClose:S,onModalClick:T,close:_,doClose:I,onOpenAutoFocus:A,onCloseAutoFocus:L,onCloseRequested:N,onFocusoutPrevented:M,titleId:d,bodyId:p,closed:v,style:R,overlayDialogStyle:w,rendered:h,visible:f,zIndex:m}},Wk=["aria-label","aria-labelledby","aria-describedby"],Dk=(0,i.pM)({name:"ElDialog",inheritAttrs:!1}),Fk=(0,i.pM)({...Dk,props:Ak,emits:Lk,setup(e,{expose:t}){const n=e,o=(0,i.Ht)();$s({scope:"el-dialog",from:"the title slot",replacement:"the header slot",version:"3.0.0",ref:"https://element-plus.org/en-US/component/dialog.html#slots"},(0,i.EW)((()=>!!o.title)));const r=(0,ee.DU)("dialog"),l=(0,s.KR)(),a=(0,s.KR)(),c=(0,s.KR)(),{visible:d,titleId:p,bodyId:f,style:v,overlayDialogStyle:h,rendered:m,zIndex:g,afterEnter:y,afterLeave:b,beforeLeave:R,handleClose:w,onModalClick:E,onOpenAutoFocus:C,onCloseAutoFocus:k,onCloseRequested:x,onFocusoutPrevented:_}=Nk(n,l);(0,i.Gt)(Rk,{dialogRef:l,headerRef:a,bodyId:f,ns:r,rendered:m,style:v});const S=vk(E),T=(0,i.EW)((()=>n.draggable&&!n.fullscreen));return t({visible:d,dialogContentRef:c}),(e,t)=>((0,i.uX)(),(0,i.Wv)(i.Im,{to:e.appendTo,disabled:"body"===e.appendTo&&!e.appendToBody},[(0,i.bF)(ge.eB,{name:"dialog-fade",onAfterEnter:(0,s.R1)(y),onAfterLeave:(0,s.R1)(b),onBeforeLeave:(0,s.R1)(R),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.bF)((0,s.R1)(bk),{"custom-mask-event":"",mask:e.modal,"overlay-class":e.modalClass,"z-index":(0,s.R1)(g)},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{role:"dialog","aria-modal":"true","aria-label":e.title||void 0,"aria-labelledby":e.title?void 0:(0,s.R1)(p),"aria-describedby":(0,s.R1)(f),class:(0,u.C4)(`${(0,s.R1)(r).namespace.value}-overlay-dialog`),style:(0,u.Tr)((0,s.R1)(h)),onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(S).onClick&&(0,s.R1)(S).onClick(...e)),onMousedown:t[1]||(t[1]=(...e)=>(0,s.R1)(S).onMousedown&&(0,s.R1)(S).onMousedown(...e)),onMouseup:t[2]||(t[2]=(...e)=>(0,s.R1)(S).onMouseup&&(0,s.R1)(S).onMouseup(...e))},[(0,i.bF)((0,s.R1)(Li),{loop:"",trapped:(0,s.R1)(d),"focus-start-el":"container",onFocusAfterTrapped:(0,s.R1)(C),onFocusAfterReleased:(0,s.R1)(k),onFocusoutPrevented:(0,s.R1)(_),onReleaseRequested:(0,s.R1)(x)},{default:(0,i.k6)((()=>[(0,s.R1)(m)?((0,i.uX)(),(0,i.Wv)(Ik,(0,i.v6)({key:0,ref_key:"dialogContentRef",ref:c},e.$attrs,{center:e.center,"align-center":e.alignCenter,"close-icon":e.closeIcon,draggable:(0,s.R1)(T),overflow:e.overflow,fullscreen:e.fullscreen,"show-close":e.showClose,title:e.title,"aria-level":e.headerAriaLevel,onClose:(0,s.R1)(w)}),(0,i.eX)({header:(0,i.k6)((()=>[e.$slots.title?(0,i.RG)(e.$slots,"title",{key:1}):(0,i.RG)(e.$slots,"header",{key:0,close:(0,s.R1)(w),titleId:(0,s.R1)(p),titleClass:(0,s.R1)(r).e("title")})])),default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:2},[e.$slots.footer?{name:"footer",fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"footer")]))}:void 0]),1040,["center","align-center","close-icon","draggable","overflow","fullscreen","show-close","title","aria-level","onClose"])):(0,i.Q3)("v-if",!0)])),_:3},8,["trapped","onFocusAfterTrapped","onFocusAfterReleased","onFocusoutPrevented","onReleaseRequested"])],46,Wk)])),_:3},8,["mask","overlay-class","z-index"]),[[ge.aG,(0,s.R1)(d)]])])),_:3},8,["onAfterEnter","onAfterLeave","onBeforeLeave"])],8,["to","disabled"]))}});var $k=J(Fk,[["__file","dialog.vue"]]);const Bk=pe($k),Pk=(0,H.b_)({direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},contentPosition:{type:String,values:["left","center","right"],default:"center"},borderStyle:{type:(0,H.jq)(String),default:"solid"}}),Kk=(0,i.pM)({name:"ElDivider"}),jk=(0,i.pM)({...Kk,props:Pk,setup(e){const t=e,n=(0,ee.DU)("divider"),o=(0,i.EW)((()=>n.cssVar({"border-style":t.borderStyle})));return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(n).b(),(0,s.R1)(n).m(e.direction)]),style:(0,u.Tr)((0,s.R1)(o)),role:"separator"},[e.$slots.default&&"vertical"!==e.direction?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)([(0,s.R1)(n).e("text"),(0,s.R1)(n).is(e.contentPosition)])},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0)],6))}});var Vk=J(jk,[["__file","divider.vue"]]);const Xk=pe(Vk),Uk=(0,H.b_)({...Ak,direction:{type:String,default:"rtl",values:["ltr","rtl","ttb","btt"]},size:{type:[String,Number],default:"30%"},withHeader:{type:Boolean,default:!0},modalFade:{type:Boolean,default:!0},headerAriaLevel:{type:String,default:"2"}}),Hk=Lk,zk=["aria-label","aria-labelledby","aria-describedby"],Gk=["id","aria-level"],qk=["aria-label"],Yk=["id"],Qk=(0,i.pM)({name:"ElDrawer",inheritAttrs:!1}),Zk=(0,i.pM)({...Qk,props:Uk,emits:Hk,setup(e,{expose:t}){const n=e,o=(0,i.Ht)();$s({scope:"el-drawer",from:"the title slot",replacement:"the header slot",version:"3.0.0",ref:"https://element-plus.org/en-US/component/drawer.html#slots"},(0,i.EW)((()=>!!o.title)));const r=(0,s.KR)(),l=(0,s.KR)(),a=(0,ee.DU)("drawer"),{t:c}=(0,zu.Ym)(),{afterEnter:d,afterLeave:p,beforeLeave:f,visible:v,rendered:h,titleId:m,bodyId:g,onModalClick:y,onOpenAutoFocus:b,onCloseAutoFocus:R,onFocusoutPrevented:w,onCloseRequested:E,handleClose:C}=Nk(n,r),k=(0,i.EW)((()=>"rtl"===n.direction||"ltr"===n.direction)),x=(0,i.EW)((()=>(0,te._V)(n.size)));return t({handleClose:C,afterEnter:d,afterLeave:p}),(e,t)=>((0,i.uX)(),(0,i.Wv)(i.Im,{to:"body",disabled:!e.appendToBody},[(0,i.bF)(ge.eB,{name:(0,s.R1)(a).b("fade"),onAfterEnter:(0,s.R1)(d),onAfterLeave:(0,s.R1)(p),onBeforeLeave:(0,s.R1)(f),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.bF)((0,s.R1)(bk),{mask:e.modal,"overlay-class":e.modalClass,"z-index":e.zIndex,onClick:(0,s.R1)(y)},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Li),{loop:"",trapped:(0,s.R1)(v),"focus-trap-el":r.value,"focus-start-el":l.value,onFocusAfterTrapped:(0,s.R1)(b),onFocusAfterReleased:(0,s.R1)(R),onFocusoutPrevented:(0,s.R1)(w),onReleaseRequested:(0,s.R1)(E)},{default:(0,i.k6)((()=>[(0,i.Lk)("div",(0,i.v6)({ref_key:"drawerRef",ref:r,"aria-modal":"true","aria-label":e.title||void 0,"aria-labelledby":e.title?void 0:(0,s.R1)(m),"aria-describedby":(0,s.R1)(g)},e.$attrs,{class:[(0,s.R1)(a).b(),e.direction,(0,s.R1)(v)&&"open"],style:(0,s.R1)(k)?"width: "+(0,s.R1)(x):"height: "+(0,s.R1)(x),role:"dialog",onClick:t[1]||(t[1]=(0,ge.D$)((()=>{}),["stop"]))}),[(0,i.Lk)("span",{ref_key:"focusStartRef",ref:l,class:(0,u.C4)((0,s.R1)(a).e("sr-focus")),tabindex:"-1"},null,2),e.withHeader?((0,i.uX)(),(0,i.CE)("header",{key:0,class:(0,u.C4)((0,s.R1)(a).e("header"))},[e.$slots.title?(0,i.RG)(e.$slots,"title",{key:1},(()=>[(0,i.Q3)(" DEPRECATED SLOT ")])):(0,i.RG)(e.$slots,"header",{key:0,close:(0,s.R1)(C),titleId:(0,s.R1)(m),titleClass:(0,s.R1)(a).e("title")},(()=>[e.$slots.title?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",{key:0,id:(0,s.R1)(m),role:"heading","aria-level":e.headerAriaLevel,class:(0,u.C4)((0,s.R1)(a).e("title"))},(0,u.v_)(e.title),11,Gk))])),e.showClose?((0,i.uX)(),(0,i.CE)("button",{key:2,"aria-label":(0,s.R1)(c)("el.drawer.close"),class:(0,u.C4)((0,s.R1)(a).e("close-btn")),type:"button",onClick:t[0]||(t[0]=(...e)=>(0,s.R1)(C)&&(0,s.R1)(C)(...e))},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(a).e("close"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1},8,["class"])],10,qk)):(0,i.Q3)("v-if",!0)],2)):(0,i.Q3)("v-if",!0),(0,s.R1)(h)?((0,i.uX)(),(0,i.CE)("div",{key:1,id:(0,s.R1)(g),class:(0,u.C4)((0,s.R1)(a).e("body"))},[(0,i.RG)(e.$slots,"default")],10,Yk)):(0,i.Q3)("v-if",!0),e.$slots.footer?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)((0,s.R1)(a).e("footer"))},[(0,i.RG)(e.$slots,"footer")],2)):(0,i.Q3)("v-if",!0)],16,zk)])),_:3},8,["trapped","focus-trap-el","focus-start-el","onFocusAfterTrapped","onFocusAfterReleased","onFocusoutPrevented","onReleaseRequested"])])),_:3},8,["mask","overlay-class","z-index","onClick"]),[[ge.aG,(0,s.R1)(v)]])])),_:3},8,["name","onAfterEnter","onAfterLeave","onBeforeLeave"])],8,["disabled"]))}});var Jk=J(Zk,[["__file","drawer.vue"]]);const ex=pe(Jk),tx=(0,i.pM)({inheritAttrs:!1});function nx(e,t,n,o,r,l){return(0,i.RG)(e.$slots,"default")}var ox=J(tx,[["render",nx],["__file","collection.vue"]]);const rx=(0,i.pM)({name:"ElCollectionItem",inheritAttrs:!1});function lx(e,t,n,o,r,l){return(0,i.RG)(e.$slots,"default")}var ax=J(rx,[["render",lx],["__file","collection-item.vue"]]);const ix="data-el-collection-item",sx=e=>{const t=`El${e}Collection`,n=`${t}Item`,o=Symbol(t),r=Symbol(n),l={...ox,name:t,setup(){const e=(0,s.KR)(null),t=new Map,n=()=>{const n=(0,s.R1)(e);if(!n)return[];const o=Array.from(n.querySelectorAll(`[${ix}]`)),r=[...t.values()];return r.sort(((e,t)=>o.indexOf(e.ref)-o.indexOf(t.ref)))};(0,i.Gt)(o,{itemMap:t,getItems:n,collectionRef:e})}},a={...ax,name:n,setup(e,{attrs:t}){const n=(0,s.KR)(null),l=(0,i.WQ)(o,void 0);(0,i.Gt)(r,{collectionItemRef:n}),(0,i.sV)((()=>{const e=(0,s.R1)(n);e&&l.itemMap.set(e,{ref:e,...t})})),(0,i.xo)((()=>{const e=(0,s.R1)(n);l.itemMap.delete(e)}))}};return{COLLECTION_INJECTION_KEY:o,COLLECTION_ITEM_INJECTION_KEY:r,ElCollection:l,ElCollectionItem:a}},ux=(0,H.b_)({trigger:ia.trigger,effect:{...ra.effect,default:"light"},type:{type:(0,H.jq)(String)},placement:{type:(0,H.jq)(String),default:"bottom"},popperOptions:{type:(0,H.jq)(Object),default:()=>({})},id:String,size:{type:String,default:""},splitButton:Boolean,hideOnClick:{type:Boolean,default:!0},loop:{type:Boolean,default:!0},showTimeout:{type:Number,default:150},hideTimeout:{type:Number,default:150},tabindex:{type:(0,H.jq)([Number,String]),default:0},maxHeight:{type:(0,H.jq)([Number,String]),default:""},popperClass:{type:String,default:""},disabled:{type:Boolean,default:!1},role:{type:String,default:"menu"},buttonProps:{type:(0,H.jq)(Object)},teleported:ra.teleported}),cx=(0,H.b_)({command:{type:[Object,String,Number],default:()=>({})},disabled:Boolean,divided:Boolean,textValue:String,icon:{type:en}}),dx=(0,H.b_)({onKeydown:{type:(0,H.jq)(Function)}}),px=[aa.down,aa.pageDown,aa.home],fx=[aa.up,aa.pageUp,aa.end],vx=[...px,...fx],{ElCollection:hx,ElCollectionItem:mx,COLLECTION_INJECTION_KEY:gx,COLLECTION_ITEM_INJECTION_KEY:yx}=sx("Dropdown"),bx=Symbol("elDropdown"),Rx=(0,H.b_)({style:{type:(0,H.jq)([String,Array,Object])},currentTabId:{type:(0,H.jq)(String)},defaultCurrentTabId:String,loop:Boolean,dir:{type:String,values:["ltr","rtl"],default:"ltr"},orientation:{type:(0,H.jq)(String)},onBlur:Function,onFocus:Function,onMousedown:Function}),{ElCollection:wx,ElCollectionItem:Ex,COLLECTION_INJECTION_KEY:Cx,COLLECTION_ITEM_INJECTION_KEY:kx}=sx("RovingFocusGroup"),xx=Symbol("elRovingFocusGroup"),_x=Symbol("elRovingFocusGroupItem"),Sx={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"},Tx=(e,t)=>{if("rtl"!==t)return e;switch(e){case aa.right:return aa.left;case aa.left:return aa.right;default:return e}},Ox=(e,t,n)=>{const o=Tx(e.key,n);if(("vertical"!==t||![aa.left,aa.right].includes(o))&&("horizontal"!==t||![aa.up,aa.down].includes(o)))return Sx[o]},Ix=(e,t)=>e.map(((n,o)=>e[(o+t)%e.length])),Ax=e=>{const{activeElement:t}=document;for(const n of e){if(n===t)return;if(n.focus(),t!==document.activeElement)return}},Lx="currentTabIdChange",Mx="rovingFocusGroup.entryFocus",Nx={bubbles:!1,cancelable:!0},Wx=(0,i.pM)({name:"ElRovingFocusGroupImpl",inheritAttrs:!1,props:Rx,emits:[Lx,"entryFocus"],setup(e,{emit:t}){var n;const o=(0,s.KR)(null!=(n=e.currentTabId||e.defaultCurrentTabId)?n:null),r=(0,s.KR)(!1),l=(0,s.KR)(!1),a=(0,s.KR)(null),{getItems:u}=(0,i.WQ)(Cx,void 0),c=(0,i.EW)((()=>[{outline:"none"},e.style])),d=e=>{t(Lx,e)},p=()=>{r.value=!0},f=Ea((t=>{var n;null==(n=e.onMousedown)||n.call(e,t)}),(()=>{l.value=!0})),v=Ea((t=>{var n;null==(n=e.onFocus)||n.call(e,t)}),(e=>{const t=!(0,s.R1)(l),{target:n,currentTarget:a}=e;if(n===a&&t&&!(0,s.R1)(r)){const e=new Event(Mx,Nx);if(null==a||a.dispatchEvent(e),!e.defaultPrevented){const e=u().filter((e=>e.focusable)),t=e.find((e=>e.active)),n=e.find((e=>e.id===(0,s.R1)(o))),r=[t,n,...e].filter(Boolean),l=r.map((e=>e.ref));Ax(l)}}l.value=!1})),m=Ea((t=>{var n;null==(n=e.onBlur)||n.call(e,t)}),(()=>{r.value=!1})),g=(...e)=>{t("entryFocus",...e)};(0,i.Gt)(xx,{currentTabbedId:(0,s.tB)(o),loop:(0,s.lW)(e,"loop"),tabIndex:(0,i.EW)((()=>(0,s.R1)(r)?-1:0)),rovingFocusGroupRef:a,rovingFocusGroupRootStyle:c,orientation:(0,s.lW)(e,"orientation"),dir:(0,s.lW)(e,"dir"),onItemFocus:d,onItemShiftTab:p,onBlur:m,onFocus:v,onMousedown:f}),(0,i.wB)((()=>e.currentTabId),(e=>{o.value=null!=e?e:null})),h(a,Mx,g)}});function Dx(e,t,n,o,r,l){return(0,i.RG)(e.$slots,"default")}var Fx=J(Wx,[["render",Dx],["__file","roving-focus-group-impl.vue"]]);const $x=(0,i.pM)({name:"ElRovingFocusGroup",components:{ElFocusGroupCollection:wx,ElRovingFocusGroupImpl:Fx}});function Bx(e,t,n,o,r,l){const a=(0,i.g2)("el-roving-focus-group-impl"),s=(0,i.g2)("el-focus-group-collection");return(0,i.uX)(),(0,i.Wv)(s,null,{default:(0,i.k6)((()=>[(0,i.bF)(a,(0,u._B)((0,i.Ng)(e.$attrs)),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16)])),_:3})}var Px=J($x,[["render",Bx],["__file","roving-focus-group.vue"]]);const{ButtonGroup:Kx}=Ou,jx=(0,i.pM)({name:"ElDropdown",components:{ElButton:Ou,ElButtonGroup:Kx,ElScrollbar:Do,ElDropdownCollection:hx,ElTooltip:zi,ElRovingFocusGroup:Px,ElOnlyChild:Ta,ElIcon:Ee,ArrowDown:xe},props:ux,emits:["visible-change","click","command"],setup(e,{emit:t}){const n=(0,i.nI)(),o=(0,ee.DU)("dropdown"),{t:r}=(0,zu.Ym)(),l=(0,s.KR)(),a=(0,s.KR)(),u=(0,s.KR)(null),c=(0,s.KR)(null),d=(0,s.KR)(null),p=(0,s.KR)(null),f=(0,s.KR)(!1),v=[aa.enter,aa.space,aa.down],h=(0,i.EW)((()=>({maxHeight:(0,te._V)(e.maxHeight)}))),m=(0,i.EW)((()=>[o.m(C.value)])),g=(0,i.EW)((()=>pR(e.trigger))),y=no().value,b=(0,i.EW)((()=>e.id||y));function R(){w()}function w(){var e;null==(e=u.value)||e.onClose()}function E(){var e;null==(e=u.value)||e.onOpen()}(0,i.wB)([l,g],(([e,t],[n])=>{var o,r,l;(null==(o=null==n?void 0:n.$el)?void 0:o.removeEventListener)&&n.$el.removeEventListener("pointerenter",x),(null==(r=null==e?void 0:e.$el)?void 0:r.removeEventListener)&&e.$el.removeEventListener("pointerenter",x),(null==(l=null==e?void 0:e.$el)?void 0:l.addEventListener)&&t.includes("hover")&&e.$el.addEventListener("pointerenter",x)}),{immediate:!0}),(0,i.xo)((()=>{var e,t;(null==(t=null==(e=l.value)?void 0:e.$el)?void 0:t.removeEventListener)&&l.value.$el.removeEventListener("pointerenter",x)}));const C=ao();function k(...e){t("command",...e)}function x(){var e,t;null==(t=null==(e=l.value)?void 0:e.$el)||t.focus()}function _(){}function S(){const e=(0,s.R1)(c);g.value.includes("hover")&&(null==e||e.focus()),p.value=null}function T(e){p.value=e}function O(e){f.value||(e.preventDefault(),e.stopImmediatePropagation())}function I(){t("visible-change",!0)}function A(e){"keydown"===(null==e?void 0:e.type)&&c.value.focus()}function L(){t("visible-change",!1)}(0,i.Gt)(bx,{contentRef:c,role:(0,i.EW)((()=>e.role)),triggerId:b,isUsingKeyboard:f,onItemEnter:_,onItemLeave:S}),(0,i.Gt)("elDropdown",{instance:n,dropdownSize:C,handleClick:R,commandHandler:k,trigger:(0,s.lW)(e,"trigger"),hideOnClick:(0,s.lW)(e,"hideOnClick")});const M=e=>{var t,n;e.preventDefault(),null==(n=null==(t=c.value)?void 0:t.focus)||n.call(t,{preventScroll:!0})},N=e=>{t("click",e)};return{t:r,ns:o,scrollbar:d,wrapStyle:h,dropdownTriggerKls:m,dropdownSize:C,triggerId:b,triggerKeys:v,currentTabId:p,handleCurrentTabIdChange:T,handlerMainButtonClick:N,handleEntryFocus:O,handleClose:w,handleOpen:E,handleBeforeShowTooltip:I,handleShowTooltip:A,handleBeforeHideTooltip:L,onFocusAfterTrapped:M,popperRef:u,contentRef:c,triggeringElementRef:l,referenceElementRef:a}}});function Vx(e,t,n,o,r,l){var a;const s=(0,i.g2)("el-dropdown-collection"),c=(0,i.g2)("el-roving-focus-group"),d=(0,i.g2)("el-scrollbar"),p=(0,i.g2)("el-only-child"),f=(0,i.g2)("el-tooltip"),v=(0,i.g2)("el-button"),h=(0,i.g2)("arrow-down"),m=(0,i.g2)("el-icon"),g=(0,i.g2)("el-button-group");return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([e.ns.b(),e.ns.is("disabled",e.disabled)])},[(0,i.bF)(f,{ref:"popperRef",role:e.role,effect:e.effect,"fallback-placements":["bottom","top"],"popper-options":e.popperOptions,"gpu-acceleration":!1,"hide-after":"hover"===e.trigger?e.hideTimeout:0,"manual-mode":!0,placement:e.placement,"popper-class":[e.ns.e("popper"),e.popperClass],"reference-element":null==(a=e.referenceElementRef)?void 0:a.$el,trigger:e.trigger,"trigger-keys":e.triggerKeys,"trigger-target-el":e.contentRef,"show-after":"hover"===e.trigger?e.showTimeout:0,"stop-popper-mouse-event":!1,"virtual-ref":e.triggeringElementRef,"virtual-triggering":e.splitButton,disabled:e.disabled,transition:`${e.ns.namespace.value}-zoom-in-top`,teleported:e.teleported,pure:"",persistent:"",onBeforeShow:e.handleBeforeShowTooltip,onShow:e.handleShowTooltip,onBeforeHide:e.handleBeforeHideTooltip},(0,i.eX)({content:(0,i.k6)((()=>[(0,i.bF)(d,{ref:"scrollbar","wrap-style":e.wrapStyle,tag:"div","view-class":e.ns.e("list")},{default:(0,i.k6)((()=>[(0,i.bF)(c,{loop:e.loop,"current-tab-id":e.currentTabId,orientation:"horizontal",onCurrentTabIdChange:e.handleCurrentTabIdChange,onEntryFocus:e.handleEntryFocus},{default:(0,i.k6)((()=>[(0,i.bF)(s,null,{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"dropdown")])),_:3})])),_:3},8,["loop","current-tab-id","onCurrentTabIdChange","onEntryFocus"])])),_:3},8,["wrap-style","view-class"])])),_:2},[e.splitButton?void 0:{name:"default",fn:(0,i.k6)((()=>[(0,i.bF)(p,{id:e.triggerId,ref:"triggeringElementRef",role:"button",tabindex:e.tabindex},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["id","tabindex"])]))}]),1032,["role","effect","popper-options","hide-after","placement","popper-class","reference-element","trigger","trigger-keys","trigger-target-el","show-after","virtual-ref","virtual-triggering","disabled","transition","teleported","onBeforeShow","onShow","onBeforeHide"]),e.splitButton?((0,i.uX)(),(0,i.Wv)(g,{key:0},{default:(0,i.k6)((()=>[(0,i.bF)(v,(0,i.v6)({ref:"referenceElementRef"},e.buttonProps,{size:e.dropdownSize,type:e.type,disabled:e.disabled,tabindex:e.tabindex,onClick:e.handlerMainButtonClick}),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16,["size","type","disabled","tabindex","onClick"]),(0,i.bF)(v,(0,i.v6)({id:e.triggerId,ref:"triggeringElementRef"},e.buttonProps,{role:"button",size:e.dropdownSize,type:e.type,class:e.ns.e("caret-button"),disabled:e.disabled,tabindex:e.tabindex,"aria-label":e.t("el.dropdown.toggleDropdown")}),{default:(0,i.k6)((()=>[(0,i.bF)(m,{class:(0,u.C4)(e.ns.e("icon"))},{default:(0,i.k6)((()=>[(0,i.bF)(h)])),_:1},8,["class"])])),_:1},16,["id","size","type","class","disabled","tabindex","aria-label"])])),_:3})):(0,i.Q3)("v-if",!0)],2)}var Xx=J(jx,[["render",Vx],["__file","dropdown.vue"]]);const Ux=(0,i.pM)({name:"DropdownItemImpl",components:{ElIcon:Ee},props:cx,emits:["pointermove","pointerleave","click","clickimpl"],setup(e,{emit:t}){const n=(0,ee.DU)("dropdown"),{role:o}=(0,i.WQ)(bx,void 0),{collectionItemRef:r}=(0,i.WQ)(yx,void 0),{collectionItemRef:l}=(0,i.WQ)(kx,void 0),{rovingFocusGroupItemRef:a,tabIndex:s,handleFocus:u,handleKeydown:c,handleMousedown:d}=(0,i.WQ)(_x,void 0),p=Ck(r,l,a),f=(0,i.EW)((()=>"menu"===o.value?"menuitem":"navigation"===o.value?"link":"button")),v=Ea((e=>{const{code:n}=e;if(n===aa.enter||n===aa.space)return e.preventDefault(),e.stopImmediatePropagation(),t("clickimpl",e),!0}),c);return{ns:n,itemRef:p,dataset:{[ix]:""},role:f,tabIndex:s,handleFocus:u,handleKeydown:v,handleMousedown:d}}}),Hx=["aria-disabled","tabindex","role"];function zx(e,t,n,o,r,l){const a=(0,i.g2)("el-icon");return(0,i.uX)(),(0,i.CE)(i.FK,null,[e.divided?((0,i.uX)(),(0,i.CE)("li",(0,i.v6)({key:0,role:"separator",class:e.ns.bem("menu","item","divided")},e.$attrs),null,16)):(0,i.Q3)("v-if",!0),(0,i.Lk)("li",(0,i.v6)({ref:e.itemRef},{...e.dataset,...e.$attrs},{"aria-disabled":e.disabled,class:[e.ns.be("menu","item"),e.ns.is("disabled",e.disabled)],tabindex:e.tabIndex,role:e.role,onClick:t[0]||(t[0]=t=>e.$emit("clickimpl",t)),onFocus:t[1]||(t[1]=(...t)=>e.handleFocus&&e.handleFocus(...t)),onKeydown:t[2]||(t[2]=(0,ge.D$)(((...t)=>e.handleKeydown&&e.handleKeydown(...t)),["self"])),onMousedown:t[3]||(t[3]=(...t)=>e.handleMousedown&&e.handleMousedown(...t)),onPointermove:t[4]||(t[4]=t=>e.$emit("pointermove",t)),onPointerleave:t[5]||(t[5]=t=>e.$emit("pointerleave",t))}),[e.icon?((0,i.uX)(),(0,i.Wv)(a,{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1})):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"default")],16,Hx)],64)}var Gx=J(Ux,[["render",zx],["__file","dropdown-item-impl.vue"]]);const qx=()=>{const e=(0,i.WQ)("elDropdown",{}),t=(0,i.EW)((()=>null==e?void 0:e.dropdownSize));return{elDropdown:e,_elDropdownSize:t}},Yx=(0,i.pM)({components:{ElRovingFocusCollectionItem:Ex},props:{focusable:{type:Boolean,default:!0},active:{type:Boolean,default:!1}},emits:["mousedown","focus","keydown"],setup(e,{emit:t}){const{currentTabbedId:n,loop:o,onItemFocus:r,onItemShiftTab:l}=(0,i.WQ)(xx,void 0),{getItems:a}=(0,i.WQ)(Cx,void 0),u=no(),c=(0,s.KR)(null),d=Ea((e=>{t("mousedown",e)}),(t=>{e.focusable?r((0,s.R1)(u)):t.preventDefault()})),p=Ea((e=>{t("focus",e)}),(()=>{r((0,s.R1)(u))})),f=Ea((e=>{t("keydown",e)}),(e=>{const{key:t,shiftKey:n,target:r,currentTarget:s}=e;if(t===aa.tab&&n)return void l();if(r!==s)return;const u=Ox(e);if(u){e.preventDefault();const t=a().filter((e=>e.focusable));let n=t.map((e=>e.ref));switch(u){case"last":n.reverse();break;case"prev":case"next":{"prev"===u&&n.reverse();const e=n.indexOf(s);n=o.value?Ix(n,e+1):n.slice(e+1);break}default:break}(0,i.dY)((()=>{Ax(n)}))}})),v=(0,i.EW)((()=>n.value===(0,s.R1)(u)));return(0,i.Gt)(_x,{rovingFocusGroupItemRef:c,tabIndex:(0,i.EW)((()=>(0,s.R1)(v)?0:-1)),handleMousedown:d,handleFocus:p,handleKeydown:f}),{id:u,handleKeydown:f,handleFocus:p,handleMousedown:d}}});function Qx(e,t,n,o,r,l){const a=(0,i.g2)("el-roving-focus-collection-item");return(0,i.uX)(),(0,i.Wv)(a,{id:e.id,focusable:e.focusable,active:e.active},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["id","focusable","active"])}var Zx=J(Yx,[["render",Qx],["__file","roving-focus-item.vue"]]);const Jx=(0,i.pM)({name:"ElDropdownItem",components:{ElDropdownCollectionItem:mx,ElRovingFocusItem:Zx,ElDropdownItemImpl:Gx},inheritAttrs:!1,props:cx,emits:["pointermove","pointerleave","click"],setup(e,{emit:t,attrs:n}){const{elDropdown:o}=qx(),r=(0,i.nI)(),l=(0,s.KR)(null),a=(0,i.EW)((()=>{var e,t;return null!=(t=null==(e=(0,s.R1)(l))?void 0:e.textContent)?t:""})),{onItemEnter:u,onItemLeave:c}=(0,i.WQ)(bx,void 0),d=Ea((e=>(t("pointermove",e),e.defaultPrevented)),Ca((t=>{if(e.disabled)return void c(t);const n=t.currentTarget;n===document.activeElement||n.contains(document.activeElement)||(u(t),t.defaultPrevented||null==n||n.focus())}))),p=Ea((e=>(t("pointerleave",e),e.defaultPrevented)),Ca((e=>{c(e)}))),f=Ea((n=>{if(!e.disabled)return t("click",n),"keydown"!==n.type&&n.defaultPrevented}),(t=>{var n,l,a;e.disabled?t.stopImmediatePropagation():((null==(n=null==o?void 0:o.hideOnClick)?void 0:n.value)&&(null==(l=o.handleClick)||l.call(o)),null==(a=o.commandHandler)||a.call(o,e.command,r,t))})),v=(0,i.EW)((()=>({...e,...n})));return{handleClick:f,handlePointerMove:d,handlePointerLeave:p,textContent:a,propsAndAttrs:v}}});function e_(e,t,n,o,r,l){var a;const s=(0,i.g2)("el-dropdown-item-impl"),u=(0,i.g2)("el-roving-focus-item"),c=(0,i.g2)("el-dropdown-collection-item");return(0,i.uX)(),(0,i.Wv)(c,{disabled:e.disabled,"text-value":null!=(a=e.textValue)?a:e.textContent},{default:(0,i.k6)((()=>[(0,i.bF)(u,{focusable:!e.disabled},{default:(0,i.k6)((()=>[(0,i.bF)(s,(0,i.v6)(e.propsAndAttrs,{onPointerleave:e.handlePointerLeave,onPointermove:e.handlePointerMove,onClickimpl:e.handleClick}),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16,["onPointerleave","onPointermove","onClickimpl"])])),_:3},8,["focusable"])])),_:3},8,["disabled","text-value"])}var t_=J(Jx,[["render",e_],["__file","dropdown-item.vue"]]);const n_=(0,i.pM)({name:"ElDropdownMenu",props:dx,setup(e){const t=(0,ee.DU)("dropdown"),{_elDropdownSize:n}=qx(),o=n.value,{focusTrapRef:r,onKeydown:l}=(0,i.WQ)(ii,void 0),{contentRef:a,role:u,triggerId:c}=(0,i.WQ)(bx,void 0),{collectionRef:d,getItems:p}=(0,i.WQ)(gx,void 0),{rovingFocusGroupRef:f,rovingFocusGroupRootStyle:v,tabIndex:h,onBlur:m,onFocus:g,onMousedown:y}=(0,i.WQ)(xx,void 0),{collectionRef:b}=(0,i.WQ)(Cx,void 0),R=(0,i.EW)((()=>[t.b("menu"),t.bm("menu",null==o?void 0:o.value)])),w=Ck(a,d,r,f,b),E=Ea((t=>{var n;null==(n=e.onKeydown)||n.call(e,t)}),(e=>{const{currentTarget:t,code:n,target:o}=e;t.contains(o);if(aa.tab===n&&e.stopImmediatePropagation(),e.preventDefault(),o!==(0,s.R1)(a))return;if(!vx.includes(n))return;const r=p().filter((e=>!e.disabled)),l=r.map((e=>e.ref));fx.includes(n)&&l.reverse(),Ax(l)})),C=e=>{E(e),l(e)};return{size:o,rovingFocusGroupRootStyle:v,tabIndex:h,dropdownKls:R,role:u,triggerId:c,dropdownListWrapperRef:w,handleKeydown:C,onBlur:m,onFocus:g,onMousedown:y}}}),o_=["role","aria-labelledby"];function r_(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("ul",{ref:e.dropdownListWrapperRef,class:(0,u.C4)(e.dropdownKls),style:(0,u.Tr)(e.rovingFocusGroupRootStyle),tabindex:-1,role:e.role,"aria-labelledby":e.triggerId,onBlur:t[0]||(t[0]=(...t)=>e.onBlur&&e.onBlur(...t)),onFocus:t[1]||(t[1]=(...t)=>e.onFocus&&e.onFocus(...t)),onKeydown:t[2]||(t[2]=(0,ge.D$)(((...t)=>e.handleKeydown&&e.handleKeydown(...t)),["self"])),onMousedown:t[3]||(t[3]=(0,ge.D$)(((...t)=>e.onMousedown&&e.onMousedown(...t)),["self"]))},[(0,i.RG)(e.$slots,"default")],46,o_)}var l_=J(n_,[["render",r_],["__file","dropdown-menu.vue"]]);const a_=pe(Xx,{DropdownItem:t_,DropdownMenu:l_}),i_=he(t_),s_=he(l_),u_={viewBox:"0 0 79 86",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},c_=["id"],d_=["stop-color"],p_=["stop-color"],f_=["id"],v_=["stop-color"],h_=["stop-color"],m_=["id"],g_={id:"Illustrations",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},y_={id:"B-type",transform:"translate(-1268.000000, -535.000000)"},b_={id:"Group-2",transform:"translate(1268.000000, 535.000000)"},R_=["fill"],w_=["fill"],E_={id:"Group-Copy",transform:"translate(34.500000, 31.500000) scale(-1, 1) rotate(-25.000000) translate(-34.500000, -31.500000) translate(7.000000, 10.000000)"},C_=["fill"],k_=["fill"],x_=["fill"],__=["fill"],S_=["fill"],T_={id:"Rectangle-Copy-17",transform:"translate(53.000000, 45.000000)"},O_=["fill","xlink:href"],I_=["fill","mask"],A_=["fill"],L_=(0,i.pM)({name:"ImgEmpty"}),M_=(0,i.pM)({...L_,setup(e){const t=(0,ee.DU)("empty"),n=no();return(e,o)=>((0,i.uX)(),(0,i.CE)("svg",u_,[(0,i.Lk)("defs",null,[(0,i.Lk)("linearGradient",{id:`linearGradient-1-${(0,s.R1)(n)}`,x1:"38.8503086%",y1:"0%",x2:"61.1496914%",y2:"100%"},[(0,i.Lk)("stop",{"stop-color":`var(${(0,s.R1)(t).cssVarBlockName("fill-color-1")})`,offset:"0%"},null,8,d_),(0,i.Lk)("stop",{"stop-color":`var(${(0,s.R1)(t).cssVarBlockName("fill-color-4")})`,offset:"100%"},null,8,p_)],8,c_),(0,i.Lk)("linearGradient",{id:`linearGradient-2-${(0,s.R1)(n)}`,x1:"0%",y1:"9.5%",x2:"100%",y2:"90.5%"},[(0,i.Lk)("stop",{"stop-color":`var(${(0,s.R1)(t).cssVarBlockName("fill-color-1")})`,offset:"0%"},null,8,v_),(0,i.Lk)("stop",{"stop-color":`var(${(0,s.R1)(t).cssVarBlockName("fill-color-6")})`,offset:"100%"},null,8,h_)],8,f_),(0,i.Lk)("rect",{id:`path-3-${(0,s.R1)(n)}`,x:"0",y:"0",width:"17",height:"36"},null,8,m_)]),(0,i.Lk)("g",g_,[(0,i.Lk)("g",y_,[(0,i.Lk)("g",b_,[(0,i.Lk)("path",{id:"Oval-Copy-2",d:"M39.5,86 C61.3152476,86 79,83.9106622 79,81.3333333 C79,78.7560045 57.3152476,78 35.5,78 C13.6847524,78 0,78.7560045 0,81.3333333 C0,83.9106622 17.6847524,86 39.5,86 Z",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-3")})`},null,8,R_),(0,i.Lk)("polygon",{id:"Rectangle-Copy-14",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-7")})`,transform:"translate(27.500000, 51.500000) scale(1, -1) translate(-27.500000, -51.500000) ",points:"13 58 53 58 42 45 2 45"},null,8,w_),(0,i.Lk)("g",E_,[(0,i.Lk)("polygon",{id:"Rectangle-Copy-10",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-7")})`,transform:"translate(11.500000, 5.000000) scale(1, -1) translate(-11.500000, -5.000000) ",points:"2.84078316e-14 3 18 3 23 7 5 7"},null,8,C_),(0,i.Lk)("polygon",{id:"Rectangle-Copy-11",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-5")})`,points:"-3.69149156e-15 7 38 7 38 43 -3.69149156e-15 43"},null,8,k_),(0,i.Lk)("rect",{id:"Rectangle-Copy-12",fill:`url(#linearGradient-1-${(0,s.R1)(n)})`,transform:"translate(46.500000, 25.000000) scale(-1, 1) translate(-46.500000, -25.000000) ",x:"38",y:"7",width:"17",height:"36"},null,8,x_),(0,i.Lk)("polygon",{id:"Rectangle-Copy-13",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-2")})`,transform:"translate(39.500000, 3.500000) scale(-1, 1) translate(-39.500000, -3.500000) ",points:"24 7 41 7 55 -3.63806207e-12 38 -3.63806207e-12"},null,8,__)]),(0,i.Lk)("rect",{id:"Rectangle-Copy-15",fill:`url(#linearGradient-2-${(0,s.R1)(n)})`,x:"13",y:"45",width:"40",height:"36"},null,8,S_),(0,i.Lk)("g",T_,[(0,i.Lk)("use",{id:"Mask",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-8")})`,transform:"translate(8.500000, 18.000000) scale(-1, 1) translate(-8.500000, -18.000000) ","xlink:href":`#path-3-${(0,s.R1)(n)}`},null,8,O_),(0,i.Lk)("polygon",{id:"Rectangle-Copy",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-9")})`,mask:`url(#mask-4-${(0,s.R1)(n)})`,transform:"translate(12.000000, 9.000000) scale(-1, 1) translate(-12.000000, -9.000000) ",points:"7 0 24 0 20 18 7 16.5"},null,8,I_)]),(0,i.Lk)("polygon",{id:"Rectangle-Copy-18",fill:`var(${(0,s.R1)(t).cssVarBlockName("fill-color-2")})`,transform:"translate(66.000000, 51.500000) scale(-1, 1) translate(-66.000000, -51.500000) ",points:"62 45 79 45 70 58 53 58"},null,8,A_)])])])]))}});var N_=J(M_,[["__file","img-empty.vue"]]);const W_=(0,H.b_)({image:{type:String,default:""},imageSize:Number,description:{type:String,default:""}}),D_=["src"],F_={key:1},$_=(0,i.pM)({name:"ElEmpty"}),B_=(0,i.pM)({...$_,props:W_,setup(e){const t=e,{t:n}=(0,zu.Ym)(),o=(0,ee.DU)("empty"),r=(0,i.EW)((()=>t.description||n("el.table.emptyText"))),l=(0,i.EW)((()=>({width:(0,te._V)(t.imageSize)})));return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(o).b())},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).e("image")),style:(0,u.Tr)((0,s.R1)(l))},[e.image?((0,i.uX)(),(0,i.CE)("img",{key:0,src:e.image,ondragstart:"return false"},null,8,D_)):(0,i.RG)(e.$slots,"image",{key:1},(()=>[(0,i.bF)(N_)]))],6),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).e("description"))},[e.$slots.description?(0,i.RG)(e.$slots,"description",{key:0}):((0,i.uX)(),(0,i.CE)("p",F_,(0,u.v_)((0,s.R1)(r)),1))],2),e.$slots.default?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o).e("bottom"))},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0)],2))}});var P_=J(B_,[["__file","empty.vue"]]);const K_=pe(P_),j_=(0,H.b_)({size:{type:String,values:rs.I},disabled:Boolean}),V_=(0,H.b_)({...j_,model:Object,rules:{type:(0,H.jq)(Object)},labelPosition:{type:String,values:["left","right","top"],default:"right"},requireAsteriskPosition:{type:String,values:["left","right"],default:"left"},labelWidth:{type:[String,Number],default:""},labelSuffix:{type:String,default:""},inline:Boolean,inlineMessage:Boolean,statusIcon:Boolean,showMessage:{type:Boolean,default:!0},validateOnRuleChange:{type:Boolean,default:!0},hideRequiredAsterisk:Boolean,scrollToError:Boolean,scrollIntoViewOptions:{type:[Object,Boolean]}}),X_={validate:(e,t,n)=>((0,u.cy)(e)||(0,u.Kg)(e))&&(0,z.Lm)(t)&&(0,u.Kg)(n)},U_="ElForm";function H_(){const e=(0,s.KR)([]),t=(0,i.EW)((()=>{if(!e.value.length)return"0";const t=Math.max(...e.value);return t?`${t}px`:""}));function n(n){const o=e.value.indexOf(n);return-1===o&&"0"===t.value&&(0,ne.U)(U_,`unexpected width ${n}`),o}function o(t,o){if(t&&o){const r=n(o);e.value.splice(r,1,t)}else t&&e.value.push(t)}function r(t){const o=n(t);o>-1&&e.value.splice(o,1)}return{autoLabelWidth:t,registerLabelWidth:o,deregisterLabelWidth:r}}const z_=(e,t)=>{const n=pR(t);return n.length>0?e.filter((e=>e.prop&&n.includes(e.prop))):e},G_="ElForm",q_=(0,i.pM)({name:G_}),Y_=(0,i.pM)({...q_,props:V_,emits:X_,setup(e,{expose:t,emit:n}){const o=e,r=[],l=ao(),a=(0,ee.DU)("form"),c=(0,i.EW)((()=>{const{labelPosition:e,inline:t}=o;return[a.b(),a.m(l.value||"default"),{[a.m(`label-${e}`)]:e,[a.m("inline")]:t}]})),d=e=>r.find((t=>t.prop===e)),p=e=>{r.push(e)},f=e=>{e.prop&&r.splice(r.indexOf(e),1)},v=(e=[])=>{o.model?z_(r,e).forEach((e=>e.resetField())):(0,ne.U)(G_,"model is required for resetFields to work.")},h=(e=[])=>{z_(r,e).forEach((e=>e.clearValidate()))},m=(0,i.EW)((()=>{const e=!!o.model;return e||(0,ne.U)(G_,"model is required for validate to work."),e})),g=e=>{if(0===r.length)return[];const t=z_(r,e);return t.length?t:((0,ne.U)(G_,"please pass correct props!"),[])},y=async e=>R(void 0,e),b=async(e=[])=>{if(!m.value)return!1;const t=g(e);if(0===t.length)return!0;let n={};for(const r of t)try{await r.validate("")}catch(o){n={...n,...o}}return 0===Object.keys(n).length||Promise.reject(n)},R=async(e=[],t)=>{const n=!(0,u.Tn)(t);try{const n=await b(e);return!0===n&&(null==t||t(n)),n}catch(r){if(r instanceof Error)throw r;const e=r;return o.scrollToError&&w(Object.keys(e)[0]),null==t||t(!1,e),n&&Promise.reject(e)}},w=e=>{var t;const n=z_(r,e)[0];n&&(null==(t=n.$el)||t.scrollIntoView(o.scrollIntoViewOptions))};return(0,i.wB)((()=>o.rules),(()=>{o.validateOnRuleChange&&y().catch((e=>(0,ne.U)(e)))}),{deep:!0}),(0,i.Gt)(Qn,(0,s.Kh)({...(0,s.QW)(o),emit:n,resetFields:v,clearValidate:h,validateField:R,getField:d,addField:p,removeField:f,...H_()})),t({validate:y,validateField:R,resetFields:v,clearValidate:h,scrollToField:w}),(e,t)=>((0,i.uX)(),(0,i.CE)("form",{class:(0,u.C4)((0,s.R1)(c))},[(0,i.RG)(e.$slots,"default")],2))}});var Q_=J(Y_,[["__file","form.vue"]]);function Z_(){return Z_=Object.assign?Object.assign.bind():function(e){for(var t=1;t1?t-1:0),o=1;o=l)return e;switch(e){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(e$){return"[Circular]"}break;default:return e}}));return a}return e}function cS(e){return"string"===e||"url"===e||"hex"===e||"email"===e||"date"===e||"pattern"===e}function dS(e,t){return void 0===e||null===e||(!("array"!==t||!Array.isArray(e)||e.length)||!(!cS(t)||"string"!==typeof e||e))}function pS(e,t,n){var o=[],r=0,l=e.length;function a(e){o.push.apply(o,e||[]),r++,r===l&&n(o)}e.forEach((function(e){t(e,a)}))}function fS(e,t,n){var o=0,r=e.length;function l(a){if(a&&a.length)n(a);else{var i=o;o+=1,i()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},_S={integer:function(e){return _S.number(e)&&parseInt(e,10)===e},float:function(e){return _S.number(e)&&!_S.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(t){return!1}},date:function(e){return"function"===typeof e.getTime&&"function"===typeof e.getMonth&&"function"===typeof e.getYear&&!isNaN(e.getTime())},number:function(e){return!isNaN(e)&&"number"===typeof e},object:function(e){return"object"===typeof e&&!_S.array(e)},method:function(e){return"function"===typeof e},email:function(e){return"string"===typeof e&&e.length<=320&&!!e.match(xS.email)},url:function(e){return"string"===typeof e&&e.length<=2048&&!!e.match(kS())},hex:function(e){return"string"===typeof e&&!!e.match(xS.hex)}},SS=function(e,t,n,o,r){if(e.required&&void 0===t)ES(e,t,n,o,r);else{var l=["integer","float","array","regexp","object","method","email","number","date","url","hex"],a=e.type;l.indexOf(a)>-1?_S[a](t)||o.push(uS(r.messages.types[a],e.fullField,e.type)):a&&typeof t!==e.type&&o.push(uS(r.messages.types[a],e.fullField,e.type))}},TS=function(e,t,n,o,r){var l="number"===typeof e.len,a="number"===typeof e.min,i="number"===typeof e.max,s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,u=t,c=null,d="number"===typeof t,p="string"===typeof t,f=Array.isArray(t);if(d?c="number":p?c="string":f&&(c="array"),!c)return!1;f&&(u=t.length),p&&(u=t.replace(s,"_").length),l?u!==e.len&&o.push(uS(r.messages[c].len,e.fullField,e.len)):a&&!i&&ue.max?o.push(uS(r.messages[c].max,e.fullField,e.max)):a&&i&&(ue.max)&&o.push(uS(r.messages[c].range,e.fullField,e.min,e.max))},OS="enum",IS=function(e,t,n,o,r){e[OS]=Array.isArray(e[OS])?e[OS]:[],-1===e[OS].indexOf(t)&&o.push(uS(r.messages[OS],e.fullField,e[OS].join(", ")))},AS=function(e,t,n,o,r){if(e.pattern)if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||o.push(uS(r.messages.pattern.mismatch,e.fullField,t,e.pattern));else if("string"===typeof e.pattern){var l=new RegExp(e.pattern);l.test(t)||o.push(uS(r.messages.pattern.mismatch,e.fullField,t,e.pattern))}},LS={required:ES,whitespace:CS,type:SS,range:TS,enum:IS,pattern:AS},MS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t,"string")&&!e.required)return n();LS.required(e,t,o,l,r,"string"),dS(t,"string")||(LS.type(e,t,o,l,r),LS.range(e,t,o,l,r),LS.pattern(e,t,o,l,r),!0===e.whitespace&&LS.whitespace(e,t,o,l,r))}n(l)},NS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&LS.type(e,t,o,l,r)}n(l)},WS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(""===t&&(t=void 0),dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&(LS.type(e,t,o,l,r),LS.range(e,t,o,l,r))}n(l)},DS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&LS.type(e,t,o,l,r)}n(l)},FS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),dS(t)||LS.type(e,t,o,l,r)}n(l)},$S=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&(LS.type(e,t,o,l,r),LS.range(e,t,o,l,r))}n(l)},BS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&(LS.type(e,t,o,l,r),LS.range(e,t,o,l,r))}n(l)},PS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if((void 0===t||null===t)&&!e.required)return n();LS.required(e,t,o,l,r,"array"),void 0!==t&&null!==t&&(LS.type(e,t,o,l,r),LS.range(e,t,o,l,r))}n(l)},KS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&LS.type(e,t,o,l,r)}n(l)},jS="enum",VS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r),void 0!==t&&LS[jS](e,t,o,l,r)}n(l)},XS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t,"string")&&!e.required)return n();LS.required(e,t,o,l,r),dS(t,"string")||LS.pattern(e,t,o,l,r)}n(l)},US=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t,"date")&&!e.required)return n();var i;if(LS.required(e,t,o,l,r),!dS(t,"date"))i=t instanceof Date?t:new Date(t),LS.type(e,i,o,l,r),i&&LS.range(e,i.getTime(),o,l,r)}n(l)},HS=function(e,t,n,o,r){var l=[],a=Array.isArray(t)?"array":typeof t;LS.required(e,t,o,l,r,a),n(l)},zS=function(e,t,n,o,r){var l=e.type,a=[],i=e.required||!e.required&&o.hasOwnProperty(e.field);if(i){if(dS(t,l)&&!e.required)return n();LS.required(e,t,o,a,r,l),dS(t,l)||LS.type(e,t,o,a,r)}n(a)},GS=function(e,t,n,o,r){var l=[],a=e.required||!e.required&&o.hasOwnProperty(e.field);if(a){if(dS(t)&&!e.required)return n();LS.required(e,t,o,l,r)}n(l)},qS={string:MS,method:NS,number:WS,boolean:DS,regexp:FS,integer:$S,float:BS,array:PS,object:KS,enum:VS,pattern:XS,date:US,url:zS,hex:zS,email:zS,required:HS,any:GS};function YS(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var QS=YS(),ZS=function(){function e(e){this.rules=null,this._messages=QS,this.define(e)}var t=e.prototype;return t.define=function(e){var t=this;if(!e)throw new Error("Cannot configure a schema with no rules");if("object"!==typeof e||Array.isArray(e))throw new Error("Rules must be an object");this.rules={},Object.keys(e).forEach((function(n){var o=e[n];t.rules[n]=Array.isArray(o)?o:[o]}))},t.messages=function(e){return e&&(this._messages=RS(YS(),e)),this._messages},t.validate=function(t,n,o){var r=this;void 0===n&&(n={}),void 0===o&&(o=function(){});var l=t,a=n,i=o;if("function"===typeof a&&(i=a,a={}),!this.rules||0===Object.keys(this.rules).length)return i&&i(null,l),Promise.resolve(l);function s(e){var t=[],n={};function o(e){var n;Array.isArray(e)?t=(n=t).concat.apply(n,e):t.push(e)}for(var r=0;r");const r=(0,ee.DU)("form"),l=(0,s.KR)(),a=(0,s.KR)(0),u=()=>{var e;if(null==(e=l.value)?void 0:e.firstElementChild){const e=window.getComputedStyle(l.value.firstElementChild).width;return Math.ceil(Number.parseFloat(e))}return 0},c=(o="update")=>{(0,i.dY)((()=>{t.default&&e.isAutoWidth&&("update"===o?a.value=u():"remove"===o&&(null==n||n.deregisterLabelWidth(a.value)))}))},d=()=>c("update");return(0,i.sV)((()=>{d()})),(0,i.xo)((()=>{c("remove")})),(0,i.$u)((()=>d())),(0,i.wB)(a,((t,o)=>{e.updateAll&&(null==n||n.registerLabelWidth(t,o))})),T((0,i.EW)((()=>{var e,t;return null!=(t=null==(e=l.value)?void 0:e.firstElementChild)?t:null})),d),()=>{var s,u;if(!t)return null;const{isAutoWidth:c}=e;if(c){const e=null==n?void 0:n.autoLabelWidth,u=null==o?void 0:o.hasLabel,c={};if(u&&e&&"auto"!==e){const t=Math.max(0,Number.parseInt(e,10)-a.value),o="left"===n.labelPosition?"marginRight":"marginLeft";t&&(c[o]=`${t}px`)}return(0,i.bF)("div",{ref:l,class:[r.be("item","label-wrap")],style:c},[null==(s=t.default)?void 0:s.call(t)])}return(0,i.bF)(i.FK,{ref:l},[null==(u=t.default)?void 0:u.call(t)])}}});const aT=["role","aria-labelledby"],iT=(0,i.pM)({name:"ElFormItem"}),sT=(0,i.pM)({...iT,props:oT,setup(e,{expose:t}){const n=e,o=(0,i.Ht)(),r=(0,i.WQ)(Qn,void 0),l=(0,i.WQ)(Zn,void 0),a=ao(void 0,{formItem:!1}),d=(0,ee.DU)("form-item"),p=no().value,f=(0,s.KR)([]),v=(0,s.KR)(""),h=(0,c.V7)(v,100),m=(0,s.KR)(""),g=(0,s.KR)();let y,b=!1;const R=(0,i.EW)((()=>{if("top"===(null==r?void 0:r.labelPosition))return{};const e=(0,te._V)(n.labelWidth||(null==r?void 0:r.labelWidth)||"");return e?{width:e}:{}})),w=(0,i.EW)((()=>{if("top"===(null==r?void 0:r.labelPosition)||(null==r?void 0:r.inline))return{};if(!n.label&&!n.labelWidth&&O)return{};const e=(0,te._V)(n.labelWidth||(null==r?void 0:r.labelWidth)||"");return n.label||o.label?{}:{marginLeft:e}})),E=(0,i.EW)((()=>[d.b(),d.m(a.value),d.is("error","error"===v.value),d.is("validating","validating"===v.value),d.is("success","success"===v.value),d.is("required",N.value||n.required),d.is("no-asterisk",null==r?void 0:r.hideRequiredAsterisk),"right"===(null==r?void 0:r.requireAsteriskPosition)?"asterisk-right":"asterisk-left",{[d.m("feedback")]:null==r?void 0:r.statusIcon}])),C=(0,i.EW)((()=>(0,z.Lm)(n.inlineMessage)?n.inlineMessage:(null==r?void 0:r.inlineMessage)||!1)),k=(0,i.EW)((()=>[d.e("error"),{[d.em("error","inline")]:C.value}])),x=(0,i.EW)((()=>n.prop?(0,u.Kg)(n.prop)?n.prop:n.prop.join("."):"")),_=(0,i.EW)((()=>!(!n.label&&!o.label))),S=(0,i.EW)((()=>n.for||(1===f.value.length?f.value[0]:void 0))),T=(0,i.EW)((()=>!S.value&&_.value)),O=!!l,I=(0,i.EW)((()=>{const e=null==r?void 0:r.model;if(e&&n.prop)return(0,Ce.GT)(e,n.prop).value})),A=(0,i.EW)((()=>{const{required:e}=n,t=[];n.rules&&t.push(...pR(n.rules));const o=null==r?void 0:r.rules;if(o&&n.prop){const e=(0,Ce.GT)(o,n.prop).value;e&&t.push(...pR(e))}if(void 0!==e){const n=t.map(((e,t)=>[e,t])).filter((([e])=>Object.keys(e).includes("required")));if(n.length>0)for(const[o,r]of n)o.required!==e&&(t[r]={...o,required:e});else t.push({required:e})}return t})),L=(0,i.EW)((()=>A.value.length>0)),M=e=>{const t=A.value;return t.filter((t=>!t.trigger||!e||(Array.isArray(t.trigger)?t.trigger.includes(e):t.trigger===e))).map((({trigger:e,...t})=>t))},N=(0,i.EW)((()=>A.value.some((e=>e.required)))),W=(0,i.EW)((()=>{var e;return"error"===h.value&&n.showMessage&&(null==(e=null==r?void 0:r.showMessage)||e)})),D=(0,i.EW)((()=>`${n.label||""}${(null==r?void 0:r.labelSuffix)||""}`)),F=e=>{v.value=e},$=e=>{var t,o;const{errors:l,fields:a}=e;l&&a||console.error(e),F("error"),m.value=l?null!=(o=null==(t=null==l?void 0:l[0])?void 0:t.message)?o:`${n.prop} is required`:"",null==r||r.emit("validate",n.prop,!1,m.value)},B=()=>{F("success"),null==r||r.emit("validate",n.prop,!0,"")},P=async e=>{const t=x.value,n=new ZS({[t]:e});return n.validate({[t]:I.value},{firstFields:!0}).then((()=>(B(),!0))).catch((e=>($(e),Promise.reject(e))))},K=async(e,t)=>{if(b||!n.prop)return!1;const o=(0,u.Tn)(t);if(!L.value)return null==t||t(!1),!1;const r=M(e);return 0===r.length?(null==t||t(!0),!0):(F("validating"),P(r).then((()=>(null==t||t(!0),!0))).catch((e=>{const{fields:n}=e;return null==t||t(!1,n),!o&&Promise.reject(n)})))},j=()=>{F(""),m.value="",b=!1},V=async()=>{const e=null==r?void 0:r.model;if(!e||!n.prop)return;const t=(0,Ce.GT)(e,n.prop);b=!0,t.value=tT(y),await(0,i.dY)(),j(),b=!1},X=e=>{f.value.includes(e)||f.value.push(e)},U=e=>{f.value=f.value.filter((t=>t!==e))};(0,i.wB)((()=>n.error),(e=>{m.value=e||"",F(e?"error":"")}),{immediate:!0}),(0,i.wB)((()=>n.validateStatus),(e=>F(e||"")));const H=(0,s.Kh)({...(0,s.QW)(n),$el:g,size:a,validateState:v,labelId:p,inputIds:f,isGroup:T,hasLabel:_,fieldValue:I,addInputId:X,removeInputId:U,resetField:V,clearValidate:j,validate:K});return(0,i.Gt)(Zn,H),(0,i.sV)((()=>{n.prop&&(null==r||r.addField(H),y=tT(I.value))})),(0,i.xo)((()=>{null==r||r.removeField(H)})),t({size:a,validateMessage:m,validateState:v,validate:K,clearValidate:j,resetField:V}),(e,t)=>{var n;return(0,i.uX)(),(0,i.CE)("div",{ref_key:"formItemRef",ref:g,class:(0,u.C4)((0,s.R1)(E)),role:(0,s.R1)(T)?"group":void 0,"aria-labelledby":(0,s.R1)(T)?(0,s.R1)(p):void 0},[(0,i.bF)((0,s.R1)(lT),{"is-auto-width":"auto"===(0,s.R1)(R).width,"update-all":"auto"===(null==(n=(0,s.R1)(r))?void 0:n.labelWidth)},{default:(0,i.k6)((()=>[(0,s.R1)(_)?((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(S)?"label":"div"),{key:0,id:(0,s.R1)(p),for:(0,s.R1)(S),class:(0,u.C4)((0,s.R1)(d).e("label")),style:(0,u.Tr)((0,s.R1)(R))},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"label",{label:(0,s.R1)(D)},(()=>[(0,i.eW)((0,u.v_)((0,s.R1)(D)),1)]))])),_:3},8,["id","for","class","style"])):(0,i.Q3)("v-if",!0)])),_:3},8,["is-auto-width","update-all"]),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(d).e("content")),style:(0,u.Tr)((0,s.R1)(w))},[(0,i.RG)(e.$slots,"default"),(0,i.bF)(ge.F,{name:`${(0,s.R1)(d).namespace.value}-zoom-in-top`},{default:(0,i.k6)((()=>[(0,s.R1)(W)?(0,i.RG)(e.$slots,"error",{key:0,error:m.value},(()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(k))},(0,u.v_)(m.value),3)])):(0,i.Q3)("v-if",!0)])),_:3},8,["name"])],6)],10,aT)}}});var uT=J(sT,[["__file","form-item.vue"]]);const cT=pe(Q_,{FormItem:uT}),dT=he(uT),pT=(0,H.b_)({urlList:{type:(0,H.jq)(Array),default:()=>Xn([])},zIndex:{type:Number},initialIndex:{type:Number,default:0},infinite:{type:Boolean,default:!0},hideOnClickModal:Boolean,teleported:Boolean,closeOnPressEscape:{type:Boolean,default:!0},zoomRate:{type:Number,default:1.2},minScale:{type:Number,default:.2},maxScale:{type:Number,default:7},crossorigin:{type:(0,H.jq)(String)}}),fT={close:()=>!0,switch:e=>(0,z.Et)(e),rotate:e=>(0,z.Et)(e)},vT=["src","crossorigin"],hT=(0,i.pM)({name:"ElImageViewer"}),mT=(0,i.pM)({...hT,props:pT,emits:fT,setup(e,{expose:t,emit:n}){var o;const r=e,l={CONTAIN:{name:"contain",icon:(0,s.IG)(ut)},ORIGINAL:{name:"original",icon:(0,s.IG)(Mt)}},{t:a}=(0,zu.Ym)(),c=(0,ee.DU)("image-viewer"),{nextZIndex:d}=(0,Za.YK)(),p=(0,s.KR)(),f=(0,s.KR)([]),v=(0,s.uY)(),m=(0,s.KR)(!0),g=(0,s.KR)(r.initialIndex),y=(0,s.IJ)(l.CONTAIN),b=(0,s.KR)({scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}),R=(0,s.KR)(null!=(o=r.zIndex)?o:d()),w=(0,i.EW)((()=>{const{urlList:e}=r;return e.length<=1})),E=(0,i.EW)((()=>0===g.value)),C=(0,i.EW)((()=>g.value===r.urlList.length-1)),k=(0,i.EW)((()=>r.urlList[g.value])),x=(0,i.EW)((()=>[c.e("btn"),c.e("prev"),c.is("disabled",!r.infinite&&E.value)])),_=(0,i.EW)((()=>[c.e("btn"),c.e("next"),c.is("disabled",!r.infinite&&C.value)])),S=(0,i.EW)((()=>{const{scale:e,deg:t,offsetX:n,offsetY:o,enableTransition:r}=b.value;let a=n/e,i=o/e;switch(t%360){case 90:case-270:[a,i]=[i,-a];break;case 180:case-180:[a,i]=[-a,-i];break;case 270:case-90:[a,i]=[-i,a];break}const s={transform:`scale(${e}) rotate(${t}deg) translate(${a}px, ${i}px)`,transition:r?"transform .3s":""};return y.value.name===l.CONTAIN.name&&(s.maxWidth=s.maxHeight="100%"),s}));function T(){I(),n("close")}function O(){const e=Ec((e=>{switch(e.code){case aa.esc:r.closeOnPressEscape&&T();break;case aa.space:W();break;case aa.left:F();break;case aa.up:B("zoomIn");break;case aa.right:$();break;case aa.down:B("zoomOut");break}})),t=Ec((e=>{const t=e.deltaY||e.deltaX;B(t<0?"zoomIn":"zoomOut",{zoomRate:r.zoomRate,enableTransition:!1})}));v.run((()=>{h(document,"keydown",e),h(document,"wheel",t)}))}function I(){v.stop()}function A(){m.value=!1}function L(e){m.value=!1,e.target.alt=a("el.image.error")}function M(e){if(m.value||0!==e.button||!p.value)return;b.value.enableTransition=!1;const{offsetX:t,offsetY:n}=b.value,o=e.pageX,r=e.pageY,l=Ec((e=>{b.value={...b.value,offsetX:t+e.pageX-o,offsetY:n+e.pageY-r}})),a=h(document,"mousemove",l);h(document,"mouseup",(()=>{a()})),e.preventDefault()}function N(){b.value={scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}}function W(){if(m.value)return;const e=(0,Ce.YD)(l),t=Object.values(l),n=y.value.name,o=t.findIndex((e=>e.name===n)),r=(o+1)%e.length;y.value=l[e[r]],N()}function D(e){const t=r.urlList.length;g.value=(e+t)%t}function F(){E.value&&!r.infinite||D(g.value-1)}function $(){C.value&&!r.infinite||D(g.value+1)}function B(e,t={}){if(m.value)return;const{minScale:o,maxScale:l}=r,{zoomRate:a,rotateDeg:i,enableTransition:s}={zoomRate:r.zoomRate,rotateDeg:90,enableTransition:!0,...t};switch(e){case"zoomOut":b.value.scale>o&&(b.value.scale=Number.parseFloat((b.value.scale/a).toFixed(3)));break;case"zoomIn":b.value.scale{(0,i.dY)((()=>{const e=f.value[0];(null==e?void 0:e.complete)||(m.value=!0)}))})),(0,i.wB)(g,(e=>{N(),n("switch",e)})),(0,i.sV)((()=>{var e,t;O(),null==(t=null==(e=p.value)?void 0:e.focus)||t.call(e)})),t({setActiveItem:D}),(e,t)=>((0,i.uX)(),(0,i.Wv)(i.Im,{to:"body",disabled:!e.teleported},[(0,i.bF)(ge.eB,{name:"viewer-fade",appear:""},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref_key:"wrapper",ref:p,tabindex:-1,class:(0,u.C4)((0,s.R1)(c).e("wrapper")),style:(0,u.Tr)({zIndex:R.value})},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(c).e("mask")),onClick:t[0]||(t[0]=(0,ge.D$)((t=>e.hideOnClickModal&&T()),["self"]))},null,2),(0,i.Q3)(" CLOSE "),(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(c).e("btn"),(0,s.R1)(c).e("close")]),onClick:T},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1})],2),(0,i.Q3)(" ARROW "),(0,s.R1)(w)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(x)),onClick:F},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1})],2),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(_)),onClick:$},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})],2)],64)),(0,i.Q3)(" ACTIONS "),(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(c).e("btn"),(0,s.R1)(c).e("actions")])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(c).e("actions__inner"))},[(0,i.bF)((0,s.R1)(Ee),{onClick:t[1]||(t[1]=e=>B("zoomOut"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Jt))])),_:1}),(0,i.bF)((0,s.R1)(Ee),{onClick:t[2]||(t[2]=e=>B("zoomIn"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Qt))])),_:1}),(0,i.Lk)("i",{class:(0,u.C4)((0,s.R1)(c).e("actions__divider"))},null,2),(0,i.bF)((0,s.R1)(Ee),{onClick:W},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(y).icon)))])),_:1}),(0,i.Lk)("i",{class:(0,u.C4)((0,s.R1)(c).e("actions__divider"))},null,2),(0,i.bF)((0,s.R1)(Ee),{onClick:t[3]||(t[3]=e=>B("anticlockwise"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ot))])),_:1}),(0,i.bF)((0,s.R1)(Ee),{onClick:t[4]||(t[4]=e=>B("clockwise"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(At))])),_:1})],2)],2),(0,i.Q3)(" CANVAS "),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(c).e("canvas"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.urlList,((t,n)=>(0,i.bo)(((0,i.uX)(),(0,i.CE)("img",{ref_for:!0,ref:e=>f.value[n]=e,key:t,src:t,style:(0,u.Tr)((0,s.R1)(S)),class:(0,u.C4)((0,s.R1)(c).e("img")),crossorigin:e.crossorigin,onLoad:A,onError:L,onMousedown:M},null,46,vT)),[[ge.aG,n===g.value]]))),128))],2),(0,i.RG)(e.$slots,"default")],6)])),_:3})],8,["disabled"]))}});var gT=J(mT,[["__file","image-viewer.vue"]]);const yT=pe(gT),bT=(0,H.b_)({hideOnClickModal:Boolean,src:{type:String,default:""},fit:{type:String,values:["","contain","cover","fill","none","scale-down"],default:""},loading:{type:String,values:["eager","lazy"]},lazy:Boolean,scrollContainer:{type:(0,H.jq)([String,Object])},previewSrcList:{type:(0,H.jq)(Array),default:()=>Xn([])},previewTeleported:Boolean,zIndex:{type:Number},initialIndex:{type:Number,default:0},infinite:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},zoomRate:{type:Number,default:1.2},minScale:{type:Number,default:.2},maxScale:{type:Number,default:7},crossorigin:{type:(0,H.jq)(String)}}),RT={load:e=>e instanceof Event,error:e=>e instanceof Event,switch:e=>(0,z.Et)(e),close:()=>!0,show:()=>!0},wT=["src","loading","crossorigin"],ET={key:0},CT=(0,i.pM)({name:"ElImage",inheritAttrs:!1}),kT=(0,i.pM)({...CT,props:bT,emits:RT,setup(e,{emit:t}){const n=e;let o="";const{t:r}=(0,zu.Ym)(),l=(0,ee.DU)("image"),a=(0,i.OA)(),d=Yn(),p=(0,s.KR)(),f=(0,s.KR)(!1),v=(0,s.KR)(!0),m=(0,s.KR)(!1),g=(0,s.KR)(),y=(0,s.KR)(),b=c.oc&&"loading"in HTMLImageElement.prototype;let R,w;const E=(0,i.EW)((()=>[l.e("inner"),x.value&&l.e("preview"),v.value&&l.is("loading")])),C=(0,i.EW)((()=>a.style)),k=(0,i.EW)((()=>{const{fit:e}=n;return c.oc&&e?{objectFit:e}:{}})),x=(0,i.EW)((()=>{const{previewSrcList:e}=n;return Array.isArray(e)&&e.length>0})),_=(0,i.EW)((()=>{const{previewSrcList:e,initialIndex:t}=n;let o=t;return t>e.length-1&&(o=0),o})),S=(0,i.EW)((()=>"eager"!==n.loading&&(!b&&"lazy"===n.loading||n.lazy))),T=()=>{c.oc&&(v.value=!0,f.value=!1,p.value=n.src)};function O(e){v.value=!1,f.value=!1,t("load",e)}function I(e){v.value=!1,f.value=!0,t("error",e)}function A(){DR(g.value,y.value)&&(T(),N())}const L=(0,c.k3)(A,200,!0);async function M(){var e;if(!c.oc)return;await(0,i.dY)();const{scrollContainer:t}=n;(0,z.vq)(t)?y.value=t:(0,u.Kg)(t)&&""!==t?y.value=null!=(e=document.querySelector(t))?e:void 0:g.value&&(y.value=re(g.value)),y.value&&(R=h(y,"scroll",L),setTimeout((()=>A()),100))}function N(){c.oc&&y.value&&L&&(null==R||R(),y.value=void 0)}function W(e){if(e.ctrlKey)return e.deltaY<0||e.deltaY>0?(e.preventDefault(),!1):void 0}function D(){x.value&&(w=h("wheel",W,{passive:!1}),o=document.body.style.overflow,document.body.style.overflow="hidden",m.value=!0,t("show"))}function F(){null==w||w(),document.body.style.overflow=o,m.value=!1,t("close")}function $(e){t("switch",e)}return(0,i.wB)((()=>n.src),(()=>{S.value?(v.value=!0,f.value=!1,N(),M()):T()})),(0,i.sV)((()=>{S.value?M():T()})),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"container",ref:g,class:(0,u.C4)([(0,s.R1)(l).b(),e.$attrs.class]),style:(0,u.Tr)((0,s.R1)(C))},[f.value?(0,i.RG)(e.$slots,"error",{key:0},(()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).e("error"))},(0,u.v_)((0,s.R1)(r)("el.image.error")),3)])):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[void 0!==p.value?((0,i.uX)(),(0,i.CE)("img",(0,i.v6)({key:0},(0,s.R1)(d),{src:p.value,loading:e.loading,style:(0,s.R1)(k),class:(0,s.R1)(E),crossorigin:e.crossorigin,onClick:D,onLoad:O,onError:I}),null,16,wT)):(0,i.Q3)("v-if",!0),v.value?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(l).e("wrapper"))},[(0,i.RG)(e.$slots,"placeholder",{},(()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(l).e("placeholder"))},null,2)]))],2)):(0,i.Q3)("v-if",!0)],64)),(0,s.R1)(x)?((0,i.uX)(),(0,i.CE)(i.FK,{key:2},[m.value?((0,i.uX)(),(0,i.Wv)((0,s.R1)(yT),{key:0,"z-index":e.zIndex,"initial-index":(0,s.R1)(_),infinite:e.infinite,"zoom-rate":e.zoomRate,"min-scale":e.minScale,"max-scale":e.maxScale,"url-list":e.previewSrcList,"hide-on-click-modal":e.hideOnClickModal,teleported:e.previewTeleported,"close-on-press-escape":e.closeOnPressEscape,onClose:F,onSwitch:$},{default:(0,i.k6)((()=>[e.$slots.viewer?((0,i.uX)(),(0,i.CE)("div",ET,[(0,i.RG)(e.$slots,"viewer")])):(0,i.Q3)("v-if",!0)])),_:3},8,["z-index","initial-index","infinite","zoom-rate","min-scale","max-scale","url-list","hide-on-click-modal","teleported","close-on-press-escape"])):(0,i.Q3)("v-if",!0)],64)):(0,i.Q3)("v-if",!0)],6))}});var xT=J(kT,[["__file","image.vue"]]);const _T=pe(xT),ST=(0,H.b_)({id:{type:String,default:void 0},step:{type:Number,default:1},stepStrictly:Boolean,max:{type:Number,default:Number.POSITIVE_INFINITY},min:{type:Number,default:Number.NEGATIVE_INFINITY},modelValue:Number,readonly:Boolean,disabled:Boolean,size:Vn.mU,controls:{type:Boolean,default:!0},controlsPosition:{type:String,default:"",values:["","right"]},valueOnClear:{type:[String,Number,null],validator:e=>null===e||(0,z.Et)(e)||["min","max"].includes(e),default:null},name:String,label:String,placeholder:String,precision:{type:Number,validator:e=>e>=0&&e===Number.parseInt(`${e}`,10)},validateEvent:{type:Boolean,default:!0}}),TT={[q]:(e,t)=>t!==e,blur:e=>e instanceof FocusEvent,focus:e=>e instanceof FocusEvent,[Y]:e=>(0,z.Et)(e)||(0,Dn.A)(e),[G]:e=>(0,z.Et)(e)||(0,Dn.A)(e)},OT=["aria-label","onKeydown"],IT=["aria-label","onKeydown"],AT=(0,i.pM)({name:"ElInputNumber"}),LT=(0,i.pM)({...AT,props:ST,emits:TT,setup(e,{expose:t,emit:n}){const o=e,{t:r}=(0,zu.Ym)(),l=(0,ee.DU)("input-number"),a=(0,s.KR)(),c=(0,s.Kh)({currentValue:o.modelValue,userInput:null}),{formItem:d}=oo(),p=(0,i.EW)((()=>(0,z.Et)(o.modelValue)&&o.modelValue<=o.min)),f=(0,i.EW)((()=>(0,z.Et)(o.modelValue)&&o.modelValue>=o.max)),v=(0,i.EW)((()=>{const e=R(o.step);return(0,z.b0)(o.precision)?Math.max(R(o.modelValue),e):(e>o.precision&&(0,ne.U)("InputNumber","precision should not be less than the decimal places of step"),o.precision)})),h=(0,i.EW)((()=>o.controls&&"right"===o.controlsPosition)),m=ao(),g=io(),y=(0,i.EW)((()=>{if(null!==c.userInput)return c.userInput;let e=c.currentValue;if((0,Dn.A)(e))return"";if((0,z.Et)(e)){if(Number.isNaN(e))return"";(0,z.b0)(o.precision)||(e=e.toFixed(o.precision))}return e})),b=(e,t)=>{if((0,z.b0)(t)&&(t=v.value),0===t)return Math.round(e);let n=String(e);const o=n.indexOf(".");if(-1===o)return e;const r=n.replace(".","").split(""),l=r[o+t];if(!l)return e;const a=n.length;return"5"===n.charAt(a-1)&&(n=`${n.slice(0,Math.max(0,a-1))}6`),Number.parseFloat(Number(n).toFixed(t))},R=e=>{if((0,Dn.A)(e))return 0;const t=e.toString(),n=t.indexOf(".");let o=0;return-1!==n&&(o=t.length-n-1),o},w=(e,t=1)=>(0,z.Et)(e)?b(e+o.step*t):c.currentValue,E=()=>{if(o.readonly||g.value||f.value)return;const e=Number(y.value)||0,t=w(e);x(t),n(Y,c.currentValue),L()},C=()=>{if(o.readonly||g.value||p.value)return;const e=Number(y.value)||0,t=w(e,-1);x(t),n(Y,c.currentValue),L()},k=(e,t)=>{const{max:r,min:l,step:a,precision:i,stepStrictly:s,valueOnClear:c}=o;rr||dr?r:l,t&&n(G,d)),d},x=(e,t=!0)=>{var r;const l=c.currentValue,a=k(e);t?l!==a&&(c.userInput=null,n(G,a),n(q,a,l),o.validateEvent&&(null==(r=null==d?void 0:d.validate)||r.call(d,"change").catch((e=>(0,ne.U)(e)))),c.currentValue=a):n(G,a)},_=e=>{c.userInput=e;const t=""===e?null:Number(e);n(Y,t),x(t,!1)},S=e=>{const t=""!==e?Number(e):"";((0,z.Et)(t)&&!Number.isNaN(t)||""===e)&&x(t),L(),c.userInput=null},T=()=>{var e,t;null==(t=null==(e=a.value)?void 0:e.focus)||t.call(e)},O=()=>{var e,t;null==(t=null==(e=a.value)?void 0:e.blur)||t.call(e)},I=e=>{n("focus",e)},A=e=>{var t;c.userInput=null,n("blur",e),o.validateEvent&&(null==(t=null==d?void 0:d.validate)||t.call(d,"blur").catch((e=>(0,ne.U)(e))))},L=()=>{c.currentValue!==o.modelValue&&(c.currentValue=o.modelValue)},M=e=>{document.activeElement===e.target&&e.preventDefault()};return(0,i.wB)((()=>o.modelValue),((e,t)=>{const n=k(e,!0);null===c.userInput&&n!==t&&(c.currentValue=n)}),{immediate:!0}),(0,i.sV)((()=>{var e;const{min:t,max:r,modelValue:l}=o,i=null==(e=a.value)?void 0:e.input;if(i.setAttribute("role","spinbutton"),Number.isFinite(r)?i.setAttribute("aria-valuemax",String(r)):i.removeAttribute("aria-valuemax"),Number.isFinite(t)?i.setAttribute("aria-valuemin",String(t)):i.removeAttribute("aria-valuemin"),i.setAttribute("aria-valuenow",c.currentValue||0===c.currentValue?String(c.currentValue):""),i.setAttribute("aria-disabled",String(g.value)),!(0,z.Et)(l)&&null!=l){let e=Number(l);Number.isNaN(e)&&(e=null),n(G,e)}})),(0,i.$u)((()=>{var e,t;const n=null==(e=a.value)?void 0:e.input;null==n||n.setAttribute("aria-valuenow",`${null!=(t=c.currentValue)?t:""}`)})),t({focus:T,blur:O}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(l).b(),(0,s.R1)(l).m((0,s.R1)(m)),(0,s.R1)(l).is("disabled",(0,s.R1)(g)),(0,s.R1)(l).is("without-controls",!e.controls),(0,s.R1)(l).is("controls-right",(0,s.R1)(h))]),onDragstart:t[0]||(t[0]=(0,ge.D$)((()=>{}),["prevent"]))},[e.controls?(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{key:0,role:"button","aria-label":(0,s.R1)(r)("el.inputNumber.decrease"),class:(0,u.C4)([(0,s.R1)(l).e("decrease"),(0,s.R1)(l).is("disabled",(0,s.R1)(p))]),onKeydown:(0,ge.jR)(C,["enter"])},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,s.R1)(h)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(xe),{key:0})):((0,i.uX)(),(0,i.Wv)((0,s.R1)(gt),{key:1}))])),_:1})],42,OT)),[[(0,s.R1)(lC),C]]):(0,i.Q3)("v-if",!0),e.controls?(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{key:1,role:"button","aria-label":(0,s.R1)(r)("el.inputNumber.increase"),class:(0,u.C4)([(0,s.R1)(l).e("increase"),(0,s.R1)(l).is("disabled",(0,s.R1)(f))]),onKeydown:(0,ge.jR)(E,["enter"])},[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,s.R1)(h)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ae),{key:0})):((0,i.uX)(),(0,i.Wv)((0,s.R1)(xt),{key:1}))])),_:1})],42,IT)),[[(0,s.R1)(lC),E]]):(0,i.Q3)("v-if",!0),(0,i.bF)((0,s.R1)(yo),{id:e.id,ref_key:"input",ref:a,type:"number",step:e.step,"model-value":(0,s.R1)(y),placeholder:e.placeholder,readonly:e.readonly,disabled:(0,s.R1)(g),size:(0,s.R1)(m),max:e.max,min:e.min,name:e.name,label:e.label,"validate-event":!1,onWheel:M,onKeydown:[(0,ge.jR)((0,ge.D$)(E,["prevent"]),["up"]),(0,ge.jR)((0,ge.D$)(C,["prevent"]),["down"])],onBlur:A,onFocus:I,onInput:_,onChange:S},null,8,["id","step","model-value","placeholder","readonly","disabled","size","max","min","name","label","onKeydown"])],34))}});var MT=J(LT,[["__file","input-number.vue"]]);const NT=pe(MT),WT=(0,H.b_)({type:{type:String,values:["primary","success","warning","info","danger","default"],default:"default"},underline:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},href:{type:String,default:""},target:{type:String,default:"_self"},icon:{type:en}}),DT={click:e=>e instanceof MouseEvent},FT=["href","target"],$T=(0,i.pM)({name:"ElLink"}),BT=(0,i.pM)({...$T,props:WT,emits:DT,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("link"),r=(0,i.EW)((()=>[o.b(),o.m(n.type),o.is("disabled",n.disabled),o.is("underline",n.underline&&!n.disabled)]));function l(e){n.disabled||t("click",e)}return(e,t)=>((0,i.uX)(),(0,i.CE)("a",{class:(0,u.C4)((0,s.R1)(r)),href:e.disabled||!e.href?void 0:e.href,target:e.disabled||!e.href?void 0:e.target,onClick:l},[e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1})):(0,i.Q3)("v-if",!0),e.$slots.default?((0,i.uX)(),(0,i.CE)("span",{key:1,class:(0,u.C4)((0,s.R1)(o).e("inner"))},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0),e.$slots.icon?(0,i.RG)(e.$slots,"icon",{key:2}):(0,i.Q3)("v-if",!0)],10,FT))}});var PT=J(BT,[["__file","link.vue"]]);const KT=pe(PT);class jT{constructor(e,t){this.parent=e,this.domNode=t,this.subIndex=0,this.subIndex=0,this.init()}init(){this.subMenuItems=this.domNode.querySelectorAll("li"),this.addListeners()}gotoSubIndex(e){e===this.subMenuItems.length?e=0:e<0&&(e=this.subMenuItems.length-1),this.subMenuItems[e].focus(),this.subIndex=e}addListeners(){const e=this.parent.domNode;Array.prototype.forEach.call(this.subMenuItems,(t=>{t.addEventListener("keydown",(t=>{let n=!1;switch(t.code){case aa.down:this.gotoSubIndex(this.subIndex+1),n=!0;break;case aa.up:this.gotoSubIndex(this.subIndex-1),n=!0;break;case aa.tab:vb(e,"mouseleave");break;case aa.enter:case aa.space:n=!0,t.currentTarget.click();break}return n&&(t.preventDefault(),t.stopPropagation()),!1}))}))}}class VT{constructor(e,t){this.domNode=e,this.submenu=null,this.submenu=null,this.init(t)}init(e){this.domNode.setAttribute("tabindex","0");const t=this.domNode.querySelector(`.${e}-menu`);t&&(this.submenu=new jT(this,t)),this.addListeners()}addListeners(){this.domNode.addEventListener("keydown",(e=>{let t=!1;switch(e.code){case aa.down:vb(e.currentTarget,"mouseenter"),this.submenu&&this.submenu.gotoSubIndex(0),t=!0;break;case aa.up:vb(e.currentTarget,"mouseenter"),this.submenu&&this.submenu.gotoSubIndex(this.submenu.subMenuItems.length-1),t=!0;break;case aa.tab:vb(e.currentTarget,"mouseleave");break;case aa.enter:case aa.space:t=!0,e.currentTarget.click();break}t&&e.preventDefault()}))}}class XT{constructor(e,t){this.domNode=e,this.init(t)}init(e){const t=this.domNode.childNodes;Array.from(t).forEach((t=>{1===t.nodeType&&new VT(t,e)}))}}const UT=(0,i.pM)({name:"ElMenuCollapseTransition",setup(){const e=(0,ee.DU)("menu"),t={onBeforeEnter:e=>e.style.opacity="0.2",onEnter(t,n){(0,te.iQ)(t,`${e.namespace.value}-opacity-transition`),t.style.opacity="1",n()},onAfterEnter(t){(0,te.vy)(t,`${e.namespace.value}-opacity-transition`),t.style.opacity=""},onBeforeLeave(t){t.dataset||(t.dataset={}),(0,te.nB)(t,e.m("collapse"))?((0,te.vy)(t,e.m("collapse")),t.dataset.oldOverflow=t.style.overflow,t.dataset.scrollWidth=t.clientWidth.toString(),(0,te.iQ)(t,e.m("collapse"))):((0,te.iQ)(t,e.m("collapse")),t.dataset.oldOverflow=t.style.overflow,t.dataset.scrollWidth=t.clientWidth.toString(),(0,te.vy)(t,e.m("collapse"))),t.style.width=`${t.scrollWidth}px`,t.style.overflow="hidden"},onLeave(e){(0,te.iQ)(e,"horizontal-collapse-transition"),e.style.width=`${e.dataset.scrollWidth}px`}};return{listeners:t}}});function HT(e,t,n,o,r,l){return(0,i.uX)(),(0,i.Wv)(ge.eB,(0,i.v6)({mode:"out-in"},e.listeners),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16)}var zT=J(UT,[["render",HT],["__file","menu-collapse-transition.vue"]]);function GT(e,t){const n=(0,i.EW)((()=>{let n=e.parent;const o=[t.value];while("ElMenu"!==n.type.name)n.props.index&&o.unshift(n.props.index),n=n.parent;return o})),o=(0,i.EW)((()=>{let t=e.parent;while(t&&!["ElMenu","ElSubMenu"].includes(t.type.name))t=t.parent;return t}));return{parentMenu:o,indexPath:n}}function qT(e){const t=(0,i.EW)((()=>{const t=e.backgroundColor;return t?new bu(t).shade(20).toString():""}));return t}const YT=(e,t)=>{const n=(0,ee.DU)("menu");return(0,i.EW)((()=>n.cssVarBlock({"text-color":e.textColor||"","hover-text-color":e.textColor||"","bg-color":e.backgroundColor||"","hover-bg-color":qT(e).value||"","active-color":e.activeTextColor||"",level:`${t}`})))},QT=(0,H.b_)({index:{type:String,required:!0},showTimeout:Number,hideTimeout:Number,popperClass:String,disabled:Boolean,popperAppendToBody:{type:Boolean,default:void 0},teleported:{type:Boolean,default:void 0},popperOffset:Number,expandCloseIcon:{type:en},expandOpenIcon:{type:en},collapseCloseIcon:{type:en},collapseOpenIcon:{type:en}}),ZT="ElSubMenu";var JT=(0,i.pM)({name:ZT,props:QT,setup(e,{slots:t,expose:n}){$s({from:"popper-append-to-body",replacement:"teleported",scope:ZT,version:"2.3.0",ref:"https://element-plus.org/en-US/component/menu.html#submenu-attributes"},(0,i.EW)((()=>void 0!==e.popperAppendToBody)));const o=(0,i.nI)(),{indexPath:r,parentMenu:l}=GT(o,(0,i.EW)((()=>e.index))),a=(0,ee.DU)("menu"),d=(0,ee.DU)("sub-menu"),p=(0,i.WQ)("rootMenu");p||(0,ne.$)(ZT,"can not inject root menu");const f=(0,i.WQ)(`subMenu:${l.value.uid}`);f||(0,ne.$)(ZT,"can not inject sub menu");const v=(0,s.KR)({}),h=(0,s.KR)({});let m;const g=(0,s.KR)(!1),y=(0,s.KR)(),b=(0,s.KR)(null),R=(0,i.EW)((()=>"horizontal"===T.value&&E.value?"bottom-start":"right-start")),w=(0,i.EW)((()=>"horizontal"===T.value&&E.value||"vertical"===T.value&&!p.props.collapse?e.expandCloseIcon&&e.expandOpenIcon?_.value?e.expandOpenIcon:e.expandCloseIcon:xe:e.collapseCloseIcon&&e.collapseOpenIcon?_.value?e.collapseOpenIcon:e.collapseCloseIcon:Oe)),E=(0,i.EW)((()=>0===f.level)),C=(0,i.EW)((()=>{var t;const n=null!=(t=e.teleported)?t:e.popperAppendToBody;return void 0===n?E.value:n})),k=(0,i.EW)((()=>p.props.collapse?`${a.namespace.value}-zoom-in-left`:`${a.namespace.value}-zoom-in-top`)),x=(0,i.EW)((()=>"horizontal"===T.value&&E.value?["bottom-start","bottom-end","top-start","top-end","right-start","left-start"]:["right-start","right","right-end","left-start","bottom-start","bottom-end","top-start","top-end"])),_=(0,i.EW)((()=>p.openedMenus.includes(e.index))),S=(0,i.EW)((()=>{let e=!1;return Object.values(v.value).forEach((t=>{t.active&&(e=!0)})),Object.values(h.value).forEach((t=>{t.active&&(e=!0)})),e})),T=(0,i.EW)((()=>p.props.mode)),O=(0,s.Kh)({index:e.index,indexPath:r,active:S}),I=YT(p.props,f.level+1),A=(0,i.EW)((()=>{var t;return null!=(t=e.popperOffset)?t:p.props.popperOffset})),L=(0,i.EW)((()=>{var t;return null!=(t=e.popperClass)?t:p.props.popperClass})),M=(0,i.EW)((()=>{var t;return null!=(t=e.showTimeout)?t:p.props.showTimeout})),N=(0,i.EW)((()=>{var t;return null!=(t=e.hideTimeout)?t:p.props.hideTimeout})),W=()=>{var e,t,n;return null==(n=null==(t=null==(e=b.value)?void 0:e.popperRef)?void 0:t.popperInstanceRef)?void 0:n.destroy()},D=e=>{e||W()},F=()=>{"hover"===p.props.menuTrigger&&"horizontal"===p.props.mode||p.props.collapse&&"vertical"===p.props.mode||e.disabled||p.handleSubMenuClick({index:e.index,indexPath:r.value,active:S.value})},$=(t,n=M.value)=>{var o;"focus"!==t.type&&("click"===p.props.menuTrigger&&"horizontal"===p.props.mode||!p.props.collapse&&"vertical"===p.props.mode||e.disabled?f.mouseInChild.value=!0:(f.mouseInChild.value=!0,null==m||m(),({stop:m}=(0,c.TO)((()=>{p.openMenu(e.index,r.value)}),n)),C.value&&(null==(o=l.value.vnode.el)||o.dispatchEvent(new MouseEvent("mouseenter")))))},B=(t=!1)=>{var n;"click"===p.props.menuTrigger&&"horizontal"===p.props.mode||!p.props.collapse&&"vertical"===p.props.mode?f.mouseInChild.value=!1:(null==m||m(),f.mouseInChild.value=!1,({stop:m}=(0,c.TO)((()=>!g.value&&p.closeMenu(e.index,r.value)),N.value)),C.value&&t&&(null==(n=f.handleMouseleave)||n.call(f,!0)))};(0,i.wB)((()=>p.props.collapse),(e=>D(Boolean(e))));{const e=e=>{h.value[e.index]=e},t=e=>{delete h.value[e.index]};(0,i.Gt)(`subMenu:${o.uid}`,{addSubMenu:e,removeSubMenu:t,handleMouseleave:B,mouseInChild:g,level:f.level+1})}return n({opened:_}),(0,i.sV)((()=>{p.addSubMenu(O),f.addSubMenu(O)})),(0,i.xo)((()=>{f.removeSubMenu(O),p.removeSubMenu(O)})),()=>{var n;const r=[null==(n=t.title)?void 0:n.call(t),(0,i.h)(Ee,{class:d.e("icon-arrow"),style:{transform:_.value?e.expandCloseIcon&&e.expandOpenIcon||e.collapseCloseIcon&&e.collapseOpenIcon&&p.props.collapse?"none":"rotateZ(180deg)":"none"}},{default:()=>(0,u.Kg)(w.value)?(0,i.h)(o.appContext.components[w.value]):(0,i.h)(w.value)})],l=p.isMenuPopup?(0,i.h)(zi,{ref:b,visible:_.value,effect:"light",pure:!0,offset:A.value,showArrow:!1,persistent:!0,popperClass:L.value,placement:R.value,teleported:C.value,fallbackPlacements:x.value,transition:k.value,gpuAcceleration:!1},{content:()=>{var e;return(0,i.h)("div",{class:[a.m(T.value),a.m("popup-container"),L.value],onMouseenter:e=>$(e,100),onMouseleave:()=>B(!0),onFocus:e=>$(e,100)},[(0,i.h)("ul",{class:[a.b(),a.m("popup"),a.m(`popup-${R.value}`)],style:I.value},[null==(e=t.default)?void 0:e.call(t)])])},default:()=>(0,i.h)("div",{class:d.e("title"),onClick:F},r)}):(0,i.h)(i.FK,{},[(0,i.h)("div",{class:d.e("title"),ref:y,onClick:F},r),(0,i.h)(wR,{},{default:()=>{var e;return(0,i.bo)((0,i.h)("ul",{role:"menu",class:[a.b(),a.m("inline")],style:I.value},[null==(e=t.default)?void 0:e.call(t)]),[[ge.aG,_.value]])}})]);return(0,i.h)("li",{class:[d.b(),d.is("active",S.value),d.is("opened",_.value),d.is("disabled",e.disabled)],role:"menuitem",ariaHaspopup:!0,ariaExpanded:_.value,onMouseenter:$,onMouseleave:()=>B(),onFocus:$},[l])}}});const eO=(0,H.b_)({mode:{type:String,values:["horizontal","vertical"],default:"vertical"},defaultActive:{type:String,default:""},defaultOpeneds:{type:(0,H.jq)(Array),default:()=>Xn([])},uniqueOpened:Boolean,router:Boolean,menuTrigger:{type:String,values:["hover","click"],default:"hover"},collapse:Boolean,backgroundColor:String,textColor:String,activeTextColor:String,closeOnClickOutside:Boolean,collapseTransition:{type:Boolean,default:!0},ellipsis:{type:Boolean,default:!0},popperOffset:{type:Number,default:6},ellipsisIcon:{type:en,default:()=>wt},popperEffect:{type:String,values:["dark","light"],default:"dark"},popperClass:String,showTimeout:{type:Number,default:300},hideTimeout:{type:Number,default:300}}),tO=e=>Array.isArray(e)&&e.every((e=>(0,u.Kg)(e))),nO={close:(e,t)=>(0,u.Kg)(e)&&tO(t),open:(e,t)=>(0,u.Kg)(e)&&tO(t),select:(e,t,n,o)=>(0,u.Kg)(e)&&tO(t)&&(0,u.Gv)(n)&&(void 0===o||o instanceof Promise)};var oO=(0,i.pM)({name:"ElMenu",props:eO,emits:nO,setup(e,{emit:t,slots:n,expose:o}){const r=(0,i.nI)(),l=r.appContext.config.globalProperties.$router,a=(0,s.KR)(),u=(0,ee.DU)("menu"),c=(0,ee.DU)("sub-menu"),d=(0,s.KR)(-1),p=(0,s.KR)(e.defaultOpeneds&&!e.collapse?e.defaultOpeneds.slice(0):[]),f=(0,s.KR)(e.defaultActive),v=(0,s.KR)({}),h=(0,s.KR)({}),m=(0,i.EW)((()=>"horizontal"===e.mode||"vertical"===e.mode&&e.collapse)),g=()=>{const t=f.value&&v.value[f.value];if(!t||"horizontal"===e.mode||e.collapse)return;const n=t.indexPath;n.forEach((e=>{const t=h.value[e];t&&y(e,t.indexPath)}))},y=(n,o)=>{p.value.includes(n)||(e.uniqueOpened&&(p.value=p.value.filter((e=>o.includes(e)))),p.value.push(n),t("open",n,o))},b=e=>{const t=p.value.indexOf(e);-1!==t&&p.value.splice(t,1)},R=(e,n)=>{b(e),t("close",e,n)},w=({index:e,indexPath:t})=>{const n=p.value.includes(e);n?R(e,t):y(e,t)},E=n=>{("horizontal"===e.mode||e.collapse)&&(p.value=[]);const{index:o,indexPath:r}=n;if(!(0,Dn.A)(o)&&!(0,Dn.A)(r))if(e.router&&l){const e=n.route||o,a=l.push(e).then((e=>(e||(f.value=o),e)));t("select",o,r,{index:o,indexPath:r,route:e},a)}else f.value=o,t("select",o,r,{index:o,indexPath:r})},C=t=>{const n=v.value,o=n[t]||f.value&&n[f.value]||n[e.defaultActive];f.value=o?o.index:t},k=e=>{const t=getComputedStyle(e),n=Number.parseInt(t.marginLeft,10),o=Number.parseInt(t.marginRight,10);return e.offsetWidth+n+o||0},x=()=>{var e,t;if(!a.value)return-1;const n=Array.from(null!=(t=null==(e=a.value)?void 0:e.childNodes)?t:[]).filter((e=>"#comment"!==e.nodeName&&("#text"!==e.nodeName||e.nodeValue))),o=64,r=getComputedStyle(a.value),l=Number.parseInt(r.paddingLeft,10),i=Number.parseInt(r.paddingRight,10),s=a.value.clientWidth-l-i;let u=0,c=0;return n.forEach(((e,t)=>{u+=k(e),u<=s-o&&(c=t+1)})),c===n.length?-1:c},_=e=>h.value[e].indexPath,S=(e,t=33.34)=>{let n;return()=>{n&&clearTimeout(n),n=setTimeout((()=>{e()}),t)}};let O=!0;const I=()=>{const e=()=>{d.value=-1,(0,i.dY)((()=>{d.value=x()}))};O?e():S(e)(),O=!1};let A;(0,i.wB)((()=>e.defaultActive),(e=>{v.value[e]||(f.value=""),C(e)})),(0,i.wB)((()=>e.collapse),(e=>{e&&(p.value=[])})),(0,i.wB)(v.value,g),(0,i.nT)((()=>{"horizontal"===e.mode&&e.ellipsis?A=T(a,I).stop:null==A||A()}));const L=(0,s.KR)(!1);{const t=e=>{h.value[e.index]=e},n=e=>{delete h.value[e.index]},o=e=>{v.value[e.index]=e},l=e=>{delete v.value[e.index]};(0,i.Gt)("rootMenu",(0,s.Kh)({props:e,openedMenus:p,items:v,subMenus:h,activeIndex:f,isMenuPopup:m,addMenuItem:o,removeMenuItem:l,addSubMenu:t,removeSubMenu:n,openMenu:y,closeMenu:R,handleMenuItemClick:E,handleSubMenuClick:w})),(0,i.Gt)(`subMenu:${r.uid}`,{addSubMenu:t,removeSubMenu:n,mouseInChild:L,level:0})}(0,i.sV)((()=>{"horizontal"===e.mode&&new XT(r.vnode.el,u.namespace.value)}));{const e=e=>{const{indexPath:t}=h.value[e];t.forEach((e=>y(e,t)))};o({open:e,close:b,handleResize:I})}return()=>{var o,r;let l=null!=(r=null==(o=n.default)?void 0:o.call(n))?r:[];const s=[];if("horizontal"===e.mode&&a.value){const t=Ac(l),n=-1===d.value?t:t.slice(0,d.value),o=-1===d.value?[]:t.slice(d.value);(null==o?void 0:o.length)&&e.ellipsis&&(l=n,s.push((0,i.h)(JT,{index:"sub-menu-more",class:c.e("hide-arrow"),popperOffset:e.popperOffset},{title:()=>(0,i.h)(Ee,{class:c.e("icon-more")},{default:()=>(0,i.h)(e.ellipsisIcon)}),default:()=>o})))}const f=YT(e,0),v=e.closeOnClickOutside?[[Bb,()=>{p.value.length&&(L.value||(p.value.forEach((e=>t("close",e,_(e)))),p.value=[]))}]]:[],h=(0,i.bo)((0,i.h)("ul",{key:String(e.collapse),role:"menubar",ref:a,style:f.value,class:{[u.b()]:!0,[u.m(e.mode)]:!0,[u.m("collapse")]:e.collapse}},[...l,...s]),v);return e.collapseTransition&&"vertical"===e.mode?(0,i.h)(zT,(()=>h)):h}}});const rO=(0,H.b_)({index:{type:(0,H.jq)([String,null]),default:null},route:{type:(0,H.jq)([String,Object])},disabled:Boolean}),lO={click:e=>(0,u.Kg)(e.index)&&Array.isArray(e.indexPath)},aO="ElMenuItem",iO=(0,i.pM)({name:aO,components:{ElTooltip:zi},props:rO,emits:lO,setup(e,{emit:t}){const n=(0,i.nI)(),o=(0,i.WQ)("rootMenu"),r=(0,ee.DU)("menu"),l=(0,ee.DU)("menu-item");o||(0,ne.$)(aO,"can not inject root menu");const{parentMenu:a,indexPath:u}=GT(n,(0,s.lW)(e,"index")),c=(0,i.WQ)(`subMenu:${a.value.uid}`);c||(0,ne.$)(aO,"can not inject sub menu");const d=(0,i.EW)((()=>e.index===o.activeIndex)),p=(0,s.Kh)({index:e.index,indexPath:u,active:d}),f=()=>{e.disabled||(o.handleMenuItemClick({index:e.index,indexPath:u.value,route:e.route}),t("click",p))};return(0,i.sV)((()=>{c.addSubMenu(p),o.addMenuItem(p)})),(0,i.xo)((()=>{c.removeSubMenu(p),o.removeMenuItem(p)})),{parentMenu:a,rootMenu:o,active:d,nsMenu:r,nsMenuItem:l,handleClick:f}}});function sO(e,t,n,o,r,l){const a=(0,i.g2)("el-tooltip");return(0,i.uX)(),(0,i.CE)("li",{class:(0,u.C4)([e.nsMenuItem.b(),e.nsMenuItem.is("active",e.active),e.nsMenuItem.is("disabled",e.disabled)]),role:"menuitem",tabindex:"-1",onClick:t[0]||(t[0]=(...t)=>e.handleClick&&e.handleClick(...t))},["ElMenu"===e.parentMenu.type.name&&e.rootMenu.props.collapse&&e.$slots.title?((0,i.uX)(),(0,i.Wv)(a,{key:0,effect:e.rootMenu.props.popperEffect,placement:"right","fallback-placements":["left"],persistent:""},{content:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"title")])),default:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)(e.nsMenu.be("tooltip","trigger"))},[(0,i.RG)(e.$slots,"default")],2)])),_:3},8,["effect"])):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.RG)(e.$slots,"default"),(0,i.RG)(e.$slots,"title")],64))],2)}var uO=J(iO,[["render",sO],["__file","menu-item.vue"]]);const cO={title:String},dO="ElMenuItemGroup",pO=(0,i.pM)({name:dO,props:cO,setup(){const e=(0,ee.DU)("menu-item-group");return{ns:e}}});function fO(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("li",{class:(0,u.C4)(e.ns.b())},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("title"))},[e.$slots.title?(0,i.RG)(e.$slots,"title",{key:1}):((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.eW)((0,u.v_)(e.title),1)],64))],2),(0,i.Lk)("ul",null,[(0,i.RG)(e.$slots,"default")])],2)}var vO=J(pO,[["render",fO],["__file","menu-item-group.vue"]]);const hO=pe(oO,{MenuItem:uO,MenuItemGroup:vO,SubMenu:JT}),mO=he(uO),gO=he(vO),yO=he(JT),bO=(0,H.b_)({icon:{type:en,default:()=>Me},title:String,content:{type:String,default:""}}),RO={back:()=>!0},wO=["aria-label"],EO=(0,i.pM)({name:"ElPageHeader"}),CO=(0,i.pM)({...EO,props:bO,emits:RO,setup(e,{emit:t}){const n=(0,i.Ht)(),{t:o}=(0,zu.Ym)(),r=(0,ee.DU)("page-header"),l=(0,i.EW)((()=>[r.b(),{[r.m("has-breadcrumb")]:!!n.breadcrumb,[r.m("has-extra")]:!!n.extra,[r.is("contentful")]:!!n.default}]));function a(){t("back")}return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(l))},[e.$slots.breadcrumb?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(r).e("breadcrumb"))},[(0,i.RG)(e.$slots,"breadcrumb")],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("header"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("left"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("back")),role:"button",tabindex:"0",onClick:a},[e.icon||e.$slots.icon?((0,i.uX)(),(0,i.CE)("div",{key:0,"aria-label":e.title||(0,s.R1)(o)("el.pageHeader.title"),class:(0,u.C4)((0,s.R1)(r).e("icon"))},[(0,i.RG)(e.$slots,"icon",{},(()=>[e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1})):(0,i.Q3)("v-if",!0)]))],10,wO)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("title"))},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title||(0,s.R1)(o)("el.pageHeader.title")),1)]))],2)],2),(0,i.bF)((0,s.R1)(Xk),{direction:"vertical"}),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("content"))},[(0,i.RG)(e.$slots,"content",{},(()=>[(0,i.eW)((0,u.v_)(e.content),1)]))],2)],2),e.$slots.extra?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(r).e("extra"))},[(0,i.RG)(e.$slots,"extra")],2)):(0,i.Q3)("v-if",!0)],2),e.$slots.default?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(r).e("main"))},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0)],2))}});var kO=J(CO,[["__file","page-header.vue"]]);const xO=pe(kO),_O=Symbol("elPaginationKey"),SO=(0,H.b_)({disabled:Boolean,currentPage:{type:Number,default:1},prevText:{type:String},prevIcon:{type:en}}),TO={click:e=>e instanceof MouseEvent},OO=["disabled","aria-label","aria-disabled"],IO={key:0},AO=(0,i.pM)({name:"ElPaginationPrev"}),LO=(0,i.pM)({...AO,props:SO,emits:TO,setup(e){const t=e,{t:n}=(0,zu.Ym)(),o=(0,i.EW)((()=>t.disabled||t.currentPage<=1));return(e,t)=>((0,i.uX)(),(0,i.CE)("button",{type:"button",class:"btn-prev",disabled:(0,s.R1)(o),"aria-label":e.prevText||(0,s.R1)(n)("el.pagination.prev"),"aria-disabled":(0,s.R1)(o),onClick:t[0]||(t[0]=t=>e.$emit("click",t))},[e.prevText?((0,i.uX)(),(0,i.CE)("span",IO,(0,u.v_)(e.prevText),1)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.prevIcon)))])),_:1}))],8,OO))}});var MO=J(LO,[["__file","prev.vue"]]);const NO=(0,H.b_)({disabled:Boolean,currentPage:{type:Number,default:1},pageCount:{type:Number,default:50},nextText:{type:String},nextIcon:{type:en}}),WO=["disabled","aria-label","aria-disabled"],DO={key:0},FO=(0,i.pM)({name:"ElPaginationNext"}),$O=(0,i.pM)({...FO,props:NO,emits:["click"],setup(e){const t=e,{t:n}=(0,zu.Ym)(),o=(0,i.EW)((()=>t.disabled||t.currentPage===t.pageCount||0===t.pageCount));return(e,t)=>((0,i.uX)(),(0,i.CE)("button",{type:"button",class:"btn-next",disabled:(0,s.R1)(o),"aria-label":e.nextText||(0,s.R1)(n)("el.pagination.next"),"aria-disabled":(0,s.R1)(o),onClick:t[0]||(t[0]=t=>e.$emit("click",t))},[e.nextText?((0,i.uX)(),(0,i.CE)("span",DO,(0,u.v_)(e.nextText),1)):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.nextIcon)))])),_:1}))],8,WO))}});var BO=J($O,[["__file","next.vue"]]),PO=n(9615);const KO=Symbol("ElSelectGroup"),jO=Symbol("ElSelect");function VO(e,t){const n=(0,i.WQ)(jO),o=(0,i.WQ)(KO,{disabled:!1}),r=(0,i.EW)((()=>n.props.multiple?f(n.props.modelValue,e.value):f([n.props.modelValue],e.value))),l=(0,i.EW)((()=>{if(n.props.multiple){const e=n.props.modelValue||[];return!r.value&&e.length>=n.props.multipleLimit&&n.props.multipleLimit>0}return!1})),a=(0,i.EW)((()=>e.label||((0,u.Gv)(e.value)?"":e.value))),c=(0,i.EW)((()=>e.value||e.label||"")),d=(0,i.EW)((()=>e.disabled||t.groupDisabled||l.value)),p=(0,i.nI)(),f=(t=[],o)=>{if((0,u.Gv)(e.value)){const e=n.props.valueKey;return t&&t.some((t=>(0,s.ux)((0,PO.A)(t,e))===(0,PO.A)(o,e)))}return t&&t.includes(o)},v=()=>{e.disabled||o.disabled||(n.states.hoveringIndex=n.optionsArray.indexOf(p.proxy))},h=n=>{const o=new RegExp(eb(n),"i");t.visible=o.test(a.value)||e.created};return(0,i.wB)((()=>a.value),(()=>{e.created||n.props.remote||n.setSelected()})),(0,i.wB)((()=>e.value),((t,o)=>{const{remote:r,valueKey:l}=n.props;if(eg(t,o)||(n.onOptionDestroy(o,p.proxy),n.onOptionCreate(p.proxy)),!e.created&&!r){if(l&&(0,u.Gv)(t)&&(0,u.Gv)(o)&&t[l]===o[l])return;n.setSelected()}})),(0,i.wB)((()=>o.disabled),(()=>{t.groupDisabled=o.disabled}),{immediate:!0}),{select:n,currentLabel:a,currentValue:c,itemSelected:r,isDisabled:d,hoverItem:v,updateOption:h}}const XO=(0,i.pM)({name:"ElOption",componentName:"ElOption",props:{value:{required:!0,type:[String,Number,Boolean,Object]},label:[String,Number],created:Boolean,disabled:Boolean},setup(e){const t=(0,ee.DU)("select"),n=no(),o=(0,i.EW)((()=>[t.be("dropdown","item"),t.is("disabled",(0,s.R1)(u)),t.is("selected",(0,s.R1)(a)),t.is("hovering",(0,s.R1)(v))])),r=(0,s.Kh)({index:-1,groupDisabled:!1,visible:!0,hover:!1}),{currentLabel:l,itemSelected:a,isDisabled:u,select:c,hoverItem:d,updateOption:p}=VO(e,r),{visible:f,hover:v}=(0,s.QW)(r),h=(0,i.nI)().proxy;function m(){!0!==e.disabled&&!0!==r.groupDisabled&&c.handleOptionSelect(h)}return c.onOptionCreate(h),(0,i.xo)((()=>{const e=h.value,{selected:t}=c.states,n=c.props.multiple?t:[t],o=n.some((e=>e.value===h.value));(0,i.dY)((()=>{c.states.cachedOptions.get(e)!==h||o||c.states.cachedOptions.delete(e)})),c.onOptionDestroy(e,h)})),{ns:t,id:n,containerKls:o,currentLabel:l,itemSelected:a,isDisabled:u,select:c,hoverItem:d,updateOption:p,visible:f,hover:v,selectOptionClick:m,states:r}}}),UO=["id","aria-disabled","aria-selected"];function HO(e,t,n,o,r,l){return(0,i.bo)(((0,i.uX)(),(0,i.CE)("li",{id:e.id,class:(0,u.C4)(e.containerKls),role:"option","aria-disabled":e.isDisabled||void 0,"aria-selected":e.itemSelected,onMouseenter:t[0]||(t[0]=(...t)=>e.hoverItem&&e.hoverItem(...t)),onClick:t[1]||(t[1]=(0,ge.D$)(((...t)=>e.selectOptionClick&&e.selectOptionClick(...t)),["stop"]))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.currentLabel),1)]))],42,UO)),[[ge.aG,e.visible]])}var zO=J(XO,[["render",HO],["__file","option.vue"]]);const GO=(0,i.pM)({name:"ElSelectDropdown",componentName:"ElSelectDropdown",setup(){const e=(0,i.WQ)(jO),t=(0,ee.DU)("select"),n=(0,i.EW)((()=>e.props.popperClass)),o=(0,i.EW)((()=>e.props.multiple)),r=(0,i.EW)((()=>e.props.fitInputWidth)),l=(0,s.KR)("");function a(){var t;l.value=`${null==(t=e.selectRef)?void 0:t.offsetWidth}px`}return(0,i.sV)((()=>{a(),T(e.selectRef,a)})),{ns:t,minWidth:l,popperClass:n,isMultiple:o,isFitInputWidth:r}}});function qO(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([e.ns.b("dropdown"),e.ns.is("multiple",e.isMultiple),e.popperClass]),style:(0,u.Tr)({[e.isFitInputWidth?"width":"minWidth"]:e.minWidth})},[e.$slots.header?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.ns.be("dropdown","header"))},[(0,i.RG)(e.$slots,"header")],2)):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"default"),e.$slots.footer?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)(e.ns.be("dropdown","footer"))},[(0,i.RG)(e.$slots,"footer")],2)):(0,i.Q3)("v-if",!0)],6)}var YO=J(GO,[["render",qO],["__file","select-dropdown.vue"]]);function QO(e,t,n,o){var r=e.length,l=n+(o?1:-1);while(o?l--:++l{t.value=!0},o=e=>{const n=e.target.value,o=n[n.length-1]||"";t.value=!co(o)},r=n=>{t.value&&(t.value=!1,(0,u.Tn)(e)&&e(n))};return{handleCompositionStart:n,handleCompositionUpdate:o,handleCompositionEnd:r}}const WI=11,DI=(e,t)=>{const{t:n}=(0,zu.Ym)(),o=no(),r=(0,ee.DU)("select"),l=(0,ee.DU)("input"),a=(0,s.Kh)({inputValue:"",options:new Map,cachedOptions:new Map,disabledOptions:new Map,optionValues:[],selected:e.multiple?[]:{},selectionWidth:0,calculatorWidth:0,collapseItemWidth:0,selectedLabel:"",hoveringIndex:-1,previousQuery:null,inputHovering:!1,menuVisibleOnFocus:!1,isBeforeHide:!1});$s({from:"suffixTransition",replacement:"override style scheme",version:"2.3.0",scope:"props",ref:"https://element-plus.org/en-US/component/select.html#select-attributes"},(0,i.EW)((()=>!1===e.suffixTransition)));const d=(0,s.KR)(null),p=(0,s.KR)(null),f=(0,s.KR)(null),v=(0,s.KR)(null),h=(0,s.KR)(null),m=(0,s.KR)(null),g=(0,s.KR)(null),y=(0,s.KR)(null),b=(0,s.KR)(null),R=(0,s.KR)(null),w=(0,s.KR)(null),E=(0,s.KR)(null),{wrapperRef:C,isFocused:k,handleFocus:x,handleBlur:_}=so(h,{afterFocus(){e.automaticDropdown&&!S.value&&(S.value=!0,a.menuVisibleOnFocus=!0)},beforeBlur(e){var t,n;return(null==(t=f.value)?void 0:t.isFocusInsideContent(e))||(null==(n=v.value)?void 0:n.isFocusInsideContent(e))},afterBlur(){S.value=!1,a.menuVisibleOnFocus=!1}}),S=(0,s.KR)(!1),O=(0,s.KR)(),{form:I,formItem:A}=oo(),{inputId:L}=ro(e,{formItemContext:A}),M=(0,i.EW)((()=>e.disabled||(null==I?void 0:I.disabled))),N=(0,i.EW)((()=>e.multiple?(0,u.cy)(e.modelValue)&&e.modelValue.length>0:void 0!==e.modelValue&&null!==e.modelValue&&""!==e.modelValue)),W=(0,i.EW)((()=>{const t=e.clearable&&!M.value&&a.inputHovering&&N.value;return t})),D=(0,i.EW)((()=>e.remote&&e.filterable&&!e.remoteShowSuffix?"":e.suffixIcon)),F=(0,i.EW)((()=>r.is("reverse",D.value&&S.value&&e.suffixTransition))),$=(0,i.EW)((()=>(null==A?void 0:A.validateState)||"")),B=(0,i.EW)((()=>rn[$.value])),P=(0,i.EW)((()=>e.remote?300:0)),K=(0,i.EW)((()=>e.loading?e.loadingText||n("el.select.loading"):!(e.remote&&!a.inputValue&&0===a.options.size)&&(e.filterable&&a.inputValue&&a.options.size>0&&0===j.value?e.noMatchText||n("el.select.noMatch"):0===a.options.size?e.noDataText||n("el.select.noData"):null))),j=(0,i.EW)((()=>V.value.filter((e=>e.visible)).length)),V=(0,i.EW)((()=>{const e=Array.from(a.options.values()),t=[];return a.optionValues.forEach((n=>{const o=e.findIndex((e=>e.value===n));o>-1&&t.push(e[o])})),t.length>=e.length?t:e})),X=(0,i.EW)((()=>Array.from(a.cachedOptions.values()))),U=(0,i.EW)((()=>{const t=V.value.filter((e=>!e.created)).some((e=>e.currentLabel===a.inputValue));return e.filterable&&e.allowCreate&&""!==a.inputValue&&!t})),H=()=>{e.filterable&&(0,u.Tn)(e.filterMethod)||e.filterable&&e.remote&&(0,u.Tn)(e.remoteMethod)||V.value.forEach((e=>{e.updateOption(a.inputValue)}))},Y=ao(),Q=(0,i.EW)((()=>["small"].includes(Y.value)?"small":"default")),Z=(0,i.EW)({get(){return S.value&&!1!==K.value},set(e){S.value=e}}),J=(0,i.EW)((()=>(0,u.cy)(e.modelValue)?0===e.modelValue.length&&!a.inputValue:!e.filterable||!a.inputValue)),te=(0,i.EW)((()=>{var t;const o=null!=(t=e.placeholder)?t:n("el.select.placeholder");return e.multiple||!N.value?o:a.selectedLabel}));(0,i.wB)((()=>e.modelValue),((t,n)=>{e.multiple&&e.filterable&&!e.reserveKeyword&&(a.inputValue="",oe("")),le(),!eg(t,n)&&e.validateEvent&&(null==A||A.validate("change").catch((e=>(0,ne.U)(e))))}),{flush:"post",deep:!0}),(0,i.wB)((()=>S.value),(e=>{e?oe(a.inputValue):(a.inputValue="",a.previousQuery=null,a.isBeforeHide=!0),t("visible-change",e)})),(0,i.wB)((()=>a.options.entries()),(()=>{var t;if(!c.oc)return;const n=(null==(t=d.value)?void 0:t.querySelectorAll("input"))||[];(e.filterable||e.defaultFirstOption||(0,z.b0)(e.modelValue))&&Array.from(n).includes(document.activeElement)||le(),e.defaultFirstOption&&(e.filterable||e.remote)&&j.value&&re()}),{flush:"post"}),(0,i.wB)((()=>a.hoveringIndex),(e=>{(0,z.Et)(e)&&e>-1?O.value=V.value[e]||{}:O.value={},V.value.forEach((e=>{e.hover=O.value===e}))})),(0,i.nT)((()=>{a.isBeforeHide||H()}));const oe=t=>{a.previousQuery!==t&&(a.previousQuery=t,e.filterable&&(0,u.Tn)(e.filterMethod)?e.filterMethod(t):e.filterable&&e.remote&&(0,u.Tn)(e.remoteMethod)&&e.remoteMethod(t),e.defaultFirstOption&&(e.filterable||e.remote)&&j.value?(0,i.dY)(re):(0,i.dY)(se))},re=()=>{const e=V.value.filter((e=>e.visible&&!e.disabled&&!e.states.groupDisabled)),t=e.find((e=>e.created)),n=e[0];a.hoveringIndex=Ce(V.value,t||n)},le=()=>{if(!e.multiple){const t=ae(e.modelValue);return a.selectedLabel=t.currentLabel,void(a.selected=t)}a.selectedLabel="";const t=[];(0,u.cy)(e.modelValue)&&e.modelValue.forEach((e=>{t.push(ae(e))})),a.selected=t},ae=t=>{let n;const o="object"===(0,u.Zf)(t).toLowerCase(),r="null"===(0,u.Zf)(t).toLowerCase(),l="undefined"===(0,u.Zf)(t).toLowerCase();for(let u=a.cachedOptions.size-1;u>=0;u--){const r=X.value[u],l=o?(0,PO.A)(r.value,e.valueKey)===(0,PO.A)(t,e.valueKey):r.value===t;if(l){n={value:t,currentLabel:r.currentLabel,isDisabled:r.isDisabled};break}}if(n)return n;const i=o?t.label:r||l?"":t,s={value:t,currentLabel:i};return s},se=()=>{e.multiple?a.selected.length>0?a.hoveringIndex=Math.min(...a.selected.map((e=>V.value.findIndex((t=>Be(t)===Be(e)))))):a.hoveringIndex=-1:a.hoveringIndex=V.value.findIndex((e=>Be(e)===Be(a.selected)))},ue=()=>{a.selectionWidth=p.value.getBoundingClientRect().width},ce=()=>{a.calculatorWidth=m.value.getBoundingClientRect().width},de=()=>{a.collapseItemWidth=w.value.getBoundingClientRect().width},pe=()=>{var e,t;null==(t=null==(e=f.value)?void 0:e.updatePopper)||t.call(e)},fe=()=>{var e,t;null==(t=null==(e=v.value)?void 0:e.updatePopper)||t.call(e)},ve=()=>{a.inputValue.length>0&&!S.value&&(S.value=!0),oe(a.inputValue)},he=t=>{if(a.inputValue=t.target.value,!e.remote)return ve();me()},me=Wn((()=>{ve()}),P.value),ge=n=>{eg(e.modelValue,n)||t(q,n)},ye=e=>MI(e,(e=>!a.disabledOptions.has(e))),be=n=>{if(e.multiple&&n.code!==aa.delete&&n.target.value.length<=0){const n=e.modelValue.slice(),o=ye(n);if(o<0)return;n.splice(o,1),t(G,n),ge(n)}},Re=(n,o)=>{const r=a.selected.indexOf(o);if(r>-1&&!M.value){const n=e.modelValue.slice();n.splice(r,1),t(G,n),ge(n),t("remove-tag",o.value)}n.stopPropagation(),Le()},we=n=>{n.stopPropagation();const o=e.multiple?[]:"";if(!(0,u.Kg)(o))for(const e of a.selected)e.isDisabled&&o.push(e.value);t(G,o),ge(o),a.hoveringIndex=-1,S.value=!1,t("clear"),Le()},Ee=n=>{if(e.multiple){const o=(e.modelValue||[]).slice(),r=Ce(o,n.value);r>-1?o.splice(r,1):(e.multipleLimit<=0||o.length{ke(n)}))},Ce=(t=[],n)=>{if(!(0,u.Gv)(n))return t.indexOf(n);const o=e.valueKey;let r=-1;return t.some(((e,t)=>(0,s.ux)((0,PO.A)(e,o))===(0,PO.A)(n,o)&&(r=t,!0))),r},ke=e=>{var t,n,o,l,a;const i=(0,u.cy)(e)?e[0]:e;let s=null;if(null==i?void 0:i.value){const e=V.value.filter((e=>e.value===i.value));e.length>0&&(s=e[0].$el)}if(f.value&&s){const e=null==(l=null==(o=null==(n=null==(t=f.value)?void 0:t.popperRef)?void 0:n.contentRef)?void 0:o.querySelector)?void 0:l.call(o,`.${r.be("dropdown","wrap")}`);e&&ie(e,s)}null==(a=E.value)||a.handleScroll()},xe=e=>{a.options.set(e.value,e),a.cachedOptions.set(e.value,e),e.disabled&&a.disabledOptions.set(e.value,e)},_e=(e,t)=>{a.options.get(e)===t&&a.options.delete(e)},{handleCompositionStart:Se,handleCompositionUpdate:Te,handleCompositionEnd:Oe}=NI((e=>he(e))),Ie=(0,i.EW)((()=>{var e,t;return null==(t=null==(e=f.value)?void 0:e.popperRef)?void 0:t.contentRef})),Ae=()=>{(0,i.dY)((()=>ke(a.selected)))},Le=()=>{var e;null==(e=h.value)||e.focus()},Me=()=>{We()},Ne=e=>{we(e)},We=e=>{if(S.value=!1,k.value){const t=new FocusEvent("focus",e);(0,i.dY)((()=>_(t)))}},De=()=>{a.inputValue.length>0?a.inputValue="":S.value=!1},Fe=()=>{M.value||(a.menuVisibleOnFocus?a.menuVisibleOnFocus=!1:S.value=!S.value)},$e=()=>{S.value?V.value[a.hoveringIndex]&&Ee(V.value[a.hoveringIndex]):Fe()},Be=t=>(0,u.Gv)(t.value)?(0,PO.A)(t.value,e.valueKey):t.value,Pe=(0,i.EW)((()=>V.value.filter((e=>e.visible)).every((e=>e.disabled)))),Ke=(0,i.EW)((()=>e.multiple?e.collapseTags?a.selected.slice(0,e.maxCollapseTags):a.selected:[])),je=(0,i.EW)((()=>e.multiple&&e.collapseTags?a.selected.slice(e.maxCollapseTags):[])),Ve=e=>{if(S.value){if(0!==a.options.size&&0!==j.value&&!Pe.value){"next"===e?(a.hoveringIndex++,a.hoveringIndex===a.options.size&&(a.hoveringIndex=0)):"prev"===e&&(a.hoveringIndex--,a.hoveringIndex<0&&(a.hoveringIndex=a.options.size-1));const t=V.value[a.hoveringIndex];!0!==t.disabled&&!0!==t.states.groupDisabled&&t.visible||Ve(e),(0,i.dY)((()=>ke(O.value)))}}else S.value=!0},Xe=()=>{if(!p.value)return 0;const e=window.getComputedStyle(p.value);return Number.parseFloat(e.gap||"6px")},Ue=(0,i.EW)((()=>{const t=Xe(),n=w.value&&1===e.maxCollapseTags?a.selectionWidth-a.collapseItemWidth-t:a.selectionWidth;return{maxWidth:`${n}px`}})),He=(0,i.EW)((()=>({maxWidth:`${a.selectionWidth}px`}))),ze=(0,i.EW)((()=>({width:`${Math.max(a.calculatorWidth,WI)}px`})));return e.multiple&&!(0,u.cy)(e.modelValue)&&t(G,[]),!e.multiple&&(0,u.cy)(e.modelValue)&&t(G,""),T(p,ue),T(m,ce),T(b,pe),T(C,pe),T(R,fe),T(w,de),(0,i.sV)((()=>{le()})),{inputId:L,contentId:o,nsSelect:r,nsInput:l,states:a,isFocused:k,expanded:S,optionsArray:V,hoverOption:O,selectSize:Y,filteredOptionsCount:j,resetCalculatorWidth:ce,updateTooltip:pe,updateTagTooltip:fe,debouncedOnInputChange:me,onInput:he,deletePrevTag:be,deleteTag:Re,deleteSelected:we,handleOptionSelect:Ee,scrollToOption:ke,hasModelValue:N,shouldShowPlaceholder:J,currentPlaceholder:te,showClose:W,iconComponent:D,iconReverse:F,validateState:$,validateIcon:B,showNewOption:U,updateOptions:H,collapseTagSize:Q,setSelected:le,selectDisabled:M,emptyText:K,handleCompositionStart:Se,handleCompositionUpdate:Te,handleCompositionEnd:Oe,onOptionCreate:xe,onOptionDestroy:_e,handleMenuEnter:Ae,handleFocus:x,focus:Le,blur:Me,handleBlur:_,handleClearClick:Ne,handleClickOutside:We,handleEsc:De,toggleMenu:Fe,selectOption:$e,getValueKey:Be,navigateOptions:Ve,dropdownMenuVisible:Z,showTagList:Ke,collapseTagList:je,tagStyle:Ue,collapseTagStyle:He,inputStyle:ze,popperRef:Ie,inputRef:h,tooltipRef:f,tagTooltipRef:v,calculatorRef:m,prefixRef:g,suffixRef:y,selectRef:d,wrapperRef:C,selectionRef:p,scrollbarRef:E,menuRef:b,tagMenuRef:R,collapseItemRef:w}};var FI=(0,i.pM)({name:"ElOptions",setup(e,{slots:t}){const n=(0,i.WQ)(jO);let o=[];return()=>{var e,r;const l=null==(e=t.default)?void 0:e.call(t),a=[];function i(e){(0,u.cy)(e)&&e.forEach((e=>{var t,n,o,r;const l=null==(t=(null==e?void 0:e.type)||{})?void 0:t.name;"ElOptionGroup"===l?i((0,u.Kg)(e.children)||(0,u.cy)(e.children)||!(0,u.Tn)(null==(n=e.children)?void 0:n.default)?e.children:null==(o=e.children)?void 0:o.default()):"ElOption"===l?a.push(null==(r=e.props)?void 0:r.value):(0,u.cy)(e.children)&&i(e.children)}))}return l.length&&i(null==(r=l[0])?void 0:r.children),eg(a,o)||(o=a,n&&(n.states.optionValues=a)),l}}});const $I=(0,H.b_)({name:String,id:String,modelValue:{type:[Array,String,Number,Boolean,Object],default:void 0},autocomplete:{type:String,default:"off"},automaticDropdown:Boolean,size:Vn.mU,effect:{type:(0,H.jq)(String),default:"light"},disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:{type:String,default:""},popperOptions:{type:(0,H.jq)(Object),default:()=>({})},remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String},defaultFirstOption:Boolean,reserveKeyword:{type:Boolean,default:!0},valueKey:{type:String,default:"value"},collapseTags:Boolean,collapseTagsTooltip:Boolean,maxCollapseTags:{type:Number,default:1},teleported:ra.teleported,persistent:{type:Boolean,default:!0},clearIcon:{type:en,default:qe},fitInputWidth:Boolean,suffixIcon:{type:en,default:xe},tagType:{...Tb.type,default:"info"},validateEvent:{type:Boolean,default:!0},remoteShowSuffix:Boolean,suffixTransition:{type:Boolean,default:!0},placement:{type:(0,H.jq)(String),values:sr,default:"bottom-start"},fallbackPlacements:{type:(0,H.jq)(Array),default:["bottom-start","top-start","right","left"]},ariaLabel:{type:String,default:void 0}}),BI="ElSelect",PI=(0,i.pM)({name:BI,componentName:BI,components:{ElInput:yo,ElSelectMenu:YO,ElOption:zO,ElOptions:FI,ElTag:Mb,ElScrollbar:Do,ElTooltip:zi,ElIcon:Ee},directives:{ClickOutside:Bb},props:$I,emits:[G,q,"remove-tag","clear","visible-change","focus","blur"],setup(e,{emit:t}){const n=DI(e,t);return(0,i.Gt)(jO,(0,s.Kh)({props:e,states:n.states,optionsArray:n.optionsArray,handleOptionSelect:n.handleOptionSelect,onOptionCreate:n.onOptionCreate,onOptionDestroy:n.onOptionDestroy,selectRef:n.selectRef,setSelected:n.setSelected})),{...n}}}),KI=["id","disabled","autocomplete","readonly","aria-activedescendant","aria-controls","aria-expanded","aria-label"],jI=["textContent"];function VI(e,t,n,o,r,l){const a=(0,i.g2)("el-tag"),s=(0,i.g2)("el-tooltip"),c=(0,i.g2)("el-icon"),d=(0,i.g2)("el-option"),p=(0,i.g2)("el-options"),f=(0,i.g2)("el-scrollbar"),v=(0,i.g2)("el-select-menu"),h=(0,i.gN)("click-outside");return(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{ref:"selectRef",class:(0,u.C4)([e.nsSelect.b(),e.nsSelect.m(e.selectSize)]),onMouseenter:t[14]||(t[14]=t=>e.states.inputHovering=!0),onMouseleave:t[15]||(t[15]=t=>e.states.inputHovering=!1),onClick:t[16]||(t[16]=(0,ge.D$)(((...t)=>e.toggleMenu&&e.toggleMenu(...t)),["stop"]))},[(0,i.bF)(s,{ref:"tooltipRef",visible:e.dropdownMenuVisible,placement:e.placement,teleported:e.teleported,"popper-class":[e.nsSelect.e("popper"),e.popperClass],"popper-options":e.popperOptions,"fallback-placements":e.fallbackPlacements,effect:e.effect,pure:"",trigger:"click",transition:`${e.nsSelect.namespace.value}-zoom-in-top`,"stop-popper-mouse-event":!1,"gpu-acceleration":!1,persistent:e.persistent,onBeforeShow:e.handleMenuEnter,onHide:t[13]||(t[13]=t=>e.states.isBeforeHide=!1)},{default:(0,i.k6)((()=>{var n;return[(0,i.Lk)("div",{ref:"wrapperRef",class:(0,u.C4)([e.nsSelect.e("wrapper"),e.nsSelect.is("focused",e.isFocused),e.nsSelect.is("hovering",e.states.inputHovering),e.nsSelect.is("filterable",e.filterable),e.nsSelect.is("disabled",e.selectDisabled)])},[e.$slots.prefix?((0,i.uX)(),(0,i.CE)("div",{key:0,ref:"prefixRef",class:(0,u.C4)(e.nsSelect.e("prefix"))},[(0,i.RG)(e.$slots,"prefix")],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{ref:"selectionRef",class:(0,u.C4)([e.nsSelect.e("selection"),e.nsSelect.is("near",e.multiple&&!e.$slots.prefix&&!!e.states.selected.length)])},[e.multiple?(0,i.RG)(e.$slots,"tag",{key:0},(()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.showTagList,(t=>((0,i.uX)(),(0,i.CE)("div",{key:e.getValueKey(t),class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{closable:!e.selectDisabled&&!t.isDisabled,size:e.collapseTagSize,type:e.tagType,"disable-transitions":"",style:(0,u.Tr)(e.tagStyle),onClose:n=>e.deleteTag(n,t)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))},(0,u.v_)(t.currentLabel),3)])),_:2},1032,["closable","size","type","style","onClose"])],2)))),128)),e.collapseTags&&e.states.selected.length>e.maxCollapseTags?((0,i.uX)(),(0,i.Wv)(s,{key:0,ref:"tagTooltipRef",disabled:e.dropdownMenuVisible||!e.collapseTagsTooltip,"fallback-placements":["bottom","top","right","left"],effect:e.effect,placement:"bottom",teleported:e.teleported},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"collapseItemRef",class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{closable:!1,size:e.collapseTagSize,type:e.tagType,"disable-transitions":"",style:(0,u.Tr)(e.collapseTagStyle)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))}," + "+(0,u.v_)(e.states.selected.length-e.maxCollapseTags),3)])),_:1},8,["size","type","style"])],2)])),content:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"tagMenuRef",class:(0,u.C4)(e.nsSelect.e("selection"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.collapseTagList,(t=>((0,i.uX)(),(0,i.CE)("div",{key:e.getValueKey(t),class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{class:"in-tooltip",closable:!e.selectDisabled&&!t.isDisabled,size:e.collapseTagSize,type:e.tagType,"disable-transitions":"",onClose:n=>e.deleteTag(n,t)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))},(0,u.v_)(t.currentLabel),3)])),_:2},1032,["closable","size","type","onClose"])],2)))),128))],2)])),_:1},8,["disabled","effect","teleported"])):(0,i.Q3)("v-if",!0)])):(0,i.Q3)("v-if",!0),e.selectDisabled?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)([e.nsSelect.e("selected-item"),e.nsSelect.e("input-wrapper"),e.nsSelect.is("hidden",!e.filterable)])},[(0,i.bo)((0,i.Lk)("input",{id:e.inputId,ref:"inputRef","onUpdate:modelValue":t[0]||(t[0]=t=>e.states.inputValue=t),type:"text",class:(0,u.C4)([e.nsSelect.e("input"),e.nsSelect.is(e.selectSize)]),disabled:e.selectDisabled,autocomplete:e.autocomplete,style:(0,u.Tr)(e.inputStyle),role:"combobox",readonly:!e.filterable,spellcheck:"false","aria-activedescendant":(null==(n=e.hoverOption)?void 0:n.id)||"","aria-controls":e.contentId,"aria-expanded":e.dropdownMenuVisible,"aria-label":e.ariaLabel,"aria-autocomplete":"none","aria-haspopup":"listbox",onFocus:t[1]||(t[1]=(...t)=>e.handleFocus&&e.handleFocus(...t)),onBlur:t[2]||(t[2]=(...t)=>e.handleBlur&&e.handleBlur(...t)),onKeydown:[t[3]||(t[3]=(0,ge.jR)((0,ge.D$)((t=>e.navigateOptions("next")),["stop","prevent"]),["down"])),t[4]||(t[4]=(0,ge.jR)((0,ge.D$)((t=>e.navigateOptions("prev")),["stop","prevent"]),["up"])),t[5]||(t[5]=(0,ge.jR)((0,ge.D$)(((...t)=>e.handleEsc&&e.handleEsc(...t)),["stop","prevent"]),["esc"])),t[6]||(t[6]=(0,ge.jR)((0,ge.D$)(((...t)=>e.selectOption&&e.selectOption(...t)),["stop","prevent"]),["enter"])),t[7]||(t[7]=(0,ge.jR)((0,ge.D$)(((...t)=>e.deletePrevTag&&e.deletePrevTag(...t)),["stop"]),["delete"]))],onCompositionstart:t[8]||(t[8]=(...t)=>e.handleCompositionStart&&e.handleCompositionStart(...t)),onCompositionupdate:t[9]||(t[9]=(...t)=>e.handleCompositionUpdate&&e.handleCompositionUpdate(...t)),onCompositionend:t[10]||(t[10]=(...t)=>e.handleCompositionEnd&&e.handleCompositionEnd(...t)),onInput:t[11]||(t[11]=(...t)=>e.onInput&&e.onInput(...t)),onClick:t[12]||(t[12]=(0,ge.D$)(((...t)=>e.toggleMenu&&e.toggleMenu(...t)),["stop"]))},null,46,KI),[[ge.Jo,e.states.inputValue]]),e.filterable?((0,i.uX)(),(0,i.CE)("span",{key:0,ref:"calculatorRef","aria-hidden":"true",class:(0,u.C4)(e.nsSelect.e("input-calculator")),textContent:(0,u.v_)(e.states.inputValue)},null,10,jI)):(0,i.Q3)("v-if",!0)],2)),e.shouldShowPlaceholder?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)([e.nsSelect.e("selected-item"),e.nsSelect.e("placeholder"),e.nsSelect.is("transparent",!e.hasModelValue||e.expanded&&!e.states.inputValue)])},[(0,i.Lk)("span",null,(0,u.v_)(e.currentPlaceholder),1)],2)):(0,i.Q3)("v-if",!0)],2),(0,i.Lk)("div",{ref:"suffixRef",class:(0,u.C4)(e.nsSelect.e("suffix"))},[e.iconComponent&&!e.showClose?((0,i.uX)(),(0,i.Wv)(c,{key:0,class:(0,u.C4)([e.nsSelect.e("caret"),e.nsSelect.e("icon"),e.iconReverse])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.iconComponent)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),e.showClose&&e.clearIcon?((0,i.uX)(),(0,i.Wv)(c,{key:1,class:(0,u.C4)([e.nsSelect.e("caret"),e.nsSelect.e("icon")]),onClick:e.handleClearClick},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.clearIcon)))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0),e.validateState&&e.validateIcon?((0,i.uX)(),(0,i.Wv)(c,{key:2,class:(0,u.C4)([e.nsInput.e("icon"),e.nsInput.e("validateIcon")])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.validateIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],2)],2)]})),content:(0,i.k6)((()=>[(0,i.bF)(v,{ref:"menuRef"},{default:(0,i.k6)((()=>[e.$slots.header?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.nsSelect.be("dropdown","header"))},[(0,i.RG)(e.$slots,"header")],2)):(0,i.Q3)("v-if",!0),(0,i.bo)((0,i.bF)(f,{id:e.contentId,ref:"scrollbarRef",tag:"ul","wrap-class":e.nsSelect.be("dropdown","wrap"),"view-class":e.nsSelect.be("dropdown","list"),class:(0,u.C4)([e.nsSelect.is("empty",0===e.filteredOptionsCount)]),role:"listbox","aria-label":e.ariaLabel,"aria-orientation":"vertical"},{default:(0,i.k6)((()=>[e.showNewOption?((0,i.uX)(),(0,i.Wv)(d,{key:0,value:e.states.inputValue,created:!0},null,8,["value"])):(0,i.Q3)("v-if",!0),(0,i.bF)(p,null,{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3})])),_:3},8,["id","wrap-class","view-class","class","aria-label"]),[[ge.aG,e.states.options.size>0&&!e.loading]]),e.$slots.loading&&e.loading?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)(e.nsSelect.be("dropdown","loading"))},[(0,i.RG)(e.$slots,"loading")],2)):e.loading||0===e.filteredOptionsCount?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)(e.nsSelect.be("dropdown","empty"))},[(0,i.RG)(e.$slots,"empty",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.emptyText),1)]))],2)):(0,i.Q3)("v-if",!0),e.$slots.footer?((0,i.uX)(),(0,i.CE)("div",{key:3,class:(0,u.C4)(e.nsSelect.be("dropdown","footer"))},[(0,i.RG)(e.$slots,"footer")],2)):(0,i.Q3)("v-if",!0)])),_:3},512)])),_:3},8,["visible","placement","teleported","popper-class","popper-options","fallback-placements","effect","transition","persistent","onBeforeShow"])],34)),[[h,e.handleClickOutside,e.popperRef]])}var XI=J(PI,[["render",VI],["__file","select.vue"]]);const UI=(0,i.pM)({name:"ElOptionGroup",componentName:"ElOptionGroup",props:{label:String,disabled:Boolean},setup(e){const t=(0,ee.DU)("select"),n=(0,s.KR)(null),o=(0,i.nI)(),r=(0,s.KR)([]);(0,i.Gt)(KO,(0,s.Kh)({...(0,s.QW)(e)}));const l=(0,i.EW)((()=>r.value.some((e=>!0===e.visible)))),a=e=>{const t=[];return(0,u.cy)(e.children)&&e.children.forEach((e=>{var n,o;e.type&&"ElOption"===e.type.name&&e.component&&e.component.proxy?t.push(e.component.proxy):(null==(n=e.children)?void 0:n.length)?t.push(...a(e)):(null==(o=e.component)?void 0:o.subTree)&&t.push(...a(e.component.subTree))})),t},c=()=>{r.value=a(o.subTree)};return(0,i.sV)((()=>{c()})),N(n,c,{attributes:!0,subtree:!0,childList:!0}),{groupRef:n,visible:l,ns:t}}});function HI(e,t,n,o,r,l){return(0,i.bo)(((0,i.uX)(),(0,i.CE)("ul",{ref:"groupRef",class:(0,u.C4)(e.ns.be("group","wrap"))},[(0,i.Lk)("li",{class:(0,u.C4)(e.ns.be("group","title"))},(0,u.v_)(e.label),3),(0,i.Lk)("li",null,[(0,i.Lk)("ul",{class:(0,u.C4)(e.ns.b("group"))},[(0,i.RG)(e.$slots,"default")],2)])],2)),[[ge.aG,e.visible]])}var zI=J(UI,[["render",HI],["__file","option-group.vue"]]);const GI=pe(XI,{Option:zO,OptionGroup:zI}),qI=he(zO),YI=he(zI),QI=()=>(0,i.WQ)(_O,{}),ZI=(0,H.b_)({pageSize:{type:Number,required:!0},pageSizes:{type:(0,H.jq)(Array),default:()=>Xn([10,20,30,40,50,100])},popperClass:{type:String},disabled:Boolean,teleported:Boolean,size:{type:String,values:rs.I}}),JI=(0,i.pM)({name:"ElPaginationSizes"}),eA=(0,i.pM)({...JI,props:ZI,emits:["page-size-change"],setup(e,{emit:t}){const n=e,{t:o}=(0,zu.Ym)(),r=(0,ee.DU)("pagination"),l=QI(),a=(0,s.KR)(n.pageSize);(0,i.wB)((()=>n.pageSizes),((e,o)=>{if(!eg(e,o)&&Array.isArray(e)){const o=e.includes(n.pageSize)?n.pageSize:n.pageSizes[0];t("page-size-change",o)}})),(0,i.wB)((()=>n.pageSize),(e=>{a.value=e}));const c=(0,i.EW)((()=>n.pageSizes));function d(e){var t;e!==a.value&&(a.value=e,null==(t=l.handleSizeChange)||t.call(l,Number(e)))}return(e,t)=>((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(r).e("sizes"))},[(0,i.bF)((0,s.R1)(GI),{"model-value":a.value,disabled:e.disabled,"popper-class":e.popperClass,size:e.size,teleported:e.teleported,"validate-event":!1,onChange:d},{default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(c),(e=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(qI),{key:e,value:e,label:e+(0,s.R1)(o)("el.pagination.pagesize")},null,8,["value","label"])))),128))])),_:1},8,["model-value","disabled","popper-class","size","teleported"])],2))}});var tA=J(eA,[["__file","sizes.vue"]]);const nA=(0,H.b_)({size:{type:String,values:rs.I}}),oA=["disabled"],rA=(0,i.pM)({name:"ElPaginationJumper"}),lA=(0,i.pM)({...rA,props:nA,setup(e){const{t:t}=(0,zu.Ym)(),n=(0,ee.DU)("pagination"),{pageCount:o,disabled:r,currentPage:l,changeEvent:a}=QI(),c=(0,s.KR)(),d=(0,i.EW)((()=>{var e;return null!=(e=c.value)?e:null==l?void 0:l.value}));function p(e){c.value=e?+e:""}function f(e){e=Math.trunc(+e),null==a||a(e),c.value=void 0}return(e,l)=>((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(n).e("jump")),disabled:(0,s.R1)(r)},[(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(n).e("goto")])},(0,u.v_)((0,s.R1)(t)("el.pagination.goto")),3),(0,i.bF)((0,s.R1)(yo),{size:e.size,class:(0,u.C4)([(0,s.R1)(n).e("editor"),(0,s.R1)(n).is("in-pagination")]),min:1,max:(0,s.R1)(o),disabled:(0,s.R1)(r),"model-value":(0,s.R1)(d),"validate-event":!1,label:(0,s.R1)(t)("el.pagination.page"),type:"number","onUpdate:modelValue":p,onChange:f},null,8,["size","class","max","disabled","model-value","label"]),(0,i.Lk)("span",{class:(0,u.C4)([(0,s.R1)(n).e("classifier")])},(0,u.v_)((0,s.R1)(t)("el.pagination.pageClassifier")),3)],10,oA))}});var aA=J(lA,[["__file","jumper.vue"]]);const iA=(0,H.b_)({total:{type:Number,default:1e3}}),sA=["disabled"],uA=(0,i.pM)({name:"ElPaginationTotal"}),cA=(0,i.pM)({...uA,props:iA,setup(e){const{t:t}=(0,zu.Ym)(),n=(0,ee.DU)("pagination"),{disabled:o}=QI();return(e,r)=>((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)((0,s.R1)(n).e("total")),disabled:(0,s.R1)(o)},(0,u.v_)((0,s.R1)(t)("el.pagination.total",{total:e.total})),11,sA))}});var dA=J(cA,[["__file","total.vue"]]);const pA=(0,H.b_)({currentPage:{type:Number,default:1},pageCount:{type:Number,required:!0},pagerCount:{type:Number,default:7},disabled:Boolean}),fA=["onKeyup"],vA=["aria-current","aria-label","tabindex"],hA=["tabindex","aria-label"],mA=["aria-current","aria-label","tabindex"],gA=["tabindex","aria-label"],yA=["aria-current","aria-label","tabindex"],bA=(0,i.pM)({name:"ElPaginationPager"}),RA=(0,i.pM)({...bA,props:pA,emits:["change"],setup(e,{emit:t}){const n=e,o=(0,ee.DU)("pager"),r=(0,ee.DU)("icon"),{t:l}=(0,zu.Ym)(),a=(0,s.KR)(!1),c=(0,s.KR)(!1),d=(0,s.KR)(!1),p=(0,s.KR)(!1),f=(0,s.KR)(!1),v=(0,s.KR)(!1),h=(0,i.EW)((()=>{const e=n.pagerCount,t=(e-1)/2,o=Number(n.currentPage),r=Number(n.pageCount);let l=!1,a=!1;r>e&&(o>e-t&&(l=!0),o["more","btn-quickprev",r.b(),o.is("disabled",n.disabled)])),g=(0,i.EW)((()=>["more","btn-quicknext",r.b(),o.is("disabled",n.disabled)])),y=(0,i.EW)((()=>n.disabled?-1:0));function b(e=!1){n.disabled||(e?d.value=!0:p.value=!0)}function R(e=!1){e?f.value=!0:v.value=!0}function w(e){const o=e.target;if("li"===o.tagName.toLowerCase()&&Array.from(o.classList).includes("number")){const e=Number(o.textContent);e!==n.currentPage&&t("change",e)}else"li"===o.tagName.toLowerCase()&&Array.from(o.classList).includes("more")&&E(e)}function E(e){const o=e.target;if("ul"===o.tagName.toLowerCase()||n.disabled)return;let r=Number(o.textContent);const l=n.pageCount,a=n.currentPage,i=n.pagerCount-2;o.className.includes("more")&&(o.className.includes("quickprev")?r=a-i:o.className.includes("quicknext")&&(r=a+i)),Number.isNaN(+r)||(r<1&&(r=1),r>l&&(r=l)),r!==a&&t("change",r)}return(0,i.nT)((()=>{const e=(n.pagerCount-1)/2;a.value=!1,c.value=!1,n.pageCount>n.pagerCount&&(n.currentPage>n.pagerCount-e&&(a.value=!0),n.currentPage((0,i.uX)(),(0,i.CE)("ul",{class:(0,u.C4)((0,s.R1)(o).b()),onClick:E,onKeyup:(0,ge.jR)(w,["enter"])},[e.pageCount>0?((0,i.uX)(),(0,i.CE)("li",{key:0,class:(0,u.C4)([[(0,s.R1)(o).is("active",1===e.currentPage),(0,s.R1)(o).is("disabled",e.disabled)],"number"]),"aria-current":1===e.currentPage,"aria-label":(0,s.R1)(l)("el.pagination.currentPage",{pager:1}),tabindex:(0,s.R1)(y)}," 1 ",10,vA)):(0,i.Q3)("v-if",!0),a.value?((0,i.uX)(),(0,i.CE)("li",{key:1,class:(0,u.C4)((0,s.R1)(m)),tabindex:(0,s.R1)(y),"aria-label":(0,s.R1)(l)("el.pagination.prevPages",{pager:e.pagerCount-2}),onMouseenter:t[0]||(t[0]=e=>b(!0)),onMouseleave:t[1]||(t[1]=e=>d.value=!1),onFocus:t[2]||(t[2]=e=>R(!0)),onBlur:t[3]||(t[3]=e=>f.value=!1)},[!d.value&&!f.value||e.disabled?((0,i.uX)(),(0,i.Wv)((0,s.R1)(bt),{key:1})):((0,i.uX)(),(0,i.Wv)((0,s.R1)(tt),{key:0}))],42,hA)):(0,i.Q3)("v-if",!0),((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(h),(t=>((0,i.uX)(),(0,i.CE)("li",{key:t,class:(0,u.C4)([[(0,s.R1)(o).is("active",e.currentPage===t),(0,s.R1)(o).is("disabled",e.disabled)],"number"]),"aria-current":e.currentPage===t,"aria-label":(0,s.R1)(l)("el.pagination.currentPage",{pager:t}),tabindex:(0,s.R1)(y)},(0,u.v_)(t),11,mA)))),128)),c.value?((0,i.uX)(),(0,i.CE)("li",{key:2,class:(0,u.C4)((0,s.R1)(g)),tabindex:(0,s.R1)(y),"aria-label":(0,s.R1)(l)("el.pagination.nextPages",{pager:e.pagerCount-2}),onMouseenter:t[4]||(t[4]=e=>b()),onMouseleave:t[5]||(t[5]=e=>p.value=!1),onFocus:t[6]||(t[6]=e=>R()),onBlur:t[7]||(t[7]=e=>v.value=!1)},[!p.value&&!v.value||e.disabled?((0,i.uX)(),(0,i.Wv)((0,s.R1)(bt),{key:1})):((0,i.uX)(),(0,i.Wv)((0,s.R1)(ot),{key:0}))],42,gA)):(0,i.Q3)("v-if",!0),e.pageCount>1?((0,i.uX)(),(0,i.CE)("li",{key:3,class:(0,u.C4)([[(0,s.R1)(o).is("active",e.currentPage===e.pageCount),(0,s.R1)(o).is("disabled",e.disabled)],"number"]),"aria-current":e.currentPage===e.pageCount,"aria-label":(0,s.R1)(l)("el.pagination.currentPage",{pager:e.pageCount}),tabindex:(0,s.R1)(y)},(0,u.v_)(e.pageCount),11,yA)):(0,i.Q3)("v-if",!0)],42,fA))}});var wA=J(RA,[["__file","pager.vue"]]);const EA=e=>"number"!==typeof e,CA=(0,H.b_)({pageSize:Number,defaultPageSize:Number,total:Number,pageCount:Number,pagerCount:{type:Number,validator:e=>(0,z.Et)(e)&&Math.trunc(e)===e&&e>4&&e<22&&e%2===1,default:7},currentPage:Number,defaultCurrentPage:Number,layout:{type:String,default:["prev","pager","next","jumper","->","total"].join(", ")},pageSizes:{type:(0,H.jq)(Array),default:()=>Xn([10,20,30,40,50,100])},popperClass:{type:String,default:""},prevText:{type:String,default:""},prevIcon:{type:en,default:()=>Se},nextText:{type:String,default:""},nextIcon:{type:en,default:()=>Oe},teleported:{type:Boolean,default:!0},small:Boolean,background:Boolean,disabled:Boolean,hideOnSinglePage:Boolean}),kA={"update:current-page":e=>(0,z.Et)(e),"update:page-size":e=>(0,z.Et)(e),"size-change":e=>(0,z.Et)(e),change:(e,t)=>(0,z.Et)(e)&&(0,z.Et)(t),"current-change":e=>(0,z.Et)(e),"prev-click":e=>(0,z.Et)(e),"next-click":e=>(0,z.Et)(e)},xA="ElPagination";var _A=(0,i.pM)({name:xA,props:CA,emits:kA,setup(e,{emit:t,slots:n}){const{t:o}=(0,zu.Ym)(),r=(0,ee.DU)("pagination"),l=(0,i.nI)().vnode.props||{},a="onUpdate:currentPage"in l||"onUpdate:current-page"in l||"onCurrentChange"in l,u="onUpdate:pageSize"in l||"onUpdate:page-size"in l||"onSizeChange"in l,c=(0,i.EW)((()=>{if(EA(e.total)&&EA(e.pageCount))return!1;if(!EA(e.currentPage)&&!a)return!1;if(e.layout.includes("sizes"))if(EA(e.pageCount)){if(!EA(e.total)&&!EA(e.pageSize)&&!u)return!1}else if(!u)return!1;return!0})),d=(0,s.KR)(EA(e.defaultPageSize)?10:e.defaultPageSize),p=(0,s.KR)(EA(e.defaultCurrentPage)?1:e.defaultCurrentPage),f=(0,i.EW)({get(){return EA(e.pageSize)?d.value:e.pageSize},set(n){EA(e.pageSize)&&(d.value=n),u&&(t("update:page-size",n),t("size-change",n))}}),v=(0,i.EW)((()=>{let t=0;return EA(e.pageCount)?EA(e.total)||(t=Math.max(1,Math.ceil(e.total/f.value))):t=e.pageCount,t})),h=(0,i.EW)({get(){return EA(e.currentPage)?p.value:e.currentPage},set(n){let o=n;n<1?o=1:n>v.value&&(o=v.value),EA(e.currentPage)&&(p.value=o),a&&(t("update:current-page",o),t("current-change",o))}});function m(e){h.value=e}function g(e){f.value=e;const t=v.value;h.value>t&&(h.value=t)}function y(){e.disabled||(h.value-=1,t("prev-click",h.value))}function b(){e.disabled||(h.value+=1,t("next-click",h.value))}function R(e,t){e&&(e.props||(e.props={}),e.props.class=[e.props.class,t].join(" "))}return(0,i.wB)(v,(e=>{h.value>e&&(h.value=e)})),(0,i.wB)([h,f],(e=>{t("change",...e)}),{flush:"post"}),(0,i.Gt)(_O,{pageCount:v,disabled:(0,i.EW)((()=>e.disabled)),currentPage:h,changeEvent:m,handleSizeChange:g}),()=>{var t,l;if(!c.value)return(0,ne.U)(xA,o("el.pagination.deprecationWarning")),null;if(!e.layout)return null;if(e.hideOnSinglePage&&v.value<=1)return null;const a=[],s=[],u=(0,i.h)("div",{class:r.e("rightwrapper")},s),d={prev:(0,i.h)(MO,{disabled:e.disabled,currentPage:h.value,prevText:e.prevText,prevIcon:e.prevIcon,onClick:y}),jumper:(0,i.h)(aA,{size:e.small?"small":"default"}),pager:(0,i.h)(wA,{currentPage:h.value,pageCount:v.value,pagerCount:e.pagerCount,onChange:m,disabled:e.disabled}),next:(0,i.h)(BO,{disabled:e.disabled,currentPage:h.value,pageCount:v.value,nextText:e.nextText,nextIcon:e.nextIcon,onClick:b}),sizes:(0,i.h)(tA,{pageSize:f.value,pageSizes:e.pageSizes,popperClass:e.popperClass,disabled:e.disabled,teleported:e.teleported,size:e.small?"small":"default"}),slot:null!=(l=null==(t=null==n?void 0:n.default)?void 0:t.call(n))?l:null,total:(0,i.h)(dA,{total:EA(e.total)?0:e.total})},p=e.layout.split(",").map((e=>e.trim()));let g=!1;return p.forEach((e=>{"->"!==e?g?s.push(d[e]):a.push(d[e]):g=!0})),R(a[0],r.is("first")),R(a[a.length-1],r.is("last")),g&&s.length>0&&(R(s[0],r.is("first")),R(s[s.length-1],r.is("last")),a.push(u)),(0,i.h)("div",{class:[r.b(),r.is("background",e.background),{[r.m("small")]:e.small}]},a)}}});const SA=pe(_A),TA=(0,H.b_)({title:String,confirmButtonText:String,cancelButtonText:String,confirmButtonType:{type:String,values:Ps,default:"primary"},cancelButtonType:{type:String,values:Ps,default:"text"},icon:{type:en,default:()=>St},iconColor:{type:String,default:"#f90"},hideIcon:{type:Boolean,default:!1},hideAfter:{type:Number,default:200},teleported:ra.teleported,persistent:ra.persistent,width:{type:[String,Number],default:150}}),OA={confirm:e=>e instanceof MouseEvent,cancel:e=>e instanceof MouseEvent},IA=(0,i.pM)({name:"ElPopconfirm"}),AA=(0,i.pM)({...IA,props:TA,emits:OA,setup(e,{emit:t}){const n=e,{t:o}=(0,zu.Ym)(),r=(0,ee.DU)("popconfirm"),l=(0,s.KR)(),a=()=>{var e,t;null==(t=null==(e=l.value)?void 0:e.onClose)||t.call(e)},c=(0,i.EW)((()=>({width:(0,te._V)(n.width)}))),d=e=>{t("confirm",e),a()},p=e=>{t("cancel",e),a()},f=(0,i.EW)((()=>n.confirmButtonText||o("el.popconfirm.confirmButtonText"))),v=(0,i.EW)((()=>n.cancelButtonText||o("el.popconfirm.cancelButtonText")));return(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),(0,i.v6)({ref_key:"tooltipRef",ref:l,trigger:"click",effect:"light"},e.$attrs,{"popper-class":`${(0,s.R1)(r).namespace.value}-popover`,"popper-style":(0,s.R1)(c),teleported:e.teleported,"fallback-placements":["bottom","top","right","left"],"hide-after":e.hideAfter,persistent:e.persistent}),{content:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).b())},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("main"))},[!e.hideIcon&&e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(r).e("icon")),style:(0,u.Tr)({color:e.iconColor})},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1},8,["class","style"])):(0,i.Q3)("v-if",!0),(0,i.eW)(" "+(0,u.v_)(e.title),1)],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("action"))},[(0,i.bF)((0,s.R1)(Ou),{size:"small",type:"text"===e.cancelButtonType?"":e.cancelButtonType,text:"text"===e.cancelButtonType,onClick:p},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(v)),1)])),_:1},8,["type","text"]),(0,i.bF)((0,s.R1)(Ou),{size:"small",type:"text"===e.confirmButtonType?"":e.confirmButtonType,text:"text"===e.confirmButtonType,onClick:d},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)((0,s.R1)(f)),1)])),_:1},8,["type","text"])],2)],2)])),default:(0,i.k6)((()=>[e.$slots.reference?(0,i.RG)(e.$slots,"reference",{key:0}):(0,i.Q3)("v-if",!0)])),_:3},16,["popper-class","popper-style","teleported","hide-after","persistent"]))}});var LA=J(AA,[["__file","popconfirm.vue"]]);const MA=pe(LA),NA=(0,H.b_)({trigger:ia.trigger,placement:ux.placement,disabled:ia.disabled,visible:ra.visible,transition:ra.transition,popperOptions:ux.popperOptions,tabindex:ux.tabindex,content:ra.content,popperStyle:ra.popperStyle,popperClass:ra.popperClass,enterable:{...ra.enterable,default:!0},effect:{...ra.effect,default:"light"},teleported:ra.teleported,title:String,width:{type:[String,Number],default:150},offset:{type:Number,default:void 0},showAfter:{type:Number,default:0},hideAfter:{type:Number,default:200},autoClose:{type:Number,default:0},showArrow:{type:Boolean,default:!0},persistent:{type:Boolean,default:!0},"onUpdate:visible":{type:Function}}),WA={"update:visible":e=>(0,z.Lm)(e),"before-enter":()=>!0,"before-leave":()=>!0,"after-enter":()=>!0,"after-leave":()=>!0},DA="onUpdate:visible",FA=(0,i.pM)({name:"ElPopover"}),$A=(0,i.pM)({...FA,props:NA,emits:WA,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.EW)((()=>o[DA])),l=(0,ee.DU)("popover"),a=(0,s.KR)(),c=(0,i.EW)((()=>{var e;return null==(e=(0,s.R1)(a))?void 0:e.popperRef})),d=(0,i.EW)((()=>[{width:(0,te._V)(o.width)},o.popperStyle])),p=(0,i.EW)((()=>[l.b(),o.popperClass,{[l.m("plain")]:!!o.content}])),f=(0,i.EW)((()=>o.transition===`${l.namespace.value}-fade-in-linear`)),v=()=>{var e;null==(e=a.value)||e.hide()},h=()=>{n("before-enter")},m=()=>{n("before-leave")},g=()=>{n("after-enter")},y=()=>{n("update:visible",!1),n("after-leave")};return t({popperRef:c,hide:v}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(zi),(0,i.v6)({ref_key:"tooltipRef",ref:a},e.$attrs,{trigger:e.trigger,placement:e.placement,disabled:e.disabled,visible:e.visible,transition:e.transition,"popper-options":e.popperOptions,tabindex:e.tabindex,content:e.content,offset:e.offset,"show-after":e.showAfter,"hide-after":e.hideAfter,"auto-close":e.autoClose,"show-arrow":e.showArrow,"aria-label":e.title,effect:e.effect,enterable:e.enterable,"popper-class":(0,s.R1)(p),"popper-style":(0,s.R1)(d),teleported:e.teleported,persistent:e.persistent,"gpu-acceleration":(0,s.R1)(f),"onUpdate:visible":(0,s.R1)(r),onBeforeShow:h,onBeforeHide:m,onShow:g,onHide:y}),{content:(0,i.k6)((()=>[e.title?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(l).e("title")),role:"title"},(0,u.v_)(e.title),3)):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.eW)((0,u.v_)(e.content),1)]))])),default:(0,i.k6)((()=>[e.$slots.reference?(0,i.RG)(e.$slots,"reference",{key:0}):(0,i.Q3)("v-if",!0)])),_:3},16,["trigger","placement","disabled","visible","transition","popper-options","tabindex","content","offset","show-after","hide-after","auto-close","show-arrow","aria-label","effect","enterable","popper-class","popper-style","teleported","persistent","gpu-acceleration","onUpdate:visible"]))}});var BA=J($A,[["__file","popover.vue"]]);const PA=(e,t)=>{const n=t.arg||t.value,o=null==n?void 0:n.popperRef;o&&(o.triggerRef=e)};var KA={mounted(e,t){PA(e,t)},updated(e,t){PA(e,t)}};const jA="popover",VA=ve(KA,jA),XA=pe(BA,{directive:VA}),UA=(0,H.b_)({type:{type:String,default:"line",values:["line","circle","dashboard"]},percentage:{type:Number,default:0,validator:e=>e>=0&&e<=100},status:{type:String,default:"",values:["","success","exception","warning"]},indeterminate:{type:Boolean,default:!1},duration:{type:Number,default:3},strokeWidth:{type:Number,default:6},strokeLinecap:{type:(0,H.jq)(String),default:"round"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:(0,H.jq)([String,Array,Function]),default:""},striped:Boolean,stripedFlow:Boolean,format:{type:(0,H.jq)(Function),default:e=>`${e}%`}}),HA=["aria-valuenow"],zA={viewBox:"0 0 100 100"},GA=["d","stroke","stroke-linecap","stroke-width"],qA=["d","stroke","opacity","stroke-linecap","stroke-width"],YA={key:0},QA=(0,i.pM)({name:"ElProgress"}),ZA=(0,i.pM)({...QA,props:UA,setup(e){const t=e,n={success:"#13ce66",exception:"#ff4949",warning:"#e6a23c",default:"#20a0ff"},o=(0,ee.DU)("progress"),r=(0,i.EW)((()=>({width:`${t.percentage}%`,animationDuration:`${t.duration}s`,backgroundColor:w(t.percentage)}))),l=(0,i.EW)((()=>(t.strokeWidth/t.width*100).toFixed(1))),a=(0,i.EW)((()=>["circle","dashboard"].includes(t.type)?Number.parseInt(""+(50-Number.parseFloat(l.value)/2),10):0)),c=(0,i.EW)((()=>{const e=a.value,n="dashboard"===t.type;return`\n M 50 50\n m 0 ${n?"":"-"}${e}\n a ${e} ${e} 0 1 1 0 ${n?"-":""}${2*e}\n a ${e} ${e} 0 1 1 0 ${n?"":"-"}${2*e}\n `})),d=(0,i.EW)((()=>2*Math.PI*a.value)),p=(0,i.EW)((()=>"dashboard"===t.type?.75:1)),f=(0,i.EW)((()=>{const e=-1*d.value*(1-p.value)/2;return`${e}px`})),v=(0,i.EW)((()=>({strokeDasharray:`${d.value*p.value}px, ${d.value}px`,strokeDashoffset:f.value}))),h=(0,i.EW)((()=>({strokeDasharray:`${d.value*p.value*(t.percentage/100)}px, ${d.value}px`,strokeDashoffset:f.value,transition:"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease, opacity ease 0.6s"}))),m=(0,i.EW)((()=>{let e;return e=t.color?w(t.percentage):n[t.status]||n.default,e})),g=(0,i.EW)((()=>"warning"===t.status?qt:"line"===t.type?"success"===t.status?Ue:qe:"success"===t.status?Ke:Je)),y=(0,i.EW)((()=>"line"===t.type?12+.4*t.strokeWidth:.111111*t.width+2)),b=(0,i.EW)((()=>t.format(t.percentage)));function R(e){const t=100/e.length,n=e.map(((e,n)=>(0,u.Kg)(e)?{color:e,percentage:(n+1)*t}:e));return n.sort(((e,t)=>e.percentage-t.percentage))}const w=e=>{var n;const{color:o}=t;if((0,u.Tn)(o))return o(e);if((0,u.Kg)(o))return o;{const t=R(o);for(const n of t)if(n.percentage>e)return n.color;return null==(n=t[t.length-1])?void 0:n.color}};return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(o).b(),(0,s.R1)(o).m(e.type),(0,s.R1)(o).is(e.status),{[(0,s.R1)(o).m("without-text")]:!e.showText,[(0,s.R1)(o).m("text-inside")]:e.textInside}]),role:"progressbar","aria-valuenow":e.percentage,"aria-valuemin":"0","aria-valuemax":"100"},["line"===e.type?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o).b("bar"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).be("bar","outer")),style:(0,u.Tr)({height:`${e.strokeWidth}px`})},[(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(o).be("bar","inner"),{[(0,s.R1)(o).bem("bar","inner","indeterminate")]:e.indeterminate},{[(0,s.R1)(o).bem("bar","inner","striped")]:e.striped},{[(0,s.R1)(o).bem("bar","inner","striped-flow")]:e.stripedFlow}]),style:(0,u.Tr)((0,s.R1)(r))},[(e.showText||e.$slots.default)&&e.textInside?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o).be("bar","innerText"))},[(0,i.RG)(e.$slots,"default",{percentage:e.percentage},(()=>[(0,i.Lk)("span",null,(0,u.v_)((0,s.R1)(b)),1)]))],2)):(0,i.Q3)("v-if",!0)],6)],6)],2)):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(o).b("circle")),style:(0,u.Tr)({height:`${e.width}px`,width:`${e.width}px`})},[((0,i.uX)(),(0,i.CE)("svg",zA,[(0,i.Lk)("path",{class:(0,u.C4)((0,s.R1)(o).be("circle","track")),d:(0,s.R1)(c),stroke:`var(${(0,s.R1)(o).cssVarName("fill-color-light")}, #e5e9f2)`,"stroke-linecap":e.strokeLinecap,"stroke-width":(0,s.R1)(l),fill:"none",style:(0,u.Tr)((0,s.R1)(v))},null,14,GA),(0,i.Lk)("path",{class:(0,u.C4)((0,s.R1)(o).be("circle","path")),d:(0,s.R1)(c),stroke:(0,s.R1)(m),fill:"none",opacity:e.percentage?1:0,"stroke-linecap":e.strokeLinecap,"stroke-width":(0,s.R1)(l),style:(0,u.Tr)((0,s.R1)(h))},null,14,qA)]))],6)),!e.showText&&!e.$slots.default||e.textInside?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)((0,s.R1)(o).e("text")),style:(0,u.Tr)({fontSize:`${(0,s.R1)(y)}px`})},[(0,i.RG)(e.$slots,"default",{percentage:e.percentage},(()=>[e.status?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(g))))])),_:1})):((0,i.uX)(),(0,i.CE)("span",YA,(0,u.v_)((0,s.R1)(b)),1))]))],6))],10,HA))}});var JA=J(ZA,[["__file","progress.vue"]]);const eL=pe(JA),tL=(0,H.b_)({modelValue:{type:Number,default:0},id:{type:String,default:void 0},lowThreshold:{type:Number,default:2},highThreshold:{type:Number,default:4},max:{type:Number,default:5},colors:{type:(0,H.jq)([Array,Object]),default:()=>Xn(["","",""])},voidColor:{type:String,default:""},disabledVoidColor:{type:String,default:""},icons:{type:(0,H.jq)([Array,Object]),default:()=>[Kt,Kt,Kt]},voidIcon:{type:en,default:()=>Vt},disabledVoidIcon:{type:en,default:()=>Kt},disabled:Boolean,allowHalf:Boolean,showText:Boolean,showScore:Boolean,textColor:{type:String,default:""},texts:{type:(0,H.jq)(Array),default:()=>Xn(["Extremely bad","Disappointed","Fair","Satisfied","Surprise"])},scoreTemplate:{type:String,default:"{value}"},size:Vn.mU,label:{type:String,default:void 0},clearable:{type:Boolean,default:!1}}),nL={[q]:e=>(0,z.Et)(e),[G]:e=>(0,z.Et)(e)},oL=["id","aria-label","aria-labelledby","aria-valuenow","aria-valuetext","aria-valuemax"],rL=["onMousemove","onClick"],lL=(0,i.pM)({name:"ElRate"}),aL=(0,i.pM)({...lL,props:tL,emits:nL,setup(e,{expose:t,emit:n}){const o=e;function r(e,t){const n=e=>(0,u.Gv)(e),o=Object.keys(t).map((e=>+e)).filter((o=>{const r=t[o],l=!!n(r)&&r.excluded;return l?ee-t)),r=t[o[0]];return n(r)&&r.value||r}const l=(0,i.WQ)(Qn,void 0),a=(0,i.WQ)(Zn,void 0),c=ao(),d=(0,ee.DU)("rate"),{inputId:p,isLabeledByFormItem:f}=ro(o,{formItemContext:a}),v=(0,s.KR)(o.modelValue),h=(0,s.KR)(-1),m=(0,s.KR)(!0),g=(0,i.EW)((()=>[d.b(),d.m(c.value)])),y=(0,i.EW)((()=>o.disabled||(null==l?void 0:l.disabled))),b=(0,i.EW)((()=>d.cssVarBlock({"void-color":o.voidColor,"disabled-void-color":o.disabledVoidColor,"fill-color":C.value}))),R=(0,i.EW)((()=>{let e="";return o.showScore?e=o.scoreTemplate.replace(/\{\s*value\s*\}/,y.value?`${o.modelValue}`:`${v.value}`):o.showText&&(e=o.texts[Math.ceil(v.value)-1]),e})),w=(0,i.EW)((()=>100*o.modelValue-100*Math.floor(o.modelValue))),E=(0,i.EW)((()=>(0,u.cy)(o.colors)?{[o.lowThreshold]:o.colors[0],[o.highThreshold]:{value:o.colors[1],excluded:!0},[o.max]:o.colors[2]}:o.colors)),C=(0,i.EW)((()=>{const e=r(v.value,E.value);return(0,u.Gv)(e)?"":e})),k=(0,i.EW)((()=>{let e="";return y.value?e=`${w.value}%`:o.allowHalf&&(e="50%"),{color:C.value,width:e}})),x=(0,i.EW)((()=>{let e=(0,u.cy)(o.icons)?[...o.icons]:{...o.icons};return e=(0,s.IG)(e),(0,u.cy)(e)?{[o.lowThreshold]:e[0],[o.highThreshold]:{value:e[1],excluded:!0},[o.max]:e[2]}:e})),_=(0,i.EW)((()=>r(o.modelValue,x.value))),S=(0,i.EW)((()=>y.value?(0,u.Kg)(o.disabledVoidIcon)?o.disabledVoidIcon:(0,s.IG)(o.disabledVoidIcon):(0,u.Kg)(o.voidIcon)?o.voidIcon:(0,s.IG)(o.voidIcon))),T=(0,i.EW)((()=>r(v.value,x.value)));function O(e){const t=y.value&&w.value>0&&e-1o.modelValue,n=o.allowHalf&&m.value&&e-.5<=v.value&&e>v.value;return t||n}function I(e){o.clearable&&e===o.modelValue&&(e=0),n(G,e),o.modelValue!==e&&n("change",e)}function A(e){y.value||(o.allowHalf&&m.value?I(v.value):I(e))}function L(e){if(y.value)return;let t=v.value;const r=e.code;return r===aa.up||r===aa.right?(o.allowHalf?t+=.5:t+=1,e.stopPropagation(),e.preventDefault()):r!==aa.left&&r!==aa.down||(o.allowHalf?t-=.5:t-=1,e.stopPropagation(),e.preventDefault()),t=t<0?0:t,t=t>o.max?o.max:t,n(G,t),n("change",t),t}function M(e,t){if(!y.value){if(o.allowHalf&&t){let n=t.target;(0,te.nB)(n,d.e("item"))&&(n=n.querySelector(`.${d.e("icon")}`)),(0===n.clientWidth||(0,te.nB)(n,d.e("decimal")))&&(n=n.parentNode),m.value=2*t.offsetX<=n.clientWidth,v.value=m.value?e-.5:e}else v.value=e;h.value=e}}function N(){y.value||(o.allowHalf&&(m.value=o.modelValue!==Math.floor(o.modelValue)),v.value=o.modelValue,h.value=-1)}return(0,i.wB)((()=>o.modelValue),(e=>{v.value=e,m.value=o.modelValue!==Math.floor(o.modelValue)})),o.modelValue||n(G,0),t({setCurrentValue:M,resetCurrentValue:N}),(e,t)=>{var n;return(0,i.uX)(),(0,i.CE)("div",{id:(0,s.R1)(p),class:(0,u.C4)([(0,s.R1)(g),(0,s.R1)(d).is("disabled",(0,s.R1)(y))]),role:"slider","aria-label":(0,s.R1)(f)?void 0:e.label||"rating","aria-labelledby":(0,s.R1)(f)?null==(n=(0,s.R1)(a))?void 0:n.labelId:void 0,"aria-valuenow":v.value,"aria-valuetext":(0,s.R1)(R)||void 0,"aria-valuemin":"0","aria-valuemax":e.max,tabindex:"0",style:(0,u.Tr)((0,s.R1)(b)),onKeydown:L},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.max,((e,t)=>((0,i.uX)(),(0,i.CE)("span",{key:t,class:(0,u.C4)((0,s.R1)(d).e("item")),onMousemove:t=>M(e,t),onMouseleave:N,onClick:t=>A(e)},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)([(0,s.R1)(d).e("icon"),{hover:h.value===e},(0,s.R1)(d).is("active",e<=v.value)])},{default:(0,i.k6)((()=>[O(e)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(T)),null,null,512)),[[ge.aG,e<=v.value]]),(0,i.bo)(((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(S)),null,null,512)),[[ge.aG,!(e<=v.value)]])],64)),O(e)?((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(S)),{class:(0,u.C4)([(0,s.R1)(d).em("decimal","box")])},null,8,["class"])),(0,i.bF)((0,s.R1)(Ee),{style:(0,u.Tr)((0,s.R1)(k)),class:(0,u.C4)([(0,s.R1)(d).e("icon"),(0,s.R1)(d).e("decimal")])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(_))))])),_:1},8,["style","class"])],64)):(0,i.Q3)("v-if",!0)])),_:2},1032,["class"])],42,rL)))),128)),e.showText||e.showScore?((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(d).e("text")),style:(0,u.Tr)({color:e.textColor})},(0,u.v_)((0,s.R1)(R)),7)):(0,i.Q3)("v-if",!0)],46,oL)}}});var iL=J(aL,[["__file","rate.vue"]]);const sL=pe(iL),uL={success:"icon-success",warning:"icon-warning",error:"icon-error",info:"icon-info"},cL={[uL.success]:Ve,[uL.warning]:qt,[uL.error]:ze,[uL.info]:ft},dL=(0,H.b_)({title:{type:String,default:""},subTitle:{type:String,default:""},icon:{type:String,values:["success","warning","info","error"],default:"info"}}),pL=(0,i.pM)({name:"ElResult"}),fL=(0,i.pM)({...pL,props:dL,setup(e){const t=e,n=(0,ee.DU)("result"),o=(0,i.EW)((()=>{const e=t.icon,n=e&&uL[e]?uL[e]:"icon-info",o=cL[n]||cL["icon-info"];return{class:n,component:o}}));return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(n).b())},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("icon"))},[(0,i.RG)(e.$slots,"icon",{},(()=>[(0,s.R1)(o).component?((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(o).component),{key:0,class:(0,u.C4)((0,s.R1)(o).class)},null,8,["class"])):(0,i.Q3)("v-if",!0)]))],2),e.title||e.$slots.title?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(n).e("title"))},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.Lk)("p",null,(0,u.v_)(e.title),1)]))],2)):(0,i.Q3)("v-if",!0),e.subTitle||e.$slots["sub-title"]?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(n).e("subtitle"))},[(0,i.RG)(e.$slots,"sub-title",{},(()=>[(0,i.Lk)("p",null,(0,u.v_)(e.subTitle),1)]))],2)):(0,i.Q3)("v-if",!0),e.$slots.extra?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)((0,s.R1)(n).e("extra"))},[(0,i.RG)(e.$slots,"extra")],2)):(0,i.Q3)("v-if",!0)],2))}});var vL=J(fL,[["__file","result.vue"]]);const hL=pe(vL),mL=["start","center","end","space-around","space-between","space-evenly"],gL=["top","middle","bottom"],yL=(0,H.b_)({tag:{type:String,default:"div"},gutter:{type:Number,default:0},justify:{type:String,values:mL,default:"start"},align:{type:String,values:gL}}),bL=(0,i.pM)({name:"ElRow"}),RL=(0,i.pM)({...bL,props:yL,setup(e){const t=e,n=(0,ee.DU)("row"),o=(0,i.EW)((()=>t.gutter));(0,i.Gt)(nR,{gutter:o});const r=(0,i.EW)((()=>{const e={};return t.gutter?(e.marginRight=e.marginLeft=`-${t.gutter/2}px`,e):e})),l=(0,i.EW)((()=>[n.b(),n.is(`justify-${t.justify}`,"start"!==t.justify),n.is(`align-${t.align}`,!!t.align)]));return(e,t)=>((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),{class:(0,u.C4)((0,s.R1)(l)),style:(0,u.Tr)((0,s.R1)(r))},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["class","style"]))}});var wL=J(RL,[["__file","row.vue"]]);const EL=pe(wL),CL=(0,i.pM)({props:{item:{type:Object,required:!0},style:Object,height:Number},setup(){const e=(0,ee.DU)("select");return{ns:e}}});function kL(e,t,n,o,r,l){return e.item.isTitle?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.ns.be("group","title")),style:(0,u.Tr)([e.style,{lineHeight:`${e.height}px`}])},(0,u.v_)(e.item.label),7)):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)(e.ns.be("group","split")),style:(0,u.Tr)(e.style)},[(0,i.Lk)("span",{class:(0,u.C4)(e.ns.be("group","split-dash")),style:(0,u.Tr)({top:e.height/2+"px"})},null,6)],6))}var xL=J(CL,[["render",kL],["__file","group-item.vue"]]);function _L(e,{emit:t}){return{hoverItem:()=>{e.disabled||t("hover",e.index)},selectOptionClick:()=>{e.disabled||t("select",e.item,e.index)}}}const SL={label:"label",value:"value",disabled:"disabled",options:"options"};function TL(e){const t=(0,i.EW)((()=>({...SL,...e.props}))),n=e=>(0,PO.A)(e,t.value.label),o=e=>(0,PO.A)(e,t.value.value),r=e=>(0,PO.A)(e,t.value.disabled),l=e=>(0,PO.A)(e,t.value.options);return{aliasProps:t,getLabel:n,getValue:o,getDisabled:r,getOptions:l}}const OL=(0,H.b_)({allowCreate:Boolean,autocomplete:{type:(0,H.jq)(String),default:"none"},automaticDropdown:Boolean,clearable:Boolean,clearIcon:{type:en,default:qe},effect:{type:(0,H.jq)(String),default:"light"},collapseTags:Boolean,collapseTagsTooltip:Boolean,maxCollapseTags:{type:Number,default:1},defaultFirstOption:Boolean,disabled:Boolean,estimatedOptionHeight:{type:Number,default:void 0},filterable:Boolean,filterMethod:Function,height:{type:Number,default:274},itemHeight:{type:Number,default:34},id:String,loading:Boolean,loadingText:String,modelValue:{type:(0,H.jq)([Array,String,Number,Boolean,Object])},multiple:Boolean,multipleLimit:{type:Number,default:0},name:String,noDataText:String,noMatchText:String,remoteMethod:Function,reserveKeyword:{type:Boolean,default:!0},options:{type:(0,H.jq)(Array),required:!0},placeholder:{type:String},teleported:ra.teleported,persistent:{type:Boolean,default:!0},popperClass:{type:String,default:""},popperOptions:{type:(0,H.jq)(Object),default:()=>({})},remote:Boolean,size:Vn.mU,props:{type:(0,H.jq)(Object),default:()=>SL},valueKey:{type:String,default:"value"},scrollbarAlwaysOn:Boolean,validateEvent:{type:Boolean,default:!0},placement:{type:(0,H.jq)(String),values:sr,default:"bottom-start"},fallbackPlacements:{type:(0,H.jq)(Array),default:["bottom-start","top-start","right","left"]},tagType:{...Tb.type,default:"info"},ariaLabel:{type:String,default:void 0}}),IL=(0,H.b_)({data:Array,disabled:Boolean,hovering:Boolean,item:{type:(0,H.jq)(Object),required:!0},index:Number,style:Object,selected:Boolean,created:Boolean}),AL=Symbol("ElSelectV2Injection"),LL=(0,i.pM)({props:IL,emits:["select","hover"],setup(e,{emit:t}){const n=(0,i.WQ)(AL),o=(0,ee.DU)("select"),{hoverItem:r,selectOptionClick:l}=_L(e,{emit:t}),{getLabel:a}=TL(n.props);return{ns:o,hoverItem:r,selectOptionClick:l,getLabel:a}}}),ML=["aria-selected"];function NL(e,t,n,o,r,l){return(0,i.uX)(),(0,i.CE)("li",{"aria-selected":e.selected,style:(0,u.Tr)(e.style),class:(0,u.C4)([e.ns.be("dropdown","item"),e.ns.is("selected",e.selected),e.ns.is("disabled",e.disabled),e.ns.is("created",e.created),e.ns.is("hovering",e.hovering)]),onMouseenter:t[0]||(t[0]=(...t)=>e.hoverItem&&e.hoverItem(...t)),onClick:t[1]||(t[1]=(0,ge.D$)(((...t)=>e.selectOptionClick&&e.selectOptionClick(...t)),["stop"]))},[(0,i.RG)(e.$slots,"default",{item:e.item,index:e.index,disabled:e.disabled},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.getLabel(e.item)),1)]))],46,ML)}var WL=J(LL,[["render",NL],["__file","option-item.vue"]]),DL=n(8500),FL=Number.isNaN||function(e){return"number"===typeof e&&e!==e};function $L(e,t){return e===t||!(!FL(e)||!FL(t))}function BL(e,t){if(e.length!==t.length)return!1;for(var n=0;n{const e=(0,i.nI)(),t=e.proxy.$props;return(0,i.EW)((()=>{const e=(e,t,n)=>({});return t.perfMode?(0,DL.A)(e):PL(e)}))},jL=50,VL="itemRendered",XL="scroll",UL="forward",HL="backward",zL="auto",GL="smart",qL="start",YL="center",QL="end",ZL="horizontal",JL="vertical",eM="ltr",tM="rtl",nM="negative",oM="positive-ascending",rM="positive-descending",lM={[ZL]:"left",[JL]:"top"},aM=20,iM=e=>c.oc?window.requestAnimationFrame(e):setTimeout(e,16),sM=e=>c.oc?window.cancelAnimationFrame(e):clearTimeout(e),uM={[ZL]:"deltaX",[JL]:"deltaY"},cM=({atEndEdge:e,atStartEdge:t,layout:n},o)=>{let r,l=0;const a=n=>{const o=n<0&&t.value||n>0&&e.value;return o},i=e=>{sM(r);const t=e[uM[n.value]];a(l)&&a(l+t)||(l+=t,Fn()||e.preventDefault(),r=iM((()=>{o(l),l=0})))};return{hasReachedEdge:a,onWheel:i}},dM=(0,H.Y8)({type:(0,H.jq)([Number,Function]),required:!0}),pM=(0,H.Y8)({type:Number}),fM=(0,H.Y8)({type:Number,default:2}),vM=(0,H.Y8)({type:String,values:["ltr","rtl"],default:"ltr"}),hM=(0,H.Y8)({type:Number,default:0}),mM=(0,H.Y8)({type:Number,required:!0}),gM=(0,H.Y8)({type:String,values:["horizontal","vertical"],default:JL}),yM=(0,H.b_)({className:{type:String,default:""},containerElement:{type:(0,H.jq)([String,Object]),default:"div"},data:{type:(0,H.jq)(Array),default:()=>Xn([])},direction:vM,height:{type:[String,Number],required:!0},innerElement:{type:[String,Object],default:"div"},style:{type:(0,H.jq)([Object,String,Array])},useIsScrolling:{type:Boolean,default:!1},width:{type:[Number,String],required:!1},perfMode:{type:Boolean,default:!0},scrollbarAlwaysOn:{type:Boolean,default:!1}}),bM=(0,H.b_)({cache:fM,estimatedItemSize:pM,layout:gM,initScrollOffset:hM,total:mM,itemSize:dM,...yM}),RM={type:Number,default:6},wM={type:Number,default:0},EM={type:Number,default:2},CM=(0,H.b_)({columnCache:fM,columnWidth:dM,estimatedColumnWidth:pM,estimatedRowHeight:pM,initScrollLeft:hM,initScrollTop:hM,itemKey:{type:(0,H.jq)(Function),default:({columnIndex:e,rowIndex:t})=>`${t}:${e}`},rowCache:fM,rowHeight:dM,totalColumn:mM,totalRow:mM,hScrollbarSize:RM,vScrollbarSize:RM,scrollbarStartGap:wM,scrollbarEndGap:EM,role:String,...yM}),kM=(0,H.b_)({alwaysOn:Boolean,class:String,layout:gM,total:mM,ratio:{type:Number,required:!0},clientSize:{type:Number,required:!0},scrollFrom:{type:Number,required:!0},scrollbarSize:RM,startGap:wM,endGap:EM,visible:Boolean}),xM=(e,t)=>ee===eM||e===tM||e===ZL,SM=e=>e===tM;let TM=null;function OM(e=!1){if(null===TM||e){const e=document.createElement("div"),t=e.style;t.width="50px",t.height="50px",t.overflow="scroll",t.direction="rtl";const n=document.createElement("div"),o=n.style;return o.width="100px",o.height="100px",e.appendChild(n),document.body.appendChild(e),e.scrollLeft>0?TM=rM:(e.scrollLeft=1,TM=0===e.scrollLeft?nM:oM),document.body.removeChild(e),TM}return TM}function IM({move:e,size:t,bar:n},o){const r={},l=`translate${n.axis}(${e}px)`;return r[n.size]=t,r.transform=l,r.msTransform=l,r.webkitTransform=l,"horizontal"===o?r.height="100%":r.width="100%",r}const AM=(0,i.pM)({name:"ElVirtualScrollBar",props:kM,emits:["scroll","start-move","stop-move"],setup(e,{emit:t}){const n=(0,i.EW)((()=>e.startGap+e.endGap)),o=(0,ee.DU)("virtual-scrollbar"),r=(0,ee.DU)("scrollbar"),l=(0,s.KR)(),a=(0,s.KR)();let u=null,c=null;const d=(0,s.Kh)({isDragging:!1,traveled:0}),p=(0,i.EW)((()=>Ro[e.layout])),f=(0,i.EW)((()=>e.clientSize-(0,s.R1)(n))),v=(0,i.EW)((()=>({position:"absolute",width:`${ZL===e.layout?f.value:e.scrollbarSize}px`,height:`${ZL===e.layout?e.scrollbarSize:f.value}px`,[lM[e.layout]]:"2px",right:"2px",bottom:"2px",borderRadius:"4px"}))),h=(0,i.EW)((()=>{const t=e.ratio,n=e.clientSize;if(t>=100)return Number.POSITIVE_INFINITY;if(t>=50)return t*n/100;const o=n/3;return Math.floor(Math.min(Math.max(t*n,aM),o))})),m=(0,i.EW)((()=>{if(!Number.isFinite(h.value))return{display:"none"};const t=`${h.value}px`,n=IM({bar:p.value,size:t,move:d.traveled},e.layout);return n})),g=(0,i.EW)((()=>Math.floor(e.clientSize-h.value-(0,s.R1)(n)))),y=()=>{window.addEventListener("mousemove",E),window.addEventListener("mouseup",w);const e=(0,s.R1)(a);e&&(c=document.onselectstart,document.onselectstart=()=>!1,e.addEventListener("touchmove",E),e.addEventListener("touchend",w))},b=()=>{window.removeEventListener("mousemove",E),window.removeEventListener("mouseup",w),document.onselectstart=c,c=null;const e=(0,s.R1)(a);e&&(e.removeEventListener("touchmove",E),e.removeEventListener("touchend",w))},R=e=>{e.stopImmediatePropagation(),e.ctrlKey||[1,2].includes(e.button)||(d.isDragging=!0,d[p.value.axis]=e.currentTarget[p.value.offset]-(e[p.value.client]-e.currentTarget.getBoundingClientRect()[p.value.direction]),t("start-move"),y())},w=()=>{d.isDragging=!1,d[p.value.axis]=0,t("stop-move"),b()},E=n=>{const{isDragging:o}=d;if(!o)return;if(!a.value||!l.value)return;const r=d[p.value.axis];if(!r)return;sM(u);const i=-1*(l.value.getBoundingClientRect()[p.value.direction]-n[p.value.client]),s=a.value[p.value.offset]-r,c=i-s;u=iM((()=>{d.traveled=Math.max(e.startGap,Math.min(c,g.value)),t("scroll",c,g.value)}))},C=e=>{const n=Math.abs(e.target.getBoundingClientRect()[p.value.direction]-e[p.value.client]),o=a.value[p.value.offset]/2,r=n-o;d.traveled=Math.max(0,Math.min(r,g.value)),t("scroll",r,g.value)};return(0,i.wB)((()=>e.scrollFrom),(e=>{d.isDragging||(d.traveled=Math.ceil(e*g.value))})),(0,i.xo)((()=>{b()})),()=>(0,i.h)("div",{role:"presentation",ref:l,class:[o.b(),e.class,(e.alwaysOn||d.isDragging)&&"always-on"],style:v.value,onMousedown:(0,ge.D$)(C,["stop","prevent"]),onTouchstartPrevent:R},(0,i.h)("div",{ref:a,class:r.e("thumb"),style:m.value,onMousedown:R},[]))}}),LM=({name:e,getOffset:t,getItemSize:n,getItemOffset:o,getEstimatedTotalSize:r,getStartIndexForOffset:l,getStopIndexForStartIndex:a,initCache:d,clearCache:p,validateProps:f})=>(0,i.pM)({name:null!=e?e:"ElVirtualList",props:bM,emits:[VL,XL],setup(e,{emit:v,expose:h}){f(e);const m=(0,i.nI)(),g=(0,ee.DU)("vl"),y=(0,s.KR)(d(e,m)),b=KL(),R=(0,s.KR)(),w=(0,s.KR)(),E=(0,s.KR)(),C=(0,s.KR)({isScrolling:!1,scrollDir:"forward",scrollOffset:(0,z.Et)(e.initScrollOffset)?e.initScrollOffset:0,updateRequested:!1,isScrollbarDragging:!1,scrollbarAlwaysOn:e.scrollbarAlwaysOn}),k=(0,i.EW)((()=>{const{total:t,cache:n}=e,{isScrolling:o,scrollDir:r,scrollOffset:i}=(0,s.R1)(C);if(0===t)return[0,0,0,0];const u=l(e,i,(0,s.R1)(y)),c=a(e,u,i,(0,s.R1)(y)),d=o&&r!==HL?1:Math.max(1,n),p=o&&r!==UL?1:Math.max(1,n);return[Math.max(0,u-d),Math.max(0,Math.min(t-1,c+p)),u,c]})),x=(0,i.EW)((()=>r(e,(0,s.R1)(y)))),_=(0,i.EW)((()=>_M(e.layout))),S=(0,i.EW)((()=>[{position:"relative",["overflow-"+(_.value?"x":"y")]:"scroll",WebkitOverflowScrolling:"touch",willChange:"transform"},{direction:e.direction,height:(0,z.Et)(e.height)?`${e.height}px`:e.height,width:(0,z.Et)(e.width)?`${e.width}px`:e.width},e.style])),T=(0,i.EW)((()=>{const e=(0,s.R1)(x),t=(0,s.R1)(_);return{height:t?"100%":`${e}px`,pointerEvents:(0,s.R1)(C).isScrolling?"none":void 0,width:t?`${e}px`:"100%"}})),O=(0,i.EW)((()=>_.value?e.width:e.height)),{onWheel:I}=cM({atStartEdge:(0,i.EW)((()=>C.value.scrollOffset<=0)),atEndEdge:(0,i.EW)((()=>C.value.scrollOffset>=x.value)),layout:(0,i.EW)((()=>e.layout))},(e=>{var t,n;null==(n=(t=E.value).onMouseUp)||n.call(t),D(Math.min(C.value.scrollOffset+e,x.value-O.value))})),A=()=>{const{total:t}=e;if(t>0){const[e,t,n,o]=(0,s.R1)(k);v(VL,e,t,n,o)}const{scrollDir:n,scrollOffset:o,updateRequested:r}=(0,s.R1)(C);v(XL,n,o,r)},L=e=>{const{clientHeight:t,scrollHeight:n,scrollTop:o}=e.currentTarget,r=(0,s.R1)(C);if(r.scrollOffset===o)return;const l=Math.max(0,Math.min(o,n-t));C.value={...r,isScrolling:!0,scrollDir:xM(r.scrollOffset,l),scrollOffset:l,updateRequested:!1},(0,i.dY)(B)},M=t=>{const{clientWidth:n,scrollLeft:o,scrollWidth:r}=t.currentTarget,l=(0,s.R1)(C);if(l.scrollOffset===o)return;const{direction:a}=e;let u=o;if(a===tM)switch(OM()){case nM:u=-o;break;case rM:u=r-n-o;break}u=Math.max(0,Math.min(u,r-n)),C.value={...l,isScrolling:!0,scrollDir:xM(l.scrollOffset,u),scrollOffset:u,updateRequested:!1},(0,i.dY)(B)},N=e=>{(0,s.R1)(_)?M(e):L(e),A()},W=(e,t)=>{const n=(x.value-O.value)/t*e;D(Math.min(x.value-O.value,n))},D=e=>{e=Math.max(e,0),e!==(0,s.R1)(C).scrollOffset&&(C.value={...(0,s.R1)(C),scrollOffset:e,scrollDir:xM((0,s.R1)(C).scrollOffset,e),updateRequested:!0},(0,i.dY)(B))},F=(n,o=zL)=>{const{scrollOffset:r}=(0,s.R1)(C);n=Math.max(0,Math.min(n,e.total-1)),D(t(e,n,o,r,(0,s.R1)(y)))},$=t=>{const{direction:r,itemSize:l,layout:a}=e,i=b.value(p&&l,p&&a,p&&r);let c;if((0,u.$3)(i,String(t)))c=i[t];else{const l=o(e,t,(0,s.R1)(y)),a=n(e,t,(0,s.R1)(y)),u=(0,s.R1)(_),d=r===tM,p=u?l:0;i[t]=c={position:"absolute",left:d?void 0:`${p}px`,right:d?`${p}px`:void 0,top:u?0:`${l}px`,height:u?"100%":`${a}px`,width:u?`${a}px`:"100%"}}return c},B=()=>{C.value.isScrolling=!1,(0,i.dY)((()=>{b.value(-1,null,null)}))},P=()=>{const e=R.value;e&&(e.scrollTop=0)};(0,i.sV)((()=>{if(!c.oc)return;const{initScrollOffset:t}=e,n=(0,s.R1)(R);(0,z.Et)(t)&&n&&((0,s.R1)(_)?n.scrollLeft=t:n.scrollTop=t),A()})),(0,i.$u)((()=>{const{direction:t,layout:n}=e,{scrollOffset:o,updateRequested:r}=(0,s.R1)(C),l=(0,s.R1)(R);if(r&&l)if(n===ZL)if(t===tM)switch(OM()){case nM:l.scrollLeft=-o;break;case oM:l.scrollLeft=o;break;default:{const{clientWidth:e,scrollWidth:t}=l;l.scrollLeft=t-e-o;break}}else l.scrollLeft=o;else l.scrollTop=o}));const K={ns:g,clientSize:O,estimatedTotalSize:x,windowStyle:S,windowRef:R,innerRef:w,innerStyle:T,itemsToRender:k,scrollbarRef:E,states:C,getItemStyle:$,onScroll:N,onScrollbarScroll:W,onWheel:I,scrollTo:D,scrollToItem:F,resetScrollTop:P};return h({windowRef:R,innerRef:w,getItemStyleCache:b,scrollTo:D,scrollToItem:F,resetScrollTop:P,states:C}),K},render(e){var t;const{$slots:n,className:o,clientSize:r,containerElement:l,data:a,getItemStyle:s,innerElement:c,itemsToRender:d,innerStyle:p,layout:f,total:v,onScroll:h,onScrollbarScroll:m,onWheel:g,states:y,useIsScrolling:b,windowStyle:R,ns:w}=e,[E,C]=d,k=(0,i.$y)(l),x=(0,i.$y)(c),_=[];if(v>0)for(let i=E;i<=C;i++)_.push(null==(t=n.default)?void 0:t.call(n,{data:a,key:i,index:i,isScrolling:b?y.isScrolling:void 0,style:s(i)}));const S=[(0,i.h)(x,{style:p,ref:"innerRef"},(0,u.Kg)(x)?_:{default:()=>_})],T=(0,i.h)(AM,{ref:"scrollbarRef",clientSize:r,layout:f,onScroll:m,ratio:100*r/this.estimatedTotalSize,scrollFrom:y.scrollOffset/(this.estimatedTotalSize-r),total:v}),O=(0,i.h)(k,{class:[w.e("window"),o],style:R,onScroll:h,onWheel:g,ref:"windowRef",key:0},(0,u.Kg)(k)?[S]:{default:()=>[S]});return(0,i.h)("div",{key:0,class:[w.e("wrapper"),y.scrollbarAlwaysOn?"always-on":""]},[O,T])}}),MM=LM({name:"ElFixedSizeList",getItemOffset:({itemSize:e},t)=>t*e,getItemSize:({itemSize:e})=>e,getEstimatedTotalSize:({total:e,itemSize:t})=>t*e,getOffset:({height:e,total:t,itemSize:n,layout:o,width:r},l,a,i)=>{const s=_M(o)?r:e;const u=Math.max(0,t*n-s),c=Math.min(u,l*n),d=Math.max(0,(l+1)*n-s);switch(a===GL&&(a=i>=d-s&&i<=c+s?zL:YL),a){case qL:return c;case QL:return d;case YL:{const e=Math.round(d+(c-d)/2);return eu+Math.floor(s/2)?u:e}case zL:default:return i>=d&&i<=c?i:iMath.max(0,Math.min(e-1,Math.floor(n/t))),getStopIndexForStartIndex:({height:e,total:t,itemSize:n,layout:o,width:r},l,a)=>{const i=l*n,s=_M(o)?r:e,u=Math.ceil((s+a-i)/n);return Math.max(0,Math.min(t-1,l+u-1))},initCache(){},clearCache:!0,validateProps(){}}),NM=(e,t,n)=>{const{itemSize:o}=e,{items:r,lastVisitedIndex:l}=n;if(t>l){let e=0;if(l>=0){const t=r[l];e=t.offset+t.size}for(let n=l+1;n<=t;n++){const t=o(n);r[n]={offset:e,size:t},e+=t}n.lastVisitedIndex=t}return r[t]},WM=(e,t,n)=>{const{items:o,lastVisitedIndex:r}=t,l=r>0?o[r].offset:0;return l>=n?DM(e,t,0,r,n):FM(e,t,Math.max(0,r),n)},DM=(e,t,n,o,r)=>{while(n<=o){const l=n+Math.floor((o-n)/2),a=NM(e,l,t).offset;if(a===r)return l;ar&&(o=l-1)}return Math.max(0,n-1)},FM=(e,t,n,o)=>{const{total:r}=e;let l=1;while(n{let r=0;if(o>=e&&(o=e-1),o>=0){const e=t[o];r=e.offset+e.size}const l=e-o-1,a=l*n;return r+a},BM=LM({name:"ElDynamicSizeList",getItemOffset:(e,t,n)=>NM(e,t,n).offset,getItemSize:(e,t,{items:n})=>n[t].size,getEstimatedTotalSize:$M,getOffset:(e,t,n,o,r)=>{const{height:l,layout:a,width:i}=e,s=_M(a)?i:l,u=NM(e,t,r),c=$M(e,r),d=Math.max(0,Math.min(c-s,u.offset)),p=Math.max(0,u.offset-s+u.size);switch(n===GL&&(n=o>=p-s&&o<=d+s?zL:YL),n){case qL:return d;case QL:return p;case YL:return Math.round(p+(d-p)/2);case zL:default:return o>=p&&o<=d?o:oWM(e,n,t),getStopIndexForStartIndex:(e,t,n,o)=>{const{height:r,total:l,layout:a,width:i}=e,s=_M(a)?i:r,u=NM(e,t,o),c=n+s;let d=u.offset+u.size,p=t;while(p{var r,l;n.lastVisitedIndex=Math.min(n.lastVisitedIndex,e-1),null==(r=t.exposed)||r.getItemStyleCache(-1),o&&(null==(l=t.proxy)||l.$forceUpdate())}};return n},clearCache:!1,validateProps:({itemSize:e})=>{0}});var PM=(0,i.pM)({name:"ElSelectDropdown",props:{loading:Boolean,data:{type:Array,required:!0},hoveringIndex:Number,width:Number},setup(e,{slots:t,expose:n}){const o=(0,i.WQ)(AL),r=(0,ee.DU)("select"),{getLabel:l,getValue:a,getDisabled:c}=TL(o.props),d=(0,s.KR)([]),p=(0,s.KR)(),f=(0,i.EW)((()=>e.data.length));(0,i.wB)((()=>f.value),(()=>{var e,t;null==(t=(e=o.tooltipRef.value).updatePopper)||t.call(e)}));const v=(0,i.EW)((()=>(0,z.b0)(o.props.estimatedOptionHeight))),h=(0,i.EW)((()=>v.value?{itemSize:o.props.itemHeight}:{estimatedSize:o.props.estimatedOptionHeight,itemSize:e=>d.value[e]})),m=(e=[],t)=>{const{props:{valueKey:n}}=o;return(0,u.Gv)(t)?e&&e.some((e=>(0,s.ux)((0,PO.A)(e,n))===(0,PO.A)(t,n))):e.includes(t)},g=(e,t)=>{if((0,u.Gv)(t)){const{valueKey:n}=o.props;return(0,PO.A)(e,n)===(0,PO.A)(t,n)}return e===t},y=(e,t)=>o.props.multiple?m(e,a(t)):g(e,a(t)),b=(e,t)=>{const{disabled:n,multiple:r,multipleLimit:l}=o.props;return n||!t&&!!r&&l>0&&e.length>=l},R=t=>e.hoveringIndex===t,w=e=>{const t=p.value;t&&t.scrollToItem(e)},E=()=>{const e=p.value;e&&e.resetScrollTop()};n({listRef:p,isSized:v,isItemDisabled:b,isItemHovering:R,isItemSelected:y,scrollToItem:w,resetScrollTop:E});const C=e=>{const{index:n,data:r,style:a}=e,u=(0,s.R1)(v),{itemSize:d,estimatedSize:p}=(0,s.R1)(h),{modelValue:f}=o.props,{onSelect:m,onHover:g}=o,w=r[n];if("Group"===w.type)return(0,i.bF)(xL,{item:w,style:a,height:u?d:p},null);const E=y(f,w),C=b(f,E),k=R(n);return(0,i.bF)(WL,(0,i.v6)(e,{selected:E,disabled:c(w)||C,created:!!w.created,hovering:k,item:w,onSelect:m,onHover:g}),{default:e=>{var n;return(null==(n=t.default)?void 0:n.call(t,e))||(0,i.bF)("span",null,[l(w)])}})},{onKeyboardNavigate:k,onKeyboardSelect:x}=o,_=()=>{k("forward")},S=()=>{k("backward")},T=()=>{o.expanded=!1},O=e=>{const{code:t}=e,{tab:n,esc:o,down:r,up:l,enter:a}=aa;switch(t!==n&&(e.preventDefault(),e.stopPropagation()),t){case n:case o:T();break;case r:_();break;case l:S();break;case a:x();break}};return()=>{var n,l,a,u;const{data:c,width:d}=e,{height:f,multiple:m,scrollbarAlwaysOn:g}=o.props;if(t.loading||t.empty)return(0,i.bF)("div",{class:r.b("dropdown"),style:{width:`${d}px`}},[(null==(n=t.loading)?void 0:n.call(t))||(null==(l=t.empty)?void 0:l.call(t))]);const y=(0,s.R1)(v)?MM:BM;return(0,i.bF)("div",{class:[r.b("dropdown"),r.is("multiple",m)]},[null==(a=t.header)?void 0:a.call(t),(0,i.bF)(y,(0,i.v6)({ref:p},(0,s.R1)(h),{className:r.be("dropdown","list"),scrollbarAlwaysOn:g,data:c,height:f,width:d,total:c.length,onKeydown:O}),{default:e=>(0,i.bF)(C,e,null)}),null==(u=t.footer)?void 0:u.call(t)])}}});function KM(e,t){const{aliasProps:n,getLabel:o,getValue:r}=TL(e),l=(0,s.KR)(0),a=(0,s.KR)(null),u=(0,i.EW)((()=>e.allowCreate&&e.filterable));function c(n){const o=e=>r(e)===n;return e.options&&e.options.some(o)||t.createdOptions.some(o)}function d(t){u.value&&(e.multiple&&t.created?l.value++:a.value=t)}function p(o){if(u.value)if(o&&o.length>0){if(c(o))return;const e={[n.value.value]:o,[n.value.label]:o,created:!0,[n.value.disabled]:!1};t.createdOptions.length>=l.value?t.createdOptions[l.value]=e:t.createdOptions.push(e)}else if(e.multiple)t.createdOptions.length=l.value;else{const e=a.value;t.createdOptions.length=0,e&&e.created&&t.createdOptions.push(e)}}function f(n){if(!u.value||!n||!n.created||n.created&&e.reserveKeyword&&t.inputValue===o(n))return;const a=t.createdOptions.findIndex((e=>r(e)===r(n)));~a&&(t.createdOptions.splice(a,1),l.value--)}function v(){u.value&&(t.createdOptions.length=0,l.value=0)}return{createNewOption:p,removeNewOption:f,selectNewOption:d,clearAllNewOption:v}}const jM=11,VM=(e,t)=>{const{t:n}=(0,zu.Ym)(),o=(0,ee.DU)("select"),r=(0,ee.DU)("input"),{form:l,formItem:a}=oo(),{inputId:c}=ro(e,{formItemContext:a}),{getLabel:d,getValue:p,getDisabled:f,getOptions:v}=TL(e),h=(0,s.Kh)({inputValue:"",cachedOptions:[],createdOptions:[],hoveringIndex:-1,inputHovering:!1,selectionWidth:0,calculatorWidth:0,collapseItemWidth:0,previousQuery:null,previousValue:void 0,selectedLabel:"",menuVisibleOnFocus:!1,isBeforeHide:!1}),m=(0,s.KR)(-1),g=(0,s.KR)(-1),y=(0,s.KR)(null),b=(0,s.KR)(null),R=(0,s.KR)(null),w=(0,s.KR)(null),E=(0,s.KR)(null),C=(0,s.KR)(null),k=(0,s.KR)(null),x=(0,s.KR)(null),_=(0,s.KR)(null),S=(0,s.KR)(null),O=(0,s.KR)(null),{wrapperRef:I,isFocused:A,handleFocus:L,handleBlur:M}=so(E,{afterFocus(){e.automaticDropdown&&!D.value&&(D.value=!0,h.menuVisibleOnFocus=!0)},beforeBlur(e){var t,n;return(null==(t=R.value)?void 0:t.isFocusInsideContent(e))||(null==(n=w.value)?void 0:n.isFocusInsideContent(e))},afterBlur(){D.value=!1,h.menuVisibleOnFocus=!1}}),N=(0,s.KR)([]),W=(0,s.KR)([]),D=(0,s.KR)(!1),F=(0,i.EW)((()=>e.disabled||(null==l?void 0:l.disabled))),$=(0,i.EW)((()=>{const t=W.value.length*e.itemHeight;return t>e.height?e.height:t})),B=(0,i.EW)((()=>e.multiple?(0,u.cy)(e.modelValue)&&e.modelValue.length>0:void 0!==e.modelValue&&null!==e.modelValue&&""!==e.modelValue)),P=(0,i.EW)((()=>{const t=e.clearable&&!F.value&&h.inputHovering&&B.value;return t})),K=(0,i.EW)((()=>e.remote&&e.filterable?"":xe)),j=(0,i.EW)((()=>K.value&&o.is("reverse",D.value))),V=(0,i.EW)((()=>(null==a?void 0:a.validateState)||"")),X=(0,i.EW)((()=>rn[V.value])),U=(0,i.EW)((()=>e.remote?300:0)),H=(0,i.EW)((()=>e.loading?e.loadingText||n("el.select.loading"):!(e.remote&&!h.inputValue&&0===N.value.length)&&(e.filterable&&h.inputValue&&N.value.length>0&&0===W.value.length?e.noMatchText||n("el.select.noMatch"):0===N.value.length?e.noDataText||n("el.select.noData"):null))),z=t=>{const n=n=>{if(e.filterable&&(0,u.Tn)(e.filterMethod))return!0;if(e.filterable&&e.remote&&(0,u.Tn)(e.remoteMethod))return!0;const o=new RegExp(eb(t),"i");return!t||o.test(d(n)||"")};return e.loading?[]:[...h.createdOptions,...e.options].reduce(((t,o)=>{const r=v(o);if((0,u.cy)(r)){const e=r.filter(n);e.length>0&&t.push({label:d(o),isTitle:!0,type:"Group"},...e,{type:"Group"})}else(e.remote||n(o))&&t.push(o);return t}),[])},Y=()=>{N.value=z(""),W.value=z(h.inputValue)},Q=(0,i.EW)((()=>{const e=new Map;return W.value.forEach(((t,n)=>{e.set(Ae(p(t)),{option:t,index:n})})),e})),Z=(0,i.EW)((()=>W.value.every((e=>f(e))))),J=ao(),te=(0,i.EW)((()=>"small"===J.value?"small":"default")),oe=()=>{var e;g.value=(null==(e=y.value)?void 0:e.offsetWidth)||200},re=()=>{if(!b.value)return 0;const e=window.getComputedStyle(b.value);return Number.parseFloat(e.gap||"6px")},le=(0,i.EW)((()=>{const t=re(),n=O.value&&1===e.maxCollapseTags?h.selectionWidth-h.collapseItemWidth-t:h.selectionWidth;return{maxWidth:`${n}px`}})),ae=(0,i.EW)((()=>({maxWidth:`${h.selectionWidth}px`}))),ie=(0,i.EW)((()=>({width:`${Math.max(h.calculatorWidth,jM)}px`}))),se=(0,i.EW)((()=>(0,u.cy)(e.modelValue)?0===e.modelValue.length&&!h.inputValue:!e.filterable||!h.inputValue)),ue=(0,i.EW)((()=>{var t;const o=null!=(t=e.placeholder)?t:n("el.select.placeholder");return e.multiple||!B.value?o:h.selectedLabel})),ce=(0,i.EW)((()=>{var e,t;return null==(t=null==(e=R.value)?void 0:e.popperRef)?void 0:t.contentRef})),de=(0,i.EW)((()=>{if(e.multiple){const t=e.modelValue.length;if(e.modelValue.length>0&&Q.value.has(e.modelValue[t-1])){const{index:n}=Q.value.get(e.modelValue[t-1]);return n}}else if(e.modelValue&&Q.value.has(e.modelValue)){const{index:t}=Q.value.get(e.modelValue);return t}return-1})),pe=(0,i.EW)({get(){return D.value&&!1!==H.value},set(e){D.value=e}}),fe=(0,i.EW)((()=>e.multiple?e.collapseTags?h.cachedOptions.slice(0,e.maxCollapseTags):h.cachedOptions:[])),ve=(0,i.EW)((()=>e.multiple&&e.collapseTags?h.cachedOptions.slice(e.maxCollapseTags):[])),{createNewOption:he,removeNewOption:me,selectNewOption:ge,clearAllNewOption:ye}=KM(e,h),{handleCompositionStart:be,handleCompositionUpdate:Re,handleCompositionEnd:we}=NI((e=>Ye(e))),Ee=()=>{F.value||(h.menuVisibleOnFocus?h.menuVisibleOnFocus=!1:D.value=!D.value)},Ce=()=>{h.inputValue.length>0&&!D.value&&(D.value=!0),he(h.inputValue),_e(h.inputValue)},ke=Wn(Ce,U.value),_e=t=>{h.previousQuery!==t&&(h.previousQuery=t,e.filterable&&(0,u.Tn)(e.filterMethod)?e.filterMethod(t):e.filterable&&e.remote&&(0,u.Tn)(e.remoteMethod)&&e.remoteMethod(t),e.defaultFirstOption&&(e.filterable||e.remote)&&W.value.length?(0,i.dY)(Se):(0,i.dY)(qe))},Se=()=>{const e=W.value.filter((e=>!e.disabled&&"Group"!==e.type)),t=e.find((e=>e.created)),n=e[0];h.hoveringIndex=Ie(W.value,t||n)},Te=n=>{eg(e.modelValue,n)||t(q,n)},Oe=e=>{t(G,e),Te(e),h.previousValue=String(e)},Ie=(t=[],n)=>{if(!(0,u.Gv)(n))return t.indexOf(n);const o=e.valueKey;let r=-1;return t.some(((e,t)=>(0,PO.A)(e,o)===(0,PO.A)(n,o)&&(r=t,!0))),r},Ae=t=>(0,u.Gv)(t)?(0,PO.A)(t,e.valueKey):t,Le=()=>{oe()},Me=()=>{h.selectionWidth=b.value.getBoundingClientRect().width},Ne=()=>{h.calculatorWidth=C.value.getBoundingClientRect().width},We=()=>{h.collapseItemWidth=O.value.getBoundingClientRect().width},De=()=>{var e,t;null==(t=null==(e=R.value)?void 0:e.updatePopper)||t.call(e)},Fe=()=>{var e,t;null==(t=null==(e=w.value)?void 0:e.updatePopper)||t.call(e)},$e=(t,n)=>{if(e.multiple){let n=e.modelValue.slice();const o=Ie(n,p(t));o>-1?(n=[...n.slice(0,o),...n.slice(o+1)],h.cachedOptions.splice(o,1),me(t)):(e.multipleLimit<=0||n.length{let r=e.modelValue.slice();const l=Ie(r,p(o));l>-1&&!F.value&&(r=[...e.modelValue.slice(0,l),...e.modelValue.slice(l+1)],h.cachedOptions.splice(l,1),Oe(r),t("remove-tag",p(o)),me(o)),n.stopPropagation(),Pe()},Pe=()=>{var e;null==(e=E.value)||e.focus()},Ke=()=>{var e;null==(e=E.value)||e.blur()},je=()=>{h.inputValue.length>0?h.inputValue="":D.value=!1},Ve=e=>MI(e,(e=>!h.cachedOptions.some((t=>p(t)===e&&f(t))))),Xe=t=>{if(e.multiple&&t.code!==aa.delete&&0===h.inputValue.length){t.preventDefault();const n=e.modelValue.slice(),o=Ve(n);if(o<0)return;n.splice(o,1);const r=h.cachedOptions[o];h.cachedOptions.splice(o,1),me(r),Oe(n)}},Ue=()=>{let n;n=(0,u.cy)(e.modelValue)?[]:void 0,e.multiple?h.cachedOptions=[]:h.selectedLabel="",D.value=!1,Oe(n),t("clear"),ye(),Pe()},He=(e,t=void 0)=>{const n=W.value;if(!["forward","backward"].includes(e)||F.value||n.length<=0||Z.value)return;if(!D.value)return Ee();void 0===t&&(t=h.hoveringIndex);let o=-1;"forward"===e?(o=t+1,o>=n.length&&(o=0)):"backward"===e&&(o=t-1,(o<0||o>=n.length)&&(o=n.length-1));const r=n[o];if(f(r)||"Group"===r.type)return He(e,o);h.hoveringIndex=o,Je(o)},ze=()=>{if(!D.value)return Ee();~h.hoveringIndex&&W.value[h.hoveringIndex]&&$e(W.value[h.hoveringIndex],h.hoveringIndex)},Ge=e=>{h.hoveringIndex=e},qe=()=>{e.multiple?e.modelValue.length>0?h.hoveringIndex=Math.min(...e.modelValue.map((e=>W.value.findIndex((t=>p(t)===e))))):h.hoveringIndex=-1:h.hoveringIndex=W.value.findIndex((t=>Ae(t)===Ae(e.modelValue)))},Ye=t=>{if(h.inputValue=t.target.value,!e.remote)return Ce();ke()},Qe=e=>{if(D.value=!1,A.value){const t=new FocusEvent("focus",e);M(t)}},Ze=()=>(0,i.dY)((()=>{~de.value&&Je(h.hoveringIndex)})),Je=e=>{_.value.scrollToItem(e)},et=e=>{const t=Ae(e);if(Q.value.has(t)){const{option:e}=Q.value.get(t);return e}return{value:e,label:e}},tt=()=>{if(e.multiple)if(e.modelValue.length>0){h.cachedOptions.length=0,h.previousValue=e.modelValue.toString();for(const t of e.modelValue){const e=et(t);h.cachedOptions.push(e)}}else h.cachedOptions=[],h.previousValue=void 0;else if(B.value){h.previousValue=e.modelValue;const t=W.value,n=t.findIndex((t=>Ae(p(t))===Ae(e.modelValue)));h.selectedLabel=~n?d(t[n]):Ae(e.modelValue)}else h.selectedLabel="",h.previousValue=void 0;ye(),oe()};return(0,i.wB)(D,(e=>{e?_e(""):(h.inputValue="",h.previousQuery=null,h.isBeforeHide=!0,he("")),t("visible-change",e)})),(0,i.wB)((()=>e.modelValue),((t,n)=>{var o;t&&t.toString()===h.previousValue||tt(),!eg(t,n)&&e.validateEvent&&(null==(o=null==a?void 0:a.validate)||o.call(a,"change").catch((e=>(0,ne.U)(e))))}),{deep:!0}),(0,i.wB)((()=>e.options),(()=>{const e=E.value;(!e||e&&document.activeElement!==e)&&tt()}),{deep:!0,flush:"post"}),(0,i.wB)((()=>W.value),(()=>_.value&&(0,i.dY)(_.value.resetScrollTop))),(0,i.nT)((()=>{h.isBeforeHide||Y()})),(0,i.nT)((()=>{const{valueKey:t,options:n}=e,o=new Map;for(const e of n){const n=p(e);let r=n;if((0,u.Gv)(r)&&(r=(0,PO.A)(n,t)),o.get(r)){(0,ne.U)("ElSelectV2","The option values you provided seem to be duplicated, which may cause some problems, please check.");break}o.set(r,!0)}})),(0,i.sV)((()=>{tt()})),T(y,Le),T(b,Me),T(C,Ne),T(_,De),T(I,De),T(S,Fe),T(O,We),{inputId:c,collapseTagSize:te,currentPlaceholder:ue,expanded:D,emptyText:H,popupHeight:$,debounce:U,allOptions:N,filteredOptions:W,iconComponent:K,iconReverse:j,tagStyle:le,collapseTagStyle:ae,inputStyle:ie,popperSize:g,dropdownMenuVisible:pe,hasModelValue:B,shouldShowPlaceholder:se,selectDisabled:F,selectSize:J,showClearBtn:P,states:h,isFocused:A,nsSelect:o,nsInput:r,calculatorRef:C,inputRef:E,menuRef:_,tagMenuRef:S,tooltipRef:R,tagTooltipRef:w,selectRef:y,wrapperRef:I,selectionRef:b,prefixRef:k,suffixRef:x,collapseItemRef:O,popperRef:ce,validateState:V,validateIcon:X,showTagList:fe,collapseTagList:ve,debouncedOnInputChange:ke,deleteTag:Be,getLabel:d,getValue:p,getDisabled:f,getValueKey:Ae,handleBlur:M,handleClear:Ue,handleClickOutside:Qe,handleDel:Xe,handleEsc:je,handleFocus:L,focus:Pe,blur:Ke,handleMenuEnter:Ze,handleResize:Le,resetSelectionWidth:Me,resetCalculatorWidth:Ne,updateTooltip:De,updateTagTooltip:Fe,updateOptions:Y,toggleMenu:Ee,scrollTo:Je,onInput:Ye,onKeyboardNavigate:He,onKeyboardSelect:ze,onSelect:$e,onHover:Ge,handleCompositionStart:be,handleCompositionEnd:we,handleCompositionUpdate:Re}},XM=(0,i.pM)({name:"ElSelectV2",components:{ElSelectMenu:PM,ElTag:Mb,ElTooltip:zi,ElIcon:Ee},directives:{ClickOutside:Bb},props:OL,emits:[G,q,"remove-tag","clear","visible-change","focus","blur"],setup(e,{emit:t}){const n=(0,i.EW)((()=>{const{modelValue:t,multiple:n}=e,o=n?[]:void 0;return(0,u.cy)(t)?n?t:o:n?o:t})),o=VM((0,s.Kh)({...(0,s.QW)(e),modelValue:n}),t);return(0,i.Gt)(AL,{props:(0,s.Kh)({...(0,s.QW)(e),height:o.popupHeight,modelValue:n}),tooltipRef:o.tooltipRef,onSelect:o.onSelect,onHover:o.onHover,onKeyboardNavigate:o.onKeyboardNavigate,onKeyboardSelect:o.onKeyboardSelect}),{...o,modelValue:n}}}),UM=["id","autocomplete","aria-expanded","aria-label","disabled","readonly","name"],HM=["textContent"];function zM(e,t,n,o,r,l){const a=(0,i.g2)("el-tag"),s=(0,i.g2)("el-tooltip"),c=(0,i.g2)("el-icon"),d=(0,i.g2)("el-select-menu"),p=(0,i.gN)("click-outside");return(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{ref:"selectRef",class:(0,u.C4)([e.nsSelect.b(),e.nsSelect.m(e.selectSize)]),onMouseenter:t[14]||(t[14]=t=>e.states.inputHovering=!0),onMouseleave:t[15]||(t[15]=t=>e.states.inputHovering=!1),onClick:t[16]||(t[16]=(0,ge.D$)(((...t)=>e.toggleMenu&&e.toggleMenu(...t)),["stop"]))},[(0,i.bF)(s,{ref:"tooltipRef",visible:e.dropdownMenuVisible,teleported:e.teleported,"popper-class":[e.nsSelect.e("popper"),e.popperClass],"gpu-acceleration":!1,"stop-popper-mouse-event":!1,"popper-options":e.popperOptions,"fallback-placements":e.fallbackPlacements,effect:e.effect,placement:e.placement,pure:"",transition:`${e.nsSelect.namespace.value}-zoom-in-top`,trigger:"click",persistent:e.persistent,onBeforeShow:e.handleMenuEnter,onHide:t[13]||(t[13]=t=>e.states.isBeforeHide=!1)},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"wrapperRef",class:(0,u.C4)([e.nsSelect.e("wrapper"),e.nsSelect.is("focused",e.isFocused),e.nsSelect.is("hovering",e.states.inputHovering),e.nsSelect.is("filterable",e.filterable),e.nsSelect.is("disabled",e.selectDisabled)])},[e.$slots.prefix?((0,i.uX)(),(0,i.CE)("div",{key:0,ref:"prefixRef",class:(0,u.C4)(e.nsSelect.e("prefix"))},[(0,i.RG)(e.$slots,"prefix")],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{ref:"selectionRef",class:(0,u.C4)([e.nsSelect.e("selection"),e.nsSelect.is("near",e.multiple&&!e.$slots.prefix&&!!e.modelValue.length)])},[e.multiple?(0,i.RG)(e.$slots,"tag",{key:0},(()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.showTagList,(t=>((0,i.uX)(),(0,i.CE)("div",{key:e.getValueKey(e.getValue(t)),class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{closable:!e.selectDisabled&&!e.getDisabled(t),size:e.collapseTagSize,type:e.tagType,"disable-transitions":"",style:(0,u.Tr)(e.tagStyle),onClose:n=>e.deleteTag(n,t)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))},(0,u.v_)(e.getLabel(t)),3)])),_:2},1032,["closable","size","type","style","onClose"])],2)))),128)),e.collapseTags&&e.modelValue.length>e.maxCollapseTags?((0,i.uX)(),(0,i.Wv)(s,{key:0,ref:"tagTooltipRef",disabled:e.dropdownMenuVisible||!e.collapseTagsTooltip,"fallback-placements":["bottom","top","right","left"],effect:e.effect,placement:"bottom",teleported:e.teleported},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"collapseItemRef",class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{closable:!1,size:e.collapseTagSize,type:e.tagType,style:(0,u.Tr)(e.collapseTagStyle),"disable-transitions":""},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))}," + "+(0,u.v_)(e.modelValue.length-e.maxCollapseTags),3)])),_:1},8,["size","type","style"])],2)])),content:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"tagMenuRef",class:(0,u.C4)(e.nsSelect.e("selection"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.collapseTagList,(t=>((0,i.uX)(),(0,i.CE)("div",{key:e.getValueKey(e.getValue(t)),class:(0,u.C4)(e.nsSelect.e("selected-item"))},[(0,i.bF)(a,{class:"in-tooltip",closable:!e.selectDisabled&&!e.getDisabled(t),size:e.collapseTagSize,type:e.tagType,"disable-transitions":"",onClose:n=>e.deleteTag(n,t)},{default:(0,i.k6)((()=>[(0,i.Lk)("span",{class:(0,u.C4)(e.nsSelect.e("tags-text"))},(0,u.v_)(e.getLabel(t)),3)])),_:2},1032,["closable","size","type","onClose"])],2)))),128))],2)])),_:1},8,["disabled","effect","teleported"])):(0,i.Q3)("v-if",!0)])):(0,i.Q3)("v-if",!0),e.selectDisabled?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)([e.nsSelect.e("selected-item"),e.nsSelect.e("input-wrapper"),e.nsSelect.is("hidden",!e.filterable)])},[(0,i.bo)((0,i.Lk)("input",{id:e.inputId,ref:"inputRef","onUpdate:modelValue":t[0]||(t[0]=t=>e.states.inputValue=t),style:(0,u.Tr)(e.inputStyle),autocomplete:e.autocomplete,"aria-autocomplete":"list","aria-haspopup":"listbox",autocapitalize:"off","aria-expanded":e.expanded,"aria-label":e.ariaLabel,class:(0,u.C4)([e.nsSelect.e("input"),e.nsSelect.is(e.selectSize)]),disabled:e.selectDisabled,role:"combobox",readonly:!e.filterable,spellcheck:"false",type:"text",name:e.name,onFocus:t[1]||(t[1]=(...t)=>e.handleFocus&&e.handleFocus(...t)),onBlur:t[2]||(t[2]=(...t)=>e.handleBlur&&e.handleBlur(...t)),onInput:t[3]||(t[3]=(...t)=>e.onInput&&e.onInput(...t)),onCompositionstart:t[4]||(t[4]=(...t)=>e.handleCompositionStart&&e.handleCompositionStart(...t)),onCompositionupdate:t[5]||(t[5]=(...t)=>e.handleCompositionUpdate&&e.handleCompositionUpdate(...t)),onCompositionend:t[6]||(t[6]=(...t)=>e.handleCompositionEnd&&e.handleCompositionEnd(...t)),onKeydown:[t[7]||(t[7]=(0,ge.jR)((0,ge.D$)((t=>e.onKeyboardNavigate("backward")),["stop","prevent"]),["up"])),t[8]||(t[8]=(0,ge.jR)((0,ge.D$)((t=>e.onKeyboardNavigate("forward")),["stop","prevent"]),["down"])),t[9]||(t[9]=(0,ge.jR)((0,ge.D$)(((...t)=>e.onKeyboardSelect&&e.onKeyboardSelect(...t)),["stop","prevent"]),["enter"])),t[10]||(t[10]=(0,ge.jR)((0,ge.D$)(((...t)=>e.handleEsc&&e.handleEsc(...t)),["stop","prevent"]),["esc"])),t[11]||(t[11]=(0,ge.jR)((0,ge.D$)(((...t)=>e.handleDel&&e.handleDel(...t)),["stop"]),["delete"]))],onClick:t[12]||(t[12]=(0,ge.D$)(((...t)=>e.toggleMenu&&e.toggleMenu(...t)),["stop"]))},null,46,UM),[[ge.Jo,e.states.inputValue]]),e.filterable?((0,i.uX)(),(0,i.CE)("span",{key:0,ref:"calculatorRef","aria-hidden":"true",class:(0,u.C4)(e.nsSelect.e("input-calculator")),textContent:(0,u.v_)(e.states.inputValue)},null,10,HM)):(0,i.Q3)("v-if",!0)],2)),e.shouldShowPlaceholder?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)([e.nsSelect.e("selected-item"),e.nsSelect.e("placeholder"),e.nsSelect.is("transparent",!e.hasModelValue||e.expanded&&!e.states.inputValue)])},[(0,i.Lk)("span",null,(0,u.v_)(e.currentPlaceholder),1)],2)):(0,i.Q3)("v-if",!0)],2),(0,i.Lk)("div",{ref:"suffixRef",class:(0,u.C4)(e.nsSelect.e("suffix"))},[e.iconComponent?(0,i.bo)(((0,i.uX)(),(0,i.Wv)(c,{key:0,class:(0,u.C4)([e.nsSelect.e("caret"),e.nsInput.e("icon"),e.iconReverse])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.iconComponent)))])),_:1},8,["class"])),[[ge.aG,!e.showClearBtn]]):(0,i.Q3)("v-if",!0),e.showClearBtn&&e.clearIcon?((0,i.uX)(),(0,i.Wv)(c,{key:1,class:(0,u.C4)([e.nsSelect.e("caret"),e.nsInput.e("icon")]),onClick:(0,ge.D$)(e.handleClear,["prevent","stop"])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.clearIcon)))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0),e.validateState&&e.validateIcon?((0,i.uX)(),(0,i.Wv)(c,{key:2,class:(0,u.C4)([e.nsInput.e("icon"),e.nsInput.e("validateIcon")])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.validateIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],2)],2)])),content:(0,i.k6)((()=>[(0,i.bF)(d,{ref:"menuRef",data:e.filteredOptions,width:e.popperSize,"hovering-index":e.states.hoveringIndex,"scrollbar-always-on":e.scrollbarAlwaysOn},(0,i.eX)({default:(0,i.k6)((t=>[(0,i.RG)(e.$slots,"default",(0,u._B)((0,i.Ng)(t)))])),_:2},[e.$slots.header?{name:"header",fn:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)(e.nsSelect.be("dropdown","header"))},[(0,i.RG)(e.$slots,"header")],2)]))}:void 0,e.$slots.loading&&e.loading?{name:"loading",fn:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)(e.nsSelect.be("dropdown","loading"))},[(0,i.RG)(e.$slots,"loading")],2)]))}:e.loading||0===e.filteredOptions.length?{name:"empty",fn:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)(e.nsSelect.be("dropdown","empty"))},[(0,i.RG)(e.$slots,"empty",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.emptyText),1)]))],2)]))}:void 0,e.$slots.footer?{name:"footer",fn:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)(e.nsSelect.be("dropdown","footer"))},[(0,i.RG)(e.$slots,"footer")],2)]))}:void 0]),1032,["data","width","hovering-index","scrollbar-always-on"])])),_:3},8,["visible","teleported","popper-class","popper-options","fallback-placements","effect","placement","transition","persistent","onBeforeShow"])],34)),[[p,e.handleClickOutside,e.popperRef]])}var GM=J(XM,[["render",zM],["__file","select.vue"]]);GM.install=e=>{e.component(GM.name,GM)};const qM=GM,YM=qM,QM=(0,H.b_)({animated:{type:Boolean,default:!1},count:{type:Number,default:1},rows:{type:Number,default:3},loading:{type:Boolean,default:!0},throttle:{type:Number}}),ZM=(0,H.b_)({variant:{type:String,values:["circle","rect","h1","h3","text","caption","p","image","button"],default:"text"}}),JM=(0,i.pM)({name:"ElSkeletonItem"}),eN=(0,i.pM)({...JM,props:ZM,setup(e){const t=(0,ee.DU)("skeleton");return(e,n)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(t).e("item"),(0,s.R1)(t).e(e.variant)])},["image"===e.variant?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ct),{key:0})):(0,i.Q3)("v-if",!0)],2))}});var tN=J(eN,[["__file","skeleton-item.vue"]]);const nN=(e,t=0)=>{if(0===t)return e;const n=(0,s.KR)(!1);let o=0;const r=()=>{o&&clearTimeout(o),o=window.setTimeout((()=>{n.value=e.value}),t)};return(0,i.sV)(r),(0,i.wB)((()=>e.value),(e=>{e?r():n.value=e})),n},oN=(0,i.pM)({name:"ElSkeleton"}),rN=(0,i.pM)({...oN,props:QM,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("skeleton"),r=nN((0,s.lW)(n,"loading"),n.throttle);return t({uiLoading:r}),(e,t)=>(0,s.R1)(r)?((0,i.uX)(),(0,i.CE)("div",(0,i.v6)({key:0,class:[(0,s.R1)(o).b(),(0,s.R1)(o).is("animated",e.animated)]},e.$attrs),[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.count,(t=>((0,i.uX)(),(0,i.CE)(i.FK,{key:t},[e.loading?(0,i.RG)(e.$slots,"template",{key:t},(()=>[(0,i.bF)(tN,{class:(0,u.C4)((0,s.R1)(o).is("first")),variant:"p"},null,8,["class"]),((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.rows,(t=>((0,i.uX)(),(0,i.Wv)(tN,{key:t,class:(0,u.C4)([(0,s.R1)(o).e("paragraph"),(0,s.R1)(o).is("last",t===e.rows&&e.rows>1)]),variant:"p"},null,8,["class"])))),128))])):(0,i.Q3)("v-if",!0)],64)))),128))],16)):(0,i.RG)(e.$slots,"default",(0,u._B)((0,i.v6)({key:1},e.$attrs)))}});var lN=J(rN,[["__file","skeleton.vue"]]);const aN=pe(lN,{SkeletonItem:tN}),iN=he(tN),sN=Symbol("sliderContextKey"),uN=(0,H.b_)({modelValue:{type:(0,H.jq)([Number,Array]),default:0},id:{type:String,default:void 0},min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1},showInput:Boolean,showInputControls:{type:Boolean,default:!0},size:Vn.mU,inputSize:Vn.mU,showStops:Boolean,showTooltip:{type:Boolean,default:!0},formatTooltip:{type:(0,H.jq)(Function),default:void 0},disabled:Boolean,range:Boolean,vertical:Boolean,height:String,debounce:{type:Number,default:300},label:{type:String,default:void 0},rangeStartLabel:{type:String,default:void 0},rangeEndLabel:{type:String,default:void 0},formatValueText:{type:(0,H.jq)(Function),default:void 0},tooltipClass:{type:String,default:void 0},placement:{type:String,values:sr,default:"top"},marks:{type:(0,H.jq)(Object)},validateEvent:{type:Boolean,default:!0}}),cN=e=>(0,z.Et)(e)||(0,u.cy)(e)&&e.every(z.Et),dN={[G]:cN,[Y]:cN,[q]:cN},pN=(0,H.b_)({modelValue:{type:Number,default:0},vertical:Boolean,tooltipClass:String,placement:{type:String,values:sr,default:"top"}}),fN={[G]:e=>(0,z.Et)(e)},{left:vN,down:hN,right:mN,up:gN,home:yN,end:bN,pageUp:RN,pageDown:wN}=aa,EN=(e,t,n)=>{const o=(0,s.KR)(),r=(0,s.KR)(!1),l=(0,i.EW)((()=>t.value instanceof Function)),a=(0,i.EW)((()=>l.value&&t.value(e.modelValue)||e.modelValue)),u=Wn((()=>{n.value&&(r.value=!0)}),50),c=Wn((()=>{n.value&&(r.value=!1)}),50);return{tooltip:o,tooltipVisible:r,formatValue:a,displayTooltip:u,hideTooltip:c}},CN=(e,t,n)=>{const{disabled:o,min:r,max:l,step:a,showTooltip:u,precision:c,sliderSize:d,formatTooltip:p,emitChange:f,resetSize:v,updateDragging:h}=(0,i.WQ)(sN),{tooltip:m,tooltipVisible:g,formatValue:y,displayTooltip:b,hideTooltip:R}=EN(e,p,u),w=(0,s.KR)(),E=(0,i.EW)((()=>(e.modelValue-r.value)/(l.value-r.value)*100+"%")),C=(0,i.EW)((()=>e.vertical?{bottom:E.value}:{left:E.value})),k=()=>{t.hovering=!0,b()},x=()=>{t.hovering=!1,t.dragging||R()},_=e=>{o.value||(e.preventDefault(),D(e),window.addEventListener("mousemove",F),window.addEventListener("touchmove",F),window.addEventListener("mouseup",$),window.addEventListener("touchend",$),window.addEventListener("contextmenu",$),w.value.focus())},S=e=>{o.value||(t.newPosition=Number.parseFloat(E.value)+e/(l.value-r.value)*100,B(t.newPosition),f())},T=()=>{S(-a.value)},O=()=>{S(a.value)},I=()=>{S(4*-a.value)},A=()=>{S(4*a.value)},L=()=>{o.value||(B(0),f())},M=()=>{o.value||(B(100),f())},N=e=>{let t=!0;[vN,hN].includes(e.key)?T():[mN,gN].includes(e.key)?O():e.key===yN?L():e.key===bN?M():e.key===wN?I():e.key===RN?A():t=!1,t&&e.preventDefault()},W=e=>{let t,n;return e.type.startsWith("touch")?(n=e.touches[0].clientY,t=e.touches[0].clientX):(n=e.clientY,t=e.clientX),{clientX:t,clientY:n}},D=n=>{t.dragging=!0,t.isClick=!0;const{clientX:o,clientY:r}=W(n);e.vertical?t.startY=r:t.startX=o,t.startPosition=Number.parseFloat(E.value),t.newPosition=t.startPosition},F=n=>{if(t.dragging){let o;t.isClick=!1,b(),v();const{clientX:r,clientY:l}=W(n);e.vertical?(t.currentY=l,o=(t.startY-t.currentY)/d.value*100):(t.currentX=r,o=(t.currentX-t.startX)/d.value*100),t.newPosition=t.startPosition+o,B(t.newPosition)}},$=()=>{t.dragging&&(setTimeout((()=>{t.dragging=!1,t.hovering||R(),t.isClick||B(t.newPosition),f()}),0),window.removeEventListener("mousemove",F),window.removeEventListener("touchmove",F),window.removeEventListener("mouseup",$),window.removeEventListener("touchend",$),window.removeEventListener("contextmenu",$))},B=async o=>{if(null===o||Number.isNaN(+o))return;o<0?o=0:o>100&&(o=100);const s=100/((l.value-r.value)/a.value),u=Math.round(o/s);let d=u*s*(l.value-r.value)*.01+r.value;d=Number.parseFloat(d.toFixed(c.value)),d!==e.modelValue&&n(G,d),t.dragging||e.modelValue===t.oldValue||(t.oldValue=e.modelValue),await(0,i.dY)(),t.dragging&&b(),m.value.updatePopper()};return(0,i.wB)((()=>t.dragging),(e=>{h(e)})),{disabled:o,button:w,tooltip:m,tooltipVisible:g,showTooltip:u,wrapperStyle:C,formatValue:y,handleMouseEnter:k,handleMouseLeave:x,onButtonDown:_,onKeyDown:N,setPosition:B}},kN=["tabindex"],xN=(0,i.pM)({name:"ElSliderButton"}),_N=(0,i.pM)({...xN,props:pN,emits:fN,setup(e,{expose:t,emit:n}){const o=e,r=(0,ee.DU)("slider"),l=(0,s.Kh)({hovering:!1,dragging:!1,isClick:!1,startX:0,currentX:0,startY:0,currentY:0,startPosition:0,newPosition:0,oldValue:o.modelValue}),{disabled:a,button:c,tooltip:d,showTooltip:p,tooltipVisible:f,wrapperStyle:v,formatValue:h,handleMouseEnter:m,handleMouseLeave:g,onButtonDown:y,onKeyDown:b,setPosition:R}=CN(o,l,n),{hovering:w,dragging:E}=(0,s.QW)(l);return t({onButtonDown:y,onKeyDown:b,setPosition:R,hovering:w,dragging:E}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"button",ref:c,class:(0,u.C4)([(0,s.R1)(r).e("button-wrapper"),{hover:(0,s.R1)(w),dragging:(0,s.R1)(E)}]),style:(0,u.Tr)((0,s.R1)(v)),tabindex:(0,s.R1)(a)?-1:0,onMouseenter:t[0]||(t[0]=(...e)=>(0,s.R1)(m)&&(0,s.R1)(m)(...e)),onMouseleave:t[1]||(t[1]=(...e)=>(0,s.R1)(g)&&(0,s.R1)(g)(...e)),onMousedown:t[2]||(t[2]=(...e)=>(0,s.R1)(y)&&(0,s.R1)(y)(...e)),onTouchstart:t[3]||(t[3]=(...e)=>(0,s.R1)(y)&&(0,s.R1)(y)(...e)),onFocus:t[4]||(t[4]=(...e)=>(0,s.R1)(m)&&(0,s.R1)(m)(...e)),onBlur:t[5]||(t[5]=(...e)=>(0,s.R1)(g)&&(0,s.R1)(g)(...e)),onKeydown:t[6]||(t[6]=(...e)=>(0,s.R1)(b)&&(0,s.R1)(b)(...e))},[(0,i.bF)((0,s.R1)(zi),{ref_key:"tooltip",ref:d,visible:(0,s.R1)(f),placement:e.placement,"fallback-placements":["top","bottom","right","left"],"stop-popper-mouse-event":!1,"popper-class":e.tooltipClass,disabled:!(0,s.R1)(p),persistent:""},{content:(0,i.k6)((()=>[(0,i.Lk)("span",null,(0,u.v_)((0,s.R1)(h)),1)])),default:(0,i.k6)((()=>[(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(r).e("button"),{hover:(0,s.R1)(w),dragging:(0,s.R1)(E)}])},null,2)])),_:1},8,["visible","placement","popper-class","disabled"])],46,kN))}});var SN=J(_N,[["__file","button.vue"]]);const TN=(0,H.b_)({mark:{type:(0,H.jq)([String,Object]),default:void 0}});var ON=(0,i.pM)({name:"ElSliderMarker",props:TN,setup(e){const t=(0,ee.DU)("slider"),n=(0,i.EW)((()=>(0,u.Kg)(e.mark)?e.mark:e.mark.label)),o=(0,i.EW)((()=>(0,u.Kg)(e.mark)?void 0:e.mark.style));return()=>(0,i.h)("div",{class:t.e("marks-text"),style:o.value},n.value)}});const IN=(e,t,n)=>{const{form:o,formItem:r}=oo(),l=(0,s.IJ)(),a=(0,s.KR)(),u=(0,s.KR)(),c={firstButton:a,secondButton:u},d=(0,i.EW)((()=>e.disabled||(null==o?void 0:o.disabled)||!1)),p=(0,i.EW)((()=>Math.min(t.firstValue,t.secondValue))),f=(0,i.EW)((()=>Math.max(t.firstValue,t.secondValue))),v=(0,i.EW)((()=>e.range?100*(f.value-p.value)/(e.max-e.min)+"%":100*(t.firstValue-e.min)/(e.max-e.min)+"%")),h=(0,i.EW)((()=>e.range?100*(p.value-e.min)/(e.max-e.min)+"%":"0%")),m=(0,i.EW)((()=>e.vertical?{height:e.height}:{})),g=(0,i.EW)((()=>e.vertical?{height:v.value,bottom:h.value}:{width:v.value,left:h.value})),y=()=>{l.value&&(t.sliderSize=l.value["client"+(e.vertical?"Height":"Width")])},b=n=>{const o=e.min+n*(e.max-e.min)/100;if(!e.range)return a;let r;return r=Math.abs(p.value-o)t.secondValue?"firstButton":"secondButton",c[r]},R=e=>{const t=b(e);return t.value.setPosition(e),t},w=n=>{t.firstValue=n,C(e.range?[p.value,f.value]:n)},E=n=>{t.secondValue=n,e.range&&C([p.value,f.value])},C=e=>{n(G,e),n(Y,e)},k=async()=>{await(0,i.dY)(),n(q,e.range?[p.value,f.value]:e.modelValue)},x=n=>{var o,r,a,i,s,u;if(d.value||t.dragging)return;y();let c=0;if(e.vertical){const e=null!=(a=null==(r=null==(o=n.touches)?void 0:o.item(0))?void 0:r.clientY)?a:n.clientY,i=l.value.getBoundingClientRect().bottom;c=(i-e)/t.sliderSize*100}else{const e=null!=(u=null==(s=null==(i=n.touches)?void 0:i.item(0))?void 0:s.clientX)?u:n.clientX,o=l.value.getBoundingClientRect().left;c=(e-o)/t.sliderSize*100}return c<0||c>100?void 0:R(c)},_=e=>{var t,n;((null==(t=c["firstButton"].value)?void 0:t.dragging)||(null==(n=c["secondButton"].value)?void 0:n.dragging))&&e.preventDefault()},S=async e=>{const t=x(e);t&&(await(0,i.dY)(),t.value.onButtonDown(e))},T=e=>{const t=x(e);t&&k()};return{elFormItem:r,slider:l,firstButton:a,secondButton:u,sliderDisabled:d,minValue:p,maxValue:f,runwayStyle:m,barStyle:g,resetSize:y,setPosition:R,emitChange:k,onSliderWrapperPrevent:_,onSliderClick:T,onSliderDown:S,setFirstValue:w,setSecondValue:E}},AN=(e,t,n,o)=>{const r=(0,i.EW)((()=>{if(!e.showStops||e.min>e.max)return[];if(0===e.step)return(0,ne.U)("ElSlider","step should not be 0."),[];const r=(e.max-e.min)/e.step,l=100*e.step/(e.max-e.min),a=Array.from({length:r-1}).map(((e,t)=>(t+1)*l));return e.range?a.filter((t=>t<100*(n.value-e.min)/(e.max-e.min)||t>100*(o.value-e.min)/(e.max-e.min))):a.filter((n=>n>100*(t.firstValue-e.min)/(e.max-e.min)))})),l=t=>e.vertical?{bottom:`${t}%`}:{left:`${t}%`};return{stops:r,getStopStyle:l}},LN=e=>(0,i.EW)((()=>{if(!e.marks)return[];const t=Object.keys(e.marks);return t.map(Number.parseFloat).sort(((e,t)=>e-t)).filter((t=>t<=e.max&&t>=e.min)).map((t=>({point:t,position:100*(t-e.min)/(e.max-e.min),mark:e.marks[t]})))})),MN=(e,t,n,o,r,l)=>{const a=e=>{r(G,e),r(Y,e)},s=()=>e.range?![n.value,o.value].every(((e,n)=>e===t.oldValue[n])):e.modelValue!==t.oldValue,u=()=>{var n,o;e.min>e.max&&(0,ne.$)("Slider","min should not be greater than max.");const r=e.modelValue;e.range&&Array.isArray(r)?r[1]e.max?a([e.max,e.max]):r[0]e.max?a([r[0],e.max]):(t.firstValue=r[0],t.secondValue=r[1],s()&&(e.validateEvent&&(null==(n=null==l?void 0:l.validate)||n.call(l,"change").catch((e=>(0,ne.U)(e)))),t.oldValue=r.slice())):e.range||"number"!==typeof r||Number.isNaN(r)||(re.max?a(e.max):(t.firstValue=r,s()&&(e.validateEvent&&(null==(o=null==l?void 0:l.validate)||o.call(l,"change").catch((e=>(0,ne.U)(e)))),t.oldValue=r)))};u(),(0,i.wB)((()=>t.dragging),(e=>{e||u()})),(0,i.wB)((()=>e.modelValue),((e,n)=>{t.dragging||Array.isArray(e)&&Array.isArray(n)&&e.every(((e,t)=>e===n[t]))&&t.firstValue===e[0]&&t.secondValue===e[1]||u()}),{deep:!0}),(0,i.wB)((()=>[e.min,e.max]),(()=>{u()}))},NN=(e,t,n)=>{const o=(0,s.KR)();return(0,i.sV)((async()=>{e.range?(Array.isArray(e.modelValue)?(t.firstValue=Math.max(e.min,e.modelValue[0]),t.secondValue=Math.min(e.max,e.modelValue[1])):(t.firstValue=e.min,t.secondValue=e.max),t.oldValue=[t.firstValue,t.secondValue]):("number"!==typeof e.modelValue||Number.isNaN(e.modelValue)?t.firstValue=e.min:t.firstValue=Math.min(e.max,Math.max(e.min,e.modelValue)),t.oldValue=t.firstValue),h(window,"resize",n),await(0,i.dY)(),n()})),{sliderWrapper:o}},WN=["id","role","aria-label","aria-labelledby"],DN={key:1},FN=(0,i.pM)({name:"ElSlider"}),$N=(0,i.pM)({...FN,props:uN,emits:dN,setup(e,{expose:t,emit:n}){const o=e,r=(0,ee.DU)("slider"),{t:l}=(0,zu.Ym)(),a=(0,s.Kh)({firstValue:0,secondValue:0,oldValue:0,dragging:!1,sliderSize:1}),{elFormItem:c,slider:d,firstButton:p,secondButton:f,sliderDisabled:v,minValue:h,maxValue:m,runwayStyle:g,barStyle:y,resetSize:b,emitChange:R,onSliderWrapperPrevent:w,onSliderClick:E,onSliderDown:C,setFirstValue:k,setSecondValue:x}=IN(o,a,n),{stops:_,getStopStyle:S}=AN(o,a,h,m),{inputId:T,isLabeledByFormItem:O}=ro(o,{formItemContext:c}),I=ao(),A=(0,i.EW)((()=>o.inputSize||I.value)),L=(0,i.EW)((()=>o.label||l("el.slider.defaultLabel",{min:o.min,max:o.max}))),M=(0,i.EW)((()=>o.range?o.rangeStartLabel||l("el.slider.defaultRangeStartLabel"):L.value)),N=(0,i.EW)((()=>o.formatValueText?o.formatValueText(K.value):`${K.value}`)),W=(0,i.EW)((()=>o.rangeEndLabel||l("el.slider.defaultRangeEndLabel"))),D=(0,i.EW)((()=>o.formatValueText?o.formatValueText(j.value):`${j.value}`)),F=(0,i.EW)((()=>[r.b(),r.m(I.value),r.is("vertical",o.vertical),{[r.m("with-input")]:o.showInput}])),$=LN(o);MN(o,a,h,m,n,c);const B=(0,i.EW)((()=>{const e=[o.min,o.max,o.step].map((e=>{const t=`${e}`.split(".")[1];return t?t.length:0}));return Math.max.apply(null,e)})),{sliderWrapper:P}=NN(o,a,b),{firstValue:K,secondValue:j,sliderSize:V}=(0,s.QW)(a),X=e=>{a.dragging=e};return(0,i.Gt)(sN,{...(0,s.QW)(o),sliderSize:V,disabled:v,precision:B,emitChange:R,resetSize:b,updateDragging:X}),t({onSliderClick:E}),(e,t)=>{var n,o;return(0,i.uX)(),(0,i.CE)("div",{id:e.range?(0,s.R1)(T):void 0,ref_key:"sliderWrapper",ref:P,class:(0,u.C4)((0,s.R1)(F)),role:e.range?"group":void 0,"aria-label":e.range&&!(0,s.R1)(O)?(0,s.R1)(L):void 0,"aria-labelledby":e.range&&(0,s.R1)(O)?null==(n=(0,s.R1)(c))?void 0:n.labelId:void 0,onTouchstart:t[2]||(t[2]=(...e)=>(0,s.R1)(w)&&(0,s.R1)(w)(...e)),onTouchmove:t[3]||(t[3]=(...e)=>(0,s.R1)(w)&&(0,s.R1)(w)(...e))},[(0,i.Lk)("div",{ref_key:"slider",ref:d,class:(0,u.C4)([(0,s.R1)(r).e("runway"),{"show-input":e.showInput&&!e.range},(0,s.R1)(r).is("disabled",(0,s.R1)(v))]),style:(0,u.Tr)((0,s.R1)(g)),onMousedown:t[0]||(t[0]=(...e)=>(0,s.R1)(C)&&(0,s.R1)(C)(...e)),onTouchstart:t[1]||(t[1]=(...e)=>(0,s.R1)(C)&&(0,s.R1)(C)(...e))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("bar")),style:(0,u.Tr)((0,s.R1)(y))},null,6),(0,i.bF)(SN,{id:e.range?void 0:(0,s.R1)(T),ref_key:"firstButton",ref:p,"model-value":(0,s.R1)(K),vertical:e.vertical,"tooltip-class":e.tooltipClass,placement:e.placement,role:"slider","aria-label":e.range||!(0,s.R1)(O)?(0,s.R1)(M):void 0,"aria-labelledby":!e.range&&(0,s.R1)(O)?null==(o=(0,s.R1)(c))?void 0:o.labelId:void 0,"aria-valuemin":e.min,"aria-valuemax":e.range?(0,s.R1)(j):e.max,"aria-valuenow":(0,s.R1)(K),"aria-valuetext":(0,s.R1)(N),"aria-orientation":e.vertical?"vertical":"horizontal","aria-disabled":(0,s.R1)(v),"onUpdate:modelValue":(0,s.R1)(k)},null,8,["id","model-value","vertical","tooltip-class","placement","aria-label","aria-labelledby","aria-valuemin","aria-valuemax","aria-valuenow","aria-valuetext","aria-orientation","aria-disabled","onUpdate:modelValue"]),e.range?((0,i.uX)(),(0,i.Wv)(SN,{key:0,ref_key:"secondButton",ref:f,"model-value":(0,s.R1)(j),vertical:e.vertical,"tooltip-class":e.tooltipClass,placement:e.placement,role:"slider","aria-label":(0,s.R1)(W),"aria-valuemin":(0,s.R1)(K),"aria-valuemax":e.max,"aria-valuenow":(0,s.R1)(j),"aria-valuetext":(0,s.R1)(D),"aria-orientation":e.vertical?"vertical":"horizontal","aria-disabled":(0,s.R1)(v),"onUpdate:modelValue":(0,s.R1)(x)},null,8,["model-value","vertical","tooltip-class","placement","aria-label","aria-valuemin","aria-valuemax","aria-valuenow","aria-valuetext","aria-orientation","aria-disabled","onUpdate:modelValue"])):(0,i.Q3)("v-if",!0),e.showStops?((0,i.uX)(),(0,i.CE)("div",DN,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(_),((e,t)=>((0,i.uX)(),(0,i.CE)("div",{key:t,class:(0,u.C4)((0,s.R1)(r).e("stop")),style:(0,u.Tr)((0,s.R1)(S)(e))},null,6)))),128))])):(0,i.Q3)("v-if",!0),(0,s.R1)($).length>0?((0,i.uX)(),(0,i.CE)(i.FK,{key:2},[(0,i.Lk)("div",null,[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)($),((e,t)=>((0,i.uX)(),(0,i.CE)("div",{key:t,style:(0,u.Tr)((0,s.R1)(S)(e.position)),class:(0,u.C4)([(0,s.R1)(r).e("stop"),(0,s.R1)(r).e("marks-stop")])},null,6)))),128))]),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).e("marks"))},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)($),((e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(ON),{key:t,mark:e.mark,style:(0,u.Tr)((0,s.R1)(S)(e.position))},null,8,["mark","style"])))),128))],2)],64)):(0,i.Q3)("v-if",!0)],38),e.showInput&&!e.range?((0,i.uX)(),(0,i.Wv)((0,s.R1)(NT),{key:0,ref:"input","model-value":(0,s.R1)(K),class:(0,u.C4)((0,s.R1)(r).e("input")),step:e.step,disabled:(0,s.R1)(v),controls:e.showInputControls,min:e.min,max:e.max,debounce:e.debounce,size:(0,s.R1)(A),"onUpdate:modelValue":(0,s.R1)(k),onChange:(0,s.R1)(R)},null,8,["model-value","class","step","disabled","controls","min","max","debounce","size","onUpdate:modelValue","onChange"])):(0,i.Q3)("v-if",!0)],42,WN)}}});var BN=J($N,[["__file","slider.vue"]]);const PN=pe(BN),KN=(0,H.b_)({prefixCls:{type:String}}),jN=(0,i.pM)({name:"ElSpaceItem",props:KN,setup(e,{slots:t}){const n=(0,ee.DU)("space"),o=(0,i.EW)((()=>`${e.prefixCls||n.b()}__item`));return()=>(0,i.h)("div",{class:o.value},(0,i.RG)(t,"default"))}}),VN={small:8,default:12,large:16};function XN(e){const t=(0,ee.DU)("space"),n=(0,i.EW)((()=>[t.b(),t.m(e.direction),e.class])),o=(0,s.KR)(0),r=(0,s.KR)(0),l=(0,i.EW)((()=>{const t=e.wrap||e.fill?{flexWrap:"wrap"}:{},n={alignItems:e.alignment},l={rowGap:`${r.value}px`,columnGap:`${o.value}px`};return[t,n,l,e.style]})),a=(0,i.EW)((()=>e.fill?{flexGrow:1,minWidth:`${e.fillRatio}%`}:{}));return(0,i.nT)((()=>{const{size:t="small",wrap:n,direction:l,fill:a}=e;if((0,u.cy)(t)){const[e=0,n=0]=t;o.value=e,r.value=n}else{let e;e=(0,z.Et)(t)?t:VN[t||"small"]||VN.small,(n||a)&&"horizontal"===l?o.value=r.value=e:"horizontal"===l?(o.value=e,r.value=0):(r.value=e,o.value=0)}})),{classes:n,containerStyle:l,itemStyle:a}}const UN=(0,H.b_)({direction:{type:String,values:["horizontal","vertical"],default:"horizontal"},class:{type:(0,H.jq)([String,Object,Array]),default:""},style:{type:(0,H.jq)([String,Array,Object]),default:""},alignment:{type:(0,H.jq)(String),default:"center"},prefixCls:{type:String},spacer:{type:(0,H.jq)([Object,String,Number,Array]),default:null,validator:e=>(0,i.vv)(e)||(0,z.Et)(e)||(0,u.Kg)(e)},wrap:Boolean,fill:Boolean,fillRatio:{type:Number,default:100},size:{type:[String,Array,Number],values:rs.I,validator:e=>(0,z.Et)(e)||(0,u.cy)(e)&&2===e.length&&e.every(z.Et)}}),HN=(0,i.pM)({name:"ElSpace",props:UN,setup(e,{slots:t}){const{classes:n,containerStyle:o,itemStyle:r}=XN(e);function l(t,n="",o=[]){const{prefixCls:a}=e;return t.forEach(((e,t)=>{_c(e)?(0,u.cy)(e.children)&&e.children.forEach(((e,t)=>{_c(e)&&(0,u.cy)(e.children)?l(e.children,`${n+t}-`,o):o.push((0,i.bF)(jN,{style:r.value,prefixCls:a,key:`nested-${n+t}`},{default:()=>[e]},xc.PROPS|xc.STYLE,["style","prefixCls"]))})):Tc(e)&&o.push((0,i.bF)(jN,{style:r.value,prefixCls:a,key:`LoopKey${n+t}`},{default:()=>[e]},xc.PROPS|xc.STYLE,["style","prefixCls"]))})),o}return()=>{var a;const{spacer:s,direction:c}=e,d=(0,i.RG)(t,"default",{key:0},(()=>[]));if(0===(null!=(a=d.children)?a:[]).length)return null;if((0,u.cy)(d.children)){let e=l(d.children);if(s){const t=e.length-1;e=e.reduce(((e,n,o)=>{const l=[...e,n];return o!==t&&l.push((0,i.bF)("span",{style:[r.value,"vertical"===c?"width: 100%":null],key:o},[(0,i.vv)(s)?s:(0,i.eW)(s,xc.TEXT)],xc.STYLE)),l}),[])}return(0,i.bF)("div",{class:n.value,style:o.value},e,xc.STYLE|xc.CLASS)}return d.children}}}),zN=pe(HN),GN=(0,H.b_)({decimalSeparator:{type:String,default:"."},groupSeparator:{type:String,default:","},precision:{type:Number,default:0},formatter:Function,value:{type:(0,H.jq)([Number,Object]),default:0},prefix:String,suffix:String,title:String,valueStyle:{type:(0,H.jq)([String,Object,Array])}}),qN=(0,i.pM)({name:"ElStatistic"}),YN=(0,i.pM)({...qN,props:GN,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("statistic"),r=(0,i.EW)((()=>{const{value:e,formatter:t,precision:o,decimalSeparator:r,groupSeparator:l}=n;if((0,u.Tn)(t))return t(e);if(!(0,z.Et)(e))return e;let[a,i=""]=String(e).split(".");return i=i.padEnd(o,"0").slice(0,o>0?o:0),a=a.replace(/\B(?=(\d{3})+(?!\d))/g,l),[a,i].join(i?r:"")}));return t({displayValue:r}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(o).b())},[e.$slots.title||e.title?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o).e("head"))},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title),1)]))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).e("content"))},[e.$slots.prefix||e.prefix?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o).e("prefix"))},[(0,i.RG)(e.$slots,"prefix",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.prefix),1)]))],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(o).e("number")),style:(0,u.Tr)(e.valueStyle)},(0,u.v_)((0,s.R1)(r)),7),e.$slots.suffix||e.suffix?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(o).e("suffix"))},[(0,i.RG)(e.$slots,"suffix",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.suffix),1)]))],2)):(0,i.Q3)("v-if",!0)],2)],2))}});var QN=J(YN,[["__file","statistic.vue"]]);const ZN=pe(QN),JN=(0,H.b_)({format:{type:String,default:"HH:mm:ss"},prefix:String,suffix:String,title:String,value:{type:(0,H.jq)([Number,Object]),default:0},valueStyle:{type:(0,H.jq)([String,Object,Array])}}),eW={finish:()=>!0,[q]:e=>(0,z.Et)(e)},tW=[["Y",31536e6],["M",2592e6],["D",864e5],["H",36e5],["m",6e4],["s",1e3],["S",1]],nW=e=>(0,z.Et)(e)?new Date(e).getTime():e.valueOf(),oW=(e,t)=>{let n=e;const o=/\[([^\]]*)]/g,r=tW.reduce(((e,[t,o])=>{const r=new RegExp(`${t}+(?![^\\[\\]]*\\])`,"g");if(r.test(e)){const t=Math.floor(n/o);return n-=t*o,e.replace(r,(e=>String(t).padStart(e.length,"0")))}return e}),t);return r.replace(o,"$1")},rW=(0,i.pM)({name:"ElCountdown"}),lW=(0,i.pM)({...rW,props:JN,emits:eW,setup(e,{expose:t,emit:n}){const o=e;let r;const l=(0,s.KR)(nW(o.value)-Date.now()),a=(0,i.EW)((()=>oW(l.value,o.format))),u=e=>oW(e,o.format),c=()=>{r&&(sM(r),r=void 0)},d=()=>{const e=nW(o.value),t=()=>{let o=e-Date.now();n("change",o),o<=0?(o=0,c(),n("finish")):r=iM(t),l.value=o};r=iM(t)};return(0,i.wB)((()=>[o.value,o.format]),(()=>{c(),d()}),{immediate:!0}),(0,i.xo)((()=>{c()})),t({displayValue:a}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(ZN),{value:l.value,title:e.title,prefix:e.prefix,suffix:e.suffix,"value-style":e.valueStyle,formatter:u},(0,i.eX)({_:2},[(0,i.pI)(e.$slots,((t,n)=>({name:n,fn:(0,i.k6)((()=>[(0,i.RG)(e.$slots,n)]))})))]),1032,["value","title","prefix","suffix","value-style"]))}});var aW=J(lW,[["__file","countdown.vue"]]);const iW=pe(aW),sW=(0,H.b_)({space:{type:[Number,String],default:""},active:{type:Number,default:0},direction:{type:String,default:"horizontal",values:["horizontal","vertical"]},alignCenter:{type:Boolean},simple:{type:Boolean},finishStatus:{type:String,values:["wait","process","finish","error","success"],default:"finish"},processStatus:{type:String,values:["wait","process","finish","error","success"],default:"process"}}),uW={[q]:(e,t)=>[e,t].every(z.Et)},cW=(0,i.pM)({name:"ElSteps"}),dW=(0,i.pM)({...cW,props:sW,emits:uW,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("steps"),{children:r,addChild:l,removeChild:a}=Mc((0,i.nI)(),"ElStep");return(0,i.wB)(r,(()=>{r.value.forEach(((e,t)=>{e.setIndex(t)}))})),(0,i.Gt)("ElSteps",{props:n,steps:r,addStep:l,removeStep:a}),(0,i.wB)((()=>n.active),((e,n)=>{t(q,e,n)})),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(o).b(),(0,s.R1)(o).m(e.simple?"simple":e.direction)])},[(0,i.RG)(e.$slots,"default")],2))}});var pW=J(dW,[["__file","steps.vue"]]);const fW=(0,H.b_)({title:{type:String,default:""},icon:{type:en},description:{type:String,default:""},status:{type:String,values:["","wait","process","finish","error","success"],default:""}}),vW=(0,i.pM)({name:"ElStep"}),hW=(0,i.pM)({...vW,props:fW,setup(e){const t=e,n=(0,ee.DU)("step"),o=(0,s.KR)(-1),r=(0,s.KR)({}),l=(0,s.KR)(""),a=(0,i.WQ)("ElSteps"),c=(0,i.nI)();(0,i.sV)((()=>{(0,i.wB)([()=>a.props.active,()=>a.props.processStatus,()=>a.props.finishStatus],(([e])=>{C(e)}),{immediate:!0})})),(0,i.xo)((()=>{a.removeStep(k.uid)}));const d=(0,i.EW)((()=>t.status||l.value)),p=(0,i.EW)((()=>{const e=a.steps.value[o.value-1];return e?e.currentStatus:"wait"})),f=(0,i.EW)((()=>a.props.alignCenter)),v=(0,i.EW)((()=>"vertical"===a.props.direction)),h=(0,i.EW)((()=>a.props.simple)),m=(0,i.EW)((()=>a.steps.value.length)),g=(0,i.EW)((()=>{var e;return(null==(e=a.steps.value[m.value-1])?void 0:e.uid)===(null==c?void 0:c.uid)})),y=(0,i.EW)((()=>h.value?"":a.props.space)),b=(0,i.EW)((()=>[n.b(),n.is(h.value?"simple":a.props.direction),n.is("flex",g.value&&!y.value&&!f.value),n.is("center",f.value&&!v.value&&!h.value)])),R=(0,i.EW)((()=>{const e={flexBasis:(0,z.Et)(y.value)?`${y.value}px`:y.value?y.value:100/(m.value-(f.value?0:1))+"%"};return v.value||g.value&&(e.maxWidth=100/m.value+"%"),e})),w=e=>{o.value=e},E=e=>{const t="wait"===e,n={transitionDelay:`${t?"-":""}${150*o.value}ms`},l=e===a.props.processStatus||t?0:100;n.borderWidth=l&&!h.value?"1px":0,n["vertical"===a.props.direction?"height":"width"]=`${l}%`,r.value=n},C=e=>{e>o.value?l.value=a.props.finishStatus:e===o.value&&"error"!==p.value?l.value=a.props.processStatus:l.value="wait";const t=a.steps.value[o.value-1];t&&t.calcProgress(l.value)},k=(0,s.Kh)({uid:c.uid,currentStatus:d,setIndex:w,calcProgress:E});return a.addStep(k),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{style:(0,u.Tr)((0,s.R1)(R)),class:(0,u.C4)((0,s.R1)(b))},[(0,i.Q3)(" icon & line "),(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(n).e("head"),(0,s.R1)(n).is((0,s.R1)(d))])},[(0,s.R1)(h)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(n).e("line"))},[(0,i.Lk)("i",{class:(0,u.C4)((0,s.R1)(n).e("line-inner")),style:(0,u.Tr)(r.value)},null,6)],2)),(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(n).e("icon"),(0,s.R1)(n).is(e.icon||e.$slots.icon?"icon":"text")])},[(0,i.RG)(e.$slots,"icon",{},(()=>[e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(n).e("icon-inner"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1},8,["class"])):"success"===(0,s.R1)(d)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)([(0,s.R1)(n).e("icon-inner"),(0,s.R1)(n).is("status")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ke))])),_:1},8,["class"])):"error"===(0,s.R1)(d)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:2,class:(0,u.C4)([(0,s.R1)(n).e("icon-inner"),(0,s.R1)(n).is("status")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:1},8,["class"])):(0,s.R1)(h)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:3,class:(0,u.C4)((0,s.R1)(n).e("icon-inner"))},(0,u.v_)(o.value+1),3))]))],2)],2),(0,i.Q3)(" title & description "),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("main"))},[(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(n).e("title"),(0,s.R1)(n).is((0,s.R1)(d))])},[(0,i.RG)(e.$slots,"title",{},(()=>[(0,i.eW)((0,u.v_)(e.title),1)]))],2),(0,s.R1)(h)?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(n).e("arrow"))},null,2)):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)([(0,s.R1)(n).e("description"),(0,s.R1)(n).is((0,s.R1)(d))])},[(0,i.RG)(e.$slots,"description",{},(()=>[(0,i.eW)((0,u.v_)(e.description),1)]))],2))],2)],6))}});var mW=J(hW,[["__file","item.vue"]]);const gW=pe(pW,{Step:mW}),yW=he(mW),bW=e=>["",...rs.I].includes(e),RW=(0,H.b_)({modelValue:{type:[Boolean,String,Number],default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},size:{type:String,validator:bW},width:{type:[String,Number],default:""},inlinePrompt:{type:Boolean,default:!1},inactiveActionIcon:{type:en},activeActionIcon:{type:en},activeIcon:{type:en},inactiveIcon:{type:en},activeText:{type:String,default:""},inactiveText:{type:String,default:""},activeValue:{type:[Boolean,String,Number],default:!0},inactiveValue:{type:[Boolean,String,Number],default:!1},activeColor:{type:String,default:""},inactiveColor:{type:String,default:""},borderColor:{type:String,default:""},name:{type:String,default:""},validateEvent:{type:Boolean,default:!0},beforeChange:{type:(0,H.jq)(Function)},id:String,tabindex:{type:[String,Number]},value:{type:[Boolean,String,Number],default:!1},label:{type:String,default:void 0}}),wW={[G]:e=>(0,z.Lm)(e)||(0,u.Kg)(e)||(0,z.Et)(e),[q]:e=>(0,z.Lm)(e)||(0,u.Kg)(e)||(0,z.Et)(e),[Y]:e=>(0,z.Lm)(e)||(0,u.Kg)(e)||(0,z.Et)(e)},EW=["onClick"],CW=["id","aria-checked","aria-disabled","aria-label","name","true-value","false-value","disabled","tabindex","onKeydown"],kW=["aria-hidden"],xW=["aria-hidden"],_W=["aria-hidden"],SW="ElSwitch",TW=(0,i.pM)({name:SW}),OW=(0,i.pM)({...TW,props:RW,emits:wW,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.nI)(),{formItem:l}=oo(),a=ao(),c=(0,ee.DU)("switch"),d=e=>{e.forEach((e=>{$s({from:e[0],replacement:e[1],scope:SW,version:"2.3.0",ref:"https://element-plus.org/en-US/component/switch.html#attributes",type:"Attribute"},(0,i.EW)((()=>{var t;return!!(null==(t=r.vnode.props)?void 0:t[e[2]])})))}))};d([['"value"','"model-value" or "v-model"',"value"],['"active-color"',"CSS var `--el-switch-on-color`","activeColor"],['"inactive-color"',"CSS var `--el-switch-off-color`","inactiveColor"],['"border-color"',"CSS var `--el-switch-border-color`","borderColor"]]);const{inputId:p}=ro(o,{formItemContext:l}),f=io((0,i.EW)((()=>o.loading))),v=(0,s.KR)(!1!==o.modelValue),h=(0,s.KR)(),m=(0,s.KR)(),g=(0,i.EW)((()=>[c.b(),c.m(a.value),c.is("disabled",f.value),c.is("checked",E.value)])),y=(0,i.EW)((()=>[c.e("label"),c.em("label","left"),c.is("active",!E.value)])),b=(0,i.EW)((()=>[c.e("label"),c.em("label","right"),c.is("active",E.value)])),R=(0,i.EW)((()=>({width:(0,te._V)(o.width)})));(0,i.wB)((()=>o.modelValue),(()=>{v.value=!0})),(0,i.wB)((()=>o.value),(()=>{v.value=!1}));const w=(0,i.EW)((()=>v.value?o.modelValue:o.value)),E=(0,i.EW)((()=>w.value===o.activeValue));[o.activeValue,o.inactiveValue].includes(w.value)||(n(G,o.inactiveValue),n(q,o.inactiveValue),n(Y,o.inactiveValue)),(0,i.wB)(E,(e=>{var t;h.value.checked=e,o.validateEvent&&(null==(t=null==l?void 0:l.validate)||t.call(l,"change").catch((e=>(0,ne.U)(e))))}));const C=()=>{const e=E.value?o.inactiveValue:o.activeValue;n(G,e),n(q,e),n(Y,e),(0,i.dY)((()=>{h.value.checked=E.value}))},k=()=>{if(f.value)return;const{beforeChange:e}=o;if(!e)return void C();const t=e(),n=[(0,u.yL)(t),(0,z.Lm)(t)].includes(!0);n||(0,ne.$)(SW,"beforeChange must return type `Promise` or `boolean`"),(0,u.yL)(t)?t.then((e=>{e&&C()})).catch((e=>{(0,ne.U)(SW,`some error occurred: ${e}`)})):t&&C()},x=(0,i.EW)((()=>c.cssVarBlock({...o.activeColor?{"on-color":o.activeColor}:null,...o.inactiveColor?{"off-color":o.inactiveColor}:null,...o.borderColor?{"border-color":o.borderColor}:null}))),_=()=>{var e,t;null==(t=null==(e=h.value)?void 0:e.focus)||t.call(e)};return(0,i.sV)((()=>{h.value.checked=E.value})),t({focus:_,checked:E}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(g)),style:(0,u.Tr)((0,s.R1)(x)),onClick:(0,ge.D$)(k,["prevent"])},[(0,i.Lk)("input",{id:(0,s.R1)(p),ref_key:"input",ref:h,class:(0,u.C4)((0,s.R1)(c).e("input")),type:"checkbox",role:"switch","aria-checked":(0,s.R1)(E),"aria-disabled":(0,s.R1)(f),"aria-label":e.label,name:e.name,"true-value":e.activeValue,"false-value":e.inactiveValue,disabled:(0,s.R1)(f),tabindex:e.tabindex,onChange:C,onKeydown:(0,ge.jR)(k,["enter"])},null,42,CW),e.inlinePrompt||!e.inactiveIcon&&!e.inactiveText?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(y))},[e.inactiveIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.inactiveIcon)))])),_:1})):(0,i.Q3)("v-if",!0),!e.inactiveIcon&&e.inactiveText?((0,i.uX)(),(0,i.CE)("span",{key:1,"aria-hidden":(0,s.R1)(E)},(0,u.v_)(e.inactiveText),9,kW)):(0,i.Q3)("v-if",!0)],2)),(0,i.Lk)("span",{ref_key:"core",ref:m,class:(0,u.C4)((0,s.R1)(c).e("core")),style:(0,u.Tr)((0,s.R1)(R))},[e.inlinePrompt?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(c).e("inner"))},[e.activeIcon||e.inactiveIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(c).is("icon"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(E)?e.activeIcon:e.inactiveIcon)))])),_:1},8,["class"])):e.activeText||e.inactiveText?((0,i.uX)(),(0,i.CE)("span",{key:1,class:(0,u.C4)((0,s.R1)(c).is("text")),"aria-hidden":!(0,s.R1)(E)},(0,u.v_)((0,s.R1)(E)?e.activeText:e.inactiveText),11,xW)):(0,i.Q3)("v-if",!0)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(c).e("action"))},[e.loading?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(c).is("loading"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(ht))])),_:1},8,["class"])):(0,s.R1)(E)?(0,i.RG)(e.$slots,"active-action",{key:1},(()=>[e.activeActionIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.activeActionIcon)))])),_:1})):(0,i.Q3)("v-if",!0)])):(0,s.R1)(E)?(0,i.Q3)("v-if",!0):(0,i.RG)(e.$slots,"inactive-action",{key:2},(()=>[e.inactiveActionIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.inactiveActionIcon)))])),_:1})):(0,i.Q3)("v-if",!0)]))],2)],6),e.inlinePrompt||!e.activeIcon&&!e.activeText?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",{key:1,class:(0,u.C4)((0,s.R1)(b))},[e.activeIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.activeIcon)))])),_:1})):(0,i.Q3)("v-if",!0),!e.activeIcon&&e.activeText?((0,i.uX)(),(0,i.CE)("span",{key:1,"aria-hidden":!(0,s.R1)(E)},(0,u.v_)(e.activeText),9,_W)):(0,i.Q3)("v-if",!0)],2))],14,EW))}});var IW=J(OW,[["__file","switch.vue"]]);const AW=pe(IW);var LW=n(5347);function MW(e){return function(t,n,o){var r=-1,l=Object(t),a=o(t),i=a.length;while(i--){var s=a[e?i:++r];if(!1===n(l[s],s,l))break}return t}}var NW=MW,WW=NW(),DW=WW;function FW(e,t){return e&&DW(e,t,Qp)}var $W=FW;function BW(e,t){return function(n,o){if(null==n)return n;if(!qp(n))return e(n,o);var r=n.length,l=t?r:-1,a=Object(n);while(t?l--:++l"string"===typeof t?(0,PO.A)(n,t):t(n,o,e)))):("$key"!==t&&(0,u.Gv)(n)&&"$value"in n&&(n=n.$value),[(0,u.Gv)(n)?(0,PO.A)(n,t):n])},a=function(e,t){if(o)return o(e.value,t.value);for(let n=0,o=e.key.length;nt.key[n])return 1}return 0};return e.map(((e,t)=>({value:e,index:t,key:l?l(e,t):null}))).sort(((e,t)=>{let o=a(e,t);return o||(o=e.index-t.index),o*+n})).map((e=>e.value))},QW=function(e,t){let n=null;return e.columns.forEach((e=>{e.id===t&&(n=e)})),n},ZW=function(e,t){let n=null;for(let o=0;o{if(!e)throw new Error("Row is required when get row identity");if("string"===typeof t){if(!t.includes("."))return`${e[t]}`;const n=t.split(".");let o=e;for(const e of n)o=o[e];return`${o}`}if("function"===typeof t)return t.call(null,e)},tD=function(e,t){const n={};return(e||[]).forEach(((e,o)=>{n[eD(e,t)]={row:e,index:o}})),n};function nD(e,t){const n={};let o;for(o in e)n[o]=e[o];for(o in t)if((0,u.$3)(t,o)){const e=t[o];"undefined"!==typeof e&&(n[o]=e)}return n}function oD(e){return""===e||void 0!==e&&(e=Number.parseInt(e,10),Number.isNaN(e)&&(e="")),e}function rD(e){return""===e||void 0!==e&&(e=oD(e),Number.isNaN(e)&&(e=80)),e}function lD(e){return"number"===typeof e?e:"string"===typeof e?/^\d+(?:px)?$/.test(e)?Number.parseInt(e,10):e:null}function aD(...e){return 0===e.length?e=>e:1===e.length?e[0]:e.reduce(((e,t)=>(...n)=>e(t(...n))))}function iD(e,t,n){let o=!1;const r=e.indexOf(t),l=-1!==r,a=a=>{"add"===a?e.push(t):e.splice(r,1),o=!0,(0,u.cy)(t.children)&&t.children.forEach((t=>{iD(e,t,null!=n?n:!l)}))};return(0,z.Lm)(n)?n&&!l?a("add"):!n&&l&&a("remove"):a(l?"remove":"add"),o}function sD(e,t,n="children",o="hasChildren"){const r=e=>!(Array.isArray(e)&&e.length);function l(e,a,i){t(e,a,i),a.forEach((e=>{if(e[o])return void t(e,null,i+1);const a=e[n];r(a)||l(e,a,i+1)}))}e.forEach((e=>{if(e[o])return void t(e,null,0);const a=e[n];r(a)||l(e,a,0)}))}let uD=null;function cD(e,t,n,o){if((null==uD?void 0:uD.trigger)===n)return;null==uD||uD();const r=null==o?void 0:o.refs.tableWrapper,l=null==r?void 0:r.dataset.prefix,a={strategy:"fixed",...e.popperOptions},s=(0,i.bF)(zi,{content:t,virtualTriggering:!0,virtualRef:n,appendTo:r,placement:"top",transition:"none",offset:0,hideAfter:0,...e,popperOptions:a,onHide:()=>{null==uD||uD()}});s.appContext={...o.appContext,...o};const u=document.createElement("div");(0,ge.XX)(s,u),s.component.exposed.onOpen();const c=null==r?void 0:r.querySelector(`.${l}-scrollbar__wrap`);uD=()=>{(0,ge.XX)(null,u),null==c||c.removeEventListener("scroll",uD),uD=null},uD.trigger=n,null==c||c.addEventListener("scroll",uD)}function dD(e){return e.children?GW(e.children,dD):[e]}function pD(e,t){return e+t.colSpan}const fD=(e,t,n,o)=>{let r=0,l=e;const a=n.states.columns.value;if(o){const t=dD(o[e]),n=a.slice(0,a.indexOf(t[0]));r=n.reduce(pD,0),l=r+t.reduce(pD,0)-1}else r=e;let i;switch(t){case"left":l=a.length-n.states.rightFixedLeafColumnsLength.value&&(i="right");break;default:l=a.length-n.states.rightFixedLeafColumnsLength.value&&(i="right")}return i?{direction:i,start:r,after:l}:{}},vD=(e,t,n,o,r,l=0)=>{const a=[],{direction:i,start:s,after:u}=fD(t,n,o,r);if(i){const t="left"===i;a.push(`${e}-fixed-column--${i}`),t&&u+l===o.states.fixedLeafColumnsLength.value-1?a.push("is-last-column"):t||s-l!==o.states.columns.value.length-o.states.rightFixedLeafColumnsLength.value||a.push("is-first-column")}return a};function hD(e,t){return e+(null===t.realWidth||Number.isNaN(t.realWidth)?Number(t.width):t.realWidth)}const mD=(e,t,n,o)=>{const{direction:r,start:l=0,after:a=0}=fD(e,t,n,o);if(!r)return;const i={},s="left"===r,u=n.states.columns.value;return s?i.left=u.slice(0,l).reduce(hD,0):i.right=u.slice(a+1).reverse().reduce(hD,0),i},gD=(e,t)=>{e&&(Number.isNaN(e[t])||(e[t]=`${e[t]}px`))};function yD(e){const t=(0,i.nI)(),n=(0,s.KR)(!1),o=(0,s.KR)([]),r=()=>{const t=e.data.value||[],r=e.rowKey.value;if(n.value)o.value=t.slice();else if(r){const e=tD(o.value,r);o.value=t.reduce(((t,n)=>{const o=eD(n,r),l=e[o];return l&&t.push(n),t}),[])}else o.value=[]},l=(e,n)=>{const r=iD(o.value,e,n);r&&t.emit("expand-change",e,o.value.slice())},a=n=>{t.store.assertRowKey();const r=e.data.value||[],l=e.rowKey.value,a=tD(r,l);o.value=n.reduce(((e,t)=>{const n=a[t];return n&&e.push(n.row),e}),[])},u=t=>{const n=e.rowKey.value;if(n){const e=tD(o.value,n);return!!e[eD(t,n)]}return o.value.includes(t)};return{updateExpandRows:r,toggleRowExpansion:l,setExpandRowKeys:a,isRowExpanded:u,states:{expandRows:o,defaultExpandAll:n}}}function bD(e){const t=(0,i.nI)(),n=(0,s.KR)(null),o=(0,s.KR)(null),r=e=>{t.store.assertRowKey(),n.value=e,a(e)},l=()=>{n.value=null},a=n=>{const{data:r,rowKey:l}=e;let a=null;l.value&&(a=((0,s.R1)(r)||[]).find((e=>eD(e,l.value)===n))),o.value=a,t.emit("current-change",o.value,null)},u=e=>{const n=o.value;if(e&&e!==n)return o.value=e,void t.emit("current-change",o.value,n);!e&&n&&(o.value=null,t.emit("current-change",null,n))},c=()=>{const r=e.rowKey.value,i=e.data.value||[],s=o.value;if(!i.includes(s)&&s){if(r){const e=eD(s,r);a(e)}else o.value=null;null===o.value&&t.emit("current-change",null,s)}else n.value&&(a(n.value),l())};return{setCurrentRowKey:r,restoreCurrentRowKey:l,setCurrentRowByKey:a,updateCurrentRow:u,updateCurrentRowData:c,states:{_currentRowKey:n,currentRow:o}}}function RD(e){const t=(0,s.KR)([]),n=(0,s.KR)({}),o=(0,s.KR)(16),r=(0,s.KR)(!1),l=(0,s.KR)({}),a=(0,s.KR)("hasChildren"),u=(0,s.KR)("children"),c=(0,i.nI)(),d=(0,i.EW)((()=>{if(!e.rowKey.value)return{};const t=e.data.value||[];return f(t)})),p=(0,i.EW)((()=>{const t=e.rowKey.value,n=Object.keys(l.value),o={};return n.length?(n.forEach((e=>{if(l.value[e].length){const n={children:[]};l.value[e].forEach((e=>{const r=eD(e,t);n.children.push(r),e[a.value]&&!o[r]&&(o[r]={children:[]})})),o[e]=n}})),o):o})),f=t=>{const n=e.rowKey.value,o={};return sD(t,((e,t,l)=>{const a=eD(e,n);Array.isArray(t)?o[a]={children:t.map((e=>eD(e,n))),level:l}:r.value&&(o[a]={children:[],lazy:!0,level:l})}),u.value,a.value),o},v=(e=!1,o=(e=>null==(e=c.store)?void 0:e.states.defaultExpandAll.value)())=>{var l;const a=d.value,i=p.value,u=Object.keys(a),f={};if(u.length){const l=(0,s.R1)(n),c=[],d=(n,r)=>{if(e)return t.value?o||t.value.includes(r):!(!o&&!(null==n?void 0:n.expanded));{const e=o||t.value&&t.value.includes(r);return!(!(null==n?void 0:n.expanded)&&!e)}};u.forEach((e=>{const t=l[e],n={...a[e]};if(n.expanded=d(t,e),n.lazy){const{loaded:o=!1,loading:r=!1}=t||{};n.loaded=!!o,n.loading=!!r,c.push(e)}f[e]=n}));const p=Object.keys(i);r.value&&p.length&&c.length&&p.forEach((e=>{const t=l[e],n=i[e].children;if(c.includes(e)){if(0!==f[e].children.length)throw new Error("[ElTable]children must be an empty array.");f[e].children=n}else{const{loaded:o=!1,loading:r=!1}=t||{};f[e]={lazy:!0,loaded:!!o,loading:!!r,expanded:d(t,e),children:n,level:""}}}))}n.value=f,null==(l=c.store)||l.updateTableScrollY()};(0,i.wB)((()=>t.value),(()=>{v(!0)})),(0,i.wB)((()=>d.value),(()=>{v()})),(0,i.wB)((()=>p.value),(()=>{v()}));const h=e=>{t.value=e,v()},m=(t,o)=>{c.store.assertRowKey();const r=e.rowKey.value,l=eD(t,r),a=l&&n.value[l];if(l&&a&&"expanded"in a){const e=a.expanded;o="undefined"===typeof o?!a.expanded:o,n.value[l].expanded=o,e!==o&&c.emit("expand-change",t,o),c.store.updateTableScrollY()}},g=t=>{c.store.assertRowKey();const o=e.rowKey.value,l=eD(t,o),a=n.value[l];r.value&&a&&"loaded"in a&&!a.loaded?y(t,l,a):m(t,void 0)},y=(e,t,o)=>{const{load:r}=c.props;r&&!n.value[t].loaded&&(n.value[t].loading=!0,r(e,o,(o=>{if(!Array.isArray(o))throw new TypeError("[ElTable] data must be an array");n.value[t].loading=!1,n.value[t].loaded=!0,n.value[t].expanded=!0,o.length&&(l.value[t]=o),c.emit("expand-change",e,!0)})))};return{loadData:y,loadOrToggle:g,toggleTreeExpansion:m,updateTreeExpandKeys:h,updateTreeData:v,normalize:f,states:{expandRowKeys:t,treeData:n,indent:o,lazy:r,lazyTreeNodeMap:l,lazyColumnIdentifier:a,childrenColumnName:u}}}const wD=(e,t)=>{const n=t.sortingColumn;return n&&"string"!==typeof n.sortable?YW(e,t.sortProp,t.sortOrder,n.sortMethod,n.sortBy):e},ED=e=>{const t=[];return e.forEach((e=>{e.children&&e.children.length>0?t.push.apply(t,ED(e.children)):t.push(e)})),t};function CD(){var e;const t=(0,i.nI)(),{size:n}=(0,s.QW)(null==(e=t.proxy)?void 0:e.$props),o=(0,s.KR)(null),r=(0,s.KR)([]),l=(0,s.KR)([]),a=(0,s.KR)(!1),c=(0,s.KR)([]),d=(0,s.KR)([]),p=(0,s.KR)([]),f=(0,s.KR)([]),v=(0,s.KR)([]),h=(0,s.KR)([]),m=(0,s.KR)([]),g=(0,s.KR)([]),y=[],b=(0,s.KR)(0),R=(0,s.KR)(0),w=(0,s.KR)(0),E=(0,s.KR)(!1),C=(0,s.KR)([]),k=(0,s.KR)(!1),x=(0,s.KR)(!1),_=(0,s.KR)(null),S=(0,s.KR)({}),T=(0,s.KR)(null),O=(0,s.KR)(null),I=(0,s.KR)(null),A=(0,s.KR)(null),L=(0,s.KR)(null);(0,i.wB)(r,(()=>t.state&&D(!1)),{deep:!0});const M=()=>{if(!o.value)throw new Error("[ElTable] prop row-key is required")},N=e=>{var t;null==(t=e.children)||t.forEach((t=>{t.fixed=e.fixed,N(t)}))},W=()=>{c.value.forEach((e=>{N(e)})),f.value=c.value.filter((e=>!0===e.fixed||"left"===e.fixed)),v.value=c.value.filter((e=>"right"===e.fixed)),f.value.length>0&&c.value[0]&&"selection"===c.value[0].type&&!c.value[0].fixed&&(c.value[0].fixed=!0,f.value.unshift(c.value[0]));const e=c.value.filter((e=>!e.fixed));d.value=[].concat(f.value).concat(e).concat(v.value);const t=ED(e),n=ED(f.value),o=ED(v.value);b.value=t.length,R.value=n.length,w.value=o.length,p.value=[].concat(n).concat(t).concat(o),a.value=f.value.length>0||v.value.length>0},D=(e,n=!1)=>{e&&W(),n?t.state.doLayout():t.state.debouncedUpdateLayout()},F=e=>C.value.includes(e),$=()=>{E.value=!1;const e=C.value;e.length&&(C.value=[],t.emit("selection-change",[]))},B=()=>{let e;if(o.value){e=[];const t=tD(C.value,o.value),n=tD(r.value,o.value);for(const o in t)(0,u.$3)(t,o)&&!n[o]&&e.push(t[o].row)}else e=C.value.filter((e=>!r.value.includes(e)));if(e.length){const n=C.value.filter((t=>!e.includes(t)));C.value=n,t.emit("selection-change",n.slice())}},P=()=>(C.value||[]).slice(),K=(e,n=void 0,o=!0)=>{const r=iD(C.value,e,n);if(r){const n=(C.value||[]).slice();o&&t.emit("select",n,e),t.emit("selection-change",n)}},j=()=>{var e,n;const o=x.value?!E.value:!(E.value||C.value.length);E.value=o;let l=!1,a=0;const i=null==(n=null==(e=null==t?void 0:t.store)?void 0:e.states)?void 0:n.rowKey.value;r.value.forEach(((e,t)=>{const n=t+a;_.value?_.value.call(null,e,n)&&iD(C.value,e,o)&&(l=!0):iD(C.value,e,o)&&(l=!0),a+=U(eD(e,i))})),l&&t.emit("selection-change",C.value?C.value.slice():[]),t.emit("select-all",C.value)},V=()=>{const e=tD(C.value,o.value);r.value.forEach((t=>{const n=eD(t,o.value),r=e[n];r&&(C.value[r.index]=t)}))},X=()=>{var e,n,l;if(0===(null==(e=r.value)?void 0:e.length))return void(E.value=!1);let a;o.value&&(a=tD(C.value,o.value));const i=function(e){return a?!!a[eD(e,o.value)]:C.value.includes(e)};let s=!0,u=0,c=0;for(let o=0,d=(r.value||[]).length;o{var n;if(!t||!t.store)return 0;const{treeData:o}=t.store.states;let r=0;const l=null==(n=o.value[e])?void 0:n.children;return l&&(r+=l.length,l.forEach((e=>{r+=U(e)}))),r},H=(e,t)=>{Array.isArray(e)||(e=[e]);const n={};return e.forEach((e=>{S.value[e.id]=t,n[e.columnKey||e.id]=t})),n},z=(e,t,n)=>{O.value&&O.value!==e&&(O.value.order=null),O.value=e,I.value=t,A.value=n},G=()=>{let e=(0,s.R1)(l);Object.keys(S.value).forEach((t=>{const n=S.value[t];if(!n||0===n.length)return;const o=QW({columns:p.value},t);o&&o.filterMethod&&(e=e.filter((e=>n.some((t=>o.filterMethod.call(null,t,e,o))))))})),T.value=e},q=()=>{r.value=wD(T.value,{sortingColumn:O.value,sortProp:I.value,sortOrder:A.value})},Y=(e=void 0)=>{e&&e.filter||G(),q()},Q=e=>{const{tableHeaderRef:n}=t.refs;if(!n)return;const o=Object.assign({},n.filterPanels),r=Object.keys(o);if(r.length)if("string"===typeof e&&(e=[e]),Array.isArray(e)){const n=e.map((e=>ZW({columns:p.value},e)));r.forEach((e=>{const t=n.find((t=>t.id===e));t&&(t.filteredValue=[])})),t.store.commit("filterChange",{column:n,values:[],silent:!0,multi:!0})}else r.forEach((e=>{const t=p.value.find((t=>t.id===e));t&&(t.filteredValue=[])})),S.value={},t.store.commit("filterChange",{column:{},values:[],silent:!0})},Z=()=>{O.value&&(z(null,null,null),t.store.commit("changeSortCondition",{silent:!0}))},{setExpandRowKeys:J,toggleRowExpansion:ee,updateExpandRows:te,states:ne,isRowExpanded:oe}=yD({data:r,rowKey:o}),{updateTreeExpandKeys:re,toggleTreeExpansion:le,updateTreeData:ae,loadOrToggle:ie,states:se}=RD({data:r,rowKey:o}),{updateCurrentRowData:ue,updateCurrentRow:ce,setCurrentRowKey:de,states:pe}=bD({data:r,rowKey:o}),fe=e=>{J(e),re(e)},ve=(e,t)=>{const n=p.value.some((({type:e})=>"expand"===e));n?ee(e,t):le(e,t)};return{assertRowKey:M,updateColumns:W,scheduleLayout:D,isSelected:F,clearSelection:$,cleanSelection:B,getSelectionRows:P,toggleRowSelection:K,_toggleAllSelection:j,toggleAllSelection:null,updateSelectionByRowKey:V,updateAllSelected:X,updateFilters:H,updateCurrentRow:ce,updateSort:z,execFilter:G,execSort:q,execQuery:Y,clearFilter:Q,clearSort:Z,toggleRowExpansion:ee,setExpandRowKeysAdapter:fe,setCurrentRowKey:de,toggleRowExpansionAdapter:ve,isRowExpanded:oe,updateExpandRows:te,updateCurrentRowData:ue,loadOrToggle:ie,updateTreeData:ae,states:{tableSize:n,rowKey:o,data:r,_data:l,isComplex:a,_columns:c,originColumns:d,columns:p,fixedColumns:f,rightFixedColumns:v,leafColumns:h,fixedLeafColumns:m,rightFixedLeafColumns:g,updateOrderFns:y,leafColumnsLength:b,fixedLeafColumnsLength:R,rightFixedLeafColumnsLength:w,isAllSelected:E,selection:C,reserveSelection:k,selectOnIndeterminate:x,selectable:_,filters:S,filteredData:T,sortingColumn:O,sortProp:I,sortOrder:A,hoverRow:L,...ne,...se,...pe}}}function kD(e,t){return e.map((e=>{var n;return e.id===t.id?t:((null==(n=e.children)?void 0:n.length)&&(e.children=kD(e.children,t)),e)}))}function xD(e){e.forEach((e=>{var t,n;e.no=null==(t=e.getColumnIndex)?void 0:t.call(e),(null==(n=e.children)?void 0:n.length)&&xD(e.children)})),e.sort(((e,t)=>e.no-t.no))}function _D(){const e=(0,i.nI)(),t=CD(),n=(0,ee.DU)("table"),o={setData(t,n){const o=(0,s.R1)(t._data)!==n;t.data.value=n,t._data.value=n,e.store.execQuery(),e.store.updateCurrentRowData(),e.store.updateExpandRows(),e.store.updateTreeData(e.store.states.defaultExpandAll.value),(0,s.R1)(t.reserveSelection)?(e.store.assertRowKey(),e.store.updateSelectionByRowKey()):o?e.store.clearSelection():e.store.cleanSelection(),e.store.updateAllSelected(),e.$ready&&e.store.scheduleLayout()},insertColumn(t,n,o,r){const l=(0,s.R1)(t._columns);let a=[];o?(o&&!o.children&&(o.children=[]),o.children.push(n),a=kD(l,o)):(l.push(n),a=l),xD(a),t._columns.value=a,t.updateOrderFns.push(r),"selection"===n.type&&(t.selectable.value=n.selectable,t.reserveSelection.value=n.reserveSelection),e.$ready&&(e.store.updateColumns(),e.store.scheduleLayout())},updateColumnOrder(t,n){var o;const r=null==(o=n.getColumnIndex)?void 0:o.call(n);r!==n.no&&(xD(t._columns.value),e.$ready&&e.store.updateColumns())},removeColumn(t,n,o,r){const l=(0,s.R1)(t._columns)||[];if(o)o.children.splice(o.children.findIndex((e=>e.id===n.id)),1),(0,i.dY)((()=>{var e;0===(null==(e=o.children)?void 0:e.length)&&delete o.children})),t._columns.value=kD(l,o);else{const e=l.indexOf(n);e>-1&&(l.splice(e,1),t._columns.value=l)}const a=t.updateOrderFns.indexOf(r);a>-1&&t.updateOrderFns.splice(a,1),e.$ready&&(e.store.updateColumns(),e.store.scheduleLayout())},sort(t,n){const{prop:o,order:r,init:l}=n;if(o){const n=(0,s.R1)(t.columns).find((e=>e.property===o));n&&(n.order=r,e.store.updateSort(n,o,r),e.store.commit("changeSortCondition",{init:l}))}},changeSortCondition(t,n){const{sortingColumn:o,sortProp:r,sortOrder:l}=t,a=(0,s.R1)(o),i=(0,s.R1)(r),u=(0,s.R1)(l);null===u&&(t.sortingColumn.value=null,t.sortProp.value=null);const c={filter:!0};e.store.execQuery(c),n&&(n.silent||n.init)||e.emit("sort-change",{column:a,prop:i,order:u}),e.store.updateTableScrollY()},filterChange(t,n){const{column:o,values:r,silent:l}=n,a=e.store.updateFilters(o,r);e.store.execQuery(),l||e.emit("filter-change",a),e.store.updateTableScrollY()},toggleAllSelection(){e.store.toggleAllSelection()},rowSelectedChanged(t,n){e.store.toggleRowSelection(n),e.store.updateAllSelected()},setHoverRow(e,t){e.hoverRow.value=t},setCurrentRow(t,n){e.store.updateCurrentRow(n)}},r=function(t,...n){const o=e.store.mutations;if(!o[t])throw new Error(`Action not found: ${t}`);o[t].apply(e,[e.store.states].concat(n))},l=function(){(0,i.dY)((()=>e.layout.updateScrollY.apply(e.layout)))};return{ns:n,...t,mutations:o,commit:r,updateTableScrollY:l}}const SD={rowKey:"rowKey",defaultExpandAll:"defaultExpandAll",selectOnIndeterminate:"selectOnIndeterminate",indent:"indent",lazy:"lazy",data:"data",["treeProps.hasChildren"]:{key:"lazyColumnIdentifier",default:"hasChildren"},["treeProps.children"]:{key:"childrenColumnName",default:"children"}};function TD(e,t){if(!e)throw new Error("Table is required.");const n=_D();return n.toggleAllSelection=Wn(n._toggleAllSelection,10),Object.keys(SD).forEach((e=>{ID(AD(t,e),e,n)})),OD(n,t),n}function OD(e,t){Object.keys(SD).forEach((n=>{(0,i.wB)((()=>AD(t,n)),(t=>{ID(t,n,e)}))}))}function ID(e,t,n){let o=e,r=SD[t];"object"===typeof SD[t]&&(r=r.key,o=o||SD[t].default),n.states[r].value=o}function AD(e,t){if(t.includes(".")){const n=t.split(".");let o=e;return n.forEach((e=>{o=o[e]})),o}return e[t]}class LD{constructor(e){this.observers=[],this.table=null,this.store=null,this.columns=[],this.fit=!0,this.showHeader=!0,this.height=(0,s.KR)(null),this.scrollX=(0,s.KR)(!1),this.scrollY=(0,s.KR)(!1),this.bodyWidth=(0,s.KR)(null),this.fixedWidth=(0,s.KR)(null),this.rightFixedWidth=(0,s.KR)(null),this.gutterWidth=0;for(const t in e)(0,u.$3)(e,t)&&((0,s.i9)(this[t])?this[t].value=e[t]:this[t]=e[t]);if(!this.table)throw new Error("Table is required for Table Layout");if(!this.store)throw new Error("Store is required for Table Layout")}updateScrollY(){const e=this.height.value;if(null===e)return!1;const t=this.table.refs.scrollBarRef;if(this.table.vnode.el&&(null==t?void 0:t.wrapRef)){let e=!0;const n=this.scrollY.value;return e=t.wrapRef.scrollHeight>t.wrapRef.clientHeight,this.scrollY.value=e,n!==e}return!1}setHeight(e,t="height"){if(!c.oc)return;const n=this.table.vnode.el;if(e=lD(e),this.height.value=Number(e),!n&&(e||0===e))return(0,i.dY)((()=>this.setHeight(e,t)));"number"===typeof e?(n.style[t]=`${e}px`,this.updateElsHeight()):"string"===typeof e&&(n.style[t]=e,this.updateElsHeight())}setMaxHeight(e){this.setHeight(e,"max-height")}getFlattenColumns(){const e=[],t=this.table.store.states.columns.value;return t.forEach((t=>{t.isColumnGroup?e.push.apply(e,t.columns):e.push(t)})),e}updateElsHeight(){this.updateScrollY(),this.notifyObservers("scrollable")}headerDisplayNone(e){if(!e)return!0;let t=e;while("DIV"!==t.tagName){if("none"===getComputedStyle(t).display)return!0;t=t.parentElement}return!1}updateColumnsWidth(){if(!c.oc)return;const e=this.fit,t=this.table.vnode.el.clientWidth;let n=0;const o=this.getFlattenColumns(),r=o.filter((e=>"number"!==typeof e.width));if(o.forEach((e=>{"number"===typeof e.width&&e.realWidth&&(e.realWidth=null)})),r.length>0&&e){if(o.forEach((e=>{n+=Number(e.width||e.minWidth||80)})),n<=t){this.scrollX.value=!1;const e=t-n;if(1===r.length)r[0].realWidth=Number(r[0].minWidth||80)+e;else{const t=r.reduce(((e,t)=>e+Number(t.minWidth||80)),0),n=e/t;let o=0;r.forEach(((e,t)=>{if(0===t)return;const r=Math.floor(Number(e.minWidth||80)*n);o+=r,e.realWidth=Number(e.minWidth||80)+r})),r[0].realWidth=Number(r[0].minWidth||80)+e-o}}else this.scrollX.value=!0,r.forEach((e=>{e.realWidth=Number(e.minWidth)}));this.bodyWidth.value=Math.max(n,t),this.table.state.resizeState.value.width=this.bodyWidth.value}else o.forEach((e=>{e.width||e.minWidth?e.realWidth=Number(e.width||e.minWidth):e.realWidth=80,n+=e.realWidth})),this.scrollX.value=n>t,this.bodyWidth.value=n;const l=this.store.states.fixedColumns.value;if(l.length>0){let e=0;l.forEach((t=>{e+=Number(t.realWidth||t.width)})),this.fixedWidth.value=e}const a=this.store.states.rightFixedColumns.value;if(a.length>0){let e=0;a.forEach((t=>{e+=Number(t.realWidth||t.width)})),this.rightFixedWidth.value=e}this.notifyObservers("columns")}addObserver(e){this.observers.push(e)}removeObserver(e){const t=this.observers.indexOf(e);-1!==t&&this.observers.splice(t,1)}notifyObservers(e){const t=this.observers;t.forEach((t=>{var n,o;switch(e){case"columns":null==(n=t.state)||n.onColumnsChange(this);break;case"scrollable":null==(o=t.state)||o.onScrollableChange(this);break;default:throw new Error(`Table Layout don't have event ${e}.`)}}))}}const{CheckboxGroup:MD}=yy,ND=(0,i.pM)({name:"ElTableFilterPanel",components:{ElCheckbox:yy,ElCheckboxGroup:MD,ElScrollbar:Do,ElTooltip:zi,ElIcon:Ee,ArrowDown:xe,ArrowUp:Ae},directives:{ClickOutside:Bb},props:{placement:{type:String,default:"bottom-start"},store:{type:Object},column:{type:Object},upDataColumn:{type:Function}},setup(e){const t=(0,i.nI)(),{t:n}=(0,zu.Ym)(),o=(0,ee.DU)("table-filter"),r=null==t?void 0:t.parent;r.filterPanels.value[e.column.id]||(r.filterPanels.value[e.column.id]=t);const l=(0,s.KR)(!1),a=(0,s.KR)(null),u=(0,i.EW)((()=>e.column&&e.column.filters)),c=(0,i.EW)((()=>e.column.filterClassName?`${o.b()} ${e.column.filterClassName}`:o.b())),d=(0,i.EW)({get:()=>{var t;return((null==(t=e.column)?void 0:t.filteredValue)||[])[0]},set:e=>{p.value&&("undefined"!==typeof e&&null!==e?p.value.splice(0,1,e):p.value.splice(0,1))}}),p=(0,i.EW)({get(){return e.column&&e.column.filteredValue||[]},set(t){e.column&&e.upDataColumn("filteredValue",t)}}),f=(0,i.EW)((()=>!e.column||e.column.filterMultiple)),v=e=>e.value===d.value,h=()=>{l.value=!1},m=e=>{e.stopPropagation(),l.value=!l.value},g=()=>{l.value=!1},y=()=>{w(p.value),h()},b=()=>{p.value=[],w(p.value),h()},R=e=>{d.value=e,w("undefined"!==typeof e&&null!==e?p.value:[]),h()},w=t=>{e.store.commit("filterChange",{column:e.column,values:t}),e.store.updateAllSelected()};(0,i.wB)(l,(t=>{e.column&&e.upDataColumn("filterOpened",t)}),{immediate:!0});const E=(0,i.EW)((()=>{var e,t;return null==(t=null==(e=a.value)?void 0:e.popperRef)?void 0:t.contentRef}));return{tooltipVisible:l,multiple:f,filterClassName:c,filteredValue:p,filterValue:d,filters:u,handleConfirm:y,handleReset:b,handleSelect:R,isActive:v,t:n,ns:o,showFilterPanel:m,hideFilterPanel:g,popperPaneRef:E,tooltip:a}}}),WD={key:0},DD=["disabled"],FD=["label","onClick"];function $D(e,t,n,o,r,l){const a=(0,i.g2)("el-checkbox"),s=(0,i.g2)("el-checkbox-group"),c=(0,i.g2)("el-scrollbar"),d=(0,i.g2)("arrow-up"),p=(0,i.g2)("arrow-down"),f=(0,i.g2)("el-icon"),v=(0,i.g2)("el-tooltip"),h=(0,i.gN)("click-outside");return(0,i.uX)(),(0,i.Wv)(v,{ref:"tooltip",visible:e.tooltipVisible,offset:0,placement:e.placement,"show-arrow":!1,"stop-popper-mouse-event":!1,teleported:"",effect:"light",pure:"","popper-class":e.filterClassName,persistent:""},{content:(0,i.k6)((()=>[e.multiple?((0,i.uX)(),(0,i.CE)("div",WD,[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("content"))},[(0,i.bF)(c,{"wrap-class":e.ns.e("wrap")},{default:(0,i.k6)((()=>[(0,i.bF)(s,{modelValue:e.filteredValue,"onUpdate:modelValue":t[0]||(t[0]=t=>e.filteredValue=t),class:(0,u.C4)(e.ns.e("checkbox-group"))},{default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.filters,(e=>((0,i.uX)(),(0,i.Wv)(a,{key:e.value,label:e.value},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)(e.text),1)])),_:2},1032,["label"])))),128))])),_:1},8,["modelValue","class"])])),_:1},8,["wrap-class"])],2),(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("bottom"))},[(0,i.Lk)("button",{class:(0,u.C4)({[e.ns.is("disabled")]:0===e.filteredValue.length}),disabled:0===e.filteredValue.length,type:"button",onClick:t[1]||(t[1]=(...t)=>e.handleConfirm&&e.handleConfirm(...t))},(0,u.v_)(e.t("el.table.confirmFilter")),11,DD),(0,i.Lk)("button",{type:"button",onClick:t[2]||(t[2]=(...t)=>e.handleReset&&e.handleReset(...t))},(0,u.v_)(e.t("el.table.resetFilter")),1)],2)])):((0,i.uX)(),(0,i.CE)("ul",{key:1,class:(0,u.C4)(e.ns.e("list"))},[(0,i.Lk)("li",{class:(0,u.C4)([e.ns.e("list-item"),{[e.ns.is("active")]:void 0===e.filterValue||null===e.filterValue}]),onClick:t[3]||(t[3]=t=>e.handleSelect(null))},(0,u.v_)(e.t("el.table.clearFilter")),3),((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.filters,(t=>((0,i.uX)(),(0,i.CE)("li",{key:t.value,class:(0,u.C4)([e.ns.e("list-item"),e.ns.is("active",e.isActive(t))]),label:t.value,onClick:n=>e.handleSelect(t.value)},(0,u.v_)(t.text),11,FD)))),128))],2))])),default:(0,i.k6)((()=>[(0,i.bo)(((0,i.uX)(),(0,i.CE)("span",{class:(0,u.C4)([`${e.ns.namespace.value}-table__column-filter-trigger`,`${e.ns.namespace.value}-none-outline`]),onClick:t[4]||(t[4]=(...t)=>e.showFilterPanel&&e.showFilterPanel(...t))},[(0,i.bF)(f,null,{default:(0,i.k6)((()=>[e.column.filterOpened?((0,i.uX)(),(0,i.Wv)(d,{key:0})):((0,i.uX)(),(0,i.Wv)(p,{key:1}))])),_:1})],2)),[[h,e.hideFilterPanel,e.popperPaneRef]])])),_:1},8,["visible","placement","popper-class"])}var BD=J(ND,[["render",$D],["__file","filter-panel.vue"]]);function PD(e){const t=(0,i.nI)();(0,i.KC)((()=>{n.value.addObserver(t)})),(0,i.sV)((()=>{o(n.value),r(n.value)})),(0,i.$u)((()=>{o(n.value),r(n.value)})),(0,i.hi)((()=>{n.value.removeObserver(t)}));const n=(0,i.EW)((()=>{const t=e.layout;if(!t)throw new Error("Can not find table layout.");return t})),o=t=>{var n;const o=(null==(n=e.vnode.el)?void 0:n.querySelectorAll("colgroup > col"))||[];if(!o.length)return;const r=t.getFlattenColumns(),l={};r.forEach((e=>{l[e.id]=e}));for(let e=0,a=o.length;e{var n,o;const r=(null==(n=e.vnode.el)?void 0:n.querySelectorAll("colgroup > col[name=gutter]"))||[];for(let e=0,a=r.length;e{e.stopPropagation()},l=(e,t)=>{!t.filters&&t.sortable?g(e,t,!1):t.filterable&&!t.sortable&&r(e),null==o||o.emit("header-click",t,e)},a=(e,t)=>{null==o||o.emit("header-contextmenu",t,e)},u=(0,s.KR)(null),d=(0,s.KR)(!1),p=(0,s.KR)({}),f=(r,l)=>{if(c.oc&&!(l.children&&l.children.length>0)&&u.value&&e.border){d.value=!0;const a=o;t("set-drag-visible",!0);const i=null==a?void 0:a.vnode.el,s=i.getBoundingClientRect().left,c=n.vnode.el.querySelector(`th.${l.id}`),f=c.getBoundingClientRect(),v=f.left-s+30;(0,te.iQ)(c,"noclick"),p.value={startMouseLeft:r.clientX,startLeft:f.right-s,startColumnLeft:f.left-s,tableLeft:s};const h=null==a?void 0:a.refs.resizeProxy;h.style.left=`${p.value.startLeft}px`,document.onselectstart=function(){return!1},document.ondragstart=function(){return!1};const m=e=>{const t=e.clientX-p.value.startMouseLeft,n=p.value.startLeft+t;h.style.left=`${Math.max(v,n)}px`},g=()=>{if(d.value){const{startColumnLeft:n,startLeft:o}=p.value,i=Number.parseInt(h.style.left,10),s=i-n;l.width=l.realWidth=s,null==a||a.emit("header-dragend",l.width,o-n,l,r),requestAnimationFrame((()=>{e.store.scheduleLayout(!1,!0)})),document.body.style.cursor="",d.value=!1,u.value=null,p.value={},t("set-drag-visible",!1)}document.removeEventListener("mousemove",m),document.removeEventListener("mouseup",g),document.onselectstart=null,document.ondragstart=null,setTimeout((()=>{(0,te.vy)(c,"noclick")}),0)};document.addEventListener("mousemove",m),document.addEventListener("mouseup",g)}},v=(t,n)=>{if(n.children&&n.children.length>0)return;const o=t.target;if(!(0,z.vq)(o))return;const r=null==o?void 0:o.closest("th");if(n&&n.resizable&&!d.value&&e.border){const e=r.getBoundingClientRect(),o=document.body.style;e.width>12&&e.right-t.pageX<8?(o.cursor="col-resize",(0,te.nB)(r,"is-sortable")&&(r.style.cursor="col-resize"),u.value=n):d.value||(o.cursor="",(0,te.nB)(r,"is-sortable")&&(r.style.cursor="pointer"),u.value=null)}},h=()=>{c.oc&&(document.body.style.cursor="")},m=({order:e,sortOrders:t})=>{if(""===e)return t[0];const n=t.indexOf(e||null);return t[n>t.length-2?0:n+1]},g=(t,n,r)=>{var l;t.stopPropagation();const a=n.order===r?null:r||m(n),i=null==(l=t.target)?void 0:l.closest("th");if(i&&(0,te.nB)(i,"noclick"))return void(0,te.vy)(i,"noclick");if(!n.sortable)return;const s=e.store.states;let u,c=s.sortProp.value;const d=s.sortingColumn.value;(d!==n||d===n&&null===d.order)&&(d&&(d.order=null),s.sortingColumn.value=n,c=n.property),u=n.order=a||null,s.sortProp.value=c,s.sortOrder.value=u,null==o||o.store.commit("changeSortCondition")};return{handleHeaderClick:l,handleHeaderContextMenu:a,handleMouseDown:f,handleMouseMove:v,handleMouseOut:h,handleSortClick:g,handleFilterClick:r}}function VD(e){const t=(0,i.WQ)(KD),n=(0,ee.DU)("table"),o=e=>{const n=null==t?void 0:t.props.headerRowStyle;return"function"===typeof n?n.call(null,{rowIndex:e}):n},r=e=>{const n=[],o=null==t?void 0:t.props.headerRowClassName;return"string"===typeof o?n.push(o):"function"===typeof o&&n.push(o.call(null,{rowIndex:e})),n.join(" ")},l=(n,o,r,l)=>{var a;let i=null!=(a=null==t?void 0:t.props.headerCellStyle)?a:{};"function"===typeof i&&(i=i.call(null,{rowIndex:n,columnIndex:o,row:r,column:l}));const s=mD(o,l.fixed,e.store,r);return gD(s,"left"),gD(s,"right"),Object.assign({},i,s)},a=(o,r,l,a)=>{const i=vD(n.b(),r,a.fixed,e.store,l),s=[a.id,a.order,a.headerAlign,a.className,a.labelClassName,...i];a.children||s.push("is-leaf"),a.sortable&&s.push("is-sortable");const u=null==t?void 0:t.props.headerCellClassName;return"string"===typeof u?s.push(u):"function"===typeof u&&s.push(u.call(null,{rowIndex:o,columnIndex:r,row:l,column:a})),s.push(n.e("cell")),s.filter((e=>Boolean(e))).join(" ")};return{getHeaderRowStyle:o,getHeaderRowClass:r,getHeaderCellStyle:l,getHeaderCellClass:a}}const XD=e=>{const t=[];return e.forEach((e=>{e.children?(t.push(e),t.push.apply(t,XD(e.children))):t.push(e)})),t},UD=e=>{let t=1;const n=(e,o)=>{if(o&&(e.level=o.level+1,t{n(o,e),t+=o.colSpan})),e.colSpan=t}else e.colSpan=1};e.forEach((e=>{e.level=1,n(e,void 0)}));const o=[];for(let l=0;l{e.children?(e.rowSpan=1,e.children.forEach((e=>e.isSubColumn=!0))):e.rowSpan=t-e.level+1,o[e.level-1].push(e)})),o};function HD(e){const t=(0,i.WQ)(KD),n=(0,i.EW)((()=>UD(e.store.states.originColumns.value))),o=(0,i.EW)((()=>{const e=n.value.length>1;return e&&t&&(t.state.isGroup.value=!0),e})),r=e=>{e.stopPropagation(),null==t||t.store.commit("toggleAllSelection")};return{isGroup:o,toggleAllSelection:r,columnRows:n}}var zD=(0,i.pM)({name:"ElTableHeader",components:{ElCheckbox:yy},props:{fixed:{type:String,default:""},store:{required:!0,type:Object},border:Boolean,defaultSort:{type:Object,default:()=>({prop:"",order:""})}},setup(e,{emit:t}){const n=(0,i.nI)(),o=(0,i.WQ)(KD),r=(0,ee.DU)("table"),l=(0,s.KR)({}),{onColumnsChange:a,onScrollableChange:u}=PD(o);(0,i.sV)((async()=>{await(0,i.dY)(),await(0,i.dY)();const{prop:t,order:n}=e.defaultSort;null==o||o.store.commit("sort",{prop:t,order:n,init:!0})}));const{handleHeaderClick:c,handleHeaderContextMenu:d,handleMouseDown:p,handleMouseMove:f,handleMouseOut:v,handleSortClick:h,handleFilterClick:m}=jD(e,t),{getHeaderRowStyle:g,getHeaderRowClass:y,getHeaderCellStyle:b,getHeaderCellClass:R}=VD(e),{isGroup:w,toggleAllSelection:E,columnRows:C}=HD(e);return n.state={onColumnsChange:a,onScrollableChange:u},n.filterPanels=l,{ns:r,filterPanels:l,onColumnsChange:a,onScrollableChange:u,columnRows:C,getHeaderRowClass:y,getHeaderRowStyle:g,getHeaderCellClass:R,getHeaderCellStyle:b,handleHeaderClick:c,handleHeaderContextMenu:d,handleMouseDown:p,handleMouseMove:f,handleMouseOut:v,handleSortClick:h,handleFilterClick:m,isGroup:w,toggleAllSelection:E}},render(){const{ns:e,isGroup:t,columnRows:n,getHeaderCellStyle:o,getHeaderCellClass:r,getHeaderRowClass:l,getHeaderRowStyle:a,handleHeaderClick:s,handleHeaderContextMenu:u,handleMouseDown:c,handleMouseMove:d,handleSortClick:p,handleMouseOut:f,store:v,$parent:h}=this;let m=1;return(0,i.h)("thead",{class:{[e.is("group")]:t}},n.map(((e,t)=>(0,i.h)("tr",{class:l(t),key:t,style:a(t)},e.map(((n,l)=>(n.rowSpan>m&&(m=n.rowSpan),(0,i.h)("th",{class:r(t,l,e,n),colspan:n.colSpan,key:`${n.id}-thead`,rowspan:n.rowSpan,style:o(t,l,e,n),onClick:e=>s(e,n),onContextmenu:e=>u(e,n),onMousedown:e=>c(e,n),onMousemove:e=>d(e,n),onMouseout:f},[(0,i.h)("div",{class:["cell",n.filteredValue&&n.filteredValue.length>0?"highlight":""]},[n.renderHeader?n.renderHeader({column:n,$index:l,store:v,_self:h}):n.label,n.sortable&&(0,i.h)("span",{onClick:e=>p(e,n),class:"caret-wrapper"},[(0,i.h)("i",{onClick:e=>p(e,n,"ascending"),class:"sort-caret ascending"}),(0,i.h)("i",{onClick:e=>p(e,n,"descending"),class:"sort-caret descending"})]),n.filterable&&(0,i.h)(BD,{store:v,placement:n.filterPlacement||"bottom-start",column:n,upDataColumn:(e,t)=>{n[e]=t}})])]))))))))}});function GD(e,t,n){(void 0!==n&&!(0,mm.A)(e[t],n)||void 0===n&&!(t in e))&&(0,yd.A)(e,t,n)}var qD=GD;function YD(e){return(0,kd.A)(e)&&qp(e)}var QD=YD,ZD="[object Object]",JD=Function.prototype,eF=Object.prototype,tF=JD.toString,nF=eF.hasOwnProperty,oF=tF.call(Object);function rF(e){if(!(0,kd.A)(e)||(0,Cd.A)(e)!=ZD)return!1;var t=Nf(e);if(null===t)return!0;var n=nF.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&tF.call(n)==oF}var lF=rF;function aF(e,t){if(("constructor"!==t||"function"!==typeof e[t])&&"__proto__"!=t)return e[t]}var iF=aF;function sF(e){return Rd(e,sf(e))}var uF=sF;function cF(e,t,n,o,r,l,a){var i=iF(e,n),s=iF(t,n),u=a.get(s);if(u)qD(e,n,u);else{var c=l?l(i,s,n+"",e,t,a):void 0,d=void 0===c;if(d){var p=(0,Md.A)(s),f=!p&&jd(s),v=!p&&!f&&Ap(s);c=s,p||f||v?(0,Md.A)(i)?c=i:QD(i)?c=bf(i):f?(d=!1,c=gf(s,!0)):v?(d=!1,c=Nv(s,!0)):c=[]:lF(s)||Ld(s)?(c=i,Ld(i)?c=uF(i):(0,fn.A)(i)&&!(0,zp.A)(i)||(c=ah(s))):d=!1}d&&(a.set(s,c),r(c,s,o,l,a),a["delete"](s)),qD(e,n,c)}}var dF=cF;function pF(e,t,n,o,r){e!==t&&DW(t,(function(l,a){if(r||(r=new vd),(0,fn.A)(l))dF(e,t,a,n,pF,o,r);else{var i=o?o(iF(e,a),l,a+"",e,t,r):void 0;void 0===i&&(i=l),qD(e,a,i)}}),sf)}var fF=pF;function vF(e,t){return sy(Gg(e,t,Jg),e+"")}var hF=vF;function mF(e,t,n){if(!(0,fn.A)(n))return!1;var o=typeof t;return!!("number"==o?qp(n)&&(0,Vd.A)(t,n.length):"string"==o&&t in n)&&(0,mm.A)(n[t],e)}var gF=mF;function yF(e){return hF((function(t,n){var o=-1,r=n.length,l=r>1?n[r-1]:void 0,a=r>2?n[2]:void 0;l=e.length>3&&"function"==typeof l?(r--,l):void 0,a&&gF(n[0],n[1],a)&&(l=r<3?void 0:l,r=1),t=Object(t);while(++o{var l;const a=t,i=qW(n);let s;const u=null==(l=null==a?void 0:a.vnode.el)?void 0:l.dataset.prefix;i&&(s=JW({columns:e.store.states.columns.value},i,u),s&&(null==a||a.emit(`cell-${r}`,o,s,i,n))),null==a||a.emit(`row-${r}`,o,s,n)},l=(e,t)=>{r(e,t,"dblclick")},a=(t,n)=>{e.store.commit("setCurrentRow",n),r(t,n,"click")},u=(e,t)=>{r(e,t,"contextmenu")},c=Wn((t=>{e.store.commit("setHoverRow",t)}),30),d=Wn((()=>{e.store.commit("setHoverRow",null)}),30),p=e=>{const t=window.getComputedStyle(e,null),n=Number.parseInt(t.paddingLeft,10)||0,o=Number.parseInt(t.paddingRight,10)||0,r=Number.parseInt(t.paddingTop,10)||0,l=Number.parseInt(t.paddingBottom,10)||0;return{left:n,right:o,top:r,bottom:l}},f=(e,t,n)=>{let o=t.target.parentNode;while(e>1){if(o=null==o?void 0:o.nextSibling,!o||"TR"!==o.nodeName)break;n(o,"hover-row hover-fixed-row"),e--}},v=(n,o,r)=>{var l;const a=t,i=qW(n),s=null==(l=null==a?void 0:a.vnode.el)?void 0:l.dataset.prefix;if(i){const t=JW({columns:e.store.states.columns.value},i,s);i.rowSpan>1&&f(i.rowSpan,n,te.iQ);const r=a.hoverState={cell:i,column:t,row:o};null==a||a.emit("cell-mouse-enter",r.row,r.column,r.cell,n)}if(!r)return;const u=n.target.querySelector(".cell");if(!(0,te.nB)(u,`${s}-tooltip`)||!u.childNodes.length)return;const c=document.createRange();c.setStart(u,0),c.setEnd(u,u.childNodes.length);let d=c.getBoundingClientRect().width,v=c.getBoundingClientRect().height;const h=d-Math.floor(d);h<.001&&(d=Math.floor(d));const m=v-Math.floor(v);m<.001&&(v=Math.floor(v));const{top:g,left:y,right:b,bottom:R}=p(u),w=y+b,E=g+R;(d+w>u.offsetWidth||v+E>u.offsetHeight||u.scrollWidth>u.offsetWidth)&&cD(r,i.innerText||i.textContent,i,a)},h=e=>{const n=qW(e);if(!n)return;n.rowSpan>1&&f(n.rowSpan,e,te.vy);const o=null==t?void 0:t.hoverState;null==t||t.emit("cell-mouse-leave",null==o?void 0:o.row,null==o?void 0:o.column,null==o?void 0:o.cell,e)};return{handleDoubleClick:l,handleClick:a,handleContextMenu:u,handleMouseEnter:c,handleMouseLeave:d,handleCellMouseEnter:v,handleCellMouseLeave:h,tooltipContent:n,tooltipTrigger:o}}function CF(e){const t=(0,i.WQ)(KD),n=(0,ee.DU)("table"),o=(e,n)=>{const o=null==t?void 0:t.props.rowStyle;return"function"===typeof o?o.call(null,{row:e,rowIndex:n}):o||null},r=(o,r)=>{const l=[n.e("row")];(null==t?void 0:t.props.highlightCurrentRow)&&o===e.store.states.currentRow.value&&l.push("current-row"),e.stripe&&r%2===1&&l.push(n.em("row","striped"));const a=null==t?void 0:t.props.rowClassName;return"string"===typeof a?l.push(a):"function"===typeof a&&l.push(a.call(null,{row:o,rowIndex:r})),l},l=(n,o,r,l)=>{const a=null==t?void 0:t.props.cellStyle;let i=null!=a?a:{};"function"===typeof a&&(i=a.call(null,{rowIndex:n,columnIndex:o,row:r,column:l}));const s=mD(o,null==e?void 0:e.fixed,e.store);return gD(s,"left"),gD(s,"right"),Object.assign({},i,s)},a=(o,r,l,a,i)=>{const s=vD(n.b(),r,null==e?void 0:e.fixed,e.store,void 0,i),u=[a.id,a.align,a.className,...s],c=null==t?void 0:t.props.cellClassName;return"string"===typeof c?u.push(c):"function"===typeof c&&u.push(c.call(null,{rowIndex:o,columnIndex:r,row:l,column:a})),u.push(n.e("cell")),u.filter((e=>Boolean(e))).join(" ")},s=(e,n,o,r)=>{let l=1,a=1;const i=null==t?void 0:t.props.spanMethod;if("function"===typeof i){const t=i({row:e,column:n,rowIndex:o,columnIndex:r});Array.isArray(t)?(l=t[0],a=t[1]):"object"===typeof t&&(l=t.rowspan,a=t.colspan)}return{rowspan:l,colspan:a}},u=(e,t,n)=>{if(t<1)return e[n].realWidth;const o=e.map((({realWidth:e,width:t})=>e||t)).slice(n,n+t);return Number(o.reduce(((e,t)=>Number(e)+Number(t)),-1))};return{getRowStyle:o,getRowClass:r,getCellStyle:l,getCellClass:a,getSpan:s,getColspanRealWidth:u}}function kF(e){const t=(0,i.WQ)(KD),n=(0,ee.DU)("table"),{handleDoubleClick:o,handleClick:r,handleContextMenu:l,handleMouseEnter:a,handleMouseLeave:s,handleCellMouseEnter:u,handleCellMouseLeave:c,tooltipContent:d,tooltipTrigger:p}=EF(e),{getRowStyle:f,getRowClass:v,getCellStyle:h,getCellClass:m,getSpan:g,getColspanRealWidth:y}=CF(e),b=(0,i.EW)((()=>e.store.states.columns.value.findIndex((({type:e})=>"default"===e)))),R=(e,n)=>{const o=t.props.rowKey;return o?eD(e,o):n},w=(d,p,w,C=!1)=>{const{tooltipEffect:k,tooltipOptions:x,store:_}=e,{indent:S,columns:T}=_.states,O=v(d,p);let I=!0;w&&(O.push(n.em("row",`level-${w.level}`)),I=w.display);const A=I?null:{display:"none"};return(0,i.h)("tr",{style:[A,f(d,p)],class:O,key:R(d,p),onDblclick:e=>o(e,d),onClick:e=>r(e,d),onContextmenu:e=>l(e,d),onMouseenter:()=>a(p),onMouseleave:s},T.value.map(((n,o)=>{const{rowspan:r,colspan:l}=g(d,n,p,o);if(!r||!l)return null;const a=Object.assign({},n);a.realWidth=y(T.value,l,o);const s={store:e.store,_self:e.context||t,column:a,row:d,$index:p,cellIndex:o,expanded:C};o===b.value&&w&&(s.treeNode={indent:w.level*S.value,level:w.level},"boolean"===typeof w.expanded&&(s.treeNode.expanded=w.expanded,"loading"in w&&(s.treeNode.loading=w.loading),"noLazyChildren"in w&&(s.treeNode.noLazyChildren=w.noLazyChildren)));const f=`${p},${o}`,v=a.columnKey||a.rawColumnKey||"",R=E(o,n,s),_=n.showOverflowTooltip&&wF({effect:k},x,n.showOverflowTooltip);return(0,i.h)("td",{style:h(p,o,d,n),class:m(p,o,d,n,l-1),key:`${v}${f}`,rowspan:r,colspan:l,onMouseenter:e=>u(e,d,_),onMouseleave:c},[R])})))},E=(e,t,n)=>t.renderCell(n),C=(o,r)=>{const l=e.store,{isRowExpanded:a,assertRowKey:s}=l,{treeData:u,lazyTreeNodeMap:c,childrenColumnName:d,rowKey:p}=l.states,f=l.states.columns.value,v=f.some((({type:e})=>"expand"===e));if(v){const e=a(o),s=w(o,r,void 0,e),u=t.renderExpanded;return e?u?[[s,(0,i.h)("tr",{key:`expanded-row__${s.key}`},[(0,i.h)("td",{colspan:f.length,class:`${n.e("cell")} ${n.e("expanded-cell")}`},[u({row:o,$index:r,store:l,expanded:e})])])]]:(console.error("[Element Error]renderExpanded is required."),s):[[s]]}if(Object.keys(u.value).length){s();const e=eD(o,p.value);let t=u.value[e],n=null;t&&(n={expanded:t.expanded,level:t.level,display:!0},"boolean"===typeof t.lazy&&("boolean"===typeof t.loaded&&t.loaded&&(n.noLazyChildren=!(t.children&&t.children.length)),n.loading=t.loading));const l=[w(o,r,n)];if(t){let n=0;const a=(e,o)=>{e&&e.length&&o&&e.forEach((e=>{const i={display:o.display&&o.expanded,level:o.level+1,expanded:!1,noLazyChildren:!1,loading:!1},s=eD(e,p.value);if(void 0===s||null===s)throw new Error("For nested data item, row-key is required.");if(t={...u.value[s]},t&&(i.expanded=t.expanded,t.level=t.level||i.level,t.display=!(!t.expanded||!i.display),"boolean"===typeof t.lazy&&("boolean"===typeof t.loaded&&t.loaded&&(i.noLazyChildren=!(t.children&&t.children.length)),i.loading=t.loading)),n++,l.push(w(e,r+n,i)),t){const n=c.value[s]||e[d.value];a(n,t)}}))};t.display=!0;const i=c.value[e]||o[d.value];a(i,t)}return l}return w(o,r,void 0)};return{wrappedRowRender:C,tooltipContent:d,tooltipTrigger:p}}const xF={store:{required:!0,type:Object},stripe:Boolean,tooltipEffect:String,tooltipOptions:{type:Object},context:{default:()=>({}),type:Object},rowClassName:[String,Function],rowStyle:[Object,Function],fixed:{type:String,default:""},highlight:Boolean};var _F=(0,i.pM)({name:"ElTableBody",props:xF,setup(e){const t=(0,i.nI)(),n=(0,i.WQ)(KD),o=(0,ee.DU)("table"),{wrappedRowRender:r,tooltipContent:l,tooltipTrigger:a}=kF(e),{onColumnsChange:s,onScrollableChange:u}=PD(n),d=[];return(0,i.wB)(e.store.states.hoverRow,((n,r)=>{var l;const a=null==t?void 0:t.vnode.el,i=Array.from((null==a?void 0:a.children)||[]).filter((e=>null==e?void 0:e.classList.contains(`${o.e("row")}`)));let s=n;const u=null==(l=i[s])?void 0:l.childNodes;if(null==u?void 0:u.length){const e=Array.from(u).reduce(((e,t,n)=>{var o,r;const l=(null==(o=u[n-1])?void 0:o.colSpan)>1,a=(null==(r=u[n+1])?void 0:r.colSpan)>1;return"TD"===t.nodeName||l||a||e.push(n),e}),[]);e.forEach((e=>{var t;while(s>0){const n=null==(t=i[s-1])?void 0:t.childNodes;if(n[e]&&"TD"===n[e].nodeName){(0,te.iQ)(n[e],"hover-cell"),d.push(n[e]);break}s--}}))}else d.forEach((e=>(0,te.vy)(e,"hover-cell"))),d.length=0;e.store.states.isComplex.value&&c.oc&&iM((()=>{const e=i[r],t=i[n];e&&!e.classList.contains("hover-fixed-row")&&(0,te.vy)(e,"hover-row"),t&&(0,te.iQ)(t,"hover-row")}))})),(0,i.hi)((()=>{var e;null==(e=uD)||e()})),{ns:o,onColumnsChange:s,onScrollableChange:u,wrappedRowRender:r,tooltipContent:l,tooltipTrigger:a}},render(){const{wrappedRowRender:e,store:t}=this,n=t.states.data.value||[];return(0,i.h)("tbody",{tabIndex:-1},[n.reduce(((t,n)=>t.concat(e(n,t.length))),[])])}});function SF(){const e=(0,i.WQ)(KD),t=null==e?void 0:e.store,n=(0,i.EW)((()=>t.states.fixedLeafColumnsLength.value)),o=(0,i.EW)((()=>t.states.rightFixedColumns.value.length)),r=(0,i.EW)((()=>t.states.columns.value.length)),l=(0,i.EW)((()=>t.states.fixedColumns.value.length)),a=(0,i.EW)((()=>t.states.rightFixedColumns.value.length));return{leftFixedLeafCount:n,rightFixedLeafCount:o,columnsCount:r,leftFixedCount:l,rightFixedCount:a,columns:t.states.columns}}function TF(e){const{columns:t}=SF(),n=(0,ee.DU)("table"),o=(t,o)=>{const r=t[o],l=[n.e("cell"),r.id,r.align,r.labelClassName,...vD(n.b(),o,r.fixed,e.store)];return r.className&&l.push(r.className),r.children||l.push(n.is("leaf")),l},r=(t,n)=>{const o=mD(n,t.fixed,e.store);return gD(o,"left"),gD(o,"right"),o};return{getCellClasses:o,getCellStyles:r,columns:t}}var OF=(0,i.pM)({name:"ElTableFooter",props:{fixed:{type:String,default:""},store:{required:!0,type:Object},summaryMethod:Function,sumText:String,border:Boolean,defaultSort:{type:Object,default:()=>({prop:"",order:""})}},setup(e){const{getCellClasses:t,getCellStyles:n,columns:o}=TF(e),r=(0,ee.DU)("table");return{ns:r,getCellClasses:t,getCellStyles:n,columns:o}},render(){const{columns:e,getCellStyles:t,getCellClasses:n,summaryMethod:o,sumText:r}=this,l=this.store.states.data.value;let a=[];return o?a=o({columns:e,data:l}):e.forEach(((e,t)=>{if(0===t)return void(a[t]=r);const n=l.map((t=>Number(t[e.property]))),o=[];let i=!0;n.forEach((e=>{if(!Number.isNaN(+e)){i=!1;const t=`${e}`.split(".")[1];o.push(t?t.length:0)}}));const s=Math.max.apply(null,o);a[t]=i?"":n.reduce(((e,t)=>{const n=Number(t);return Number.isNaN(+n)?e:Number.parseFloat((e+t).toFixed(Math.min(s,20)))}),0)})),(0,i.h)((0,i.h)("tfoot",[(0,i.h)("tr",{},[...e.map(((o,r)=>(0,i.h)("td",{key:r,colspan:o.colSpan,rowspan:o.rowSpan,class:n(e,r),style:t(o,r)},[(0,i.h)("div",{class:["cell",o.labelClassName]},[a[r]])])))])]))}});function IF(e){const t=t=>{e.commit("setCurrentRow",t)},n=()=>e.getSelectionRows(),o=(t,n)=>{e.toggleRowSelection(t,n,!1),e.updateAllSelected()},r=()=>{e.clearSelection()},l=t=>{e.clearFilter(t)},a=()=>{e.commit("toggleAllSelection")},i=(t,n)=>{e.toggleRowExpansionAdapter(t,n)},s=()=>{e.clearSort()},u=(t,n)=>{e.commit("sort",{prop:t,order:n})};return{setCurrentRow:t,getSelectionRows:n,toggleRowSelection:o,clearSelection:r,clearFilter:l,toggleAllSelection:a,toggleRowExpansion:i,clearSort:s,sort:u}}function AF(e,t,n,o){const r=(0,s.KR)(!1),l=(0,s.KR)(null),a=(0,s.KR)(!1),u=e=>{a.value=e},c=(0,s.KR)({width:null,height:null,headerHeight:null}),d=(0,s.KR)(!1),p={display:"inline-block",verticalAlign:"middle"},f=(0,s.KR)(),v=(0,s.KR)(0),m=(0,s.KR)(0),g=(0,s.KR)(0),y=(0,s.KR)(0),b=(0,s.KR)(0);(0,i.nT)((()=>{t.setHeight(e.height)})),(0,i.nT)((()=>{t.setMaxHeight(e.maxHeight)})),(0,i.wB)((()=>[e.currentRowKey,n.states.rowKey]),(([e,t])=>{(0,s.R1)(t)&&(0,s.R1)(e)&&n.setCurrentRowKey(`${e}`)}),{immediate:!0}),(0,i.wB)((()=>e.data),(e=>{o.store.commit("setData",e)}),{immediate:!0,deep:!0}),(0,i.nT)((()=>{e.expandRowKeys&&n.setExpandRowKeysAdapter(e.expandRowKeys)}));const R=()=>{o.store.commit("setHoverRow",null),o.hoverState&&(o.hoverState=null)},w=(e,t)=>{const{pixelX:n,pixelY:r}=t;Math.abs(n)>=Math.abs(r)&&(o.refs.bodyWrapper.scrollLeft+=t.pixelX/5)},E=(0,i.EW)((()=>e.height||e.maxHeight||n.states.fixedColumns.value.length>0||n.states.rightFixedColumns.value.length>0)),C=(0,i.EW)((()=>({width:t.bodyWidth.value?`${t.bodyWidth.value}px`:""}))),k=()=>{E.value&&t.updateElsHeight(),t.updateColumnsWidth(),requestAnimationFrame(O)};(0,i.sV)((async()=>{await(0,i.dY)(),n.updateColumns(),I(),requestAnimationFrame(k);const t=o.vnode.el,r=o.refs.headerWrapper;e.flexible&&t&&t.parentElement&&(t.parentElement.style.minWidth="0"),c.value={width:f.value=t.offsetWidth,height:t.offsetHeight,headerHeight:e.showHeader&&r?r.offsetHeight:null},n.states.columns.value.forEach((e=>{e.filteredValue&&e.filteredValue.length&&o.store.commit("filterChange",{column:e,values:e.filteredValue,silent:!0})})),o.$ready=!0}));const x=(e,n)=>{if(!e)return;const o=Array.from(e.classList).filter((e=>!e.startsWith("is-scrolling-")));o.push(t.scrollX.value?n:"is-scrolling-none"),e.className=o.join(" ")},_=e=>{const{tableWrapper:t}=o.refs;x(t,e)},S=e=>{const{tableWrapper:t}=o.refs;return!(!t||!t.classList.contains(e))},O=function(){if(!o.refs.scrollBarRef)return;if(!t.scrollX.value){const e="is-scrolling-none";return void(S(e)||_(e))}const e=o.refs.scrollBarRef.wrapRef;if(!e)return;const{scrollLeft:n,offsetWidth:r,scrollWidth:l}=e,{headerWrapper:a,footerWrapper:i}=o.refs;a&&(a.scrollLeft=n),i&&(i.scrollLeft=n);const s=l-r-1;_(n>=s?"is-scrolling-right":0===n?"is-scrolling-left":"is-scrolling-middle")},I=()=>{o.refs.scrollBarRef&&(o.refs.scrollBarRef.wrapRef&&h(o.refs.scrollBarRef.wrapRef,"scroll",O,{passive:!0}),e.fit?T(o.vnode.el,A):h(window,"resize",A),T(o.refs.bodyWrapper,(()=>{var e,t;A(),null==(t=null==(e=o.refs)?void 0:e.scrollBarRef)||t.update()})))},A=()=>{var t,n,r,l;const a=o.vnode.el;if(!o.$ready||!a)return;let i=!1;const{width:s,height:u,headerHeight:d}=c.value,p=f.value=a.offsetWidth;s!==p&&(i=!0);const h=a.offsetHeight;(e.height||E.value)&&u!==h&&(i=!0);const R="fixed"===e.tableLayout?o.refs.headerWrapper:null==(t=o.refs.tableHeaderRef)?void 0:t.$el;e.showHeader&&(null==R?void 0:R.offsetHeight)!==d&&(i=!0),v.value=(null==(n=o.refs.tableWrapper)?void 0:n.scrollHeight)||0,g.value=(null==R?void 0:R.scrollHeight)||0,y.value=(null==(r=o.refs.footerWrapper)?void 0:r.offsetHeight)||0,b.value=(null==(l=o.refs.appendWrapper)?void 0:l.offsetHeight)||0,m.value=v.value-g.value-y.value-b.value,i&&(c.value={width:p,height:h,headerHeight:e.showHeader&&(null==R?void 0:R.offsetHeight)||0},k())},L=ao(),M=(0,i.EW)((()=>{const{bodyWidth:e,scrollY:n,gutterWidth:o}=t;return e.value?e.value-(n.value?o:0)+"px":""})),N=(0,i.EW)((()=>e.maxHeight?"fixed":e.tableLayout)),W=(0,i.EW)((()=>{if(e.data&&e.data.length)return null;let t="100%";e.height&&m.value&&(t=`${m.value}px`);const n=f.value;return{width:n?`${n}px`:"",height:t}})),D=(0,i.EW)((()=>e.height?{height:Number.isNaN(Number(e.height))?e.height:`${e.height}px`}:e.maxHeight?{maxHeight:Number.isNaN(Number(e.maxHeight))?e.maxHeight:`${e.maxHeight}px`}:{})),F=(0,i.EW)((()=>e.height?{height:"100%"}:e.maxHeight?Number.isNaN(Number(e.maxHeight))?{maxHeight:`calc(${e.maxHeight} - ${g.value+y.value}px)`}:{maxHeight:e.maxHeight-g.value-y.value+"px"}:{})),$=(e,t)=>{const n=o.refs.bodyWrapper;if(Math.abs(t.spinY)>0){const o=n.scrollTop;t.pixelY<0&&0!==o&&e.preventDefault(),t.pixelY>0&&n.scrollHeight-n.clientHeight>o&&e.preventDefault(),n.scrollTop+=Math.ceil(t.pixelY/5)}else n.scrollLeft+=Math.ceil(t.pixelX/5)};return{isHidden:r,renderExpanded:l,setDragVisible:u,isGroup:d,handleMouseLeave:R,handleHeaderFooterMousewheel:w,tableSize:L,emptyBlockStyle:W,handleFixedMousewheel:$,resizeProxyVisible:a,bodyWidth:M,resizeState:c,doLayout:k,tableBodyStyles:C,tableLayout:N,scrollbarViewStyle:p,tableInnerStyle:D,scrollbarStyle:F}}function LF(e){const t=(0,s.KR)(),n=()=>{const n=e.vnode.el,o=n.querySelector(".hidden-columns"),r={childList:!0,subtree:!0},l=e.store.states.updateOrderFns;t.value=new MutationObserver((()=>{l.forEach((e=>e()))})),t.value.observe(o,r)};(0,i.sV)((()=>{n()})),(0,i.hi)((()=>{var e;null==(e=t.value)||e.disconnect()}))}var MF={data:{type:Array,default:()=>[]},size:Vn.mU,width:[String,Number],height:[String,Number],maxHeight:[String,Number],fit:{type:Boolean,default:!0},stripe:Boolean,border:Boolean,rowKey:[String,Function],showHeader:{type:Boolean,default:!0},showSummary:Boolean,sumText:String,summaryMethod:Function,rowClassName:[String,Function],rowStyle:[Object,Function],cellClassName:[String,Function],cellStyle:[Object,Function],headerRowClassName:[String,Function],headerRowStyle:[Object,Function],headerCellClassName:[String,Function],headerCellStyle:[Object,Function],highlightCurrentRow:Boolean,currentRowKey:[String,Number],emptyText:String,expandRowKeys:Array,defaultExpandAll:Boolean,defaultSort:Object,tooltipEffect:String,tooltipOptions:Object,spanMethod:Function,selectOnIndeterminate:{type:Boolean,default:!0},indent:{type:Number,default:16},treeProps:{type:Object,default:()=>({hasChildren:"hasChildren",children:"children"})},lazy:Boolean,load:Function,style:{type:Object,default:()=>({})},className:{type:String,default:""},tableLayout:{type:String,default:"fixed"},scrollbarAlwaysOn:{type:Boolean,default:!1},flexible:Boolean,showOverflowTooltip:[Boolean,Object]};function NF(e){const t="auto"===e.tableLayout;let n=e.columns||[];t&&n.every((e=>void 0===e.width))&&(n=[]);const o=n=>{const o={key:`${e.tableLayout}_${n.id}`,style:{},name:void 0};return t?o.style={width:`${n.width}px`}:o.name=n.id,o};return(0,i.h)("colgroup",{},n.map((e=>(0,i.h)("col",o(e)))))}NF.props=["columns","tableLayout"];const WF=()=>{const e=(0,s.KR)(),t=(t,n)=>{const o=e.value;o&&o.scrollTo(t,n)},n=(t,n)=>{const o=e.value;o&&(0,z.Et)(n)&&["Top","Left"].includes(t)&&o[`setScroll${t}`](n)},o=e=>n("Top",e),r=e=>n("Left",e);return{scrollBarRef:e,scrollTo:t,setScrollTop:o,setScrollLeft:r}};var DF,FF,$F,BF,PF,KF,jF,VF,XF,UF,HF,zF,GF,qF,YF,QF=!1;function ZF(){if(!QF){QF=!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(zF=/\b(iPhone|iP[ao]d)/.exec(e),GF=/\b(iP[ao]d)/.exec(e),UF=/Android/i.exec(e),qF=/FBAN\/\w+;/i.exec(e),YF=/Mobile/i.exec(e),HF=!!/Win64/.exec(e),t){DF=t[1]?parseFloat(t[1]):t[5]?parseFloat(t[5]):NaN,DF&&document&&document.documentMode&&(DF=document.documentMode);var o=/(?:Trident\/(\d+.\d+))/.exec(e);KF=o?parseFloat(o[1])+4:DF,FF=t[2]?parseFloat(t[2]):NaN,$F=t[3]?parseFloat(t[3]):NaN,BF=t[4]?parseFloat(t[4]):NaN,BF?(t=/(?:Chrome\/(\d+\.\d+))/.exec(e),PF=t&&t[1]?parseFloat(t[1]):NaN):PF=NaN}else DF=FF=$F=PF=BF=NaN;if(n){if(n[1]){var r=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(e);jF=!r||parseFloat(r[1].replace("_","."))}else jF=!1;VF=!!n[2],XF=!!n[3]}else jF=VF=XF=!1}}var JF,e$={ie:function(){return ZF()||DF},ieCompatibilityMode:function(){return ZF()||KF>DF},ie64:function(){return e$.ie()&&HF},firefox:function(){return ZF()||FF},opera:function(){return ZF()||$F},webkit:function(){return ZF()||BF},safari:function(){return e$.webkit()},chrome:function(){return ZF()||PF},windows:function(){return ZF()||VF},osx:function(){return ZF()||jF},linux:function(){return ZF()||XF},iphone:function(){return ZF()||zF},mobile:function(){return ZF()||zF||GF||UF||YF},nativeApp:function(){return ZF()||qF},android:function(){return ZF()||UF},ipad:function(){return ZF()||GF}},t$=e$,n$=!!(typeof window<"u"&&window.document&&window.document.createElement),o$={canUseDOM:n$,canUseWorkers:typeof Worker<"u",canUseEventListeners:n$&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:n$&&!!window.screen,isInWorker:!n$},r$=o$;function l$(e,t){if(!r$.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,o=n in document;if(!o){var r=document.createElement("div");r.setAttribute(n,"return;"),o="function"==typeof r[n]}return!o&&JF&&"wheel"===e&&(o=document.implementation.hasFeature("Events.wheel","3.0")),o}r$.canUseDOM&&(JF=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""));var a$=l$,i$=10,s$=40,u$=800;function c$(e){var t=0,n=0,o=0,r=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),o=t*i$,r=n*i$,"deltaY"in e&&(r=e.deltaY),"deltaX"in e&&(o=e.deltaX),(o||r)&&e.deltaMode&&(1==e.deltaMode?(o*=s$,r*=s$):(o*=u$,r*=u$)),o&&!t&&(t=o<1?-1:1),r&&!n&&(n=r<1?-1:1),{spinX:t,spinY:n,pixelX:o,pixelY:r}}c$.getEventType=function(){return t$.firefox()?"DOMMouseScroll":a$("wheel")?"wheel":"mousewheel"};var d$=c$; -/** - * Checks if an event is supported in the current execution environment. - * - * NOTE: This will not work correctly for non-generic events such as `change`, - * `reset`, `load`, `error`, and `select`. - * - * Borrows from Modernizr. - * - * @param {string} eventNameSuffix Event name, e.g. "click". - * @param {?boolean} capture Check if the capture phase is supported. - * @return {boolean} True if the event is supported. - * @internal - * @license Modernizr 3.0.0pre (Custom Build) | MIT - */const p$=function(e,t){if(e&&e.addEventListener){const n=function(e){const n=d$(e);t&&Reflect.apply(t,this,[e,n])};e.addEventListener("wheel",n,{passive:!0})}},f$={beforeMount(e,t){p$(e,t.value)}};let v$=1;const h$=(0,i.pM)({name:"ElTable",directives:{Mousewheel:f$},components:{TableHeader:zD,TableBody:_F,TableFooter:OF,ElScrollbar:Do,hColgroup:NF},props:MF,emits:["select","select-all","selection-change","cell-mouse-enter","cell-mouse-leave","cell-contextmenu","cell-click","cell-dblclick","row-click","row-contextmenu","row-dblclick","header-click","header-contextmenu","sort-change","filter-change","current-change","header-dragend","expand-change"],setup(e){const{t:t}=(0,zu.Ym)(),n=(0,ee.DU)("table"),o=(0,i.nI)();(0,i.Gt)(KD,o);const r=TD(o,e);o.store=r;const l=new LD({store:o.store,table:o,fit:e.fit,showHeader:e.showHeader});o.layout=l;const a=(0,i.EW)((()=>0===(r.states.data.value||[]).length)),{setCurrentRow:s,getSelectionRows:u,toggleRowSelection:c,clearSelection:d,clearFilter:p,toggleAllSelection:f,toggleRowExpansion:v,clearSort:h,sort:m}=IF(r),{isHidden:g,renderExpanded:y,setDragVisible:b,isGroup:R,handleMouseLeave:w,handleHeaderFooterMousewheel:E,tableSize:C,emptyBlockStyle:k,handleFixedMousewheel:x,resizeProxyVisible:_,bodyWidth:S,resizeState:T,doLayout:O,tableBodyStyles:I,tableLayout:A,scrollbarViewStyle:L,tableInnerStyle:M,scrollbarStyle:N}=AF(e,l,r,o),{scrollBarRef:W,scrollTo:D,setScrollLeft:F,setScrollTop:$}=WF(),B=Wn(O,50),P=`${n.namespace.value}-table_${v$++}`;o.tableId=P,o.state={isGroup:R,resizeState:T,doLayout:O,debouncedUpdateLayout:B};const K=(0,i.EW)((()=>e.sumText||t("el.table.sumText"))),j=(0,i.EW)((()=>e.emptyText||t("el.table.emptyText")));return LF(o),{ns:n,layout:l,store:r,handleHeaderFooterMousewheel:E,handleMouseLeave:w,tableId:P,tableSize:C,isHidden:g,isEmpty:a,renderExpanded:y,resizeProxyVisible:_,resizeState:T,isGroup:R,bodyWidth:S,tableBodyStyles:I,emptyBlockStyle:k,debouncedUpdateLayout:B,handleFixedMousewheel:x,setCurrentRow:s,getSelectionRows:u,toggleRowSelection:c,clearSelection:d,clearFilter:p,toggleAllSelection:f,toggleRowExpansion:v,clearSort:h,doLayout:O,sort:m,t:t,setDragVisible:b,context:o,computedSumText:K,computedEmptyText:j,tableLayout:A,scrollbarViewStyle:L,tableInnerStyle:M,scrollbarStyle:N,scrollBarRef:W,scrollTo:D,setScrollLeft:F,setScrollTop:$}}}),m$=["data-prefix"],g$={ref:"hiddenColumns",class:"hidden-columns"};function y$(e,t,n,o,r,l){const a=(0,i.g2)("hColgroup"),s=(0,i.g2)("table-header"),c=(0,i.g2)("table-body"),d=(0,i.g2)("table-footer"),p=(0,i.g2)("el-scrollbar"),f=(0,i.gN)("mousewheel");return(0,i.uX)(),(0,i.CE)("div",{ref:"tableWrapper",class:(0,u.C4)([{[e.ns.m("fit")]:e.fit,[e.ns.m("striped")]:e.stripe,[e.ns.m("border")]:e.border||e.isGroup,[e.ns.m("hidden")]:e.isHidden,[e.ns.m("group")]:e.isGroup,[e.ns.m("fluid-height")]:e.maxHeight,[e.ns.m("scrollable-x")]:e.layout.scrollX.value,[e.ns.m("scrollable-y")]:e.layout.scrollY.value,[e.ns.m("enable-row-hover")]:!e.store.states.isComplex.value,[e.ns.m("enable-row-transition")]:0!==(e.store.states.data.value||[]).length&&(e.store.states.data.value||[]).length<100,"has-footer":e.showSummary},e.ns.m(e.tableSize),e.className,e.ns.b(),e.ns.m(`layout-${e.tableLayout}`)]),style:(0,u.Tr)(e.style),"data-prefix":e.ns.namespace.value,onMouseleave:t[0]||(t[0]=(...t)=>e.handleMouseLeave&&e.handleMouseLeave(...t))},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("inner-wrapper")),style:(0,u.Tr)(e.tableInnerStyle)},[(0,i.Lk)("div",g$,[(0,i.RG)(e.$slots,"default")],512),e.showHeader&&"fixed"===e.tableLayout?(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{key:0,ref:"headerWrapper",class:(0,u.C4)(e.ns.e("header-wrapper"))},[(0,i.Lk)("table",{ref:"tableHeader",class:(0,u.C4)(e.ns.e("header")),style:(0,u.Tr)(e.tableBodyStyles),border:"0",cellpadding:"0",cellspacing:"0"},[(0,i.bF)(a,{columns:e.store.states.columns.value,"table-layout":e.tableLayout},null,8,["columns","table-layout"]),(0,i.bF)(s,{ref:"tableHeaderRef",border:e.border,"default-sort":e.defaultSort,store:e.store,onSetDragVisible:e.setDragVisible},null,8,["border","default-sort","store","onSetDragVisible"])],6)],2)),[[f,e.handleHeaderFooterMousewheel]]):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{ref:"bodyWrapper",class:(0,u.C4)(e.ns.e("body-wrapper"))},[(0,i.bF)(p,{ref:"scrollBarRef","view-style":e.scrollbarViewStyle,"wrap-style":e.scrollbarStyle,always:e.scrollbarAlwaysOn},{default:(0,i.k6)((()=>[(0,i.Lk)("table",{ref:"tableBody",class:(0,u.C4)(e.ns.e("body")),cellspacing:"0",cellpadding:"0",border:"0",style:(0,u.Tr)({width:e.bodyWidth,tableLayout:e.tableLayout})},[(0,i.bF)(a,{columns:e.store.states.columns.value,"table-layout":e.tableLayout},null,8,["columns","table-layout"]),e.showHeader&&"auto"===e.tableLayout?((0,i.uX)(),(0,i.Wv)(s,{key:0,ref:"tableHeaderRef",class:(0,u.C4)(e.ns.e("body-header")),border:e.border,"default-sort":e.defaultSort,store:e.store,onSetDragVisible:e.setDragVisible},null,8,["class","border","default-sort","store","onSetDragVisible"])):(0,i.Q3)("v-if",!0),(0,i.bF)(c,{context:e.context,highlight:e.highlightCurrentRow,"row-class-name":e.rowClassName,"tooltip-effect":e.tooltipEffect,"tooltip-options":e.tooltipOptions,"row-style":e.rowStyle,store:e.store,stripe:e.stripe},null,8,["context","highlight","row-class-name","tooltip-effect","tooltip-options","row-style","store","stripe"]),e.showSummary&&"auto"===e.tableLayout?((0,i.uX)(),(0,i.Wv)(d,{key:1,class:(0,u.C4)(e.ns.e("body-footer")),border:e.border,"default-sort":e.defaultSort,store:e.store,"sum-text":e.computedSumText,"summary-method":e.summaryMethod},null,8,["class","border","default-sort","store","sum-text","summary-method"])):(0,i.Q3)("v-if",!0)],6),e.isEmpty?((0,i.uX)(),(0,i.CE)("div",{key:0,ref:"emptyBlock",style:(0,u.Tr)(e.emptyBlockStyle),class:(0,u.C4)(e.ns.e("empty-block"))},[(0,i.Lk)("span",{class:(0,u.C4)(e.ns.e("empty-text"))},[(0,i.RG)(e.$slots,"empty",{},(()=>[(0,i.eW)((0,u.v_)(e.computedEmptyText),1)]))],2)],6)):(0,i.Q3)("v-if",!0),e.$slots.append?((0,i.uX)(),(0,i.CE)("div",{key:1,ref:"appendWrapper",class:(0,u.C4)(e.ns.e("append-wrapper"))},[(0,i.RG)(e.$slots,"append")],2)):(0,i.Q3)("v-if",!0)])),_:3},8,["view-style","wrap-style","always"])],2),e.showSummary&&"fixed"===e.tableLayout?(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{key:1,ref:"footerWrapper",class:(0,u.C4)(e.ns.e("footer-wrapper"))},[(0,i.Lk)("table",{class:(0,u.C4)(e.ns.e("footer")),cellspacing:"0",cellpadding:"0",border:"0",style:(0,u.Tr)(e.tableBodyStyles)},[(0,i.bF)(a,{columns:e.store.states.columns.value,"table-layout":e.tableLayout},null,8,["columns","table-layout"]),(0,i.bF)(d,{border:e.border,"default-sort":e.defaultSort,store:e.store,"sum-text":e.computedSumText,"summary-method":e.summaryMethod},null,8,["border","default-sort","store","sum-text","summary-method"])],6)],2)),[[ge.aG,!e.isEmpty],[f,e.handleHeaderFooterMousewheel]]):(0,i.Q3)("v-if",!0),e.border||e.isGroup?((0,i.uX)(),(0,i.CE)("div",{key:2,class:(0,u.C4)(e.ns.e("border-left-patch"))},null,2)):(0,i.Q3)("v-if",!0)],6),(0,i.bo)((0,i.Lk)("div",{ref:"resizeProxy",class:(0,u.C4)(e.ns.e("column-resize-proxy"))},null,2),[[ge.aG,e.resizeProxyVisible]])],46,m$)}var b$=J(h$,[["render",y$],["__file","table.vue"]]);const R$={selection:"table-column--selection",expand:"table__expand-column"},w$={default:{order:""},selection:{width:48,minWidth:48,realWidth:48,order:""},expand:{width:48,minWidth:48,realWidth:48,order:""},index:{width:48,minWidth:48,realWidth:48,order:""}},E$=e=>R$[e]||"",C$={selection:{renderHeader({store:e,column:t}){function n(){return e.states.data.value&&0===e.states.data.value.length}return(0,i.h)(yy,{disabled:n(),size:e.states.tableSize.value,indeterminate:e.states.selection.value.length>0&&!e.states.isAllSelected.value,"onUpdate:modelValue":e.toggleAllSelection,modelValue:e.states.isAllSelected.value,ariaLabel:t.label})},renderCell({row:e,column:t,store:n,$index:o}){return(0,i.h)(yy,{disabled:!!t.selectable&&!t.selectable.call(null,e,o),size:n.states.tableSize.value,onChange:()=>{n.commit("rowSelectedChanged",e)},onClick:e=>e.stopPropagation(),modelValue:n.isSelected(e),ariaLabel:t.label})},sortable:!1,resizable:!1},index:{renderHeader({column:e}){return e.label||"#"},renderCell({column:e,$index:t}){let n=t+1;const o=e.index;return"number"===typeof o?n=t+o:"function"===typeof o&&(n=o(t)),(0,i.h)("div",{},[n])},sortable:!1},expand:{renderHeader({column:e}){return e.label||""},renderCell({row:e,store:t,expanded:n}){const{ns:o}=t,r=[o.e("expand-icon")];n&&r.push(o.em("expand-icon","expanded"));const l=function(n){n.stopPropagation(),t.toggleRowExpansion(e)};return(0,i.h)("div",{class:r,onClick:l},{default:()=>[(0,i.h)(Ee,null,{default:()=>[(0,i.h)(Oe)]})]})},sortable:!1,resizable:!1}};function k$({row:e,column:t,$index:n}){var o;const r=t.property,l=r&&(0,Ce.GT)(e,r).value;return t&&t.formatter?t.formatter(e,t,l,n):(null==(o=null==l?void 0:l.toString)?void 0:o.call(l))||""}function x$({row:e,treeNode:t,store:n},o=!1){const{ns:r}=n;if(!t)return o?[(0,i.h)("span",{class:r.e("placeholder")})]:null;const l=[],a=function(o){o.stopPropagation(),t.loading||n.loadOrToggle(e)};if(t.indent&&l.push((0,i.h)("span",{class:r.e("indent"),style:{"padding-left":`${t.indent}px`}})),"boolean"!==typeof t.expanded||t.noLazyChildren)l.push((0,i.h)("span",{class:r.e("placeholder")}));else{const e=[r.e("expand-icon"),t.expanded?r.em("expand-icon","expanded"):""];let n=Oe;t.loading&&(n=ht),l.push((0,i.h)("div",{class:e,onClick:a},{default:()=>[(0,i.h)(Ee,{class:{[r.is("loading")]:t.loading}},{default:()=>[(0,i.h)(n)]})]}))}return l}function _$(e,t){return e.reduce(((e,t)=>(e[t]=t,e)),t)}function S$(e,t){const n=(0,i.nI)(),o=()=>{const o=["fixed"],r={realWidth:"width",realMinWidth:"minWidth"},l=_$(o,r);Object.keys(l).forEach((o=>{const l=r[o];(0,u.$3)(t,l)&&(0,i.wB)((()=>t[l]),(t=>{let r=t;"width"===l&&"realWidth"===o&&(r=oD(t)),"minWidth"===l&&"realMinWidth"===o&&(r=rD(t)),n.columnConfig.value[l]=r,n.columnConfig.value[o]=r;const a="fixed"===l;e.value.store.scheduleLayout(a)}))}))},r=()=>{const e=["label","filters","filterMultiple","filteredValue","sortable","index","formatter","className","labelClassName","filterClassName","showOverflowTooltip"],o={property:"prop",align:"realAlign",headerAlign:"realHeaderAlign"},r=_$(e,o);Object.keys(r).forEach((e=>{const r=o[e];(0,u.$3)(t,r)&&(0,i.wB)((()=>t[r]),(t=>{n.columnConfig.value[e]=t}))}))};return{registerComplexWatchers:o,registerNormalWatchers:r}}function T$(e,t,n){const o=(0,i.nI)(),r=(0,s.KR)(""),l=(0,s.KR)(!1),a=(0,s.KR)(),u=(0,s.KR)(),c=(0,ee.DU)("table");(0,i.nT)((()=>{a.value=e.align?`is-${e.align}`:null,a.value})),(0,i.nT)((()=>{u.value=e.headerAlign?`is-${e.headerAlign}`:a.value,u.value}));const d=(0,i.EW)((()=>{let e=o.vnode.vParent||o.parent;while(e&&!e.tableId&&!e.columnId)e=e.vnode.vParent||e.parent;return e})),p=(0,i.EW)((()=>{const{store:e}=o.parent;if(!e)return!1;const{treeData:t}=e.states,n=t.value;return n&&Object.keys(n).length>0})),f=(0,s.KR)(oD(e.width)),v=(0,s.KR)(rD(e.minWidth)),h=e=>(f.value&&(e.width=f.value),v.value&&(e.minWidth=v.value),!f.value&&v.value&&(e.width=void 0),e.minWidth||(e.minWidth=80),e.realWidth=Number(void 0===e.width?e.minWidth:e.width),e),m=e=>{const t=e.type,n=C$[t]||{};Object.keys(n).forEach((t=>{const o=n[t];"className"!==t&&void 0!==o&&(e[t]=o)}));const o=E$(t);if(o){const t=`${(0,s.R1)(c.namespace)}-${o}`;e.className=e.className?`${e.className} ${t}`:t}return e},g=e=>{function t(e){var t;"ElTableColumn"===(null==(t=null==e?void 0:e.type)?void 0:t.name)&&(e.vParent=o)}Array.isArray(e)?e.forEach((e=>t(e))):t(e)},y=r=>{e.renderHeader?(0,ne.U)("TableColumn","Comparing to render-header, scoped-slot header is easier to use. We recommend users to use scoped-slot header."):"selection"!==r.type&&(r.renderHeader=e=>(o.columnConfig.value["label"],(0,i.RG)(t,"header",e,(()=>[r.label]))));let l=r.renderCell;return"expand"===r.type?(r.renderCell=e=>(0,i.h)("div",{class:"cell"},[l(e)]),n.value.renderExpanded=e=>t.default?t.default(e):t.default):(l=l||k$,r.renderCell=e=>{let o=null;if(t.default){const n=t.default(e);o=n.some((e=>e.type!==i.Mw))?n:l(e)}else o=l(e);const{columns:a}=n.value.store.states,u=a.value.findIndex((e=>"default"===e.type)),d=p.value&&e.cellIndex===u,f=x$(e,d),v={class:"cell",style:{}};return r.showOverflowTooltip&&(v.class=`${v.class} ${(0,s.R1)(c.namespace)}-tooltip`,v.style={width:(e.column.realWidth||Number(e.column.width))-1+"px"}),g(o),(0,i.h)("div",v,[f,o])}),r},b=(...t)=>t.reduce(((t,n)=>(Array.isArray(n)&&n.forEach((n=>{t[n]=e[n]})),t)),{}),R=(e,t)=>Array.prototype.indexOf.call(e,t),w=()=>{n.value.store.commit("updateColumnOrder",o.columnConfig.value)};return{columnId:r,realAlign:a,isSubColumn:l,realHeaderAlign:u,columnOrTableParent:d,setColumnWidth:h,setColumnForcedProps:m,setColumnRenders:y,getPropsData:b,getColumnElIndex:R,updateColumnOrder:w}}var O$={type:{type:String,default:"default"},label:String,className:String,labelClassName:String,property:String,prop:String,width:{type:[String,Number],default:""},minWidth:{type:[String,Number],default:""},renderHeader:Function,sortable:{type:[Boolean,String],default:!1},sortMethod:Function,sortBy:[String,Function,Array],resizable:{type:Boolean,default:!0},columnKey:String,align:String,headerAlign:String,showOverflowTooltip:{type:[Boolean,Object],default:void 0},fixed:[Boolean,String],formatter:Function,selectable:Function,reserveSelection:Boolean,filterMethod:Function,filteredValue:Array,filters:Array,filterPlacement:String,filterMultiple:{type:Boolean,default:!0},filterClassName:String,index:[Number,Function],sortOrders:{type:Array,default:()=>["ascending","descending",null],validator:e=>e.every((e=>["ascending","descending",null].includes(e)))}};let I$=1;var A$=(0,i.pM)({name:"ElTableColumn",components:{ElCheckbox:yy},props:O$,setup(e,{slots:t}){const n=(0,i.nI)(),o=(0,s.KR)({}),r=(0,i.EW)((()=>{let e=n.parent;while(e&&!e.tableId)e=e.parent;return e})),{registerNormalWatchers:l,registerComplexWatchers:a}=S$(r,e),{columnId:u,isSubColumn:c,realHeaderAlign:d,columnOrTableParent:p,setColumnWidth:f,setColumnForcedProps:v,setColumnRenders:h,getPropsData:m,getColumnElIndex:g,realAlign:y,updateColumnOrder:b}=T$(e,t,r),R=p.value;u.value=`${R.tableId||R.columnId}_column_${I$++}`,(0,i.KC)((()=>{c.value=r.value!==R;const t=e.type||"default",i=""===e.sortable||e.sortable,s=(0,z.b0)(e.showOverflowTooltip)?R.props.showOverflowTooltip:e.showOverflowTooltip,p={...w$[t],id:u.value,type:t,property:e.prop||e.property,align:y,headerAlign:d,showOverflowTooltip:s,filterable:e.filters||e.filterMethod,filteredValue:[],filterPlacement:"",filterClassName:"",isColumnGroup:!1,isSubColumn:!1,filterOpened:!1,sortable:i,index:e.index,rawColumnKey:n.vnode.key},g=["columnKey","label","className","labelClassName","type","renderHeader","formatter","fixed","resizable"],b=["sortMethod","sortBy","sortOrders"],w=["selectable","reserveSelection"],E=["filterMethod","filters","filterMultiple","filterOpened","filteredValue","filterPlacement","filterClassName"];let C=m(g,b,w,E);C=nD(p,C);const k=aD(h,f,v);C=k(C),o.value=C,l(),a()})),(0,i.sV)((()=>{var e;const t=p.value,l=c.value?t.vnode.el.children:null==(e=t.refs.hiddenColumns)?void 0:e.children,a=()=>g(l||[],n.vnode.el);o.value.getColumnIndex=a;const i=a();i>-1&&r.value.store.commit("insertColumn",o.value,c.value?t.columnConfig.value:null,b)})),(0,i.xo)((()=>{r.value.store.commit("removeColumn",o.value,c.value?R.columnConfig.value:null,b)})),n.columnId=u.value,n.columnConfig=o},render(){var e,t,n;try{const o=null==(t=(e=this.$slots).default)?void 0:t.call(e,{row:{},column:{},$index:-1}),r=[];if(Array.isArray(o))for(const e of o)"ElTableColumn"===(null==(n=e.type)?void 0:n.name)||2&e.shapeFlag?r.push(e):e.type===i.FK&&Array.isArray(e.children)&&e.children.forEach((e=>{1024===(null==e?void 0:e.patchFlag)||(0,u.Kg)(null==e?void 0:e.children)||r.push(e)}));const l=(0,i.h)("div",r);return l}catch(o){return(0,i.h)("div",[])}}});const L$=pe(b$,{TableColumn:A$}),M$=he(A$);var N$=(e=>(e["ASC"]="asc",e["DESC"]="desc",e))(N$||{}),W$=(e=>(e["CENTER"]="center",e["RIGHT"]="right",e))(W$||{}),D$=(e=>(e["LEFT"]="left",e["RIGHT"]="right",e))(D$||{});const F$={["asc"]:"desc",["desc"]:"asc"},$$=Symbol("placeholder"),B$=(e,t,n)=>{var o;const r={flexGrow:0,flexShrink:0,...n?{}:{flexGrow:e.flexGrow||0,flexShrink:e.flexShrink||1}};n||(r.flexShrink=1);const l={...null!=(o=e.style)?o:{},...r,flexBasis:"auto",width:e.width};return t||(e.maxWidth&&(l.maxWidth=e.maxWidth),e.minWidth&&(l.minWidth=e.minWidth)),l};function P$(e,t,n){const o=(0,i.EW)((()=>(0,s.R1)(t).filter((e=>!e.hidden)))),r=(0,i.EW)((()=>(0,s.R1)(o).filter((e=>"left"===e.fixed||!0===e.fixed)))),l=(0,i.EW)((()=>(0,s.R1)(o).filter((e=>"right"===e.fixed)))),a=(0,i.EW)((()=>(0,s.R1)(o).filter((e=>!e.fixed)))),c=(0,i.EW)((()=>{const e=[];return(0,s.R1)(r).forEach((t=>{e.push({...t,placeholderSign:$$})})),(0,s.R1)(a).forEach((t=>{e.push(t)})),(0,s.R1)(l).forEach((t=>{e.push({...t,placeholderSign:$$})})),e})),d=(0,i.EW)((()=>(0,s.R1)(r).length||(0,s.R1)(l).length)),p=(0,i.EW)((()=>{const o=(0,s.R1)(t);return o.reduce(((t,o)=>(t[o.key]=B$(o,(0,s.R1)(n),e.fixed),t)),{})})),f=(0,i.EW)((()=>(0,s.R1)(o).reduce(((e,t)=>e+t.width),0))),v=e=>(0,s.R1)(t).find((t=>t.key===e)),h=e=>(0,s.R1)(p)[e],m=(e,t)=>{e.width=t};function g(t){var n;const{key:o}=t.currentTarget.dataset;if(!o)return;const{sortState:r,sortBy:l}=e;let a=N$.ASC;a=(0,u.Gv)(r)?F$[r[o]]:F$[l.order],null==(n=e.onColumnSort)||n.call(e,{column:v(o),key:o,order:a})}return{columns:t,columnsStyles:p,columnsTotalWidth:f,fixedColumnsOnLeft:r,fixedColumnsOnRight:l,hasFixedColumns:d,mainColumns:c,normalColumns:a,visibleColumns:o,getColumn:v,getColumnStyle:h,updateColumnWidth:m,onColumnSorted:g}}const K$=(e,{mainTableRef:t,leftTableRef:n,rightTableRef:o,onMaybeEndReached:r})=>{const l=(0,s.KR)({scrollLeft:0,scrollTop:0});function a(e){var r,l,a;const{scrollTop:i}=e;null==(r=t.value)||r.scrollTo(e),null==(l=n.value)||l.scrollToTop(i),null==(a=o.value)||a.scrollToTop(i)}function u(e){l.value=e,a(e)}function c(e){l.value.scrollTop=e,a((0,s.R1)(l))}function d(e){var n,o;l.value.scrollLeft=e,null==(o=null==(n=t.value)?void 0:n.scrollTo)||o.call(n,(0,s.R1)(l))}function p(t){var n;u(t),null==(n=e.onScroll)||n.call(e,t)}function f({scrollTop:e}){const{scrollTop:t}=(0,s.R1)(l);e!==t&&c(e)}function v(e,n="auto"){var o;null==(o=t.value)||o.scrollToRow(e,n)}return(0,i.wB)((()=>(0,s.R1)(l).scrollTop),((e,t)=>{e>t&&r()})),{scrollPos:l,scrollTo:u,scrollToLeft:d,scrollToTop:c,scrollToRow:v,onScroll:p,onVerticalScroll:f}},j$=(e,{mainTableRef:t,leftTableRef:n,rightTableRef:o})=>{const r=(0,i.nI)(),{emit:l}=r,a=(0,s.IJ)(!1),u=(0,s.IJ)(null),c=(0,s.KR)(e.defaultExpandedRowKeys||[]),d=(0,s.KR)(-1),p=(0,s.IJ)(null),f=(0,s.KR)({}),v=(0,s.KR)({}),h=(0,s.IJ)({}),m=(0,s.IJ)({}),g=(0,s.IJ)({}),y=(0,i.EW)((()=>(0,z.Et)(e.estimatedRowHeight)));function b(t){var n;null==(n=e.onRowsRendered)||n.call(e,t),t.rowCacheEnd>(0,s.R1)(d)&&(d.value=t.rowCacheEnd)}function R({hovered:e,rowKey:t}){u.value=e?t:null}function w({expanded:t,rowData:n,rowIndex:o,rowKey:r}){var a,i;const u=[...(0,s.R1)(c)],d=u.indexOf(r);t?-1===d&&u.push(r):d>-1&&u.splice(d,1),c.value=u,l("update:expandedRowKeys",u),null==(a=e.onRowExpand)||a.call(e,{expanded:t,rowData:n,rowIndex:o,rowKey:r}),null==(i=e.onExpandedRowsChange)||i.call(e,u)}const E=Wn((()=>{var e,l,i,u;a.value=!0,f.value={...(0,s.R1)(f),...(0,s.R1)(v)},C((0,s.R1)(p),!1),v.value={},p.value=null,null==(e=t.value)||e.forceUpdate(),null==(l=n.value)||l.forceUpdate(),null==(i=o.value)||i.forceUpdate(),null==(u=r.proxy)||u.$forceUpdate(),a.value=!1}),0);function C(e,r=!1){(0,s.R1)(y)&&[t,n,o].forEach((t=>{const n=(0,s.R1)(t);n&&n.resetAfterRowIndex(e,r)}))}function k(e,t,n){const o=(0,s.R1)(p);(null===o||o>n)&&(p.value=n),v.value[e]=t}function x({rowKey:e,height:t,rowIndex:n},o){o?o===D$.RIGHT?g.value[e]=t:h.value[e]=t:m.value[e]=t;const r=Math.max(...[h,g,m].map((t=>t.value[e]||0)));(0,s.R1)(f)[e]!==r&&(k(e,r,n),E())}return{hoveringRowKey:u,expandedRowKeys:c,lastRenderedRowIndex:d,isDynamic:y,isResetting:a,rowHeights:f,resetAfterIndex:C,onRowExpanded:w,onRowHovered:R,onRowsRendered:b,onRowHeightChange:x}},V$=(e,{expandedRowKeys:t,lastRenderedRowIndex:n,resetAfterIndex:o})=>{const r=(0,s.KR)({}),l=(0,i.EW)((()=>{const n={},{data:o,rowKey:l}=e,a=(0,s.R1)(t);if(!a||!a.length)return o;const i=[],u=new Set;a.forEach((e=>u.add(e)));let c=o.slice();c.forEach((e=>n[e[l]]=0));while(c.length>0){const e=c.shift();i.push(e),u.has(e[l])&&Array.isArray(e.children)&&e.children.length>0&&(c=[...e.children,...c],e.children.forEach((t=>n[t[l]]=n[e[l]]+1)))}return r.value=n,i})),a=(0,i.EW)((()=>{const{data:t,expandColumnKey:n}=e;return n?(0,s.R1)(l):t}));return(0,i.wB)(a,((e,t)=>{e!==t&&(n.value=-1,o(0,!0))})),{data:a,depthMap:r}},X$=(e,t)=>e+t,U$=e=>(0,u.cy)(e)?e.reduce(X$,0):e,H$=(e,t,n={})=>(0,u.Tn)(e)?e(t):null!=e?e:n,z$=e=>(["width","maxWidth","minWidth","height"].forEach((t=>{e[t]=(0,te._V)(e[t])})),e),G$=e=>(0,i.vv)(e)?t=>(0,i.h)(e,t):e,q$=(e,{columnsTotalWidth:t,data:n,fixedColumnsOnLeft:o,fixedColumnsOnRight:r})=>{const l=(0,i.EW)((()=>{const{fixed:n,width:o,vScrollbarSize:r}=e,l=o-r;return n?Math.max(Math.round((0,s.R1)(t)),l):l})),a=(0,i.EW)((()=>(0,s.R1)(l)+(e.fixed?e.vScrollbarSize:0))),u=(0,i.EW)((()=>{const{height:t=0,maxHeight:n=0,footerHeight:o,hScrollbarSize:r}=e;if(n>0){const e=(0,s.R1)(m),t=(0,s.R1)(c),l=(0,s.R1)(h),a=l+e+t+r;return Math.min(a,n-o)}return t-o})),c=(0,i.EW)((()=>{const{rowHeight:t,estimatedRowHeight:o}=e,r=(0,s.R1)(n);return(0,z.Et)(o)?r.length*o:r.length*t})),d=(0,i.EW)((()=>{const{maxHeight:t}=e,n=(0,s.R1)(u);if((0,z.Et)(t)&&t>0)return n;const o=(0,s.R1)(c)+(0,s.R1)(h)+(0,s.R1)(m);return Math.min(n,o)})),p=e=>e.width,f=(0,i.EW)((()=>U$((0,s.R1)(o).map(p)))),v=(0,i.EW)((()=>U$((0,s.R1)(r).map(p)))),h=(0,i.EW)((()=>U$(e.headerHeight))),m=(0,i.EW)((()=>{var t;return((null==(t=e.fixedData)?void 0:t.length)||0)*e.rowHeight})),g=(0,i.EW)((()=>(0,s.R1)(u)-(0,s.R1)(h)-(0,s.R1)(m))),y=(0,i.EW)((()=>{const{style:t={},height:n,width:o}=e;return z$({...t,height:n,width:o})})),b=(0,i.EW)((()=>z$({height:e.footerHeight}))),R=(0,i.EW)((()=>({top:(0,te._V)((0,s.R1)(h)),bottom:(0,te._V)(e.footerHeight),width:(0,te._V)(e.width)})));return{bodyWidth:l,fixedTableHeight:d,mainTableHeight:u,leftTableWidth:f,rightTableWidth:v,headerWidth:a,rowsHeight:c,windowHeight:g,footerHeight:b,emptyStyle:R,rootStyle:y,headerHeight:h}};function Y$(e){const t=(0,s.KR)(),n=(0,s.KR)(),o=(0,s.KR)(),{columns:r,columnsStyles:l,columnsTotalWidth:a,fixedColumnsOnLeft:c,fixedColumnsOnRight:d,hasFixedColumns:p,mainColumns:f,onColumnSorted:v}=P$(e,(0,s.lW)(e,"columns"),(0,s.lW)(e,"fixed")),{scrollTo:h,scrollToLeft:m,scrollToTop:g,scrollToRow:y,onScroll:b,onVerticalScroll:R,scrollPos:w}=K$(e,{mainTableRef:t,leftTableRef:n,rightTableRef:o,onMaybeEndReached:Q}),{expandedRowKeys:E,hoveringRowKey:C,lastRenderedRowIndex:k,isDynamic:x,isResetting:_,rowHeights:S,resetAfterIndex:T,onRowExpanded:O,onRowHeightChange:I,onRowHovered:A,onRowsRendered:L}=j$(e,{mainTableRef:t,leftTableRef:n,rightTableRef:o}),{data:M,depthMap:N}=V$(e,{expandedRowKeys:E,lastRenderedRowIndex:k,resetAfterIndex:T}),{bodyWidth:W,fixedTableHeight:D,mainTableHeight:F,leftTableWidth:$,rightTableWidth:B,headerWidth:P,rowsHeight:K,windowHeight:j,footerHeight:V,emptyStyle:X,rootStyle:U,headerHeight:H}=q$(e,{columnsTotalWidth:a,data:M,fixedColumnsOnLeft:c,fixedColumnsOnRight:d}),z=(0,s.IJ)(!1),G=(0,s.KR)(),q=(0,i.EW)((()=>{const t=0===(0,s.R1)(M).length;return(0,u.cy)(e.fixedData)?0===e.fixedData.length&&t:t}));function Y(t){const{estimatedRowHeight:n,rowHeight:o,rowKey:r}=e;return n?(0,s.R1)(S)[(0,s.R1)(M)[t][r]]||n:o}function Q(){const{onEndReached:t}=e;if(!t)return;const{scrollTop:n}=(0,s.R1)(w),o=(0,s.R1)(K),r=(0,s.R1)(j),l=o-(n+r)+e.hScrollbarSize;(0,s.R1)(k)>=0&&o===n+(0,s.R1)(F)-(0,s.R1)(H)&&t(l)}return(0,i.wB)((()=>e.expandedRowKeys),(e=>E.value=e),{deep:!0}),{columns:r,containerRef:G,mainTableRef:t,leftTableRef:n,rightTableRef:o,isDynamic:x,isResetting:_,isScrolling:z,hoveringRowKey:C,hasFixedColumns:p,columnsStyles:l,columnsTotalWidth:a,data:M,expandedRowKeys:E,depthMap:N,fixedColumnsOnLeft:c,fixedColumnsOnRight:d,mainColumns:f,bodyWidth:W,emptyStyle:X,rootStyle:U,headerWidth:P,footerHeight:V,mainTableHeight:F,fixedTableHeight:D,leftTableWidth:$,rightTableWidth:B,showEmpty:q,getRowHeight:Y,onColumnSorted:v,onRowHovered:A,onRowExpanded:O,onRowsRendered:L,onRowHeightChange:I,scrollTo:h,scrollToLeft:m,scrollToTop:g,scrollToRow:y,onScroll:b,onVerticalScroll:R}}const Q$=Symbol("tableV2"),Z$=String,J$={type:(0,H.jq)(Array),required:!0},eB=((0,H.jq)(Object),{type:(0,H.jq)(Array)}),tB={...eB,required:!0},nB=String,oB={type:(0,H.jq)(Array),default:()=>Xn([])},rB={type:Number,required:!0},lB={type:(0,H.jq)([String,Number,Symbol]),default:"id"},aB={type:(0,H.jq)(Object)},iB=(0,H.b_)({class:String,columns:J$,columnsStyles:{type:(0,H.jq)(Object),required:!0},depth:Number,expandColumnKey:nB,estimatedRowHeight:{...CM.estimatedRowHeight,default:void 0},isScrolling:Boolean,onRowExpand:{type:(0,H.jq)(Function)},onRowHover:{type:(0,H.jq)(Function)},onRowHeightChange:{type:(0,H.jq)(Function)},rowData:{type:(0,H.jq)(Object),required:!0},rowEventHandlers:{type:(0,H.jq)(Object)},rowIndex:{type:Number,required:!0},rowKey:lB,style:{type:(0,H.jq)(Object)}}),sB={type:Number,required:!0},uB=(0,H.b_)({class:String,columns:J$,fixedHeaderData:{type:(0,H.jq)(Array)},headerData:{type:(0,H.jq)(Array),required:!0},headerHeight:{type:(0,H.jq)([Number,Array]),default:50},rowWidth:sB,rowHeight:{type:Number,default:50},height:sB,width:sB}),cB=(0,H.b_)({columns:J$,data:tB,fixedData:eB,estimatedRowHeight:iB.estimatedRowHeight,width:rB,height:rB,headerWidth:rB,headerHeight:uB.headerHeight,bodyWidth:rB,rowHeight:rB,cache:bM.cache,useIsScrolling:Boolean,scrollbarAlwaysOn:CM.scrollbarAlwaysOn,scrollbarStartGap:CM.scrollbarStartGap,scrollbarEndGap:CM.scrollbarEndGap,class:Z$,style:aB,containerStyle:aB,getRowHeight:{type:(0,H.jq)(Function),required:!0},rowKey:iB.rowKey,onRowsRendered:{type:(0,H.jq)(Function)},onScroll:{type:(0,H.jq)(Function)}}),dB=(0,H.b_)({cache:cB.cache,estimatedRowHeight:iB.estimatedRowHeight,rowKey:lB,headerClass:{type:(0,H.jq)([String,Function])},headerProps:{type:(0,H.jq)([Object,Function])},headerCellProps:{type:(0,H.jq)([Object,Function])},headerHeight:uB.headerHeight,footerHeight:{type:Number,default:0},rowClass:{type:(0,H.jq)([String,Function])},rowProps:{type:(0,H.jq)([Object,Function])},rowHeight:{type:Number,default:50},cellProps:{type:(0,H.jq)([Object,Function])},columns:J$,data:tB,dataGetter:{type:(0,H.jq)(Function)},fixedData:eB,expandColumnKey:iB.expandColumnKey,expandedRowKeys:oB,defaultExpandedRowKeys:oB,class:Z$,fixed:Boolean,style:{type:(0,H.jq)(Object)},width:rB,height:rB,maxHeight:Number,useIsScrolling:Boolean,indentSize:{type:Number,default:12},iconSize:{type:Number,default:12},hScrollbarSize:CM.hScrollbarSize,vScrollbarSize:CM.vScrollbarSize,scrollbarAlwaysOn:kM.alwaysOn,sortBy:{type:(0,H.jq)(Object),default:()=>({})},sortState:{type:(0,H.jq)(Object),default:void 0},onColumnSort:{type:(0,H.jq)(Function)},onExpandedRowsChange:{type:(0,H.jq)(Function)},onEndReached:{type:(0,H.jq)(Function)},onRowExpand:iB.onRowExpand,onScroll:cB.onScroll,onRowsRendered:cB.onRowsRendered,rowEventHandlers:iB.rowEventHandlers}),pB=({atXEndEdge:e,atXStartEdge:t,atYEndEdge:n,atYStartEdge:o},r)=>{let l=null,a=0,i=0;const s=(r,l)=>{const a=r<=0&&t.value||r>=0&&e.value,i=l<=0&&o.value||l>=0&&n.value;return a&&i},u=e=>{sM(l);let t=e.deltaX,n=e.deltaY;Math.abs(t)>Math.abs(n)?n=0:t=0,e.shiftKey&&0!==n&&(t=n,n=0),s(a,i)&&s(a+t,i+n)||(a+=t,i+=n,e.preventDefault(),l=iM((()=>{r(a,i),a=0,i=0})))};return{hasReachedEdge:s,onWheel:u}},fB=({name:e,clearCache:t,getColumnPosition:n,getColumnStartIndexForOffset:o,getColumnStopIndexForStartIndex:r,getEstimatedTotalHeight:l,getEstimatedTotalWidth:a,getColumnOffset:d,getRowOffset:p,getRowPosition:f,getRowStartIndexForOffset:v,getRowStopIndexForStartIndex:h,initCache:m,injectToInstance:g,validateProps:y})=>(0,i.pM)({name:null!=e?e:"ElVirtualList",props:CM,emits:[VL,XL],setup(e,{emit:b,expose:R,slots:w}){const E=(0,ee.DU)("vl");y(e);const C=(0,i.nI)(),k=(0,s.KR)(m(e,C));null==g||g(C,k);const x=(0,s.KR)(),_=(0,s.KR)(),S=(0,s.KR)(),T=(0,s.KR)(null),O=(0,s.KR)({isScrolling:!1,scrollLeft:(0,z.Et)(e.initScrollLeft)?e.initScrollLeft:0,scrollTop:(0,z.Et)(e.initScrollTop)?e.initScrollTop:0,updateRequested:!1,xAxisScrollDir:UL,yAxisScrollDir:UL}),I=KL(),A=(0,i.EW)((()=>Number.parseInt(`${e.height}`,10))),L=(0,i.EW)((()=>Number.parseInt(`${e.width}`,10))),M=(0,i.EW)((()=>{const{totalColumn:t,totalRow:n,columnCache:l}=e,{isScrolling:a,xAxisScrollDir:i,scrollLeft:u}=(0,s.R1)(O);if(0===t||0===n)return[0,0,0,0];const c=o(e,u,(0,s.R1)(k)),d=r(e,c,u,(0,s.R1)(k)),p=a&&i!==HL?1:Math.max(1,l),f=a&&i!==UL?1:Math.max(1,l);return[Math.max(0,c-p),Math.max(0,Math.min(t-1,d+f)),c,d]})),N=(0,i.EW)((()=>{const{totalColumn:t,totalRow:n,rowCache:o}=e,{isScrolling:r,yAxisScrollDir:l,scrollTop:a}=(0,s.R1)(O);if(0===t||0===n)return[0,0,0,0];const i=v(e,a,(0,s.R1)(k)),u=h(e,i,a,(0,s.R1)(k)),c=r&&l!==HL?1:Math.max(1,o),d=r&&l!==UL?1:Math.max(1,o);return[Math.max(0,i-c),Math.max(0,Math.min(n-1,u+d)),i,u]})),W=(0,i.EW)((()=>l(e,(0,s.R1)(k)))),D=(0,i.EW)((()=>a(e,(0,s.R1)(k)))),F=(0,i.EW)((()=>{var t;return[{position:"relative",overflow:"hidden",WebkitOverflowScrolling:"touch",willChange:"transform"},{direction:e.direction,height:(0,z.Et)(e.height)?`${e.height}px`:e.height,width:(0,z.Et)(e.width)?`${e.width}px`:e.width},null!=(t=e.style)?t:{}]})),$=(0,i.EW)((()=>{const e=`${(0,s.R1)(D)}px`,t=`${(0,s.R1)(W)}px`;return{height:t,pointerEvents:(0,s.R1)(O).isScrolling?"none":void 0,width:e}})),B=()=>{const{totalColumn:t,totalRow:n}=e;if(t>0&&n>0){const[e,t,n,o]=(0,s.R1)(M),[r,l,a,i]=(0,s.R1)(N);b(VL,{columnCacheStart:e,columnCacheEnd:t,rowCacheStart:r,rowCacheEnd:l,columnVisibleStart:n,columnVisibleEnd:o,rowVisibleStart:a,rowVisibleEnd:i})}const{scrollLeft:o,scrollTop:r,updateRequested:l,xAxisScrollDir:a,yAxisScrollDir:i}=(0,s.R1)(O);b(XL,{xAxisScrollDir:a,scrollLeft:o,yAxisScrollDir:i,scrollTop:r,updateRequested:l})},P=t=>{const{clientHeight:n,clientWidth:o,scrollHeight:r,scrollLeft:l,scrollTop:a,scrollWidth:u}=t.currentTarget,c=(0,s.R1)(O);if(c.scrollTop===a&&c.scrollLeft===l)return;let d=l;if(SM(e.direction))switch(OM()){case nM:d=-l;break;case rM:d=u-o-l;break}O.value={...c,isScrolling:!0,scrollLeft:d,scrollTop:Math.max(0,Math.min(a,r-n)),updateRequested:!0,xAxisScrollDir:xM(c.scrollLeft,d),yAxisScrollDir:xM(c.scrollTop,a)},(0,i.dY)((()=>G())),q(),B()},K=(e,t)=>{const n=(0,s.R1)(A),o=(W.value-n)/t*e;X({scrollTop:Math.min(W.value-n,o)})},j=(e,t)=>{const n=(0,s.R1)(L),o=(D.value-n)/t*e;X({scrollLeft:Math.min(D.value-n,o)})},{onWheel:V}=pB({atXStartEdge:(0,i.EW)((()=>O.value.scrollLeft<=0)),atXEndEdge:(0,i.EW)((()=>O.value.scrollLeft>=D.value-(0,s.R1)(L))),atYStartEdge:(0,i.EW)((()=>O.value.scrollTop<=0)),atYEndEdge:(0,i.EW)((()=>O.value.scrollTop>=W.value-(0,s.R1)(A)))},((e,t)=>{var n,o,r,l;null==(o=null==(n=_.value)?void 0:n.onMouseUp)||o.call(n),null==(l=null==(r=S.value)?void 0:r.onMouseUp)||l.call(r);const a=(0,s.R1)(L),i=(0,s.R1)(A);X({scrollLeft:Math.min(O.value.scrollLeft+e,D.value-a),scrollTop:Math.min(O.value.scrollTop+t,W.value-i)})})),X=({scrollLeft:e=O.value.scrollLeft,scrollTop:t=O.value.scrollTop})=>{e=Math.max(e,0),t=Math.max(t,0);const n=(0,s.R1)(O);t===n.scrollTop&&e===n.scrollLeft||(O.value={...n,xAxisScrollDir:xM(n.scrollLeft,e),yAxisScrollDir:xM(n.scrollTop,t),scrollLeft:e,scrollTop:t,updateRequested:!0},(0,i.dY)((()=>G())),q(),B())},U=(t=0,n=0,o=zL)=>{const r=(0,s.R1)(O);n=Math.max(0,Math.min(n,e.totalColumn-1)),t=Math.max(0,Math.min(t,e.totalRow-1));const i=ae(E.namespace.value),u=(0,s.R1)(k),c=l(e,u),f=a(e,u);X({scrollLeft:d(e,n,o,r.scrollLeft,u,f>e.width?i:0),scrollTop:p(e,t,o,r.scrollTop,u,c>e.height?i:0)})},H=(o,r)=>{const{columnWidth:l,direction:a,rowHeight:i}=e,c=I.value(t&&l,t&&i,t&&a),d=`${o},${r}`;if((0,u.$3)(c,d))return c[d];{const[,t]=n(e,r,(0,s.R1)(k)),l=(0,s.R1)(k),i=SM(a),[u,p]=f(e,o,l),[v]=n(e,r,l);return c[d]={position:"absolute",left:i?void 0:`${t}px`,right:i?`${t}px`:void 0,top:`${p}px`,height:`${u}px`,width:`${v}px`},c[d]}},G=()=>{O.value.isScrolling=!1,(0,i.dY)((()=>{I.value(-1,null,null)}))};(0,i.sV)((()=>{if(!c.oc)return;const{initScrollLeft:t,initScrollTop:n}=e,o=(0,s.R1)(x);o&&((0,z.Et)(t)&&(o.scrollLeft=t),(0,z.Et)(n)&&(o.scrollTop=n)),B()}));const q=()=>{const{direction:t}=e,{scrollLeft:n,scrollTop:o,updateRequested:r}=(0,s.R1)(O),l=(0,s.R1)(x);if(r&&l){if(t===tM)switch(OM()){case nM:l.scrollLeft=-n;break;case oM:l.scrollLeft=n;break;default:{const{clientWidth:e,scrollWidth:t}=l;l.scrollLeft=t-e-n;break}}else l.scrollLeft=Math.max(0,n);l.scrollTop=Math.max(0,o)}},{resetAfterColumnIndex:Y,resetAfterRowIndex:Q,resetAfter:Z}=C.proxy;R({windowRef:x,innerRef:T,getItemStyleCache:I,scrollTo:X,scrollToItem:U,states:O,resetAfterColumnIndex:Y,resetAfterRowIndex:Q,resetAfter:Z});const J=()=>{const{scrollbarAlwaysOn:t,scrollbarStartGap:n,scrollbarEndGap:o,totalColumn:r,totalRow:l}=e,a=(0,s.R1)(L),u=(0,s.R1)(A),c=(0,s.R1)(D),d=(0,s.R1)(W),{scrollLeft:p,scrollTop:f}=(0,s.R1)(O),v=(0,i.h)(AM,{ref:_,alwaysOn:t,startGap:n,endGap:o,class:E.e("horizontal"),clientSize:a,layout:"horizontal",onScroll:j,ratio:100*a/c,scrollFrom:p/(c-a),total:l,visible:!0}),h=(0,i.h)(AM,{ref:S,alwaysOn:t,startGap:n,endGap:o,class:E.e("vertical"),clientSize:u,layout:"vertical",onScroll:K,ratio:100*u/d,scrollFrom:f/(d-u),total:r,visible:!0});return{horizontalScrollbar:v,verticalScrollbar:h}},te=()=>{var t;const[n,o]=(0,s.R1)(M),[r,l]=(0,s.R1)(N),{data:a,totalColumn:i,totalRow:u,useIsScrolling:c,itemKey:d}=e,p=[];if(u>0&&i>0)for(let e=r;e<=l;e++)for(let r=n;r<=o;r++)p.push(null==(t=w.default)?void 0:t.call(w,{columnIndex:r,data:a,key:d({columnIndex:r,data:a,rowIndex:e}),isScrolling:c?(0,s.R1)(O).isScrolling:void 0,style:H(e,r),rowIndex:e}));return p},ne=()=>{const t=(0,i.$y)(e.innerElement),n=te();return[(0,i.h)(t,{style:(0,s.R1)($),ref:T},(0,u.Kg)(t)?n:{default:()=>n})]},oe=()=>{const t=(0,i.$y)(e.containerElement),{horizontalScrollbar:n,verticalScrollbar:o}=J(),r=ne();return(0,i.h)("div",{key:0,class:E.e("wrapper"),role:e.role},[(0,i.h)(t,{class:e.className,style:(0,s.R1)(F),onScroll:P,onWheel:V,ref:x},(0,u.Kg)(t)?r:{default:()=>r}),n,o])};return oe}}),{max:vB,min:hB,floor:mB}=Math,gB={column:"columnWidth",row:"rowHeight"},yB={column:"lastVisitedColumnIndex",row:"lastVisitedRowIndex"},bB=(e,t,n,o)=>{const[r,l,a]=[n[o],e[gB[o]],n[yB[o]]];if(t>a){let e=0;if(a>=0){const t=r[a];e=t.offset+t.size}for(let n=a+1;n<=t;n++){const t=l(n);r[n]={offset:e,size:t},e+=t}n[yB[o]]=t}return r[t]},RB=(e,t,n,o,r,l)=>{while(n<=o){const a=n+mB((o-n)/2),i=bB(e,a,t,l).offset;if(i===r)return a;i{const l="column"===r?e.totalColumn:e.totalRow;let a=1;while(n{const[r,l]=[t[o],t[yB[o]]],a=l>0?r[l].offset:0;return a>=n?RB(e,t,0,l,n,o):wB(e,t,vB(0,l),n,o)},CB=({totalRow:e},{estimatedRowHeight:t,lastVisitedRowIndex:n,row:o})=>{let r=0;if(n>=e&&(n=e-1),n>=0){const e=o[n];r=e.offset+e.size}const l=e-n-1,a=l*t;return r+a},kB=({totalColumn:e},{column:t,estimatedColumnWidth:n,lastVisitedColumnIndex:o})=>{let r=0;if(o>e&&(o=e-1),o>=0){const e=t[o];r=e.offset+e.size}const l=e-o-1,a=l*n;return r+a},xB={column:kB,row:CB},_B=(e,t,n,o,r,l,a)=>{const[i,s]=["row"===l?e.height:e.width,xB[l]],u=bB(e,t,r,l),c=s(e,r),d=vB(0,hB(c-i,u.offset)),p=vB(0,u.offset-i+a+u.size);switch(n===GL&&(n=o>=p-i&&o<=d+i?zL:YL),n){case qL:return d;case QL:return p;case YL:return Math.round(p+(d-p)/2);case zL:default:return o>=p&&o<=d?o:p>d||o{const o=bB(e,t,n,"column");return[o.size,o.offset]},getRowPosition:(e,t,n)=>{const o=bB(e,t,n,"row");return[o.size,o.offset]},getColumnOffset:(e,t,n,o,r,l)=>_B(e,t,n,o,r,"column",l),getRowOffset:(e,t,n,o,r,l)=>_B(e,t,n,o,r,"row",l),getColumnStartIndexForOffset:(e,t,n)=>EB(e,n,t,"column"),getColumnStopIndexForStartIndex:(e,t,n,o)=>{const r=bB(e,t,o,"column"),l=n+e.width;let a=r.offset+r.size,i=t;while(iEB(e,n,t,"row"),getRowStopIndexForStartIndex:(e,t,n,o)=>{const{totalRow:r,height:l}=e,a=bB(e,t,o,"row"),i=n+l;let s=a.size+a.offset,u=t;while(u{const n=({columnIndex:n,rowIndex:o},r)=>{var l,a;r=!!(0,z.b0)(r)||r,(0,z.Et)(n)&&(t.value.lastVisitedColumnIndex=Math.min(t.value.lastVisitedColumnIndex,n-1)),(0,z.Et)(o)&&(t.value.lastVisitedRowIndex=Math.min(t.value.lastVisitedRowIndex,o-1)),null==(l=e.exposed)||l.getItemStyleCache.value(-1,null,null),r&&(null==(a=e.proxy)||a.$forceUpdate())},o=(e,t)=>{n({columnIndex:e},t)},r=(e,t)=>{n({rowIndex:e},t)};Object.assign(e.proxy,{resetAfterColumnIndex:o,resetAfterRowIndex:r,resetAfter:n})},initCache:({estimatedColumnWidth:e=jL,estimatedRowHeight:t=jL})=>{const n={column:{},estimatedColumnWidth:e,estimatedRowHeight:t,lastVisitedColumnIndex:-1,lastVisitedRowIndex:-1,row:{}};return n},clearCache:!1,validateProps:({columnWidth:e,rowHeight:t})=>{0}}),TB=fB({name:"ElFixedSizeGrid",getColumnPosition:({columnWidth:e},t)=>[e,t*e],getRowPosition:({rowHeight:e},t)=>[e,t*e],getEstimatedTotalHeight:({totalRow:e,rowHeight:t})=>t*e,getEstimatedTotalWidth:({totalColumn:e,columnWidth:t})=>t*e,getColumnOffset:({totalColumn:e,columnWidth:t,width:n},o,r,l,a,i)=>{n=Number(n);const s=Math.max(0,e*t-n),u=Math.min(s,o*t),c=Math.max(0,o*t-n+i+t);switch("smart"===r&&(r=l>=c-n&&l<=u+n?zL:YL),r){case qL:return u;case QL:return c;case YL:{const e=Math.round(c+(u-c)/2);return es+Math.floor(n/2)?s:e}case zL:default:return l>=c&&l<=u?l:c>u||l{t=Number(t);const s=Math.max(0,n*e-t),u=Math.min(s,o*e),c=Math.max(0,o*e-t+i+e);switch(r===GL&&(r=l>=c-t&&l<=u+t?zL:YL),r){case qL:return u;case QL:return c;case YL:{const e=Math.round(c+(u-c)/2);return es+Math.floor(t/2)?s:e}case zL:default:return l>=c&&l<=u?l:c>u||lMath.max(0,Math.min(t-1,Math.floor(n/e))),getColumnStopIndexForStartIndex:({columnWidth:e,totalColumn:t,width:n},o,r)=>{const l=o*e,a=Math.ceil((n+r-l)/e);return Math.max(0,Math.min(t-1,o+a-1))},getRowStartIndexForOffset:({rowHeight:e,totalRow:t},n)=>Math.max(0,Math.min(t-1,Math.floor(n/e))),getRowStopIndexForStartIndex:({rowHeight:e,totalRow:t,height:n},o,r)=>{const l=o*e,a=Math.ceil((n+r-l)/e);return Math.max(0,Math.min(t-1,o+a-1))},initCache:()=>{},clearCache:!0,validateProps:({columnWidth:e,rowHeight:t})=>{0}}),OB="ElTableV2Header",IB=(0,i.pM)({name:OB,props:uB,setup(e,{slots:t,expose:n}){const o=(0,ee.DU)("table-v2"),r=(0,s.KR)(),l=(0,i.EW)((()=>z$({width:e.width,height:e.height}))),a=(0,i.EW)((()=>z$({width:e.rowWidth,height:e.height}))),u=(0,i.EW)((()=>pR((0,s.R1)(e.headerHeight)))),c=e=>{const t=(0,s.R1)(r);(0,i.dY)((()=>{(null==t?void 0:t.scroll)&&t.scroll({left:e})}))},d=()=>{const n=o.e("fixed-header-row"),{columns:r,fixedHeaderData:l,rowHeight:a}=e;return null==l?void 0:l.map(((e,o)=>{var l;const i=z$({height:a,width:"100%"});return null==(l=t.fixed)?void 0:l.call(t,{class:n,columns:r,rowData:e,rowIndex:-(o+1),style:i})}))},p=()=>{const n=o.e("dynamic-header-row"),{columns:r}=e;return(0,s.R1)(u).map(((e,o)=>{var l;const a=z$({width:"100%",height:e});return null==(l=t.dynamic)?void 0:l.call(t,{class:n,columns:r,headerIndex:o,style:a})}))};return n({scrollToLeft:c}),()=>{if(!(e.height<=0))return(0,i.bF)("div",{ref:r,class:e.class,style:(0,s.R1)(l),role:"rowgroup"},[(0,i.bF)("div",{style:(0,s.R1)(a),class:o.e("header")},[p(),d()])])}}}),AB="ElTableV2Grid",LB=e=>{const t=(0,s.KR)(),n=(0,s.KR)(),o=(0,i.EW)((()=>{const{data:t,rowHeight:n,estimatedRowHeight:o}=e;if(!o)return t.length*n})),r=(0,i.EW)((()=>{const{fixedData:t,rowHeight:n}=e;return((null==t?void 0:t.length)||0)*n})),l=(0,i.EW)((()=>U$(e.headerHeight))),a=(0,i.EW)((()=>{const{height:t}=e;return Math.max(0,t-(0,s.R1)(l)-(0,s.R1)(r))})),c=(0,i.EW)((()=>(0,s.R1)(l)+(0,s.R1)(r)>0)),d=({data:t,rowIndex:n})=>t[n][e.rowKey];function p({rowCacheStart:t,rowCacheEnd:n,rowVisibleStart:o,rowVisibleEnd:r}){var l;null==(l=e.onRowsRendered)||l.call(e,{rowCacheStart:t,rowCacheEnd:n,rowVisibleStart:o,rowVisibleEnd:r})}function f(e,t){var o;null==(o=n.value)||o.resetAfterRowIndex(e,t)}function v(e,o){const r=(0,s.R1)(t),l=(0,s.R1)(n);r&&l&&((0,u.Gv)(e)?(r.scrollToLeft(e.scrollLeft),l.scrollTo(e)):(r.scrollToLeft(e),l.scrollTo({scrollLeft:e,scrollTop:o})))}function h(e){var t;null==(t=(0,s.R1)(n))||t.scrollTo({scrollTop:e})}function m(e,t){var o;null==(o=(0,s.R1)(n))||o.scrollToItem(e,1,t)}function g(){var e,o;null==(e=(0,s.R1)(n))||e.$forceUpdate(),null==(o=(0,s.R1)(t))||o.$forceUpdate()}return{bodyRef:n,forceUpdate:g,fixedRowHeight:r,gridHeight:a,hasHeader:c,headerHeight:l,headerRef:t,totalHeight:o,itemKey:d,onItemRendered:p,resetAfterRowIndex:f,scrollTo:v,scrollToTop:h,scrollToRow:m}},MB=(0,i.pM)({name:AB,props:cB,setup(e,{slots:t,expose:n}){const{ns:o}=(0,i.WQ)(Q$),{bodyRef:r,fixedRowHeight:l,gridHeight:a,hasHeader:u,headerRef:c,headerHeight:d,totalHeight:p,forceUpdate:f,itemKey:v,onItemRendered:h,resetAfterRowIndex:m,scrollTo:g,scrollToTop:y,scrollToRow:b}=LB(e);n({forceUpdate:f,totalHeight:p,scrollTo:g,scrollToTop:y,scrollToRow:b,resetAfterRowIndex:m});const R=()=>e.bodyWidth;return()=>{const{cache:n,columns:p,data:f,fixedData:m,useIsScrolling:g,scrollbarAlwaysOn:y,scrollbarEndGap:b,scrollbarStartGap:w,style:E,rowHeight:C,bodyWidth:k,estimatedRowHeight:x,headerWidth:_,height:S,width:T,getRowHeight:O,onScroll:I}=e,A=(0,z.Et)(x),L=A?SB:TB,M=(0,s.R1)(d);return(0,i.bF)("div",{role:"table",class:[o.e("table"),e.class],style:E},[(0,i.bF)(L,{ref:r,data:f,useIsScrolling:g,itemKey:v,columnCache:0,columnWidth:A?R:k,totalColumn:1,totalRow:f.length,rowCache:n,rowHeight:A?O:C,width:T,height:(0,s.R1)(a),class:o.e("body"),role:"rowgroup",scrollbarStartGap:w,scrollbarEndGap:b,scrollbarAlwaysOn:y,onScroll:I,onItemRendered:h,perfMode:!1},{default:e=>{var n;const o=f[e.rowIndex];return null==(n=t.row)?void 0:n.call(t,{...e,columns:p,rowData:o})}}),(0,s.R1)(u)&&(0,i.bF)(IB,{ref:c,class:o.e("header-wrapper"),columns:p,headerData:f,headerHeight:e.headerHeight,fixedHeaderData:m,rowWidth:_,rowHeight:C,width:T,height:Math.min(M+(0,s.R1)(l),S)},{dynamic:t.header,fixed:t.row})])}}});function NB(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}const WB=(e,{slots:t})=>{const{mainTableRef:n,...o}=e;return(0,i.bF)(MB,(0,i.v6)({ref:n},o),NB(t)?t:{default:()=>[t]})};function DB(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}const FB=(e,{slots:t})=>{if(!e.columns.length)return;const{leftTableRef:n,...o}=e;return(0,i.bF)(MB,(0,i.v6)({ref:n},o),DB(t)?t:{default:()=>[t]})};function $B(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}const BB=(e,{slots:t})=>{if(!e.columns.length)return;const{rightTableRef:n,...o}=e;return(0,i.bF)(MB,(0,i.v6)({ref:n},o),$B(t)?t:{default:()=>[t]})},PB=e=>{const{isScrolling:t}=(0,i.WQ)(Q$),n=(0,s.KR)(!1),o=(0,s.KR)(),r=(0,i.EW)((()=>(0,z.Et)(e.estimatedRowHeight)&&e.rowIndex>=0)),l=(t=!1)=>{const r=(0,s.R1)(o);if(!r)return;const{columns:l,onRowHeightChange:a,rowKey:u,rowIndex:c,style:d}=e,{height:p}=r.getBoundingClientRect();n.value=!0,(0,i.dY)((()=>{if(t||p!==Number.parseInt(d.height)){const e=l[0],t=(null==e?void 0:e.placeholderSign)===$$;null==a||a({rowKey:u,height:p,rowIndex:c},e&&!t&&e.fixed)}}))},a=(0,i.EW)((()=>{const{rowData:t,rowIndex:n,rowKey:o,onRowHover:r}=e,l=e.rowEventHandlers||{},a={};return Object.entries(l).forEach((([e,r])=>{(0,u.Tn)(r)&&(a[e]=e=>{r({event:e,rowData:t,rowIndex:n,rowKey:o})})})),r&&[{name:"onMouseleave",hovered:!1},{name:"onMouseenter",hovered:!0}].forEach((({name:e,hovered:l})=>{const i=a[e];a[e]=e=>{r({event:e,hovered:l,rowData:t,rowIndex:n,rowKey:o}),null==i||i(e)}})),a})),c=t=>{const{onRowExpand:n,rowData:o,rowIndex:r,rowKey:l}=e;null==n||n({expanded:t,rowData:o,rowIndex:r,rowKey:l})};return(0,i.sV)((()=>{(0,s.R1)(r)&&l(!0)})),{isScrolling:t,measurable:r,measured:n,rowRef:o,eventHandlers:a,onExpand:c}},KB="ElTableV2TableRow",jB=(0,i.pM)({name:KB,props:iB,setup(e,{expose:t,slots:n,attrs:o}){const{eventHandlers:r,isScrolling:l,measurable:a,measured:c,rowRef:d,onExpand:p}=PB(e);return t({onExpand:p}),()=>{const{columns:t,columnsStyles:f,expandColumnKey:v,depth:h,rowData:m,rowIndex:g,style:y}=e;let b=t.map(((e,o)=>{const r=(0,u.cy)(m.children)&&m.children.length>0&&e.key===v;return n.cell({column:e,columns:t,columnIndex:o,depth:h,style:f[e.key],rowData:m,rowIndex:g,isScrolling:(0,s.R1)(l),expandIconProps:r?{rowData:m,rowIndex:g,onExpand:p}:void 0})}));if(n.row&&(b=n.row({cells:b.map((e=>(0,u.cy)(e)&&1===e.length?e[0]:e)),style:y,columns:t,depth:h,rowData:m,rowIndex:g,isScrolling:(0,s.R1)(l)})),(0,s.R1)(a)){const{height:t,...n}=y||{},l=(0,s.R1)(c);return(0,i.bF)("div",(0,i.v6)({ref:d,class:e.class,style:l?y:n,role:"row"},o,(0,s.R1)(r)),[b])}return(0,i.bF)("div",(0,i.v6)(o,{ref:d,class:e.class,style:y,role:"row"},(0,s.R1)(r)),[b])}}});function VB(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}const XB=(e,{slots:t})=>{const{columns:n,columnsStyles:o,depthMap:r,expandColumnKey:l,expandedRowKeys:a,estimatedRowHeight:s,hasFixedColumns:u,hoveringRowKey:c,rowData:d,rowIndex:p,style:f,isScrolling:v,rowProps:h,rowClass:m,rowKey:g,rowEventHandlers:y,ns:b,onRowHovered:R,onRowExpanded:w}=e,E=H$(m,{columns:n,rowData:d,rowIndex:p},""),C=H$(h,{columns:n,rowData:d,rowIndex:p}),k=d[g],x=r[k]||0,_=Boolean(l),S=p<0,T=[b.e("row"),E,{[b.e(`row-depth-${x}`)]:_&&p>=0,[b.is("expanded")]:_&&a.includes(k),[b.is("hovered")]:!v&&k===c,[b.is("fixed")]:!x&&S,[b.is("customized")]:Boolean(t.row)}],O=u?R:void 0,I={...C,columns:n,columnsStyles:o,class:T,depth:x,expandColumnKey:l,estimatedRowHeight:S?void 0:s,isScrolling:v,rowIndex:p,rowData:d,rowKey:k,rowEventHandlers:y,style:f};return(0,i.bF)(jB,(0,i.v6)(I,{onRowHover:O,onRowExpand:w}),VB(t)?t:{default:()=>[t]})},UB=(e,{slots:t})=>{var n;const{cellData:o,style:r}=e,l=(null==(n=null==o?void 0:o.toString)?void 0:n.call(o))||"",a=(0,i.RG)(t,"default",e,(()=>[l]));return(0,i.bF)("div",{class:e.class,title:l,style:r},[a])};UB.displayName="ElTableV2Cell",UB.inheritAttrs=!1;const HB=e=>{const{expanded:t,expandable:n,onExpand:o,style:r,size:l}=e,a={onClick:n?()=>o(!t):void 0,class:e.class};return(0,i.bF)(Ee,(0,i.v6)(a,{size:l,style:r}),{default:()=>[(0,i.bF)(Oe,null,null)]})},zB=({columns:e,column:t,columnIndex:n,depth:o,expandIconProps:r,isScrolling:l,rowData:a,rowIndex:s,style:c,expandedRowKeys:d,ns:p,cellProps:f,expandColumnKey:v,indentSize:h,iconSize:m,rowKey:g},{slots:y})=>{const b=z$(c);if(t.placeholderSign===$$)return(0,i.bF)("div",{class:p.em("row-cell","placeholder"),style:b},null);const{cellRenderer:R,dataKey:w,dataGetter:E}=t,C=(0,u.Tn)(E)?E({columns:e,column:t,columnIndex:n,rowData:a,rowIndex:s}):(0,PO.A)(a,null!=w?w:""),k=H$(f,{cellData:C,columns:e,column:t,columnIndex:n,rowIndex:s,rowData:a}),x={class:p.e("cell-text"),columns:e,column:t,columnIndex:n,cellData:C,isScrolling:l,rowData:a,rowIndex:s},_=G$(R),S=_?_(x):(0,i.RG)(y,"default",x,(()=>[(0,i.bF)(UB,x,null)])),T=[p.e("row-cell"),t.class,t.align===W$.CENTER&&p.is("align-center"),t.align===W$.RIGHT&&p.is("align-right")],O=s>=0&&v&&t.key===v,I=s>=0&&d.includes(a[g]);let A;const L=`margin-inline-start: ${o*h}px;`;return O&&(A=(0,u.Gv)(r)?(0,i.bF)(HB,(0,i.v6)(r,{class:[p.e("expand-icon"),p.is("expanded",I)],size:m,expanded:I,style:L,expandable:!0}),null):(0,i.bF)("div",{style:[L,`width: ${m}px; height: ${m}px;`].join(" ")},null)),(0,i.bF)("div",(0,i.v6)({class:T,style:b},k,{role:"cell"}),[A,S])};zB.inheritAttrs=!1;const GB=(0,H.b_)({class:String,columns:J$,columnsStyles:{type:(0,H.jq)(Object),required:!0},headerIndex:Number,style:{type:(0,H.jq)(Object)}}),qB=(0,i.pM)({name:"ElTableV2HeaderRow",props:GB,setup(e,{slots:t}){return()=>{const{columns:n,columnsStyles:o,headerIndex:r,style:l}=e;let a=n.map(((e,l)=>t.cell({columns:n,column:e,columnIndex:l,headerIndex:r,style:o[e.key]})));return t.header&&(a=t.header({cells:a.map((e=>(0,u.cy)(e)&&1===e.length?e[0]:e)),columns:n,headerIndex:r})),(0,i.bF)("div",{class:e.class,style:l,role:"row"},[a])}}});function YB(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}const QB=({columns:e,columnsStyles:t,headerIndex:n,style:o,headerClass:r,headerProps:l,ns:a},{slots:s})=>{const u={columns:e,headerIndex:n},c=[a.e("header-row"),H$(r,u,""),{[a.is("customized")]:Boolean(s.header)}],d={...H$(l,u),columnsStyles:t,class:c,columns:e,headerIndex:n,style:o};return(0,i.bF)(qB,d,YB(s)?s:{default:()=>[s]})},ZB=(e,{slots:t})=>(0,i.RG)(t,"default",e,(()=>{var t,n;return[(0,i.bF)("div",{class:e.class,title:null==(t=e.column)?void 0:t.title},[null==(n=e.column)?void 0:n.title])]}));ZB.displayName="ElTableV2HeaderCell",ZB.inheritAttrs=!1;const JB=e=>{const{sortOrder:t}=e;return(0,i.bF)(Ee,{size:14,class:e.class},{default:()=>[t===N$.ASC?(0,i.bF)(Bt,null,null):(0,i.bF)(Ft,null,null)]})},eP=(e,{slots:t})=>{const{column:n,ns:o,style:r,onColumnSorted:l}=e,a=z$(r);if(n.placeholderSign===$$)return(0,i.bF)("div",{class:o.em("header-row-cell","placeholder"),style:a},null);const{headerCellRenderer:s,headerClass:u,sortable:c}=n,d={...e,class:o.e("header-cell-text")},p=G$(s),f=p?p(d):(0,i.RG)(t,"default",d,(()=>[(0,i.bF)(ZB,d,null)])),{sortBy:v,sortState:h,headerCellProps:m}=e;let g,y;if(h){const e=h[n.key];g=Boolean(F$[e]),y=g?e:N$.ASC}else g=n.key===v.key,y=g?v.order:N$.ASC;const b=[o.e("header-cell"),H$(u,e,""),n.align===W$.CENTER&&o.is("align-center"),n.align===W$.RIGHT&&o.is("align-right"),c&&o.is("sortable")],R={...H$(m,e),onClick:n.sortable?l:void 0,class:b,style:a,["data-key"]:n.key};return(0,i.bF)("div",(0,i.v6)(R,{role:"columnheader"}),[f,c&&(0,i.bF)(JB,{class:[o.e("sort-icon"),g&&o.is("sorting")],sortOrder:y},null)])},tP=(e,{slots:t})=>{var n;return(0,i.bF)("div",{class:e.class,style:e.style},[null==(n=t.default)?void 0:n.call(t)])};tP.displayName="ElTableV2Footer";const nP=(e,{slots:t})=>{const n=(0,i.RG)(t,"default",{},(()=>[(0,i.bF)(K_,null,null)]));return(0,i.bF)("div",{class:e.class,style:e.style},[n])};nP.displayName="ElTableV2Empty";const oP=(e,{slots:t})=>{var n;return(0,i.bF)("div",{class:e.class,style:e.style},[null==(n=t.default)?void 0:n.call(t)])};function rP(e){return"function"===typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!(0,i.vv)(e)}oP.displayName="ElTableV2Overlay";const lP="ElTableV2",aP=(0,i.pM)({name:lP,props:dB,setup(e,{slots:t,expose:n}){const o=(0,ee.DU)("table-v2"),{columnsStyles:r,fixedColumnsOnLeft:l,fixedColumnsOnRight:a,mainColumns:u,mainTableHeight:c,fixedTableHeight:d,leftTableWidth:p,rightTableWidth:f,data:v,depthMap:h,expandedRowKeys:m,hasFixedColumns:g,hoveringRowKey:y,mainTableRef:b,leftTableRef:R,rightTableRef:w,isDynamic:E,isResetting:C,isScrolling:k,bodyWidth:x,emptyStyle:_,rootStyle:S,headerWidth:T,footerHeight:O,showEmpty:I,scrollTo:A,scrollToLeft:L,scrollToTop:M,scrollToRow:N,getRowHeight:W,onColumnSorted:D,onRowHeightChange:F,onRowHovered:$,onRowExpanded:B,onRowsRendered:P,onScroll:K,onVerticalScroll:j}=Y$(e);return n({scrollTo:A,scrollToLeft:L,scrollToTop:M,scrollToRow:N}),(0,i.Gt)(Q$,{ns:o,isResetting:C,hoveringRowKey:y,isScrolling:k}),()=>{const{cache:n,cellProps:C,estimatedRowHeight:k,expandColumnKey:A,fixedData:L,headerHeight:M,headerClass:N,headerProps:V,headerCellProps:X,sortBy:U,sortState:H,rowHeight:z,rowClass:G,rowEventHandlers:q,rowKey:Y,rowProps:Q,scrollbarAlwaysOn:Z,indentSize:J,iconSize:ee,useIsScrolling:te,vScrollbarSize:ne,width:oe}=e,re=(0,s.R1)(v),le={cache:n,class:o.e("main"),columns:(0,s.R1)(u),data:re,fixedData:L,estimatedRowHeight:k,bodyWidth:(0,s.R1)(x)+ne,headerHeight:M,headerWidth:(0,s.R1)(T),height:(0,s.R1)(c),mainTableRef:b,rowKey:Y,rowHeight:z,scrollbarAlwaysOn:Z,scrollbarStartGap:2,scrollbarEndGap:ne,useIsScrolling:te,width:oe,getRowHeight:W,onRowsRendered:P,onScroll:K},ae=(0,s.R1)(p),ie=(0,s.R1)(d),se={cache:n,class:o.e("left"),columns:(0,s.R1)(l),data:re,estimatedRowHeight:k,leftTableRef:R,rowHeight:z,bodyWidth:ae,headerWidth:ae,headerHeight:M,height:ie,rowKey:Y,scrollbarAlwaysOn:Z,scrollbarStartGap:2,scrollbarEndGap:ne,useIsScrolling:te,width:ae,getRowHeight:W,onScroll:j},ue=(0,s.R1)(f),ce=ue+ne,de={cache:n,class:o.e("right"),columns:(0,s.R1)(a),data:re,estimatedRowHeight:k,rightTableRef:w,rowHeight:z,bodyWidth:ce,headerWidth:ce,headerHeight:M,height:ie,rowKey:Y,scrollbarAlwaysOn:Z,scrollbarStartGap:2,scrollbarEndGap:ne,width:ce,style:`--${(0,s.R1)(o.namespace)}-table-scrollbar-size: ${ne}px`,useIsScrolling:te,getRowHeight:W,onScroll:j},pe=(0,s.R1)(r),fe={ns:o,depthMap:(0,s.R1)(h),columnsStyles:pe,expandColumnKey:A,expandedRowKeys:(0,s.R1)(m),estimatedRowHeight:k,hasFixedColumns:(0,s.R1)(g),hoveringRowKey:(0,s.R1)(y),rowProps:Q,rowClass:G,rowKey:Y,rowEventHandlers:q,onRowHovered:$,onRowExpanded:B,onRowHeightChange:F},ve={cellProps:C,expandColumnKey:A,indentSize:J,iconSize:ee,rowKey:Y,expandedRowKeys:(0,s.R1)(m),ns:o},he={ns:o,headerClass:N,headerProps:V,columnsStyles:pe},me={ns:o,sortBy:U,sortState:H,headerCellProps:X,onColumnSorted:D},ge={row:e=>(0,i.bF)(XB,(0,i.v6)(e,fe),{row:t.row,cell:e=>{let n;return t.cell?(0,i.bF)(zB,(0,i.v6)(e,ve,{style:pe[e.column.key]}),rP(n=t.cell(e))?n:{default:()=>[n]}):(0,i.bF)(zB,(0,i.v6)(e,ve,{style:pe[e.column.key]}),null)}}),header:e=>(0,i.bF)(QB,(0,i.v6)(e,he),{header:t.header,cell:e=>{let n;return t["header-cell"]?(0,i.bF)(eP,(0,i.v6)(e,me,{style:pe[e.column.key]}),rP(n=t["header-cell"](e))?n:{default:()=>[n]}):(0,i.bF)(eP,(0,i.v6)(e,me,{style:pe[e.column.key]}),null)}})},ye=[e.class,o.b(),o.e("root"),{[o.is("dynamic")]:(0,s.R1)(E)}],be={class:o.e("footer"),style:(0,s.R1)(O)};return(0,i.bF)("div",{class:ye,style:(0,s.R1)(S)},[(0,i.bF)(WB,le,rP(ge)?ge:{default:()=>[ge]}),(0,i.bF)(FB,se,rP(ge)?ge:{default:()=>[ge]}),(0,i.bF)(BB,de,rP(ge)?ge:{default:()=>[ge]}),t.footer&&(0,i.bF)(tP,be,{default:t.footer}),(0,s.R1)(I)&&(0,i.bF)(nP,{class:o.e("empty"),style:(0,s.R1)(_)},{default:t.empty}),t.overlay&&(0,i.bF)(oP,{class:o.e("overlay")},{default:t.overlay})])}}}),iP=(0,H.b_)({disableWidth:Boolean,disableHeight:Boolean,onResize:{type:(0,H.jq)(Function)}}),sP=e=>{const t=(0,s.KR)(),n=(0,s.KR)(0),o=(0,s.KR)(0);let r;return(0,i.sV)((()=>{r=T(t,(([e])=>{const{width:t,height:r}=e.contentRect,{paddingLeft:l,paddingRight:a,paddingTop:i,paddingBottom:s}=getComputedStyle(e.target),u=Number.parseInt(l)||0,c=Number.parseInt(a)||0,d=Number.parseInt(i)||0,p=Number.parseInt(s)||0;n.value=t-u-c,o.value=r-d-p})).stop})),(0,i.xo)((()=>{null==r||r()})),(0,i.wB)([n,o],(([t,n])=>{var o;null==(o=e.onResize)||o.call(e,{width:t,height:n})})),{sizer:t,width:n,height:o}},uP=(0,i.pM)({name:"ElAutoResizer",props:iP,setup(e,{slots:t}){const n=(0,ee.DU)("auto-resizer"),{height:o,width:r,sizer:l}=sP(e),a={width:"100%",height:"100%"};return()=>{var e;return(0,i.bF)("div",{ref:l,class:n.b(),style:a},[null==(e=t.default)?void 0:e.call(t,{height:o.value,width:r.value})])}}}),cP=pe(aP),dP=pe(uP),pP=Symbol("tabsRootContextKey"),fP=(0,H.b_)({tabs:{type:(0,H.jq)(Array),default:()=>Xn([])}}),vP="ElTabBar",hP=(0,i.pM)({name:vP}),mP=(0,i.pM)({...hP,props:fP,setup(e,{expose:t}){const n=e,o=(0,i.nI)(),r=(0,i.WQ)(pP);r||(0,ne.$)(vP,"");const l=(0,ee.DU)("tabs"),a=(0,s.KR)(),c=(0,s.KR)(),d=()=>{let e=0,t=0;const l=["top","bottom"].includes(r.props.tabPosition)?"width":"height",a="width"===l?"x":"y",i="x"===a?"left":"top";return n.tabs.every((r=>{var a,s;const u=null==(s=null==(a=o.parent)?void 0:a.refs)?void 0:s[`tab-${r.uid}`];if(!u)return!1;if(!r.active)return!0;e=u[`offset${tb(i)}`],t=u[`client${tb(l)}`];const c=window.getComputedStyle(u);return"width"===l&&(n.tabs.length>1&&(t-=Number.parseFloat(c.paddingLeft)+Number.parseFloat(c.paddingRight)),e+=Number.parseFloat(c.paddingLeft)),!1})),{[l]:`${t}px`,transform:`translate${tb(a)}(${e}px)`}},p=()=>c.value=d();return(0,i.wB)((()=>n.tabs),(async()=>{await(0,i.dY)(),p()}),{immediate:!0}),T(a,(()=>p())),t({ref:a,update:p}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"barRef",ref:a,class:(0,u.C4)([(0,s.R1)(l).e("active-bar"),(0,s.R1)(l).is((0,s.R1)(r).props.tabPosition)]),style:(0,u.Tr)(c.value)},null,6))}});var gP=J(mP,[["__file","tab-bar.vue"]]);const yP=(0,H.b_)({panes:{type:(0,H.jq)(Array),default:()=>Xn([])},currentName:{type:[String,Number],default:""},editable:Boolean,type:{type:String,values:["card","border-card",""],default:""},stretch:Boolean}),bP={tabClick:(e,t,n)=>n instanceof Event,tabRemove:(e,t)=>t instanceof Event},RP="ElTabNav",wP=(0,i.pM)({name:RP,props:yP,emits:bP,setup(e,{expose:t,emit:n}){const o=(0,i.nI)(),r=(0,i.WQ)(pP);r||(0,ne.$)(RP,"");const l=(0,ee.DU)("tabs"),a=C(),u=X(),c=(0,s.KR)(),d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)(),v=(0,s.KR)(!1),h=(0,s.KR)(0),m=(0,s.KR)(!1),g=(0,s.KR)(!0),y=(0,i.EW)((()=>["top","bottom"].includes(r.props.tabPosition)?"width":"height")),b=(0,i.EW)((()=>{const e="width"===y.value?"X":"Y";return{transform:`translate${e}(-${h.value}px)`}})),R=()=>{if(!c.value)return;const e=c.value[`offset${tb(y.value)}`],t=h.value;if(!t)return;const n=t>e?t-e:0;h.value=n},w=()=>{if(!c.value||!d.value)return;const e=d.value[`offset${tb(y.value)}`],t=c.value[`offset${tb(y.value)}`],n=h.value;if(e-n<=t)return;const o=e-n>2*t?n+t:e-t;h.value=o},E=async()=>{const e=d.value;if(!v.value||!p.value||!c.value||!e)return;await(0,i.dY)();const t=p.value.querySelector(".is-active");if(!t)return;const n=c.value,o=["top","bottom"].includes(r.props.tabPosition),l=t.getBoundingClientRect(),a=n.getBoundingClientRect(),s=o?e.offsetWidth-a.width:e.offsetHeight-a.height,u=h.value;let f=u;o?(l.lefta.right&&(f=u+l.right-a.right)):(l.topa.bottom&&(f=u+(l.bottom-a.bottom))),f=Math.max(f,0),h.value=Math.min(f,s)},k=()=>{var t;if(!d.value||!c.value)return;e.stretch&&(null==(t=f.value)||t.update());const n=d.value[`offset${tb(y.value)}`],o=c.value[`offset${tb(y.value)}`],r=h.value;o0&&(h.value=0))},x=e=>{const t=e.code,{up:n,down:o,left:r,right:l}=aa;if(![n,o,r,l].includes(t))return;const a=Array.from(e.currentTarget.querySelectorAll("[role=tab]:not(.is-disabled)")),i=a.indexOf(e.target);let s;s=t===r||t===n?0===i?a.length-1:i-1:i{g.value&&(m.value=!0)},S=()=>m.value=!1;return(0,i.wB)(a,(e=>{"hidden"===e?g.value=!1:"visible"===e&&setTimeout((()=>g.value=!0),50)})),(0,i.wB)(u,(e=>{e?setTimeout((()=>g.value=!0),50):g.value=!1})),T(p,k),(0,i.sV)((()=>setTimeout((()=>E()),0))),(0,i.$u)((()=>k())),t({scrollToActiveTab:E,removeFocus:S}),(0,i.wB)((()=>e.panes),(()=>o.update()),{flush:"post",deep:!0}),()=>{const t=v.value?[(0,i.bF)("span",{class:[l.e("nav-prev"),l.is("disabled",!v.value.prev)],onClick:R},[(0,i.bF)(Ee,null,{default:()=>[(0,i.bF)(Se,null,null)]})]),(0,i.bF)("span",{class:[l.e("nav-next"),l.is("disabled",!v.value.next)],onClick:w},[(0,i.bF)(Ee,null,{default:()=>[(0,i.bF)(Oe,null,null)]})])]:null,o=e.panes.map(((t,o)=>{var a,s,u,c;const d=t.uid,p=t.props.disabled,f=null!=(s=null!=(a=t.props.name)?a:t.index)?s:`${o}`,v=!p&&(t.isClosable||e.editable);t.index=`${o}`;const h=v?(0,i.bF)(Ee,{class:"is-icon-close",onClick:e=>n("tabRemove",t,e)},{default:()=>[(0,i.bF)(Je,null,null)]}):null,g=(null==(c=(u=t.slots).label)?void 0:c.call(u))||t.props.label,y=!p&&t.active?0:-1;return(0,i.bF)("div",{ref:`tab-${d}`,class:[l.e("item"),l.is(r.props.tabPosition),l.is("active",t.active),l.is("disabled",p),l.is("closable",v),l.is("focus",m.value)],id:`tab-${f}`,key:`tab-${d}`,"aria-controls":`pane-${f}`,role:"tab","aria-selected":t.active,tabindex:y,onFocus:()=>_(),onBlur:()=>S(),onClick:e=>{S(),n("tabClick",t,f,e)},onKeydown:e=>{!v||e.code!==aa.delete&&e.code!==aa.backspace||n("tabRemove",t,e)}},[g,h])}));return(0,i.bF)("div",{ref:p,class:[l.e("nav-wrap"),l.is("scrollable",!!v.value),l.is(r.props.tabPosition)]},[t,(0,i.bF)("div",{class:l.e("nav-scroll"),ref:c},[(0,i.bF)("div",{class:[l.e("nav"),l.is(r.props.tabPosition),l.is("stretch",e.stretch&&["top","bottom"].includes(r.props.tabPosition))],ref:d,style:b.value,role:"tablist",onKeydown:x},[e.type?null:(0,i.bF)(gP,{ref:f,tabs:[...e.panes]},null),o])])])}}}),EP=(0,H.b_)({type:{type:String,values:["card","border-card",""],default:""},activeName:{type:[String,Number]},closable:Boolean,addable:Boolean,modelValue:{type:[String,Number]},editable:Boolean,tabPosition:{type:String,values:["top","right","bottom","left"],default:"top"},beforeLeave:{type:(0,H.jq)(Function),default:()=>!0},stretch:Boolean}),CP=e=>(0,u.Kg)(e)||(0,z.Et)(e),kP={[G]:e=>CP(e),tabClick:(e,t)=>t instanceof Event,tabChange:e=>CP(e),edit:(e,t)=>["remove","add"].includes(t),tabRemove:e=>CP(e),tabAdd:()=>!0},xP=(0,i.pM)({name:"ElTabs",props:EP,emits:kP,setup(e,{emit:t,slots:n,expose:o}){var r,l;const a=(0,ee.DU)("tabs"),{children:u,addChild:c,removeChild:d}=Mc((0,i.nI)(),"ElTabPane"),p=(0,s.KR)(),f=(0,s.KR)(null!=(l=null!=(r=e.modelValue)?r:e.activeName)?l:"0"),v=async(n,o=!1)=>{var r,l,a;if(f.value!==n&&!(0,z.b0)(n))try{const i=await(null==(r=e.beforeLeave)?void 0:r.call(e,n,f.value));!1!==i&&(f.value=n,o&&(t(G,n),t("tabChange",n)),null==(a=null==(l=p.value)?void 0:l.removeFocus)||a.call(l))}catch(i){}},h=(e,n,o)=>{e.props.disabled||(v(n,!0),t("tabClick",e,o))},m=(e,n)=>{e.props.disabled||(0,z.b0)(e.props.name)||(n.stopPropagation(),t("edit",e.props.name,"remove"),t("tabRemove",e.props.name))},g=()=>{t("edit",void 0,"add"),t("tabAdd")};return $s({from:'"activeName"',replacement:'"model-value" or "v-model"',scope:"ElTabs",version:"2.3.0",ref:"https://element-plus.org/en-US/component/tabs.html#attributes",type:"Attribute"},(0,i.EW)((()=>!!e.activeName))),$s({from:'"addIcon"',replacement:'"add-icon"',scope:"ElTabs",version:"2.6.0",ref:"https://element-plus.org/en-US/component/tabs.html#slots",type:"Slot"},(0,i.EW)((()=>!!n.addIcon))),(0,i.wB)((()=>e.activeName),(e=>v(e))),(0,i.wB)((()=>e.modelValue),(e=>v(e))),(0,i.wB)(f,(async()=>{var e;await(0,i.dY)(),null==(e=p.value)||e.scrollToActiveTab()})),(0,i.Gt)(pP,{props:e,currentName:f,registerPane:c,unregisterPane:d}),o({currentName:f}),()=>{const t=n["add-icon"]||n["addIcon"],o=t&&n["addIcon"],r=e.editable||e.addable?(0,i.bF)("span",{class:a.e("new-tab"),tabindex:"0",onClick:g,onKeydown:e=>{e.code===aa.enter&&g()}},[t?(0,i.RG)(n,o?"addIcon":"add-icon"):(0,i.bF)(Ee,{class:a.is("icon-plus")},{default:()=>[(0,i.bF)(xt,null,null)]})]):null,l=(0,i.bF)("div",{class:[a.e("header"),a.is(e.tabPosition)]},[r,(0,i.bF)(wP,{ref:p,currentName:f.value,editable:e.editable,type:e.type,panes:u.value,stretch:e.stretch,onTabClick:h,onTabRemove:m},null)]),s=(0,i.bF)("div",{class:a.e("content")},[(0,i.RG)(n,"default")]);return(0,i.bF)("div",{class:[a.b(),a.m(e.tabPosition),{[a.m("card")]:"card"===e.type,[a.m("border-card")]:"border-card"===e.type}]},[..."bottom"!==e.tabPosition?[l,s]:[s,l]])}}}),_P=(0,H.b_)({label:{type:String,default:""},name:{type:[String,Number]},closable:Boolean,disabled:Boolean,lazy:Boolean}),SP=["id","aria-hidden","aria-labelledby"],TP="ElTabPane",OP=(0,i.pM)({name:TP}),IP=(0,i.pM)({...OP,props:_P,setup(e){const t=e,n=(0,i.nI)(),o=(0,i.Ht)(),r=(0,i.WQ)(pP);r||(0,ne.$)(TP,"usage: ");const l=(0,ee.DU)("tab-pane"),a=(0,s.KR)(),d=(0,i.EW)((()=>t.closable||r.props.closable)),p=(0,c.uA)((()=>{var e;return r.currentName.value===(null!=(e=t.name)?e:a.value)})),f=(0,s.KR)(p.value),v=(0,i.EW)((()=>{var e;return null!=(e=t.name)?e:a.value})),h=(0,c.uA)((()=>!t.lazy||f.value||p.value));(0,i.wB)(p,(e=>{e&&(f.value=!0)}));const m=(0,s.Kh)({uid:n.uid,slots:o,props:t,paneName:v,active:p,index:a,isClosable:d});return(0,i.sV)((()=>{r.registerPane(m)})),(0,i.hi)((()=>{r.unregisterPane(m.uid)})),(e,t)=>(0,s.R1)(h)?(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{key:0,id:`pane-${(0,s.R1)(v)}`,class:(0,u.C4)((0,s.R1)(l).b()),role:"tabpanel","aria-hidden":!(0,s.R1)(p),"aria-labelledby":`tab-${(0,s.R1)(v)}`},[(0,i.RG)(e.$slots,"default")],10,SP)),[[ge.aG,(0,s.R1)(p)]]):(0,i.Q3)("v-if",!0)}});var AP=J(IP,[["__file","tab-pane.vue"]]);const LP=pe(xP,{TabPane:AP}),MP=he(AP),NP=(0,H.b_)({type:{type:String,values:["primary","success","info","warning","danger",""],default:""},size:{type:String,values:rs.I,default:""},truncated:{type:Boolean},lineClamp:{type:[String,Number]},tag:{type:String,default:"span"}}),WP=(0,i.pM)({name:"ElText"}),DP=(0,i.pM)({...WP,props:NP,setup(e){const t=e,n=ao(),o=(0,ee.DU)("text"),r=(0,i.EW)((()=>[o.b(),o.m(t.type),o.m(n.value),o.is("truncated",t.truncated),o.is("line-clamp",!(0,z.b0)(t.lineClamp))]));return(e,t)=>((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tag),{class:(0,u.C4)((0,s.R1)(r)),style:(0,u.Tr)({"-webkit-line-clamp":e.lineClamp})},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["class","style"]))}});var FP=J(DP,[["__file","text.vue"]]);const $P=pe(FP);function BP(e){return e!==e}var PP=BP;function KP(e,t,n){var o=n-1,r=e.length;while(++o-1}var HP=UP;function zP(e,t,n){var o=-1,r=null==e?0:e.length;while(++o=eK){var u=t?null:JP(e);if(u)return Rm(u);a=!1,r=dm,s=new im}else s=t?[]:i;e:while(++o{const n=[];for(let o=e;o<=t;o++)n.push(o);return n},{t:r,lang:l}=(0,zu.Ym)(),a=(0,ee.DU)("time"),c=(0,ee.DU)("picker"),d=(0,i.WQ)("EP_PICKER_BASE"),{arrowControl:p,disabledHours:f,disabledMinutes:v,disabledSeconds:h,defaultValue:m}=d.props,g=(0,i.EW)((()=>[a.be("range-picker","body"),a.be("panel","content"),a.is("arrow",p),C.value?"has-seconds":""])),y=(0,i.EW)((()=>[a.be("range-picker","body"),a.be("panel","content"),a.is("arrow",p),C.value?"has-seconds":""])),b=(0,i.EW)((()=>n.parsedValue[0])),R=(0,i.EW)((()=>n.parsedValue[1])),w=QE(n),E=()=>{t("pick",w.value,!1)},C=(0,i.EW)((()=>n.format.includes("ss"))),k=(0,i.EW)((()=>n.format.includes("A")?"A":n.format.includes("a")?"a":"")),x=(e=!1)=>{t("pick",[b.value,R.value],e)},_=e=>{O(e.millisecond(0),R.value)},S=e=>{O(b.value,e.millisecond(0))},T=e=>{const t=e.map((e=>Au(e).locale(l.value))),n=P(t);return t[0].isSame(n[0])&&t[1].isSame(n[1])},O=(e,n)=>{t("pick",[e,n],!0)},I=(0,i.EW)((()=>b.value>R.value)),A=(0,s.KR)([0,2]),L=(e,n)=>{t("select-range",e,n,"min"),A.value=[e,n]},M=(0,i.EW)((()=>C.value?11:8)),N=(e,n)=>{t("select-range",e,n,"max");const o=(0,s.R1)(M);A.value=[e+o,n+o]},W=e=>{const t=C.value?[0,3,6,11,14,17]:[0,3,8,11],n=["hours","minutes"].concat(C.value?["seconds"]:[]),o=t.indexOf(A.value[0]),r=(o+e+t.length)%t.length,l=t.length/2;r{const t=e.code,{left:n,right:o,up:r,down:l}=aa;if([n,o].includes(t)){const o=t===n?-1:1;return W(o),void e.preventDefault()}if([r,l].includes(t)){const n=t===r?-1:1,o=A.value[0]{const n=f?f(e):[],r="start"===e,l=t||(r?R.value:b.value),a=l.hour(),i=r?o(a+1,23):o(0,a-1);return rK(n,i)},$=(e,t,n)=>{const r=v?v(e,t):[],l="start"===t,a=n||(l?R.value:b.value),i=a.hour();if(e!==i)return r;const s=a.minute(),u=l?o(s+1,59):o(0,s-1);return rK(r,u)},B=(e,t,n,r)=>{const l=h?h(e,t,n):[],a="start"===n,i=r||(a?R.value:b.value),s=i.hour(),u=i.minute();if(e!==s||t!==u)return l;const c=i.second(),d=a?o(c+1,59):o(0,c-1);return rK(l,d)},P=([e,t])=>[U(e,"start",!0,t),U(t,"end",!1,e)],{getAvailableHours:K,getAvailableMinutes:j,getAvailableSeconds:V}=YE(F,$,B),{timePickerOptions:X,getAvailableTime:U,onSetOption:H}=zE({getAvailableHours:K,getAvailableMinutes:j,getAvailableSeconds:V}),z=e=>e?(0,u.cy)(e)?e.map((e=>Au(e,n.format).locale(l.value))):Au(e,n.format).locale(l.value):null,G=e=>e?(0,u.cy)(e)?e.map((e=>e.format(n.format))):e.format(n.format):null,q=()=>{if((0,u.cy)(m))return m.map((e=>Au(e).locale(l.value)));const e=Au(m).locale(l.value);return[e,e.add(60,"m")]};return t("set-picker-option",["formatToString",G]),t("set-picker-option",["parseUserInput",z]),t("set-picker-option",["isValidValue",T]),t("set-picker-option",["handleKeydownInput",D]),t("set-picker-option",["getDefaultValue",q]),t("set-picker-option",["getRangeAvailableTime",P]),(e,t)=>e.actualVisible?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)([(0,s.R1)(a).b("range-picker"),(0,s.R1)(c).b("panel")])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("range-picker","content"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("range-picker","cell"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("range-picker","header"))},(0,u.v_)((0,s.R1)(r)("el.datepicker.startTime")),3),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(g))},[(0,i.bF)(uC,{ref:"minSpinner",role:"start","show-seconds":(0,s.R1)(C),"am-pm-mode":(0,s.R1)(k),"arrow-control":(0,s.R1)(p),"spinner-date":(0,s.R1)(b),"disabled-hours":F,"disabled-minutes":$,"disabled-seconds":B,onChange:_,onSetOption:(0,s.R1)(H),onSelectRange:L},null,8,["show-seconds","am-pm-mode","arrow-control","spinner-date","onSetOption"])],2)],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("range-picker","cell"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("range-picker","header"))},(0,u.v_)((0,s.R1)(r)("el.datepicker.endTime")),3),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(y))},[(0,i.bF)(uC,{ref:"maxSpinner",role:"end","show-seconds":(0,s.R1)(C),"am-pm-mode":(0,s.R1)(k),"arrow-control":(0,s.R1)(p),"spinner-date":(0,s.R1)(R),"disabled-hours":F,"disabled-minutes":$,"disabled-seconds":B,onChange:S,onSetOption:(0,s.R1)(H),onSelectRange:N},null,8,["show-seconds","am-pm-mode","arrow-control","spinner-date","onSetOption"])],2)],2)],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).be("panel","footer"))},[(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(a).be("panel","btn"),"cancel"]),onClick:t[0]||(t[0]=e=>E())},(0,u.v_)((0,s.R1)(r)("el.datepicker.cancel")),3),(0,i.Lk)("button",{type:"button",class:(0,u.C4)([(0,s.R1)(a).be("panel","btn"),"confirm"]),disabled:(0,s.R1)(I),onClick:t[1]||(t[1]=e=>x())},(0,u.v_)((0,s.R1)(r)("el.datepicker.confirm")),11,aK)],2)],2)):(0,i.Q3)("v-if",!0)}});var sK=J(iK,[["__file","panel-time-range.vue"]]);Au.extend(Yw);var uK=(0,i.pM)({name:"ElTimePicker",install:null,props:{...aE,isRange:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,t){const n=(0,s.KR)(),[o,r]=e.isRange?["timerange",sK]:["time",dC],l=e=>t.emit("update:modelValue",e);return(0,i.Gt)("ElPopperOptions",e.popperOptions),t.expose({focus:e=>{var t;null==(t=n.value)||t.handleFocusInput(e)},blur:e=>{var t;null==(t=n.value)||t.handleBlurInput(e)},handleOpen:()=>{var e;null==(e=n.value)||e.handleOpen()},handleClose:()=>{var e;null==(e=n.value)||e.handleClose()}}),()=>{var t;const a=null!=(t=e.format)?t:JE;return(0,i.bF)(qC,(0,i.v6)(e,{ref:n,type:o,format:a,"onUpdate:modelValue":l}),{default:e=>(0,i.bF)(r,e,null)})}}});const cK=uK;cK.install=e=>{e.component(cK.name,cK)};const dK=cK,pK=(0,H.b_)({format:{type:String,default:"HH:mm"},modelValue:String,disabled:Boolean,editable:{type:Boolean,default:!0},effect:{type:String,default:"light"},clearable:{type:Boolean,default:!0},size:Vn.mU,placeholder:String,start:{type:String,default:"09:00"},end:{type:String,default:"18:00"},step:{type:String,default:"00:30"},minTime:String,maxTime:String,name:String,prefixIcon:{type:(0,H.jq)([String,Object]),default:()=>Qe},clearIcon:{type:(0,H.jq)([String,Object]),default:()=>qe}}),fK=e=>{const t=(e||"").split(":");if(t.length>=2){let n=Number.parseInt(t[0],10);const o=Number.parseInt(t[1],10),r=e.toUpperCase();return r.includes("AM")&&12===n?n=0:r.includes("PM")&&12!==n&&(n+=12),{hours:n,minutes:o}}return null},vK=(e,t)=>{const n=fK(e);if(!n)return-1;const o=fK(t);if(!o)return-1;const r=n.minutes+60*n.hours,l=o.minutes+60*o.hours;return r===l?0:r>l?1:-1},hK=e=>`${e}`.padStart(2,"0"),mK=e=>`${hK(e.hours)}:${hK(e.minutes)}`,gK=(e,t)=>{const n=fK(e);if(!n)return"";const o=fK(t);if(!o)return"";const r={hours:n.hours,minutes:n.minutes};return r.minutes+=o.minutes,r.hours+=o.hours,r.hours+=Math.floor(r.minutes/60),r.minutes=r.minutes%60,mK(r)},yK=(0,i.pM)({name:"ElTimeSelect"}),bK=(0,i.pM)({...yK,props:pK,emits:["change","blur","focus","update:modelValue"],setup(e,{expose:t}){const n=e;Au.extend(Yw);const{Option:o}=GI,r=(0,ee.DU)("input"),l=(0,s.KR)(),a=io(),{lang:c}=(0,zu.Ym)(),d=(0,i.EW)((()=>n.modelValue)),p=(0,i.EW)((()=>{const e=fK(n.start);return e?mK(e):null})),f=(0,i.EW)((()=>{const e=fK(n.end);return e?mK(e):null})),v=(0,i.EW)((()=>{const e=fK(n.step);return e?mK(e):null})),h=(0,i.EW)((()=>{const e=fK(n.minTime||"");return e?mK(e):null})),m=(0,i.EW)((()=>{const e=fK(n.maxTime||"");return e?mK(e):null})),g=(0,i.EW)((()=>{const e=[];if(n.start&&n.end&&n.step){let t,o=p.value;while(o&&f.value&&vK(o,f.value)<=0)t=Au(o,"HH:mm").locale(c.value).format(n.format),e.push({value:t,disabled:vK(o,h.value||"-1:-1")<=0||vK(o,m.value||"100:100")>=0}),o=gK(o,v.value)}return e})),y=()=>{var e,t;null==(t=null==(e=l.value)?void 0:e.blur)||t.call(e)},b=()=>{var e,t;null==(t=null==(e=l.value)?void 0:e.focus)||t.call(e)};return t({blur:y,focus:b}),(e,t)=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(GI),{ref_key:"select",ref:l,"model-value":(0,s.R1)(d),disabled:(0,s.R1)(a),clearable:e.clearable,"clear-icon":e.clearIcon,size:e.size,effect:e.effect,placeholder:e.placeholder,"default-first-option":"",filterable:e.editable,"onUpdate:modelValue":t[0]||(t[0]=t=>e.$emit("update:modelValue",t)),onChange:t[1]||(t[1]=t=>e.$emit("change",t)),onBlur:t[2]||(t[2]=t=>e.$emit("blur",t)),onFocus:t[3]||(t[3]=t=>e.$emit("focus",t))},{prefix:(0,i.k6)((()=>[e.prefixIcon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(r).e("prefix-icon"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.prefixIcon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)])),default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(g),(e=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(o),{key:e.value,label:e.value,value:e.value,disabled:e.disabled},null,8,["label","value","disabled"])))),128))])),_:1},8,["model-value","disabled","clearable","clear-icon","size","effect","placeholder","filterable"]))}});var RK=J(bK,[["__file","time-select.vue"]]);RK.install=e=>{e.component(RK.name,RK)};const wK=RK,EK=wK,CK=(0,i.pM)({name:"ElTimeline",setup(e,{slots:t}){const n=(0,ee.DU)("timeline");return(0,i.Gt)("timeline",t),()=>(0,i.h)("ul",{class:[n.b()]},[(0,i.RG)(t,"default")])}}),kK=(0,H.b_)({timestamp:{type:String,default:""},hideTimestamp:{type:Boolean,default:!1},center:{type:Boolean,default:!1},placement:{type:String,values:["top","bottom"],default:"bottom"},type:{type:String,values:["primary","success","warning","danger","info"],default:""},color:{type:String,default:""},size:{type:String,values:["normal","large"],default:"normal"},icon:{type:en},hollow:{type:Boolean,default:!1}}),xK=(0,i.pM)({name:"ElTimelineItem"}),_K=(0,i.pM)({...xK,props:kK,setup(e){const t=e,n=(0,ee.DU)("timeline-item"),o=(0,i.EW)((()=>[n.e("node"),n.em("node",t.size||""),n.em("node",t.type||""),n.is("hollow",t.hollow)]));return(e,t)=>((0,i.uX)(),(0,i.CE)("li",{class:(0,u.C4)([(0,s.R1)(n).b(),{[(0,s.R1)(n).e("center")]:e.center}])},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("tail"))},null,2),e.$slots.dot?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)((0,s.R1)(o)),style:(0,u.Tr)({backgroundColor:e.color})},[e.icon?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(n).e("icon"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.icon)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],6)),e.$slots.dot?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(n).e("dot"))},[(0,i.RG)(e.$slots,"dot")],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("wrapper"))},[e.hideTimestamp||"top"!==e.placement?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)([(0,s.R1)(n).e("timestamp"),(0,s.R1)(n).is("top")])},(0,u.v_)(e.timestamp),3)),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(n).e("content"))},[(0,i.RG)(e.$slots,"default")],2),e.hideTimestamp||"bottom"!==e.placement?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)([(0,s.R1)(n).e("timestamp"),(0,s.R1)(n).is("bottom")])},(0,u.v_)(e.timestamp),3))],2)],2))}});var SK=J(_K,[["__file","timeline-item.vue"]]);const TK=pe(CK,{TimelineItem:SK}),OK=he(SK),IK=(0,H.b_)({nowrap:Boolean});var AK=(e=>(e["top"]="top",e["bottom"]="bottom",e["left"]="left",e["right"]="right",e))(AK||{});const LK=Object.values(AK),MK=(0,H.b_)({width:{type:Number,default:10},height:{type:Number,default:10},style:{type:(0,H.jq)(Object),default:null}}),NK=(0,H.b_)({side:{type:(0,H.jq)(String),values:LK,required:!0}}),WK=["absolute","fixed"],DK=["top-start","top-end","top","bottom-start","bottom-end","bottom","left-start","left-end","left","right-start","right-end","right"],FK=(0,H.b_)({ariaLabel:String,arrowPadding:{type:(0,H.jq)(Number),default:5},effect:{type:String,default:""},contentClass:String,placement:{type:(0,H.jq)(String),values:DK,default:"bottom"},reference:{type:(0,H.jq)(Object),default:null},offset:{type:Number,default:8},strategy:{type:(0,H.jq)(String),values:WK,default:"absolute"},showArrow:{type:Boolean,default:!1}}),$K=(0,H.b_)({delayDuration:{type:Number,default:300},defaultOpen:Boolean,open:{type:Boolean,default:void 0},onOpenChange:{type:(0,H.jq)(Function)},"onUpdate:open":{type:(0,H.jq)(Function)}}),BK={type:(0,H.jq)(Function)},PK=(0,H.b_)({onBlur:BK,onClick:BK,onFocus:BK,onMouseDown:BK,onMouseEnter:BK,onMouseLeave:BK}),KK=(0,H.b_)({...$K,...MK,...PK,...FK,alwaysOn:Boolean,fullTransition:Boolean,transitionProps:{type:(0,H.jq)(Object),default:null},teleported:Boolean,to:{type:(0,H.jq)(String),default:"body"}}),jK=Symbol("tooltipV2"),VK=Symbol("tooltipV2Content"),XK="tooltip_v2.open",UK=(0,i.pM)({name:"ElTooltipV2Root"}),HK=(0,i.pM)({...UK,props:$K,setup(e,{expose:t}){const n=e,o=(0,s.KR)(n.defaultOpen),r=(0,s.KR)(null),l=(0,i.EW)({get:()=>(0,z.Xj)(n.open)?o.value:n.open,set:e=>{var t;o.value=e,null==(t=n["onUpdate:open"])||t.call(n,e)}}),a=(0,i.EW)((()=>(0,z.Et)(n.delayDuration)&&n.delayDuration>0)),{start:u,stop:d}=(0,c.TO)((()=>{l.value=!0}),(0,i.EW)((()=>n.delayDuration)),{immediate:!1}),p=(0,ee.DU)("tooltip-v2"),f=no(),v=()=>{d(),l.value=!0},h=()=>{(0,s.R1)(a)?u():v()},m=v,g=()=>{d(),l.value=!1},y=e=>{var t;e&&(document.dispatchEvent(new CustomEvent(XK)),m()),null==(t=n.onOpenChange)||t.call(n,e)};return(0,i.wB)(l,y),(0,i.sV)((()=>{document.addEventListener(XK,g)})),(0,i.xo)((()=>{d(),document.removeEventListener(XK,g)})),(0,i.Gt)(jK,{contentId:f,triggerRef:r,ns:p,onClose:g,onDelayOpen:h,onOpen:m}),t({onOpen:m,onClose:g}),(e,t)=>(0,i.RG)(e.$slots,"default",{open:(0,s.R1)(l)})}});var zK=J(HK,[["__file","root.vue"]]);const GK=(0,i.pM)({name:"ElTooltipV2Arrow"}),qK=(0,i.pM)({...GK,props:{...MK,...NK},setup(e){const t=e,{ns:n}=(0,i.WQ)(jK),{arrowRef:o}=(0,i.WQ)(VK),r=(0,i.EW)((()=>{const{style:e,width:o,height:r}=t,l=n.namespace.value;return{[`--${l}-tooltip-v2-arrow-width`]:`${o}px`,[`--${l}-tooltip-v2-arrow-height`]:`${r}px`,[`--${l}-tooltip-v2-arrow-border-width`]:o/2+"px",[`--${l}-tooltip-v2-arrow-cover-width`]:o/2-1,...e||{}}}));return(e,t)=>((0,i.uX)(),(0,i.CE)("span",{ref_key:"arrowRef",ref:o,style:(0,u.Tr)((0,s.R1)(r)),class:(0,u.C4)((0,s.R1)(n).e("arrow"))},null,6))}});var YK=J(qK,[["__file","arrow.vue"]]);const QK=Math.min,ZK=Math.max,JK=Math.round,ej=Math.floor,tj=e=>({x:e,y:e}),nj={left:"right",right:"left",bottom:"top",top:"bottom"},oj={start:"end",end:"start"};function rj(e,t,n){return ZK(e,QK(t,n))}function lj(e,t){return"function"===typeof e?e(t):e}function aj(e){return e.split("-")[0]}function ij(e){return e.split("-")[1]}function sj(e){return"x"===e?"y":"x"}function uj(e){return"y"===e?"height":"width"}function cj(e){return["top","bottom"].includes(aj(e))?"y":"x"}function dj(e){return sj(cj(e))}function pj(e,t,n){void 0===n&&(n=!1);const o=ij(e),r=dj(e),l=uj(r);let a="x"===r?o===(n?"end":"start")?"right":"left":"start"===o?"bottom":"top";return t.reference[l]>t.floating[l]&&(a=gj(a)),[a,gj(a)]}function fj(e){const t=gj(e);return[vj(e),t,vj(t)]}function vj(e){return e.replace(/start|end/g,(e=>oj[e]))}function hj(e,t,n){const o=["left","right"],r=["right","left"],l=["top","bottom"],a=["bottom","top"];switch(e){case"top":case"bottom":return n?t?r:o:t?o:r;case"left":case"right":return t?l:a;default:return[]}}function mj(e,t,n,o){const r=ij(e);let l=hj(aj(e),"start"===n,o);return r&&(l=l.map((e=>e+"-"+r)),t&&(l=l.concat(l.map(vj)))),l}function gj(e){return e.replace(/left|right|bottom|top/g,(e=>nj[e]))}function yj(e){return{top:0,right:0,bottom:0,left:0,...e}}function bj(e){return"number"!==typeof e?yj(e):{top:e,right:e,bottom:e,left:e}}function Rj(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function wj(e,t,n){let{reference:o,floating:r}=e;const l=cj(t),a=dj(t),i=uj(a),s=aj(t),u="y"===l,c=o.x+o.width/2-r.width/2,d=o.y+o.height/2-r.height/2,p=o[i]/2-r[i]/2;let f;switch(s){case"top":f={x:c,y:o.y-r.height};break;case"bottom":f={x:c,y:o.y+o.height};break;case"right":f={x:o.x+o.width,y:d};break;case"left":f={x:o.x-r.width,y:d};break;default:f={x:o.x,y:o.y}}switch(ij(t)){case"start":f[a]-=p*(n&&u?-1:1);break;case"end":f[a]+=p*(n&&u?-1:1);break}return f}const Ej=async(e,t,n)=>{const{placement:o="bottom",strategy:r="absolute",middleware:l=[],platform:a}=n,i=l.filter(Boolean),s=await(null==a.isRTL?void 0:a.isRTL(t));let u=await a.getElementRects({reference:e,floating:t,strategy:r}),{x:c,y:d}=wj(u,o,s),p=o,f={},v=0;for(let h=0;h({name:"arrow",options:e,async fn(t){const{x:n,y:o,placement:r,rects:l,platform:a,elements:i,middlewareData:s}=t,{element:u,padding:c=0}=lj(e,t)||{};if(null==u)return{};const d=bj(c),p={x:n,y:o},f=dj(r),v=uj(f),h=await a.getDimensions(u),m="y"===f,g=m?"top":"left",y=m?"bottom":"right",b=m?"clientHeight":"clientWidth",R=l.reference[v]+l.reference[f]-p[f]-l.floating[v],w=p[f]-l.reference[f],E=await(null==a.getOffsetParent?void 0:a.getOffsetParent(u));let C=E?E[b]:0;C&&await(null==a.isElement?void 0:a.isElement(E))||(C=i.floating[b]||l.floating[v]);const k=R/2-w/2,x=C/2-h[v]/2-1,_=QK(d[g],x),S=QK(d[y],x),T=_,O=C-h[v]-S,I=C/2-h[v]/2+k,A=rj(T,I,O),L=!s.arrow&&null!=ij(r)&&I!==A&&l.reference[v]/2-(Ie<=0))){var x,_;const e=((null==(x=l.flip)?void 0:x.index)||0)+1,t=w[e];if(t)return{data:{index:e,overflows:k},reset:{placement:t}};let n=null==(_=k.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:_.placement;if(!n)switch(f){case"bestFit":{var S;const e=null==(S=k.map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:S[0];e&&(n=e);break}case"initialPlacement":n=i;break}if(r!==n)return{reset:{placement:n}}}return{}}}};async function _j(e,t){const{placement:n,platform:o,elements:r}=e,l=await(null==o.isRTL?void 0:o.isRTL(r.floating)),a=aj(n),i=ij(n),s="y"===cj(n),u=["left","top"].includes(a)?-1:1,c=l&&s?-1:1,d=lj(t,e);let{mainAxis:p,crossAxis:f,alignmentAxis:v}="number"===typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return i&&"number"===typeof v&&(f="end"===i?-1*v:v),s?{x:f*c,y:p*u}:{x:p*u,y:f*c}}const Sj=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var n,o;const{x:r,y:l,placement:a,middlewareData:i}=t,s=await _j(t,e);return a===(null==(n=i.offset)?void 0:n.placement)&&null!=(o=i.arrow)&&o.alignmentOffset?{}:{x:r+s.x,y:l+s.y,data:{...s,placement:a}}}}},Tj=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:o,placement:r}=t,{mainAxis:l=!0,crossAxis:a=!1,limiter:i={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...s}=lj(e,t),u={x:n,y:o},c=await Cj(t,s),d=cj(aj(r)),p=sj(d);let f=u[p],v=u[d];if(l){const e="y"===p?"top":"left",t="y"===p?"bottom":"right",n=f+c[e],o=f-c[t];f=rj(n,f,o)}if(a){const e="y"===d?"top":"left",t="y"===d?"bottom":"right",n=v+c[e],o=v-c[t];v=rj(n,v,o)}const h=i.fn({...t,[p]:f,[d]:v});return{...h,data:{x:h.x-n,y:h.y-o}}}}};function Oj(e){return Lj(e)?(e.nodeName||"").toLowerCase():"#document"}function Ij(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function Aj(e){var t;return null==(t=(Lj(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Lj(e){return e instanceof Node||e instanceof Ij(e).Node}function Mj(e){return e instanceof Element||e instanceof Ij(e).Element}function Nj(e){return e instanceof HTMLElement||e instanceof Ij(e).HTMLElement}function Wj(e){return"undefined"!==typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof Ij(e).ShadowRoot)}function Dj(e){const{overflow:t,overflowX:n,overflowY:o,display:r}=jj(e);return/auto|scroll|overlay|hidden|clip/.test(t+o+n)&&!["inline","contents"].includes(r)}function Fj(e){return["table","td","th"].includes(Oj(e))}function $j(e){const t=Pj(),n=jj(e);return"none"!==n.transform||"none"!==n.perspective||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function Bj(e){let t=Xj(e);while(Nj(t)&&!Kj(t)){if($j(t))return t;t=Xj(t)}return null}function Pj(){return!("undefined"===typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function Kj(e){return["html","body","#document"].includes(Oj(e))}function jj(e){return Ij(e).getComputedStyle(e)}function Vj(e){return Mj(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Xj(e){if("html"===Oj(e))return e;const t=e.assignedSlot||e.parentNode||Wj(e)&&e.host||Aj(e);return Wj(t)?t.host:t}function Uj(e){const t=Xj(e);return Kj(t)?e.ownerDocument?e.ownerDocument.body:e.body:Nj(t)&&Dj(t)?t:Uj(t)}function Hj(e,t,n){var o;void 0===t&&(t=[]),void 0===n&&(n=!0);const r=Uj(e),l=r===(null==(o=e.ownerDocument)?void 0:o.body),a=Ij(r);return l?t.concat(a,a.visualViewport||[],Dj(r)?r:[],a.frameElement&&n?Hj(a.frameElement):[]):t.concat(r,Hj(r,[],n))}function zj(e){const t=jj(e);let n=parseFloat(t.width)||0,o=parseFloat(t.height)||0;const r=Nj(e),l=r?e.offsetWidth:n,a=r?e.offsetHeight:o,i=JK(n)!==l||JK(o)!==a;return i&&(n=l,o=a),{width:n,height:o,$:i}}function Gj(e){return Mj(e)?e:e.contextElement}function qj(e){const t=Gj(e);if(!Nj(t))return tj(1);const n=t.getBoundingClientRect(),{width:o,height:r,$:l}=zj(t);let a=(l?JK(n.width):n.width)/o,i=(l?JK(n.height):n.height)/r;return a&&Number.isFinite(a)||(a=1),i&&Number.isFinite(i)||(i=1),{x:a,y:i}}const Yj=tj(0);function Qj(e){const t=Ij(e);return Pj()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:Yj}function Zj(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==Ij(e))&&t}function Jj(e,t,n,o){void 0===t&&(t=!1),void 0===n&&(n=!1);const r=e.getBoundingClientRect(),l=Gj(e);let a=tj(1);t&&(o?Mj(o)&&(a=qj(o)):a=qj(e));const i=Zj(l,n,o)?Qj(l):tj(0);let s=(r.left+i.x)/a.x,u=(r.top+i.y)/a.y,c=r.width/a.x,d=r.height/a.y;if(l){const e=Ij(l),t=o&&Mj(o)?Ij(o):o;let n=e,r=n.frameElement;while(r&&o&&t!==n){const e=qj(r),t=r.getBoundingClientRect(),o=jj(r),l=t.left+(r.clientLeft+parseFloat(o.paddingLeft))*e.x,a=t.top+(r.clientTop+parseFloat(o.paddingTop))*e.y;s*=e.x,u*=e.y,c*=e.x,d*=e.y,s+=l,u+=a,n=Ij(r),r=n.frameElement}}return Rj({width:c,height:d,x:s,y:u})}const eV=[":popover-open",":modal"];function tV(e){return eV.some((t=>{try{return e.matches(t)}catch(n){return!1}}))}function nV(e){let{elements:t,rect:n,offsetParent:o,strategy:r}=e;const l="fixed"===r,a=Aj(o),i=!!t&&tV(t.floating);if(o===a||i&&l)return n;let s={scrollLeft:0,scrollTop:0},u=tj(1);const c=tj(0),d=Nj(o);if((d||!d&&!l)&&(("body"!==Oj(o)||Dj(a))&&(s=Vj(o)),Nj(o))){const e=Jj(o);u=qj(o),c.x=e.x+o.clientLeft,c.y=e.y+o.clientTop}return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-s.scrollLeft*u.x+c.x,y:n.y*u.y-s.scrollTop*u.y+c.y}}function oV(e){return Array.from(e.getClientRects())}function rV(e){return Jj(Aj(e)).left+Vj(e).scrollLeft}function lV(e){const t=Aj(e),n=Vj(e),o=e.ownerDocument.body,r=ZK(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),l=ZK(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight);let a=-n.scrollLeft+rV(e);const i=-n.scrollTop;return"rtl"===jj(o).direction&&(a+=ZK(t.clientWidth,o.clientWidth)-r),{width:r,height:l,x:a,y:i}}function aV(e,t){const n=Ij(e),o=Aj(e),r=n.visualViewport;let l=o.clientWidth,a=o.clientHeight,i=0,s=0;if(r){l=r.width,a=r.height;const e=Pj();(!e||e&&"fixed"===t)&&(i=r.offsetLeft,s=r.offsetTop)}return{width:l,height:a,x:i,y:s}}function iV(e,t){const n=Jj(e,!0,"fixed"===t),o=n.top+e.clientTop,r=n.left+e.clientLeft,l=Nj(e)?qj(e):tj(1),a=e.clientWidth*l.x,i=e.clientHeight*l.y,s=r*l.x,u=o*l.y;return{width:a,height:i,x:s,y:u}}function sV(e,t,n){let o;if("viewport"===t)o=aV(e,n);else if("document"===t)o=lV(Aj(e));else if(Mj(t))o=iV(t,n);else{const n=Qj(e);o={...t,x:t.x-n.x,y:t.y-n.y}}return Rj(o)}function uV(e,t){const n=Xj(e);return!(n===t||!Mj(n)||Kj(n))&&("fixed"===jj(n).position||uV(n,t))}function cV(e,t){const n=t.get(e);if(n)return n;let o=Hj(e,[],!1).filter((e=>Mj(e)&&"body"!==Oj(e))),r=null;const l="fixed"===jj(e).position;let a=l?Xj(e):e;while(Mj(a)&&!Kj(a)){const t=jj(a),n=$j(a);n||"fixed"!==t.position||(r=null);const i=l?!n&&!r:!n&&"static"===t.position&&!!r&&["absolute","fixed"].includes(r.position)||Dj(a)&&!n&&uV(e,a);i?o=o.filter((e=>e!==a)):r=t,a=Xj(a)}return t.set(e,o),o}function dV(e){let{element:t,boundary:n,rootBoundary:o,strategy:r}=e;const l="clippingAncestors"===n?cV(t,this._c):[].concat(n),a=[...l,o],i=a[0],s=a.reduce(((e,n)=>{const o=sV(t,n,r);return e.top=ZK(o.top,e.top),e.right=QK(o.right,e.right),e.bottom=QK(o.bottom,e.bottom),e.left=ZK(o.left,e.left),e}),sV(t,i,r));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}}function pV(e){const{width:t,height:n}=zj(e);return{width:t,height:n}}function fV(e,t,n){const o=Nj(t),r=Aj(t),l="fixed"===n,a=Jj(e,!0,l,t);let i={scrollLeft:0,scrollTop:0};const s=tj(0);if(o||!o&&!l)if(("body"!==Oj(t)||Dj(r))&&(i=Vj(t)),o){const e=Jj(t,!0,l,t);s.x=e.x+t.clientLeft,s.y=e.y+t.clientTop}else r&&(s.x=rV(r));const u=a.left+i.scrollLeft-s.x,c=a.top+i.scrollTop-s.y;return{x:u,y:c,width:a.width,height:a.height}}function vV(e,t){return Nj(e)&&"fixed"!==jj(e).position?t?t(e):e.offsetParent:null}function hV(e,t){const n=Ij(e);if(!Nj(e)||tV(e))return n;let o=vV(e,t);while(o&&Fj(o)&&"static"===jj(o).position)o=vV(o,t);return o&&("html"===Oj(o)||"body"===Oj(o)&&"static"===jj(o).position&&!$j(o))?n:o||Bj(e)||n}const mV=async function(e){const t=this.getOffsetParent||hV,n=this.getDimensions;return{reference:fV(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,...await n(e.floating)}}};function gV(e){return"rtl"===jj(e).direction}const yV={convertOffsetParentRelativeRectToViewportRelativeRect:nV,getDocumentElement:Aj,getClippingRect:dV,getOffsetParent:hV,getElementRects:mV,getClientRects:oV,getDimensions:pV,getScale:qj,isElement:Mj,isRTL:gV};function bV(e,t){let n,o=null;const r=Aj(e);function l(){var e;clearTimeout(n),null==(e=o)||e.disconnect(),o=null}function a(i,s){void 0===i&&(i=!1),void 0===s&&(s=1),l();const{left:u,top:c,width:d,height:p}=e.getBoundingClientRect();if(i||t(),!d||!p)return;const f=ej(c),v=ej(r.clientWidth-(u+d)),h=ej(r.clientHeight-(c+p)),m=ej(u),g=-f+"px "+-v+"px "+-h+"px "+-m+"px",y={rootMargin:g,threshold:ZK(0,QK(1,s))||1};let b=!0;function R(e){const t=e[0].intersectionRatio;if(t!==s){if(!b)return a();t?a(!1,t):n=setTimeout((()=>{a(!1,1e-7)}),100)}b=!1}try{o=new IntersectionObserver(R,{...y,root:r.ownerDocument})}catch(w){o=new IntersectionObserver(R,y)}o.observe(e)}return a(!0),l}function RV(e,t,n,o){void 0===o&&(o={});const{ancestorScroll:r=!0,ancestorResize:l=!0,elementResize:a="function"===typeof ResizeObserver,layoutShift:i="function"===typeof IntersectionObserver,animationFrame:s=!1}=o,u=Gj(e),c=r||l?[...u?Hj(u):[],...Hj(t)]:[];c.forEach((e=>{r&&e.addEventListener("scroll",n,{passive:!0}),l&&e.addEventListener("resize",n)}));const d=u&&i?bV(u,n):null;let p,f=-1,v=null;a&&(v=new ResizeObserver((e=>{let[o]=e;o&&o.target===u&&v&&(v.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame((()=>{var e;null==(e=v)||e.observe(t)}))),n()})),u&&!s&&v.observe(u),v.observe(t));let h=s?Jj(e):null;function m(){const t=Jj(e);!h||t.x===h.x&&t.y===h.y&&t.width===h.width&&t.height===h.height||n(),h=t,p=requestAnimationFrame(m)}return s&&m(),n(),()=>{var e;c.forEach((e=>{r&&e.removeEventListener("scroll",n),l&&e.removeEventListener("resize",n)})),null==d||d(),null==(e=v)||e.disconnect(),v=null,s&&cancelAnimationFrame(p)}}const wV=Tj,EV=xj,CV=kj,kV=(e,t,n)=>{const o=new Map,r={platform:yV,...n},l={...r.platform,_c:o};return Ej(e,t,{...r,platform:l})},xV=((0,H.b_)({}),e=>{if(!c.oc)return;if(!e)return e;const t=p(e);return t||((0,s.i9)(e)?t:e)}),_V=({middleware:e,placement:t,strategy:n})=>{const o=(0,s.KR)(),r=(0,s.KR)(),l=(0,s.KR)(),a=(0,s.KR)(),u=(0,s.KR)({}),d={x:l,y:a,placement:t,strategy:n,middlewareData:u},f=async()=>{if(!c.oc)return;const l=xV(o),a=p(r);if(!l||!a)return;const i=await kV(l,a,{placement:(0,s.R1)(t),strategy:(0,s.R1)(n),middleware:(0,s.R1)(e)});(0,Ce.YD)(d).forEach((e=>{d[e].value=i[e]}))};return(0,i.sV)((()=>{(0,i.nT)((()=>{f()}))})),{...d,update:f,referenceRef:o,contentRef:r}},SV=({arrowRef:e,padding:t})=>({name:"arrow",options:{element:e,padding:t},fn(n){const o=(0,s.R1)(e);return o?CV({element:o,padding:t}).fn(n):{}}}),TV=(0,H.b_)({style:{type:(0,H.jq)([String,Object,Array]),default:()=>({})}}),OV=(0,i.pM)({name:"ElVisuallyHidden"}),IV=(0,i.pM)({...OV,props:TV,setup(e){const t=e,n=(0,i.EW)((()=>[t.style,{position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}]));return(e,t)=>((0,i.uX)(),(0,i.CE)("span",(0,i.v6)(e.$attrs,{style:(0,s.R1)(n)}),[(0,i.RG)(e.$slots,"default")],16))}});var AV=J(IV,[["__file","visual-hidden.vue"]]);const LV=["data-side"],MV=(0,i.pM)({name:"ElTooltipV2Content"}),NV=(0,i.pM)({...MV,props:{...FK,...IK},setup(e){const t=e,{triggerRef:n,contentId:o}=(0,i.WQ)(jK),r=(0,s.KR)(t.placement),l=(0,s.KR)(t.strategy),a=(0,s.KR)(null),{referenceRef:c,contentRef:d,middlewareData:p,x:f,y:v,update:h}=_V({placement:r,strategy:l,middleware:(0,i.EW)((()=>{const e=[Sj(t.offset)];return t.showArrow&&e.push(SV({arrowRef:a})),e}))}),m=(0,Za.YK)().nextZIndex(),g=(0,ee.DU)("tooltip-v2"),y=(0,i.EW)((()=>r.value.split("-")[0])),b=(0,i.EW)((()=>({position:(0,s.R1)(l),top:`${(0,s.R1)(v)||0}px`,left:`${(0,s.R1)(f)||0}px`,zIndex:m}))),R=(0,i.EW)((()=>{if(!t.showArrow)return{};const{arrow:e}=(0,s.R1)(p);return{[`--${g.namespace.value}-tooltip-v2-arrow-x`]:`${null==e?void 0:e.x}px`||"",[`--${g.namespace.value}-tooltip-v2-arrow-y`]:`${null==e?void 0:e.y}px`||""}})),w=(0,i.EW)((()=>[g.e("content"),g.is("dark","dark"===t.effect),g.is((0,s.R1)(l)),t.contentClass]));return(0,i.wB)(a,(()=>h())),(0,i.wB)((()=>t.placement),(e=>r.value=e)),(0,i.sV)((()=>{(0,i.wB)((()=>t.reference||n.value),(e=>{c.value=e||void 0}),{immediate:!0})})),(0,i.Gt)(VK,{arrowRef:a}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"contentRef",ref:d,style:(0,u.Tr)((0,s.R1)(b)),"data-tooltip-v2-root":""},[e.nowrap?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("div",{key:0,"data-side":(0,s.R1)(y),class:(0,u.C4)((0,s.R1)(w))},[(0,i.RG)(e.$slots,"default",{contentStyle:(0,s.R1)(b),contentClass:(0,s.R1)(w)}),(0,i.bF)((0,s.R1)(AV),{id:(0,s.R1)(o),role:"tooltip"},{default:(0,i.k6)((()=>[e.ariaLabel?((0,i.uX)(),(0,i.CE)(i.FK,{key:0},[(0,i.eW)((0,u.v_)(e.ariaLabel),1)],64)):(0,i.RG)(e.$slots,"default",{key:1})])),_:3},8,["id"]),(0,i.RG)(e.$slots,"arrow",{style:(0,u.Tr)((0,s.R1)(R)),side:(0,s.R1)(y)})],10,LV))],4))}});var WV=J(NV,[["__file","content.vue"]]);const DV=(0,H.b_)({setRef:{type:(0,H.jq)(Function),required:!0},onlyChild:Boolean});var FV=(0,i.pM)({props:DV,setup(e,{slots:t}){const n=(0,s.KR)(),o=Ck(n,(t=>{t?e.setRef(t.nextElementSibling):e.setRef(null)}));return()=>{var n;const[r]=(null==(n=t.default)?void 0:n.call(t))||[],l=e.onlyChild?Ic(r.children):r.children;return(0,i.bF)(i.FK,{ref:o},[l])}}});const $V=(0,i.pM)({name:"ElTooltipV2Trigger"}),BV=(0,i.pM)({...$V,props:{...IK,...PK},setup(e){const t=e,{onClose:n,onOpen:o,onDelayOpen:r,triggerRef:l,contentId:a}=(0,i.WQ)(jK);let u=!1;const c=e=>{l.value=e},d=()=>{u=!1},p=Ea(t.onMouseEnter,r),f=Ea(t.onMouseLeave,n),v=Ea(t.onMouseDown,(()=>{n(),u=!0,document.addEventListener("mouseup",d,{once:!0})})),h=Ea(t.onFocus,(()=>{u||o()})),m=Ea(t.onBlur,n),g=Ea(t.onClick,(e=>{0===e.detail&&n()})),y={blur:m,click:g,focus:h,mousedown:v,mouseenter:p,mouseleave:f},b=(e,t,n)=>{e&&Object.entries(t).forEach((([t,o])=>{e[n](t,o)}))};return(0,i.wB)(l,((e,t)=>{b(e,y,"addEventListener"),b(t,y,"removeEventListener"),e&&e.setAttribute("aria-describedby",a.value)})),(0,i.xo)((()=>{b(l.value,y,"removeEventListener"),document.removeEventListener("mouseup",d)})),(e,t)=>e.nowrap?((0,i.uX)(),(0,i.Wv)((0,s.R1)(FV),{key:0,"set-ref":c,"only-child":""},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3})):((0,i.uX)(),(0,i.CE)("button",(0,i.v6)({key:1,ref_key:"triggerRef",ref:l},e.$attrs),[(0,i.RG)(e.$slots,"default")],16))}});var PV=J(BV,[["__file","trigger.vue"]]);const KV=(0,i.pM)({name:"ElTooltipV2"}),jV=(0,i.pM)({...KV,props:KK,setup(e){const t=e,n=(0,s.QW)(t),o=(0,s.Kh)(py(n,Object.keys(MK))),r=(0,s.Kh)(py(n,Object.keys(FK))),l=(0,s.Kh)(py(n,Object.keys($K))),a=(0,s.Kh)(py(n,Object.keys(PK)));return(e,t)=>((0,i.uX)(),(0,i.Wv)(zK,(0,u._B)((0,i.Ng)(l)),{default:(0,i.k6)((({open:t})=>[(0,i.bF)(PV,(0,i.v6)(a,{nowrap:""}),{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"trigger")])),_:3},16),((0,i.uX)(),(0,i.Wv)(i.Im,{to:e.to,disabled:!e.teleported},[e.fullTransition?((0,i.uX)(),(0,i.Wv)(ge.eB,(0,u._B)((0,i.v6)({key:0},e.transitionProps)),{default:(0,i.k6)((()=>[e.alwaysOn||t?((0,i.uX)(),(0,i.Wv)(WV,(0,u._B)((0,i.v6)({key:0},r)),{arrow:(0,i.k6)((({style:t,side:n})=>[e.showArrow?((0,i.uX)(),(0,i.Wv)(YK,(0,i.v6)({key:0},o,{style:t,side:n}),null,16,["style","side"])):(0,i.Q3)("v-if",!0)])),default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16)):(0,i.Q3)("v-if",!0)])),_:2},1040)):((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[e.alwaysOn||t?((0,i.uX)(),(0,i.Wv)(WV,(0,u._B)((0,i.v6)({key:0},r)),{arrow:(0,i.k6)((({style:t,side:n})=>[e.showArrow?((0,i.uX)(),(0,i.Wv)(YK,(0,i.v6)({key:0},o,{style:t,side:n}),null,16,["style","side"])):(0,i.Q3)("v-if",!0)])),default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},16)):(0,i.Q3)("v-if",!0)],64))],8,["to","disabled"]))])),_:3},16))}});var VV=J(jV,[["__file","tooltip.vue"]]);const XV=pe(VV),UV="left-check-change",HV="right-check-change",zV=(0,H.b_)({data:{type:(0,H.jq)(Array),default:()=>[]},titles:{type:(0,H.jq)(Array),default:()=>[]},buttonTexts:{type:(0,H.jq)(Array),default:()=>[]},filterPlaceholder:String,filterMethod:{type:(0,H.jq)(Function)},leftDefaultChecked:{type:(0,H.jq)(Array),default:()=>[]},rightDefaultChecked:{type:(0,H.jq)(Array),default:()=>[]},renderContent:{type:(0,H.jq)(Function)},modelValue:{type:(0,H.jq)(Array),default:()=>[]},format:{type:(0,H.jq)(Object),default:()=>({})},filterable:Boolean,props:{type:(0,H.jq)(Object),default:()=>Xn({label:"label",key:"key",disabled:"disabled"})},targetOrder:{type:String,values:["original","push","unshift"],default:"original"},validateEvent:{type:Boolean,default:!0}}),GV=(e,t)=>[e,t].every(u.cy)||(0,u.cy)(e)&&(0,Dn.A)(t),qV={[q]:(e,t,n)=>[e,n].every(u.cy)&&["left","right"].includes(t),[G]:e=>(0,u.cy)(e),[UV]:GV,[HV]:GV},YV="checked-change",QV=(0,H.b_)({data:zV.data,optionRender:{type:(0,H.jq)(Function)},placeholder:String,title:String,filterable:Boolean,format:zV.format,filterMethod:zV.filterMethod,defaultChecked:zV.leftDefaultChecked,props:zV.props}),ZV={[YV]:GV},JV=e=>{const t={label:"label",key:"key",disabled:"disabled"};return(0,i.EW)((()=>({...t,...e.props})))},eX=(e,t,n)=>{const o=JV(e),r=(0,i.EW)((()=>e.data.filter((n=>{if((0,u.Tn)(e.filterMethod))return e.filterMethod(t.query,n);{const e=String(n[o.value.label]||n[o.value.key]);return e.toLowerCase().includes(t.query.toLowerCase())}})))),l=(0,i.EW)((()=>r.value.filter((e=>!e[o.value.disabled])))),a=(0,i.EW)((()=>{const n=t.checked.length,o=e.data.length,{noChecked:r,hasChecked:l}=e.format;return r&&l?n>0?l.replace(/\${checked}/g,n.toString()).replace(/\${total}/g,o.toString()):r.replace(/\${total}/g,o.toString()):`${n}/${o}`})),s=(0,i.EW)((()=>{const e=t.checked.length;return e>0&&e{const e=l.value.map((e=>e[o.value.key]));t.allChecked=e.length>0&&e.every((e=>t.checked.includes(e)))},d=e=>{t.checked=e?l.value.map((e=>e[o.value.key])):[]};return(0,i.wB)((()=>t.checked),((e,o)=>{if(c(),t.checkChangeByUser){const t=e.concat(o).filter((t=>!e.includes(t)||!o.includes(t)));n(YV,e,t)}else n(YV,e),t.checkChangeByUser=!0})),(0,i.wB)(l,(()=>{c()})),(0,i.wB)((()=>e.data),(()=>{const e=[],n=r.value.map((e=>e[o.value.key]));t.checked.forEach((t=>{n.includes(t)&&e.push(t)})),t.checkChangeByUser=!1,t.checked=e})),(0,i.wB)((()=>e.defaultChecked),((e,n)=>{if(n&&e.length===n.length&&e.every((e=>n.includes(e))))return;const r=[],a=l.value.map((e=>e[o.value.key]));e.forEach((e=>{a.includes(e)&&r.push(e)})),t.checkChangeByUser=!1,t.checked=r}),{immediate:!0}),{filteredData:r,checkableData:l,checkedSummary:a,isIndeterminate:s,updateAllChecked:c,handleAllCheckedChange:d}},tX=(0,i.pM)({name:"ElTransferPanel"}),nX=(0,i.pM)({...tX,props:QV,emits:ZV,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.Ht)(),l=({option:e})=>e,{t:a}=(0,zu.Ym)(),c=(0,ee.DU)("transfer"),d=(0,s.Kh)({checked:[],allChecked:!1,query:"",checkChangeByUser:!0}),p=JV(o),{filteredData:f,checkedSummary:v,isIndeterminate:h,handleAllCheckedChange:m}=eX(o,d,n),g=(0,i.EW)((()=>!(0,z.Im)(d.query)&&(0,z.Im)(f.value))),y=(0,i.EW)((()=>!(0,z.Im)(r.default()[0].children))),{checked:b,allChecked:R,query:w}=(0,s.QW)(d);return t({query:w}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(c).b("panel"))},[(0,i.Lk)("p",{class:(0,u.C4)((0,s.R1)(c).be("panel","header"))},[(0,i.bF)((0,s.R1)(yy),{modelValue:(0,s.R1)(R),"onUpdate:modelValue":t[0]||(t[0]=e=>(0,s.i9)(R)?R.value=e:null),indeterminate:(0,s.R1)(h),"validate-event":!1,onChange:(0,s.R1)(m)},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)(e.title)+" ",1),(0,i.Lk)("span",null,(0,u.v_)((0,s.R1)(v)),1)])),_:1},8,["modelValue","indeterminate","onChange"])],2),(0,i.Lk)("div",{class:(0,u.C4)([(0,s.R1)(c).be("panel","body"),(0,s.R1)(c).is("with-footer",(0,s.R1)(y))])},[e.filterable?((0,i.uX)(),(0,i.Wv)((0,s.R1)(yo),{key:0,modelValue:(0,s.R1)(w),"onUpdate:modelValue":t[1]||(t[1]=e=>(0,s.i9)(w)?w.value=e:null),class:(0,u.C4)((0,s.R1)(c).be("panel","filter")),size:"default",placeholder:e.placeholder,"prefix-icon":(0,s.R1)(Wt),clearable:"","validate-event":!1},null,8,["modelValue","class","placeholder","prefix-icon"])):(0,i.Q3)("v-if",!0),(0,i.bo)((0,i.bF)((0,s.R1)(Ry),{modelValue:(0,s.R1)(b),"onUpdate:modelValue":t[2]||(t[2]=e=>(0,s.i9)(b)?b.value=e:null),"validate-event":!1,class:(0,u.C4)([(0,s.R1)(c).is("filterable",e.filterable),(0,s.R1)(c).be("panel","list")])},{default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)((0,s.R1)(f),(t=>((0,i.uX)(),(0,i.Wv)((0,s.R1)(yy),{key:t[(0,s.R1)(p).key],class:(0,u.C4)((0,s.R1)(c).be("panel","item")),label:t[(0,s.R1)(p).key],disabled:t[(0,s.R1)(p).disabled],"validate-event":!1},{default:(0,i.k6)((()=>{var n;return[(0,i.bF)(l,{option:null==(n=e.optionRender)?void 0:n.call(e,t)},null,8,["option"])]})),_:2},1032,["class","label","disabled"])))),128))])),_:1},8,["modelValue","class"]),[[ge.aG,!(0,s.R1)(g)&&!(0,s.R1)(z.Im)(e.data)]]),(0,i.bo)((0,i.Lk)("p",{class:(0,u.C4)((0,s.R1)(c).be("panel","empty"))},(0,u.v_)((0,s.R1)(g)?(0,s.R1)(a)("el.transfer.noMatch"):(0,s.R1)(a)("el.transfer.noData")),3),[[ge.aG,(0,s.R1)(g)||(0,s.R1)(z.Im)(e.data)]])],2),(0,s.R1)(y)?((0,i.uX)(),(0,i.CE)("p",{key:0,class:(0,u.C4)((0,s.R1)(c).be("panel","footer"))},[(0,i.RG)(e.$slots,"default")],2)):(0,i.Q3)("v-if",!0)],2))}});var oX=J(nX,[["__file","transfer-panel.vue"]]);const rX=e=>{const t=JV(e),n=(0,i.EW)((()=>e.data.reduce(((e,n)=>(e[n[t.value.key]]=n)&&e),{}))),o=(0,i.EW)((()=>e.data.filter((n=>!e.modelValue.includes(n[t.value.key]))))),r=(0,i.EW)((()=>"original"===e.targetOrder?e.data.filter((n=>e.modelValue.includes(n[t.value.key]))):e.modelValue.reduce(((e,t)=>{const o=n.value[t];return o&&e.push(o),e}),[])));return{sourceData:o,targetData:r}},lX=(e,t)=>{const n=(n,o)=>{e.leftChecked=n,o&&t(UV,n,o)},o=(n,o)=>{e.rightChecked=n,o&&t(HV,n,o)};return{onSourceCheckedChange:n,onTargetCheckedChange:o}},aX=(e,t,n)=>{const o=JV(e),r=(e,t,o)=>{n(G,e),n(q,e,t,o)},l=()=>{const n=e.modelValue.slice();t.rightChecked.forEach((e=>{const t=n.indexOf(e);t>-1&&n.splice(t,1)})),r(n,"left",t.rightChecked)},a=()=>{let n=e.modelValue.slice();const l=e.data.filter((n=>{const r=n[o.value.key];return t.leftChecked.includes(r)&&!e.modelValue.includes(r)})).map((e=>e[o.value.key]));n="unshift"===e.targetOrder?l.concat(n):n.concat(l),"original"===e.targetOrder&&(n=e.data.filter((e=>n.includes(e[o.value.key]))).map((e=>e[o.value.key]))),r(n,"right",t.leftChecked)};return{addToLeft:l,addToRight:a}},iX={key:0},sX={key:0},uX=(0,i.pM)({name:"ElTransfer"}),cX=(0,i.pM)({...uX,props:zV,emits:qV,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.Ht)(),{t:l}=(0,zu.Ym)(),a=(0,ee.DU)("transfer"),{formItem:c}=oo(),d=(0,s.Kh)({leftChecked:[],rightChecked:[]}),p=JV(o),{sourceData:f,targetData:v}=rX(o),{onSourceCheckedChange:h,onTargetCheckedChange:m}=lX(d,n),{addToLeft:g,addToRight:y}=aX(o,d,n),b=(0,s.KR)(),R=(0,s.KR)(),w=e=>{switch(e){case"left":b.value.query="";break;case"right":R.value.query="";break}},E=(0,i.EW)((()=>2===o.buttonTexts.length)),C=(0,i.EW)((()=>o.titles[0]||l("el.transfer.titles.0"))),k=(0,i.EW)((()=>o.titles[1]||l("el.transfer.titles.1"))),x=(0,i.EW)((()=>o.filterPlaceholder||l("el.transfer.filterPlaceholder")));(0,i.wB)((()=>o.modelValue),(()=>{var e;o.validateEvent&&(null==(e=null==c?void 0:c.validate)||e.call(c,"change").catch((e=>(0,ne.U)(e))))}));const _=(0,i.EW)((()=>e=>o.renderContent?o.renderContent(i.h,e):r.default?r.default({option:e}):(0,i.h)("span",e[p.value.label]||e[p.value.key])));return t({clearQuery:w,leftPanel:b,rightPanel:R}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)((0,s.R1)(a).b())},[(0,i.bF)(oX,{ref_key:"leftPanel",ref:b,data:(0,s.R1)(f),"option-render":(0,s.R1)(_),placeholder:(0,s.R1)(x),title:(0,s.R1)(C),filterable:e.filterable,format:e.format,"filter-method":e.filterMethod,"default-checked":e.leftDefaultChecked,props:o.props,onCheckedChange:(0,s.R1)(h)},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"left-footer")])),_:3},8,["data","option-render","placeholder","title","filterable","format","filter-method","default-checked","props","onCheckedChange"]),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(a).e("buttons"))},[(0,i.bF)((0,s.R1)(Ou),{type:"primary",class:(0,u.C4)([(0,s.R1)(a).e("button"),(0,s.R1)(a).is("with-texts",(0,s.R1)(E))]),disabled:(0,s.R1)(z.Im)(d.rightChecked),onClick:(0,s.R1)(g)},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Se))])),_:1}),(0,s.R1)(z.b0)(e.buttonTexts[0])?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",iX,(0,u.v_)(e.buttonTexts[0]),1))])),_:1},8,["class","disabled","onClick"]),(0,i.bF)((0,s.R1)(Ou),{type:"primary",class:(0,u.C4)([(0,s.R1)(a).e("button"),(0,s.R1)(a).is("with-texts",(0,s.R1)(E))]),disabled:(0,s.R1)(z.Im)(d.leftChecked),onClick:(0,s.R1)(y)},{default:(0,i.k6)((()=>[(0,s.R1)(z.b0)(e.buttonTexts[1])?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",sX,(0,u.v_)(e.buttonTexts[1]),1)),(0,i.bF)((0,s.R1)(Ee),null,{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Oe))])),_:1})])),_:1},8,["class","disabled","onClick"])],2),(0,i.bF)(oX,{ref_key:"rightPanel",ref:R,data:(0,s.R1)(v),"option-render":(0,s.R1)(_),placeholder:(0,s.R1)(x),filterable:e.filterable,format:e.format,"filter-method":e.filterMethod,title:(0,s.R1)(k),"default-checked":e.rightDefaultChecked,props:o.props,onCheckedChange:(0,s.R1)(m)},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"right-footer")])),_:3},8,["data","option-render","placeholder","filterable","format","filter-method","title","default-checked","props","onCheckedChange"])],2))}});var dX=J(cX,[["__file","transfer.vue"]]);const pX=pe(dX),fX="$treeNodeId",vX=function(e,t){t&&!t[fX]&&Object.defineProperty(t,fX,{value:e.id,enumerable:!1,configurable:!1,writable:!1})},hX=function(e,t){return e?t[e]:t[fX]},mX=(e,t,n)=>{const o=e.value.currentNode;n();const r=e.value.currentNode;o!==r&&t("current-change",r?r.data:null,r)},gX=e=>{let t=!0,n=!0,o=!0;for(let r=0,l=e.length;r0&&e.lazy&&e.defaultExpandAll&&this.expand(),Array.isArray(this.data)||vX(this,this.data),!this.data)return;const n=e.defaultExpandedKeys,o=e.key;o&&n&&n.includes(this.key)&&this.expand(null,e.autoExpandParent),o&&void 0!==e.currentNodeKey&&this.key===e.currentNodeKey&&(e.currentNode=this,e.currentNode.isCurrent=!0),e.lazy&&e._initDefaultCheckedNode(this),this.updateLeafState(),!this.parent||1!==this.level&&!0!==this.parent.expanded||(this.canFocus=!0)}setData(e){let t;Array.isArray(e)||vX(this,e),this.data=e,this.childNodes=[],t=0===this.level&&Array.isArray(this.data)?this.data:bX(this,"children")||[];for(let n=0,o=t.length;n-1)return e.childNodes[t+1]}return null}get previousSibling(){const e=this.parent;if(e){const t=e.childNodes.indexOf(this);if(t>-1)return t>0?e.childNodes[t-1]:null}return null}contains(e,t=!0){return(this.childNodes||[]).some((n=>n===e||t&&n.contains(e)))}remove(){const e=this.parent;e&&e.removeChild(this)}insertChild(e,t,n){if(!e)throw new Error("InsertChild error: child is required.");if(!(e instanceof wX)){if(!n){const n=this.getChildren(!0);n.includes(e.data)||("undefined"===typeof t||t<0?n.push(e.data):n.splice(t,0,e.data))}Object.assign(e,{parent:this,store:this.store}),e=(0,s.Kh)(new wX(e)),e instanceof wX&&e.initialize()}e.level=this.level+1,"undefined"===typeof t||t<0?this.childNodes.push(e):this.childNodes.splice(t,0,e),this.updateLeafState()}insertBefore(e,t){let n;t&&(n=this.childNodes.indexOf(t)),this.insertChild(e,n)}insertAfter(e,t){let n;t&&(n=this.childNodes.indexOf(t),-1!==n&&(n+=1)),this.insertChild(e,n)}removeChild(e){const t=this.getChildren()||[],n=t.indexOf(e.data);n>-1&&t.splice(n,1);const o=this.childNodes.indexOf(e);o>-1&&(this.store&&this.store.deregisterNode(e),e.parent=null,this.childNodes.splice(o,1)),this.updateLeafState()}removeChildByData(e){let t=null;for(let n=0;n{if(t){let e=this.parent;while(e.level>0)e.expanded=!0,e=e.parent}this.expanded=!0,e&&e(),this.childNodes.forEach((e=>{e.canFocus=!0}))};this.shouldLoadData()?this.loadData((e=>{Array.isArray(e)&&(this.checked?this.setChecked(!0,!0):this.store.checkStrictly||yX(this),n())})):n()}doCreateChildren(e,t={}){e.forEach((e=>{this.insertChild(Object.assign({data:e},t),void 0,!0)}))}collapse(){this.expanded=!1,this.childNodes.forEach((e=>{e.canFocus=!1}))}shouldLoadData(){return!0===this.store.lazy&&this.store.load&&!this.loaded}updateLeafState(){if(!0===this.store.lazy&&!0!==this.loaded&&"undefined"!==typeof this.isLeafByUser)return void(this.isLeaf=this.isLeafByUser);const e=this.childNodes;!this.store.lazy||!0===this.store.lazy&&!0===this.loaded?this.isLeaf=!e||0===e.length:this.isLeaf=!1}setChecked(e,t,n,o){if(this.indeterminate="half"===e,this.checked=!0===e,this.store.checkStrictly)return;if(!this.shouldLoadData()||this.store.checkDescendants){const{all:n,allWithoutDisable:r}=gX(this.childNodes);this.isLeaf||n||!r||(this.checked=!1,e=!1);const l=()=>{if(t){const n=this.childNodes;for(let a=0,i=n.length;a{l(),yX(this)}),{checked:!1!==e});l()}const r=this.parent;r&&0!==r.level&&(n||yX(r))}getChildren(e=!1){if(0===this.level)return this.data;const t=this.data;if(!t)return null;const n=this.store.props;let o="children";return n&&(o=n.children||"children"),void 0===t[o]&&(t[o]=null),e&&!t[o]&&(t[o]=[]),t[o]}updateChildren(){const e=this.getChildren()||[],t=this.childNodes.map((e=>e.data)),n={},o=[];e.forEach(((e,r)=>{const l=e[fX],a=!!l&&t.findIndex((e=>e[fX]===l))>=0;a?n[l]={index:r,data:e}:o.push({index:r,data:e})})),this.store.lazy||t.forEach((e=>{n[e[fX]]||this.removeChildByData(e)})),o.forEach((({index:e,data:t})=>{this.insertChild({data:t},e)})),this.updateLeafState()}loadData(e,t={}){if(!0!==this.store.lazy||!this.store.load||this.loaded||this.loading&&!Object.keys(t).length)e&&e.call(this);else{this.loading=!0;const n=n=>{this.childNodes=[],this.doCreateChildren(n,t),this.loaded=!0,this.loading=!1,this.updateLeafState(),e&&e.call(this,n)};this.store.load(this,n)}}}class EX{constructor(e){this.currentNode=null,this.currentNodeKey=null;for(const t in e)(0,u.$3)(e,t)&&(this[t]=e[t]);this.nodesMap={}}initialize(){if(this.root=new wX({data:this.data,store:this}),this.root.initialize(),this.lazy&&this.load){const e=this.load;e(this.root,(e=>{this.root.doCreateChildren(e),this._initDefaultCheckedNodes()}))}else this._initDefaultCheckedNodes()}filter(e){const t=this.filterNodeMethod,n=this.lazy,o=function(r){const l=r.root?r.root.childNodes:r.childNodes;if(l.forEach((n=>{n.visible=t.call(n,e,n.data,n),o(n)})),!r.visible&&l.length){let e=!0;e=!l.some((e=>e.visible)),r.root?r.root.visible=!1===e:r.visible=!1===e}e&&r.visible&&!r.isLeaf&&(n&&!r.loaded||r.expand())};o(this)}setData(e){const t=e!==this.root.data;t?(this.root.setData(e),this._initDefaultCheckedNodes()):this.root.updateChildren()}getNode(e){if(e instanceof wX)return e;const t=(0,u.Gv)(e)?hX(this.key,e):e;return this.nodesMap[t]||null}insertBefore(e,t){const n=this.getNode(t);n.parent.insertBefore({data:e},n)}insertAfter(e,t){const n=this.getNode(t);n.parent.insertAfter({data:e},n)}remove(e){const t=this.getNode(e);t&&t.parent&&(t===this.currentNode&&(this.currentNode=null),t.parent.removeChild(t))}append(e,t){const n=t?this.getNode(t):this.root;n&&n.insertChild({data:e})}_initDefaultCheckedNodes(){const e=this.defaultCheckedKeys||[],t=this.nodesMap;e.forEach((e=>{const n=t[e];n&&n.setChecked(!0,!this.checkStrictly)}))}_initDefaultCheckedNode(e){const t=this.defaultCheckedKeys||[];t.includes(e.key)&&e.setChecked(!0,!this.checkStrictly)}setDefaultCheckedKey(e){e!==this.defaultCheckedKeys&&(this.defaultCheckedKeys=e,this._initDefaultCheckedNodes())}registerNode(e){const t=this.key;if(e&&e.data)if(t){const t=e.key;void 0!==t&&(this.nodesMap[e.key]=e)}else this.nodesMap[e.id]=e}deregisterNode(e){const t=this.key;t&&e&&e.data&&(e.childNodes.forEach((e=>{this.deregisterNode(e)})),delete this.nodesMap[e.key])}getCheckedNodes(e=!1,t=!1){const n=[],o=function(r){const l=r.root?r.root.childNodes:r.childNodes;l.forEach((r=>{(r.checked||t&&r.indeterminate)&&(!e||e&&r.isLeaf)&&n.push(r.data),o(r)}))};return o(this),n}getCheckedKeys(e=!1){return this.getCheckedNodes(e).map((e=>(e||{})[this.key]))}getHalfCheckedNodes(){const e=[],t=function(n){const o=n.root?n.root.childNodes:n.childNodes;o.forEach((n=>{n.indeterminate&&e.push(n.data),t(n)}))};return t(this),e}getHalfCheckedKeys(){return this.getHalfCheckedNodes().map((e=>(e||{})[this.key]))}_getAllNodes(){const e=[],t=this.nodesMap;for(const n in t)(0,u.$3)(t,n)&&e.push(t[n]);return e}updateChildren(e,t){const n=this.nodesMap[e];if(!n)return;const o=n.childNodes;for(let r=o.length-1;r>=0;r--){const e=o[r];this.remove(e.data)}for(let r=0,l=t.length;re.level-t.level)),r=Object.create(null),l=Object.keys(n);o.forEach((e=>e.setChecked(!1,!1)));const a=t=>{t.childNodes.forEach((t=>{var n;r[t.data[e]]=!0,(null==(n=t.childNodes)?void 0:n.length)&&a(t)}))};for(let i=0,s=o.length;i{t.isLeaf||t.setChecked(!1,!1),e(t)}))};e(n)}}else n.checked&&!r[s]&&n.setChecked(!1,!1)}}setCheckedNodes(e,t=!1){const n=this.key,o={};e.forEach((e=>{o[(e||{})[n]]=!0})),this._setCheckedKeys(n,t,o)}setCheckedKeys(e,t=!1){this.defaultCheckedKeys=e;const n=this.key,o={};e.forEach((e=>{o[e]=!0})),this._setCheckedKeys(n,t,o)}setDefaultExpandedKeys(e){e=e||[],this.defaultExpandedKeys=e,e.forEach((e=>{const t=this.getNode(e);t&&t.expand(null,this.autoExpandParent)}))}setChecked(e,t,n){const o=this.getNode(e);o&&o.setChecked(!!t,n)}getCurrentNode(){return this.currentNode}setCurrentNode(e){const t=this.currentNode;t&&(t.isCurrent=!1),this.currentNode=e,this.currentNode.isCurrent=!0}setUserCurrentNode(e,t=!0){const n=e[this.key],o=this.nodesMap[n];this.setCurrentNode(o),t&&this.currentNode.level>1&&this.currentNode.parent.expand(null,!0)}setCurrentNodeKey(e,t=!0){if(null===e||void 0===e)return this.currentNode&&(this.currentNode.isCurrent=!1),void(this.currentNode=null);const n=this.getNode(e);n&&(this.setCurrentNode(n),t&&this.currentNode.level>1&&this.currentNode.parent.expand(null,!0))}}const CX=(0,i.pM)({name:"ElTreeNodeContent",props:{node:{type:Object,required:!0},renderContent:Function},setup(e){const t=(0,ee.DU)("tree"),n=(0,i.WQ)("NodeInstance"),o=(0,i.WQ)("RootTree");return()=>{const r=e.node,{data:l,store:a}=r;return e.renderContent?e.renderContent(i.h,{_self:n,node:r,data:l,store:a}):(0,i.RG)(o.ctx.slots,"default",{node:r,data:l},(()=>[(0,i.h)("span",{class:t.be("node","label")},[r.label])]))}}});var kX=J(CX,[["__file","tree-node-content.vue"]]);function xX(e){const t=(0,i.WQ)("TreeNodeMap",null),n={treeNodeExpand:t=>{e.node!==t&&e.node.collapse()},children:[]};return t&&t.children.push(n),(0,i.Gt)("TreeNodeMap",n),{broadcastExpanded:t=>{if(e.accordion)for(const e of n.children)e.treeNodeExpand(t)}}}const _X=Symbol("dragEvents");function SX({props:e,ctx:t,el$:n,dropIndicator$:o,store:r}){const l=(0,ee.DU)("tree"),a=(0,s.KR)({showDropIndicator:!1,draggingNode:null,dropNode:null,allowDrop:!0,dropType:null}),u=({event:n,treeNode:o})=>{if("function"===typeof e.allowDrag&&!e.allowDrag(o.node))return n.preventDefault(),!1;n.dataTransfer.effectAllowed="move";try{n.dataTransfer.setData("text/plain","")}catch(r){}a.value.draggingNode=o,t.emit("node-drag-start",o.node,n)},c=({event:r,treeNode:i})=>{const s=i,u=a.value.dropNode;u&&u.node.id!==s.node.id&&(0,te.vy)(u.$el,l.is("drop-inner"));const c=a.value.draggingNode;if(!c||!s)return;let d=!0,p=!0,f=!0,v=!0;"function"===typeof e.allowDrop&&(d=e.allowDrop(c.node,s.node,"prev"),v=p=e.allowDrop(c.node,s.node,"inner"),f=e.allowDrop(c.node,s.node,"next")),r.dataTransfer.dropEffect=p||d||f?"move":"none",(d||p||f)&&(null==u?void 0:u.node.id)!==s.node.id&&(u&&t.emit("node-drag-leave",c.node,u.node,r),t.emit("node-drag-enter",c.node,s.node,r)),a.value.dropNode=d||p||f?s:null,s.node.nextSibling===c.node&&(f=!1),s.node.previousSibling===c.node&&(d=!1),s.node.contains(c.node,!1)&&(p=!1),(c.node===s.node||c.node.contains(s.node))&&(d=!1,p=!1,f=!1);const h=s.$el.querySelector(`.${l.be("node","content")}`).getBoundingClientRect(),m=n.value.getBoundingClientRect();let g;const y=d?p?.25:f?.45:1:-1,b=f?p?.75:d?.55:0:1;let R=-9999;const w=r.clientY-h.top;g=wh.height*b?"after":p?"inner":"none";const E=s.$el.querySelector(`.${l.be("node","expand-icon")}`).getBoundingClientRect(),C=o.value;"before"===g?R=E.top-m.top:"after"===g&&(R=E.bottom-m.top),C.style.top=`${R}px`,C.style.left=E.right-m.left+"px","inner"===g?(0,te.iQ)(s.$el,l.is("drop-inner")):(0,te.vy)(s.$el,l.is("drop-inner")),a.value.showDropIndicator="before"===g||"after"===g,a.value.allowDrop=a.value.showDropIndicator||v,a.value.dropType=g,t.emit("node-drag-over",c.node,s.node,r)},d=e=>{const{draggingNode:n,dropType:o,dropNode:i}=a.value;if(e.preventDefault(),e.dataTransfer.dropEffect="move",n&&i){const a={data:n.node.data};"none"!==o&&n.node.remove(),"before"===o?i.node.parent.insertBefore(a,i.node):"after"===o?i.node.parent.insertAfter(a,i.node):"inner"===o&&i.node.insertChild(a),"none"!==o&&r.value.registerNode(a),(0,te.vy)(i.$el,l.is("drop-inner")),t.emit("node-drag-end",n.node,i.node,o,e),"none"!==o&&t.emit("node-drop",n.node,i.node,o,e)}n&&!i&&t.emit("node-drag-end",n.node,null,o,e),a.value.showDropIndicator=!1,a.value.draggingNode=null,a.value.dropNode=null,a.value.allowDrop=!0};return(0,i.Gt)(_X,{treeNodeDragStart:u,treeNodeDragOver:c,treeNodeDragEnd:d}),{dragState:a}}const TX=(0,i.pM)({name:"ElTreeNode",components:{ElCollapseTransition:wR,ElCheckbox:yy,NodeContent:kX,ElIcon:Ee,Loading:ht},props:{node:{type:wX,default:()=>({})},props:{type:Object,default:()=>({})},accordion:Boolean,renderContent:Function,renderAfterExpand:Boolean,showCheckbox:{type:Boolean,default:!1}},emits:["node-expand"],setup(e,t){const n=(0,ee.DU)("tree"),{broadcastExpanded:o}=xX(e),r=(0,i.WQ)("RootTree"),l=(0,s.KR)(!1),a=(0,s.KR)(!1),c=(0,s.KR)(null),d=(0,s.KR)(null),p=(0,s.KR)(null),f=(0,i.WQ)(_X),v=(0,i.nI)();(0,i.Gt)("NodeInstance",v),r||(0,ne.U)("Tree","Can not find node's tree."),e.node.expanded&&(l.value=!0,a.value=!0);const h=r.props.props["children"]||"children";(0,i.wB)((()=>{const t=e.node.data[h];return t&&[...t]}),(()=>{e.node.updateChildren()})),(0,i.wB)((()=>e.node.indeterminate),(t=>{y(e.node.checked,t)})),(0,i.wB)((()=>e.node.checked),(t=>{y(t,e.node.indeterminate)})),(0,i.wB)((()=>e.node.expanded),(e=>{(0,i.dY)((()=>l.value=e)),e&&(a.value=!0)}));const m=e=>hX(r.props.nodeKey,e.data),g=t=>{const n=e.props.class;if(!n)return{};let o;if((0,u.Tn)(n)){const{data:e}=t;o=n(e,t)}else o=n;return(0,u.Kg)(o)?{[o]:!0}:o},y=(t,n)=>{c.value===t&&d.value===n||r.ctx.emit("check-change",e.node.data,t,n),c.value=t,d.value=n},b=t=>{mX(r.store,r.ctx.emit,(()=>r.store.value.setCurrentNode(e.node))),r.currentNode.value=e.node,r.props.expandOnClickNode&&w(),r.props.checkOnClickNode&&!e.node.disabled&&E(null,{target:{checked:!e.node.checked}}),r.ctx.emit("node-click",e.node.data,e.node,v,t)},R=t=>{r.instance.vnode.props["onNodeContextmenu"]&&(t.stopPropagation(),t.preventDefault()),r.ctx.emit("node-contextmenu",t,e.node.data,e.node,v)},w=()=>{e.node.isLeaf||(l.value?(r.ctx.emit("node-collapse",e.node.data,e.node,v),e.node.collapse()):(e.node.expand(),t.emit("node-expand",e.node.data,e.node,v)))},E=(t,n)=>{e.node.setChecked(n.target.checked,!r.props.checkStrictly),(0,i.dY)((()=>{const t=r.store.value;r.ctx.emit("check",e.node.data,{checkedNodes:t.getCheckedNodes(),checkedKeys:t.getCheckedKeys(),halfCheckedNodes:t.getHalfCheckedNodes(),halfCheckedKeys:t.getHalfCheckedKeys()})}))},C=(e,t,n)=>{o(t),r.ctx.emit("node-expand",e,t,n)},k=t=>{r.props.draggable&&f.treeNodeDragStart({event:t,treeNode:e})},x=t=>{t.preventDefault(),r.props.draggable&&f.treeNodeDragOver({event:t,treeNode:{$el:p.value,node:e.node}})},_=e=>{e.preventDefault()},S=e=>{r.props.draggable&&f.treeNodeDragEnd(e)};return{ns:n,node$:p,tree:r,expanded:l,childNodeRendered:a,oldChecked:c,oldIndeterminate:d,getNodeKey:m,getNodeClass:g,handleSelectChange:y,handleClick:b,handleContextMenu:R,handleExpandIconClick:w,handleCheckChange:E,handleChildNodeExpand:C,handleDragStart:k,handleDragOver:x,handleDrop:_,handleDragEnd:S,CaretRight:Fe}}}),OX=["aria-expanded","aria-disabled","aria-checked","draggable","data-key"],IX=["aria-expanded"];function AX(e,t,n,o,r,l){const a=(0,i.g2)("el-icon"),s=(0,i.g2)("el-checkbox"),c=(0,i.g2)("loading"),d=(0,i.g2)("node-content"),p=(0,i.g2)("el-tree-node"),f=(0,i.g2)("el-collapse-transition");return(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{ref:"node$",class:(0,u.C4)([e.ns.b("node"),e.ns.is("expanded",e.expanded),e.ns.is("current",e.node.isCurrent),e.ns.is("hidden",!e.node.visible),e.ns.is("focusable",!e.node.disabled),e.ns.is("checked",!e.node.disabled&&e.node.checked),e.getNodeClass(e.node)]),role:"treeitem",tabindex:"-1","aria-expanded":e.expanded,"aria-disabled":e.node.disabled,"aria-checked":e.node.checked,draggable:e.tree.props.draggable,"data-key":e.getNodeKey(e.node),onClick:t[1]||(t[1]=(0,ge.D$)(((...t)=>e.handleClick&&e.handleClick(...t)),["stop"])),onContextmenu:t[2]||(t[2]=(...t)=>e.handleContextMenu&&e.handleContextMenu(...t)),onDragstart:t[3]||(t[3]=(0,ge.D$)(((...t)=>e.handleDragStart&&e.handleDragStart(...t)),["stop"])),onDragover:t[4]||(t[4]=(0,ge.D$)(((...t)=>e.handleDragOver&&e.handleDragOver(...t)),["stop"])),onDragend:t[5]||(t[5]=(0,ge.D$)(((...t)=>e.handleDragEnd&&e.handleDragEnd(...t)),["stop"])),onDrop:t[6]||(t[6]=(0,ge.D$)(((...t)=>e.handleDrop&&e.handleDrop(...t)),["stop"]))},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.be("node","content")),style:(0,u.Tr)({paddingLeft:(e.node.level-1)*e.tree.props.indent+"px"})},[e.tree.props.icon||e.CaretRight?((0,i.uX)(),(0,i.Wv)(a,{key:0,class:(0,u.C4)([e.ns.be("node","expand-icon"),e.ns.is("leaf",e.node.isLeaf),{expanded:!e.node.isLeaf&&e.expanded}]),onClick:(0,ge.D$)(e.handleExpandIconClick,["stop"])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.tree.props.icon||e.CaretRight)))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0),e.showCheckbox?((0,i.uX)(),(0,i.Wv)(s,{key:1,"model-value":e.node.checked,indeterminate:e.node.indeterminate,disabled:!!e.node.disabled,onClick:t[0]||(t[0]=(0,ge.D$)((()=>{}),["stop"])),onChange:e.handleCheckChange},null,8,["model-value","indeterminate","disabled","onChange"])):(0,i.Q3)("v-if",!0),e.node.loading?((0,i.uX)(),(0,i.Wv)(a,{key:2,class:(0,u.C4)([e.ns.be("node","loading-icon"),e.ns.is("loading")])},{default:(0,i.k6)((()=>[(0,i.bF)(c)])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.bF)(d,{node:e.node,"render-content":e.renderContent},null,8,["node","render-content"])],6),(0,i.bF)(f,null,{default:(0,i.k6)((()=>[!e.renderAfterExpand||e.childNodeRendered?(0,i.bo)(((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.ns.be("node","children")),role:"group","aria-expanded":e.expanded},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.node.childNodes,(t=>((0,i.uX)(),(0,i.Wv)(p,{key:e.getNodeKey(t),"render-content":e.renderContent,"render-after-expand":e.renderAfterExpand,"show-checkbox":e.showCheckbox,node:t,accordion:e.accordion,props:e.props,onNodeExpand:e.handleChildNodeExpand},null,8,["render-content","render-after-expand","show-checkbox","node","accordion","props","onNodeExpand"])))),128))],10,IX)),[[ge.aG,e.expanded]]):(0,i.Q3)("v-if",!0)])),_:1})],42,OX)),[[ge.aG,e.node.visible]])}var LX=J(TX,[["render",AX],["__file","tree-node.vue"]]);function MX({el$:e},t){const n=(0,ee.DU)("tree"),o=(0,s.IJ)([]),r=(0,s.IJ)([]);(0,i.sV)((()=>{a()})),(0,i.$u)((()=>{o.value=Array.from(e.value.querySelectorAll("[role=treeitem]")),r.value=Array.from(e.value.querySelectorAll("input[type=checkbox]"))})),(0,i.wB)(r,(e=>{e.forEach((e=>{e.setAttribute("tabindex","-1")}))}));const l=r=>{const l=r.target;if(!l.className.includes(n.b("node")))return;const a=r.code;o.value=Array.from(e.value.querySelectorAll(`.${n.is("focusable")}[role=treeitem]`));const i=o.value.indexOf(l);let s;if([aa.up,aa.down].includes(a)){if(r.preventDefault(),a===aa.up){s=-1===i?0:0!==i?i-1:o.value.length-1;const e=s;while(1){if(t.value.getNode(o.value[s].dataset.key).canFocus)break;if(s--,s===e){s=-1;break}s<0&&(s=o.value.length-1)}}else{s=-1===i?0:i=o.value.length&&(s=0)}}-1!==s&&o.value[s].focus()}[aa.left,aa.right].includes(a)&&(r.preventDefault(),l.click());const u=l.querySelector('[type="checkbox"]');[aa.enter,aa.space].includes(a)&&u&&(r.preventDefault(),u.click())};h(e,"keydown",l);const a=()=>{var t;o.value=Array.from(e.value.querySelectorAll(`.${n.is("focusable")}[role=treeitem]`)),r.value=Array.from(e.value.querySelectorAll("input[type=checkbox]"));const l=e.value.querySelectorAll(`.${n.is("checked")}[role=treeitem]`);l.length?l[0].setAttribute("tabindex","0"):null==(t=o.value[0])||t.setAttribute("tabindex","0")}}const NX=(0,i.pM)({name:"ElTree",components:{ElTreeNode:LX},props:{data:{type:Array,default:()=>[]},emptyText:{type:String},renderAfterExpand:{type:Boolean,default:!0},nodeKey:String,checkStrictly:Boolean,defaultExpandAll:Boolean,expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:Boolean,checkDescendants:{type:Boolean,default:!1},autoExpandParent:{type:Boolean,default:!0},defaultCheckedKeys:Array,defaultExpandedKeys:Array,currentNodeKey:[String,Number],renderContent:Function,showCheckbox:{type:Boolean,default:!1},draggable:{type:Boolean,default:!1},allowDrag:Function,allowDrop:Function,props:{type:Object,default:()=>({children:"children",label:"label",disabled:"disabled"})},lazy:{type:Boolean,default:!1},highlightCurrent:Boolean,load:Function,filterNodeMethod:Function,accordion:Boolean,indent:{type:Number,default:18},icon:{type:en}},emits:["check-change","current-change","node-click","node-contextmenu","node-collapse","node-expand","check","node-drag-start","node-drag-end","node-drop","node-drag-leave","node-drag-enter","node-drag-over"],setup(e,t){const{t:n}=(0,zu.Ym)(),o=(0,ee.DU)("tree"),r=(0,s.KR)(new EX({key:e.nodeKey,data:e.data,lazy:e.lazy,props:e.props,load:e.load,currentNodeKey:e.currentNodeKey,checkStrictly:e.checkStrictly,checkDescendants:e.checkDescendants,defaultCheckedKeys:e.defaultCheckedKeys,defaultExpandedKeys:e.defaultExpandedKeys,autoExpandParent:e.autoExpandParent,defaultExpandAll:e.defaultExpandAll,filterNodeMethod:e.filterNodeMethod}));r.value.initialize();const l=(0,s.KR)(r.value.root),a=(0,s.KR)(null),u=(0,s.KR)(null),c=(0,s.KR)(null),{broadcastExpanded:d}=xX(e),{dragState:p}=SX({props:e,ctx:t,el$:u,dropIndicator$:c,store:r});MX({el$:u},r);const f=(0,i.EW)((()=>{const{childNodes:e}=l.value;return!e||0===e.length||e.every((({visible:e})=>!e))}));(0,i.wB)((()=>e.currentNodeKey),(e=>{r.value.setCurrentNodeKey(e)})),(0,i.wB)((()=>e.defaultCheckedKeys),(e=>{r.value.setDefaultCheckedKey(e)})),(0,i.wB)((()=>e.defaultExpandedKeys),(e=>{r.value.setDefaultExpandedKeys(e)})),(0,i.wB)((()=>e.data),(e=>{r.value.setData(e)}),{deep:!0}),(0,i.wB)((()=>e.checkStrictly),(e=>{r.value.checkStrictly=e}));const v=t=>{if(!e.filterNodeMethod)throw new Error("[Tree] filterNodeMethod is required when filter");r.value.filter(t)},h=t=>hX(e.nodeKey,t.data),m=t=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in getNodePath");const n=r.value.getNode(t);if(!n)return[];const o=[n.data];let a=n.parent;while(a&&a!==l.value)o.push(a.data),a=a.parent;return o.reverse()},g=(e,t)=>r.value.getCheckedNodes(e,t),y=e=>r.value.getCheckedKeys(e),b=()=>{const e=r.value.getCurrentNode();return e?e.data:null},R=()=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in getCurrentKey");const t=b();return t?t[e.nodeKey]:null},w=(t,n)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedNodes");r.value.setCheckedNodes(t,n)},E=(t,n)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedKeys");r.value.setCheckedKeys(t,n)},C=(e,t,n)=>{r.value.setChecked(e,t,n)},k=()=>r.value.getHalfCheckedNodes(),x=()=>r.value.getHalfCheckedKeys(),_=(n,o=!0)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentNode");mX(r,t.emit,(()=>r.value.setUserCurrentNode(n,o)))},S=(n,o=!0)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentKey");mX(r,t.emit,(()=>r.value.setCurrentNodeKey(n,o)))},T=e=>r.value.getNode(e),O=e=>{r.value.remove(e)},I=(e,t)=>{r.value.append(e,t)},A=(e,t)=>{r.value.insertBefore(e,t)},L=(e,t)=>{r.value.insertAfter(e,t)},M=(e,n,o)=>{d(n),t.emit("node-expand",e,n,o)},N=(t,n)=>{if(!e.nodeKey)throw new Error("[Tree] nodeKey is required in updateKeyChild");r.value.updateChildren(t,n)};return(0,i.Gt)("RootTree",{ctx:t,props:e,store:r,root:l,currentNode:a,instance:(0,i.nI)()}),(0,i.Gt)(Zn,void 0),{ns:o,store:r,root:l,currentNode:a,dragState:p,el$:u,dropIndicator$:c,isEmpty:f,filter:v,getNodeKey:h,getNodePath:m,getCheckedNodes:g,getCheckedKeys:y,getCurrentNode:b,getCurrentKey:R,setCheckedNodes:w,setCheckedKeys:E,setChecked:C,getHalfCheckedNodes:k,getHalfCheckedKeys:x,setCurrentNode:_,setCurrentKey:S,t:n,getNode:T,remove:O,append:I,insertBefore:A,insertAfter:L,handleNodeExpand:M,updateKeyChildren:N}}});function WX(e,t,n,o,r,l){const a=(0,i.g2)("el-tree-node");return(0,i.uX)(),(0,i.CE)("div",{ref:"el$",class:(0,u.C4)([e.ns.b(),e.ns.is("dragging",!!e.dragState.draggingNode),e.ns.is("drop-not-allow",!e.dragState.allowDrop),e.ns.is("drop-inner","inner"===e.dragState.dropType),{[e.ns.m("highlight-current")]:e.highlightCurrent}]),role:"tree"},[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.root.childNodes,(t=>((0,i.uX)(),(0,i.Wv)(a,{key:e.getNodeKey(t),node:t,props:e.props,accordion:e.accordion,"render-after-expand":e.renderAfterExpand,"show-checkbox":e.showCheckbox,"render-content":e.renderContent,onNodeExpand:e.handleNodeExpand},null,8,["node","props","accordion","render-after-expand","show-checkbox","render-content","onNodeExpand"])))),128)),e.isEmpty?((0,i.uX)(),(0,i.CE)("div",{key:0,class:(0,u.C4)(e.ns.e("empty-block"))},[(0,i.RG)(e.$slots,"empty",{},(()=>{var t;return[(0,i.Lk)("span",{class:(0,u.C4)(e.ns.e("empty-text"))},(0,u.v_)(null!=(t=e.emptyText)?t:e.t("el.tree.emptyText")),3)]}))],2)):(0,i.Q3)("v-if",!0),(0,i.bo)((0,i.Lk)("div",{ref:"dropIndicator$",class:(0,u.C4)(e.ns.e("drop-indicator"))},null,2),[[ge.aG,e.dragState.showDropIndicator]])],2)}var DX=J(NX,[["render",WX],["__file","tree.vue"]]);DX.install=e=>{e.component(DX.name,DX)};const FX=DX,$X=FX,BX=(e,{attrs:t,emit:n},{tree:o,key:r})=>{const l=(0,ee.DU)("tree-select"),a={...py((0,s.QW)(e),Object.keys(GI.props)),...t,"onUpdate:modelValue":e=>n(G,e),valueKey:r,popperClass:(0,i.EW)((()=>{const t=[l.e("popper")];return e.popperClass&&t.push(e.popperClass),t.join(" ")})),filterMethod:(t="")=>{e.filterMethod&&e.filterMethod(t),(0,i.dY)((()=>{var e;null==(e=o.value)||e.filter(t)}))},onVisibleChange:n=>{var o;null==(o=t.onVisibleChange)||o.call(t,n),e.filterable&&n&&a.filterMethod()}};return a},PX=(0,i.pM)({extends:qI,setup(e,t){const n=qI.setup(e,t);delete n.selectOptionClick;const o=(0,i.nI)().proxy;return(0,i.dY)((()=>{n.select.states.cachedOptions.get(o.value)||n.select.onOptionCreate(o)})),n},methods:{selectOptionClick(){this.$el.parentElement.click()}}});function KX(e){return e||0===e}function jX(e){return Array.isArray(e)&&e.length}function VX(e){return Array.isArray(e)?e:KX(e)?[e]:[]}function XX(e,t,n,o,r){for(let l=0;l{(0,i.wB)((()=>e.modelValue),(()=>{e.showCheckbox&&(0,i.dY)((()=>{const t=l.value;t&&!eg(t.getCheckedKeys(),VX(e.modelValue))&&t.setCheckedKeys(VX(e.modelValue))}))}),{immediate:!0,deep:!0});const c=(0,i.EW)((()=>({value:a.value,label:"label",children:"children",disabled:"disabled",isLeaf:"isLeaf",...e.props}))),d=(e,t)=>{var n;const o=c.value[e];return(0,u.Tn)(o)?o(t,null==(n=l.value)?void 0:n.getNode(d("value",t))):t[o]},p=VX(e.modelValue).map((t=>XX(e.data||[],(e=>d("value",e)===t),(e=>d("children",e)),((e,t,n,o)=>o&&d("value",o))))).filter((e=>KX(e))),f=(0,i.EW)((()=>{if(!e.renderAfterExpand&&!e.lazy)return[];const t=[];return UX(e.data.concat(e.cacheData),(e=>{const n=d("value",e);t.push({value:n,currentLabel:d("label",e),isDisabled:d("disabled",e)})}),(e=>d("children",e))),t})),v=(0,i.EW)((()=>f.value.reduce(((e,t)=>({...e,[t.value]:t})),{})));return{...py((0,s.QW)(e),Object.keys(FX.props)),...t,nodeKey:a,expandOnClickNode:(0,i.EW)((()=>!e.checkStrictly&&e.expandOnClickNode)),defaultExpandedKeys:(0,i.EW)((()=>e.defaultExpandedKeys?e.defaultExpandedKeys.concat(p):p)),renderContent:(t,{node:o,data:r,store:l})=>t(PX,{value:d("value",r),label:d("label",r),disabled:d("disabled",r)},e.renderContent?()=>e.renderContent(t,{node:o,data:r,store:l}):n.default?()=>n.default({node:o,data:r,store:l}):void 0),filterNodeMethod:(t,n,o)=>{if(e.filterNodeMethod)return e.filterNodeMethod(t,n,o);if(!t)return!0;const r=new RegExp(eb(t),"i");return r.test(d("label",n)||"")},onNodeClick:(n,o,l)=>{var a,i,s,u;if(null==(a=t.onNodeClick)||a.call(t,n,o,l),!e.showCheckbox||!e.checkOnClickNode){if(e.showCheckbox||!e.checkStrictly&&!o.isLeaf)e.expandOnClickNode&&l.proxy.handleExpandIconClick();else if(!d("disabled",n)){const e=null==(i=r.value)?void 0:i.states.options.get(d("value",n));null==(s=r.value)||s.handleOptionSelect(e)}null==(u=r.value)||u.focus()}},onCheck:(n,a)=>{var s;if(!e.showCheckbox)return;const u=d("value",n),c=a.checkedKeys,p=e.multiple?VX(e.modelValue).filter((e=>e in v.value&&!l.value.getNode(e)&&!c.includes(e))):[],f=c.concat(p);if(e.checkStrictly)o(G,e.multiple?f:f.includes(u)?u:void 0);else if(e.multiple)o(G,l.value.getCheckedKeys(!0));else{const t=XX([n],(e=>!jX(d("children",e))&&!d("disabled",e)),(e=>d("children",e))),r=t?d("value",t):void 0,l=KX(e.modelValue)&&!!XX([n],(t=>d("value",t)===e.modelValue),(e=>d("children",e)));o(G,r===e.modelValue||l?void 0:r)}(0,i.dY)((()=>{var o;const r=VX(e.modelValue);l.value.setCheckedKeys(r),null==(o=t.onCheck)||o.call(t,n,{checkedKeys:l.value.getCheckedKeys(),checkedNodes:l.value.getCheckedNodes(),halfCheckedKeys:l.value.getHalfCheckedKeys(),halfCheckedNodes:l.value.getHalfCheckedNodes()})})),null==(s=r.value)||s.focus()},cacheOptions:f}};var zX=(0,i.pM)({props:{data:{type:Array,default:()=>[]}},setup(e){const t=(0,i.WQ)(jO);return(0,i.wB)((()=>e.data),(()=>{var n;e.data.forEach((e=>{t.states.cachedOptions.has(e.value)||t.states.cachedOptions.set(e.value,e)}));const o=(null==(n=t.selectRef)?void 0:n.querySelectorAll("input"))||[];Array.from(o).includes(document.activeElement)||t.setSelected()}),{flush:"post",immediate:!0}),()=>{}}});const GX=(0,i.pM)({name:"ElTreeSelect",inheritAttrs:!1,props:{...GI.props,...FX.props,cacheData:{type:Array,default:()=>[]}},setup(e,t){const{slots:n,expose:o}=t,r=(0,s.KR)(),l=(0,s.KR)(),a=(0,i.EW)((()=>e.nodeKey||e.valueKey||"value")),u=BX(e,t,{select:r,tree:l,key:a}),{cacheOptions:c,...d}=HX(e,t,{select:r,tree:l,key:a}),p=(0,s.Kh)({});return o(p),(0,i.sV)((()=>{Object.assign(p,{...py(l.value,["filter","updateKeyChildren","getCheckedNodes","setCheckedNodes","getCheckedKeys","setCheckedKeys","setChecked","getHalfCheckedNodes","getHalfCheckedKeys","getCurrentKey","getCurrentNode","setCurrentKey","setCurrentNode","getNode","remove","append","insertBefore","insertAfter"]),...py(r.value,["focus","blur"])})})),()=>(0,i.h)(GI,(0,s.Kh)({...u,ref:e=>r.value=e}),{...n,default:()=>[(0,i.h)(zX,{data:c.value}),(0,i.h)(FX,(0,s.Kh)({...d,ref:e=>l.value=e}))]})}});var qX=J(GX,[["__file","tree-select.vue"]]);qX.install=e=>{e.component(qX.name,qX)};const YX=qX,QX=YX,ZX=Symbol(),JX={key:-1,level:-1,data:{}};var eU=(e=>(e["KEY"]="id",e["LABEL"]="label",e["CHILDREN"]="children",e["DISABLED"]="disabled",e))(eU||{}),tU=(e=>(e["ADD"]="add",e["DELETE"]="delete",e))(tU||{});const nU={type:Number,default:26},oU=(0,H.b_)({data:{type:(0,H.jq)(Array),default:()=>Xn([])},emptyText:{type:String},height:{type:Number,default:200},props:{type:(0,H.jq)(Object),default:()=>Xn({children:"children",label:"label",disabled:"disabled",value:"id"})},highlightCurrent:{type:Boolean,default:!1},showCheckbox:{type:Boolean,default:!1},defaultCheckedKeys:{type:(0,H.jq)(Array),default:()=>Xn([])},checkStrictly:{type:Boolean,default:!1},defaultExpandedKeys:{type:(0,H.jq)(Array),default:()=>Xn([])},indent:{type:Number,default:16},itemSize:nU,icon:{type:en},expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:{type:Boolean,default:!1},currentNodeKey:{type:(0,H.jq)([String,Number])},accordion:{type:Boolean,default:!1},filterMethod:{type:(0,H.jq)(Function)},perfMode:{type:Boolean,default:!0}}),rU=(0,H.b_)({node:{type:(0,H.jq)(Object),default:()=>Xn(JX)},expanded:{type:Boolean,default:!1},checked:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},showCheckbox:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},current:{type:Boolean,default:!1},hiddenExpandIcon:{type:Boolean,default:!1},itemSize:nU}),lU=(0,H.b_)({node:{type:(0,H.jq)(Object),required:!0}}),aU="node-click",iU="node-expand",sU="node-collapse",uU="current-change",cU="check",dU="check-change",pU="node-contextmenu",fU={[aU]:(e,t,n)=>e&&t&&n,[iU]:(e,t)=>e&&t,[sU]:(e,t)=>e&&t,[uU]:(e,t)=>e&&t,[cU]:(e,t)=>e&&t,[dU]:(e,t)=>e&&"boolean"===typeof t,[pU]:(e,t,n)=>e&&t&&n},vU={click:(e,t)=>!(!e||!t),toggle:e=>!!e,check:(e,t)=>e&&"boolean"===typeof t};function hU(e,t){const n=(0,s.KR)(new Set),o=(0,s.KR)(new Set),{emit:r}=(0,i.nI)();(0,i.wB)([()=>t.value,()=>e.defaultCheckedKeys],(()=>(0,i.dY)((()=>{R(e.defaultCheckedKeys)}))),{immediate:!0});const l=()=>{if(!t.value||!e.showCheckbox||e.checkStrictly)return;const{levelTreeNodeMap:r,maxLevel:l}=t.value,a=n.value,i=new Set;for(let e=l-1;e>=1;--e){const t=r.get(e);t&&t.forEach((e=>{const t=e.children;if(t){let n=!0,o=!1;for(const e of t){const t=e.key;if(a.has(t))o=!0;else{if(i.has(t)){n=!1,o=!0;break}n=!1}}n?a.add(e.key):o?(i.add(e.key),a.delete(e.key)):(a.delete(e.key),i.delete(e.key))}}))}o.value=i},a=e=>n.value.has(e.key),u=e=>o.value.has(e.key),c=(t,o,r=!0)=>{const a=n.value,i=(t,n)=>{a[n?tU.ADD:tU.DELETE](t.key);const o=t.children;!e.checkStrictly&&o&&o.forEach((e=>{e.disabled||i(e,n)}))};i(t,o),l(),r&&d(t,o)},d=(e,t)=>{const{checkedNodes:n,checkedKeys:o}=m(),{halfCheckedNodes:l,halfCheckedKeys:a}=g();r(cU,e.data,{checkedKeys:o,checkedNodes:n,halfCheckedKeys:a,halfCheckedNodes:l}),r(dU,e.data,t)};function p(e=!1){return m(e).checkedKeys}function f(e=!1){return m(e).checkedNodes}function v(){return g().halfCheckedKeys}function h(){return g().halfCheckedNodes}function m(o=!1){const r=[],l=[];if((null==t?void 0:t.value)&&e.showCheckbox){const{treeNodeMap:e}=t.value;n.value.forEach((t=>{const n=e.get(t);n&&(!o||o&&n.isLeaf)&&(l.push(t),r.push(n.data))}))}return{checkedKeys:l,checkedNodes:r}}function g(){const n=[],r=[];if((null==t?void 0:t.value)&&e.showCheckbox){const{treeNodeMap:e}=t.value;o.value.forEach((t=>{const o=e.get(t);o&&(r.push(t),n.push(o.data))}))}return{halfCheckedNodes:n,halfCheckedKeys:r}}function y(e){n.value.clear(),o.value.clear(),R(e)}function b(n,o){if((null==t?void 0:t.value)&&e.showCheckbox){const e=t.value.treeNodeMap.get(n);e&&c(e,o,!1)}}function R(n){if(null==t?void 0:t.value){const{treeNodeMap:o}=t.value;if(e.showCheckbox&&o&&n)for(const e of n){const t=o.get(e);t&&!a(t)&&c(t,!0,!1)}}}return{updateCheckedKeys:l,toggleCheckbox:c,isChecked:a,isIndeterminate:u,getCheckedKeys:p,getCheckedNodes:f,getHalfCheckedKeys:v,getHalfCheckedNodes:h,setChecked:b,setCheckedKeys:y}}function mU(e,t){const n=(0,s.KR)(new Set([])),o=(0,s.KR)(new Set([])),r=(0,i.EW)((()=>(0,u.Tn)(e.filterMethod)));function l(l){var a;if(!r.value)return;const i=new Set,s=o.value,u=n.value,c=[],d=(null==(a=t.value)?void 0:a.treeNodes)||[],p=e.filterMethod;function f(e){e.forEach((e=>{c.push(e),(null==p?void 0:p(l,e.data))?c.forEach((e=>{i.add(e.key)})):e.isLeaf&&u.add(e.key);const t=e.children;if(t&&f(t),!e.isLeaf)if(i.has(e.key)){if(t){let n=!0;for(const e of t)if(!u.has(e.key)){n=!1;break}n?s.add(e.key):s.delete(e.key)}}else u.add(e.key);c.pop()}))}return u.clear(),f(d),i}function a(e){return o.value.has(e.key)}return{hiddenExpandIconKeySet:o,hiddenNodeKeySet:n,doFilter:l,isForceHiddenExpandIcon:a}}function gU(e,t){const n=(0,s.KR)(new Set(e.defaultExpandedKeys)),o=(0,s.KR)(),r=(0,s.IJ)();(0,i.wB)((()=>e.currentNodeKey),(e=>{o.value=e}),{immediate:!0}),(0,i.wB)((()=>e.data),(e=>{U(e)}),{immediate:!0});const{isIndeterminate:l,isChecked:a,toggleCheckbox:c,getCheckedKeys:d,getCheckedNodes:p,getHalfCheckedKeys:f,getHalfCheckedNodes:v,setChecked:h,setCheckedKeys:m}=hU(e,r),{doFilter:g,hiddenNodeKeySet:y,isForceHiddenExpandIcon:b}=mU(e,r),R=(0,i.EW)((()=>{var t;return(null==(t=e.props)?void 0:t.value)||eU.KEY})),w=(0,i.EW)((()=>{var t;return(null==(t=e.props)?void 0:t.children)||eU.CHILDREN})),E=(0,i.EW)((()=>{var t;return(null==(t=e.props)?void 0:t.disabled)||eU.DISABLED})),C=(0,i.EW)((()=>{var t;return(null==(t=e.props)?void 0:t.label)||eU.LABEL})),k=(0,i.EW)((()=>{const e=n.value,t=y.value,o=[],l=r.value&&r.value.treeNodes||[];function a(){const n=[];for(let e=l.length-1;e>=0;--e)n.push(l[e]);while(n.length){const r=n.pop();if(r&&(t.has(r.key)||o.push(r),e.has(r.key))){const e=r.children;if(e){const t=e.length;for(let o=t-1;o>=0;--o)n.push(e[o])}}}}return a(),o})),x=(0,i.EW)((()=>k.value.length>0));function _(e){const t=new Map,n=new Map;let o=1;function r(e,l=1,a=void 0){var i;const s=[];for(const o of e){const e=O(o),u={level:l,key:e,data:o};u.label=A(o),u.parent=a;const c=T(o);u.disabled=I(o),u.isLeaf=!c||0===c.length,c&&c.length&&(u.children=r(c,l+1,u)),s.push(u),t.set(e,u),n.has(l)||n.set(l,[]),null==(i=n.get(l))||i.push(u)}return l>o&&(o=l),s}const l=r(e);return{treeNodeMap:t,levelTreeNodeMap:n,maxLevel:o,treeNodes:l}}function S(e){const t=g(e);t&&(n.value=t)}function T(e){return e[w.value]}function O(e){return e?e[R.value]:""}function I(e){return e[E.value]}function A(e){return e[C.value]}function L(e){const t=n.value;t.has(e.key)?$(e):F(e)}function M(e){n.value=new Set(e)}function N(n,o){t(aU,n.data,n,o),W(n),e.expandOnClickNode&&L(n),e.showCheckbox&&e.checkOnClickNode&&!n.disabled&&c(n,!a(n),!0)}function W(e){K(e)||(o.value=e.key,t(uU,e.data,e))}function D(e,t){c(e,t)}function F(o){const l=n.value;if(r.value&&e.accordion){const{treeNodeMap:e}=r.value;l.forEach((t=>{const n=e.get(t);o&&o.level===(null==n?void 0:n.level)&&l.delete(t)}))}l.add(o.key),t(iU,o.data,o)}function $(e){n.value.delete(e.key),t(sU,e.data,e)}function B(e){return n.value.has(e.key)}function P(e){return!!e.disabled}function K(e){const t=o.value;return void 0!==t&&t===e.key}function j(){var e,t;if(o.value)return null==(t=null==(e=r.value)?void 0:e.treeNodeMap.get(o.value))?void 0:t.data}function V(){return o.value}function X(e){o.value=e}function U(e){(0,i.dY)((()=>r.value=_(e)))}function H(e){var t;const n=(0,u.Gv)(e)?O(e):e;return null==(t=r.value)?void 0:t.treeNodeMap.get(n)}return{tree:r,flattenTree:k,isNotEmpty:x,getKey:O,getChildren:T,toggleExpand:L,toggleCheckbox:c,isExpanded:B,isChecked:a,isIndeterminate:l,isDisabled:P,isCurrent:K,isForceHiddenExpandIcon:b,handleNodeClick:N,handleNodeCheck:D,getCurrentNode:j,getCurrentKey:V,setCurrentKey:X,getCheckedKeys:d,getCheckedNodes:p,getHalfCheckedKeys:f,getHalfCheckedNodes:v,setChecked:h,setCheckedKeys:m,filter:S,setData:U,getNode:H,expandNode:F,collapseNode:$,setExpandedKeys:M}}var yU=(0,i.pM)({name:"ElTreeNodeContent",props:lU,setup(e){const t=(0,i.WQ)(ZX),n=(0,ee.DU)("tree");return()=>{const o=e.node,{data:r}=o;return(null==t?void 0:t.ctx.slots.default)?t.ctx.slots.default({node:o,data:r}):(0,i.h)("span",{class:n.be("node","label")},[null==o?void 0:o.label])}}});const bU=["aria-expanded","aria-disabled","aria-checked","data-key","onClick"],RU=(0,i.pM)({name:"ElTreeNode"}),wU=(0,i.pM)({...RU,props:rU,emits:vU,setup(e,{emit:t}){const n=e,o=(0,i.WQ)(ZX),r=(0,ee.DU)("tree"),l=(0,i.EW)((()=>{var e;return null!=(e=null==o?void 0:o.props.indent)?e:16})),a=(0,i.EW)((()=>{var e;return null!=(e=null==o?void 0:o.props.icon)?e:Fe})),c=e=>{t("click",n.node,e)},d=()=>{t("toggle",n.node)},p=e=>{t("check",n.node,e)},f=e=>{var t,r,l,a;(null==(l=null==(r=null==(t=null==o?void 0:o.instance)?void 0:t.vnode)?void 0:r.props)?void 0:l["onNodeContextmenu"])&&(e.stopPropagation(),e.preventDefault()),null==o||o.ctx.emit(pU,e,null==(a=n.node)?void 0:a.data,n.node)};return(e,t)=>{var n,o,v;return(0,i.uX)(),(0,i.CE)("div",{ref:"node$",class:(0,u.C4)([(0,s.R1)(r).b("node"),(0,s.R1)(r).is("expanded",e.expanded),(0,s.R1)(r).is("current",e.current),(0,s.R1)(r).is("focusable",!e.disabled),(0,s.R1)(r).is("checked",!e.disabled&&e.checked)]),role:"treeitem",tabindex:"-1","aria-expanded":e.expanded,"aria-disabled":e.disabled,"aria-checked":e.checked,"data-key":null==(n=e.node)?void 0:n.key,onClick:(0,ge.D$)(c,["stop"]),onContextmenu:f},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(r).be("node","content")),style:(0,u.Tr)({paddingLeft:(e.node.level-1)*(0,s.R1)(l)+"px",height:e.itemSize+"px"})},[(0,s.R1)(a)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)([(0,s.R1)(r).is("leaf",!!(null==(o=e.node)?void 0:o.isLeaf)),(0,s.R1)(r).is("hidden",e.hiddenExpandIcon),{expanded:!(null==(v=e.node)?void 0:v.isLeaf)&&e.expanded},(0,s.R1)(r).be("node","expand-icon")]),onClick:(0,ge.D$)(d,["stop"])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(a))))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0),e.showCheckbox?((0,i.uX)(),(0,i.Wv)((0,s.R1)(yy),{key:1,"model-value":e.checked,indeterminate:e.indeterminate,disabled:e.disabled,onChange:p,onClick:t[0]||(t[0]=(0,ge.D$)((()=>{}),["stop"]))},null,8,["model-value","indeterminate","disabled"])):(0,i.Q3)("v-if",!0),(0,i.bF)((0,s.R1)(yU),{node:e.node},null,8,["node"])],6)],42,bU)}}});var EU=J(wU,[["__file","tree-node.vue"]]);const CU=(0,i.pM)({name:"ElTreeV2"}),kU=(0,i.pM)({...CU,props:oU,emits:fU,setup(e,{expose:t,emit:n}){const o=e,r=(0,i.Ht)(),l=(0,i.EW)((()=>o.itemSize));(0,i.Gt)(ZX,{ctx:{emit:n,slots:r},props:o,instance:(0,i.nI)()}),(0,i.Gt)(Zn,void 0);const{t:a}=(0,zu.Ym)(),c=(0,ee.DU)("tree"),{flattenTree:d,isNotEmpty:p,toggleExpand:f,isExpanded:v,isIndeterminate:h,isChecked:m,isDisabled:g,isCurrent:y,isForceHiddenExpandIcon:b,handleNodeClick:R,handleNodeCheck:w,toggleCheckbox:E,getCurrentNode:C,getCurrentKey:k,setCurrentKey:x,getCheckedKeys:_,getCheckedNodes:S,getHalfCheckedKeys:T,getHalfCheckedNodes:O,setChecked:I,setCheckedKeys:A,filter:L,setData:M,getNode:N,expandNode:W,collapseNode:D,setExpandedKeys:F}=gU(o,n);return t({toggleCheckbox:E,getCurrentNode:C,getCurrentKey:k,setCurrentKey:x,getCheckedKeys:_,getCheckedNodes:S,getHalfCheckedKeys:T,getHalfCheckedNodes:O,setChecked:I,setCheckedKeys:A,filter:L,setData:M,getNode:N,expandNode:W,collapseNode:D,setExpandedKeys:F}),(e,t)=>{var n;return(0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(c).b(),{[(0,s.R1)(c).m("highlight-current")]:e.highlightCurrent}]),role:"tree"},[(0,s.R1)(p)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(MM),{key:0,"class-name":(0,s.R1)(c).b("virtual-list"),data:(0,s.R1)(d),total:(0,s.R1)(d).length,height:e.height,"item-size":(0,s.R1)(l),"perf-mode":e.perfMode},{default:(0,i.k6)((({data:t,index:n,style:o})=>[((0,i.uX)(),(0,i.Wv)(EU,{key:t[n].key,style:(0,u.Tr)(o),node:t[n],expanded:(0,s.R1)(v)(t[n]),"show-checkbox":e.showCheckbox,checked:(0,s.R1)(m)(t[n]),indeterminate:(0,s.R1)(h)(t[n]),"item-size":(0,s.R1)(l),disabled:(0,s.R1)(g)(t[n]),current:(0,s.R1)(y)(t[n]),"hidden-expand-icon":(0,s.R1)(b)(t[n]),onClick:(0,s.R1)(R),onToggle:(0,s.R1)(f),onCheck:(0,s.R1)(w)},null,8,["style","node","expanded","show-checkbox","checked","indeterminate","item-size","disabled","current","hidden-expand-icon","onClick","onToggle","onCheck"]))])),_:1},8,["class-name","data","total","height","item-size","perf-mode"])):((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(c).e("empty-block"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(c).e("empty-text"))},(0,u.v_)(null!=(n=e.emptyText)?n:(0,s.R1)(a)("el.tree.emptyText")),3)],2))],2)}}});var xU=J(kU,[["__file","tree.vue"]]);const _U=pe(xU),SU=Symbol("uploadContextKey"),TU="ElUpload";class OU extends Error{constructor(e,t,n,o){super(e),this.name="UploadAjaxError",this.status=t,this.method=n,this.url=o}}function IU(e,t,n){let o;return o=n.response?`${n.response.error||n.response}`:n.responseText?`${n.responseText}`:`fail to ${t.method} ${e} ${n.status}`,new OU(o,n.status,t.method,e)}function AU(e){const t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch(n){return t}}const LU=e=>{"undefined"===typeof XMLHttpRequest&&(0,ne.$)(TU,"XMLHttpRequest is undefined");const t=new XMLHttpRequest,n=e.action;t.upload&&t.upload.addEventListener("progress",(t=>{const n=t;n.percent=t.total>0?t.loaded/t.total*100:0,e.onProgress(n)}));const o=new FormData;if(e.data)for(const[l,a]of Object.entries(e.data))(0,u.cy)(a)&&a.length?o.append(l,...a):o.append(l,a);o.append(e.filename,e.file,e.file.name),t.addEventListener("error",(()=>{e.onError(IU(n,e,t))})),t.addEventListener("load",(()=>{if(t.status<200||t.status>=300)return e.onError(IU(n,e,t));e.onSuccess(AU(t))})),t.open(e.method,n,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);const r=e.headers||{};if(r instanceof Headers)r.forEach(((e,n)=>t.setRequestHeader(n,e)));else for(const[l,a]of Object.entries(r))(0,Dn.A)(a)||t.setRequestHeader(l,String(a));return t.send(o),t},MU=["text","picture","picture-card"];let NU=1;const WU=()=>Date.now()+NU++,DU=(0,H.b_)({action:{type:String,default:"#"},headers:{type:(0,H.jq)(Object)},method:{type:String,default:"post"},data:{type:(0,H.jq)([Object,Function,Promise]),default:()=>Xn({})},multiple:{type:Boolean,default:!1},name:{type:String,default:"file"},drag:{type:Boolean,default:!1},withCredentials:Boolean,showFileList:{type:Boolean,default:!0},accept:{type:String,default:""},fileList:{type:(0,H.jq)(Array),default:()=>Xn([])},autoUpload:{type:Boolean,default:!0},listType:{type:String,values:MU,default:"text"},httpRequest:{type:(0,H.jq)(Function),default:LU},disabled:Boolean,limit:Number}),FU=(0,H.b_)({...DU,beforeUpload:{type:(0,H.jq)(Function),default:u.tE},beforeRemove:{type:(0,H.jq)(Function)},onRemove:{type:(0,H.jq)(Function),default:u.tE},onChange:{type:(0,H.jq)(Function),default:u.tE},onPreview:{type:(0,H.jq)(Function),default:u.tE},onSuccess:{type:(0,H.jq)(Function),default:u.tE},onProgress:{type:(0,H.jq)(Function),default:u.tE},onError:{type:(0,H.jq)(Function),default:u.tE},onExceed:{type:(0,H.jq)(Function),default:u.tE},crossorigin:{type:(0,H.jq)(String)}}),$U=(0,H.b_)({files:{type:(0,H.jq)(Array),default:()=>Xn([])},disabled:{type:Boolean,default:!1},handlePreview:{type:(0,H.jq)(Function),default:u.tE},listType:{type:String,values:MU,default:"text"},crossorigin:{type:(0,H.jq)(String)}}),BU={remove:e=>!!e},PU=["onKeydown"],KU=["src","crossorigin"],jU=["onClick"],VU=["title"],XU=["onClick"],UU=["onClick"],HU=(0,i.pM)({name:"ElUploadList"}),zU=(0,i.pM)({...HU,props:$U,emits:BU,setup(e,{emit:t}){const n=e,{t:o}=(0,zu.Ym)(),r=(0,ee.DU)("upload"),l=(0,ee.DU)("icon"),a=(0,ee.DU)("list"),c=io(),d=(0,s.KR)(!1),p=(0,i.EW)((()=>[r.b("list"),r.bm("list",n.listType),r.is("disabled",n.disabled)])),f=e=>{t("remove",e)};return(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.F,{tag:"ul",class:(0,u.C4)((0,s.R1)(p)),name:(0,s.R1)(a).b()},{default:(0,i.k6)((()=>[((0,i.uX)(!0),(0,i.CE)(i.FK,null,(0,i.pI)(e.files,(n=>((0,i.uX)(),(0,i.CE)("li",{key:n.uid||n.name,class:(0,u.C4)([(0,s.R1)(r).be("list","item"),(0,s.R1)(r).is(n.status),{focusing:d.value}]),tabindex:"0",onKeydown:(0,ge.jR)((e=>!(0,s.R1)(c)&&f(n)),["delete"]),onFocus:t[0]||(t[0]=e=>d.value=!0),onBlur:t[1]||(t[1]=e=>d.value=!1),onClick:t[2]||(t[2]=e=>d.value=!1)},[(0,i.RG)(e.$slots,"default",{file:n},(()=>["picture"===e.listType||"uploading"!==n.status&&"picture-card"===e.listType?((0,i.uX)(),(0,i.CE)("img",{key:0,class:(0,u.C4)((0,s.R1)(r).be("list","item-thumbnail")),src:n.url,crossorigin:e.crossorigin,alt:""},null,10,KU)):(0,i.Q3)("v-if",!0),"uploading"===n.status||"picture-card"!==e.listType?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)((0,s.R1)(r).be("list","item-info"))},[(0,i.Lk)("a",{class:(0,u.C4)((0,s.R1)(r).be("list","item-name")),onClick:(0,ge.D$)((t=>e.handlePreview(n)),["prevent"])},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(l).m("document"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(it))])),_:1},8,["class"]),(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(r).be("list","item-file-name")),title:n.name},(0,u.v_)(n.name),11,VU)],10,jU),"uploading"===n.status?((0,i.uX)(),(0,i.Wv)((0,s.R1)(eL),{key:0,type:"picture-card"===e.listType?"circle":"line","stroke-width":"picture-card"===e.listType?6:2,percentage:Number(n.percentage),style:(0,u.Tr)("picture-card"===e.listType?"":"margin-top: 0.5rem")},null,8,["type","stroke-width","percentage","style"])):(0,i.Q3)("v-if",!0)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("label",{class:(0,u.C4)((0,s.R1)(r).be("list","item-status-label"))},["text"===e.listType?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)([(0,s.R1)(l).m("upload-success"),(0,s.R1)(l).m("circle-check")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ue))])),_:1},8,["class"])):["picture-card","picture"].includes(e.listType)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)([(0,s.R1)(l).m("upload-success"),(0,s.R1)(l).m("check")])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Ke))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0)],2),(0,s.R1)(c)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:2,class:(0,u.C4)((0,s.R1)(l).m("close")),onClick:e=>f(n)},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Je))])),_:2},1032,["class","onClick"])),(0,i.Q3)(" Due to close btn only appears when li gets focused disappears after li gets blurred, thus keyboard navigation can never reach close btn"),(0,i.Q3)(" This is a bug which needs to be fixed "),(0,i.Q3)(" TODO: Fix the incorrect navigation interaction "),(0,s.R1)(c)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("i",{key:3,class:(0,u.C4)((0,s.R1)(l).m("close-tip"))},(0,u.v_)((0,s.R1)(o)("el.upload.deleteTip")),3)),"picture-card"===e.listType?((0,i.uX)(),(0,i.CE)("span",{key:4,class:(0,u.C4)((0,s.R1)(r).be("list","item-actions"))},[(0,i.Lk)("span",{class:(0,u.C4)((0,s.R1)(r).be("list","item-preview")),onClick:t=>e.handlePreview(n)},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(l).m("zoom-in"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(Qt))])),_:1},8,["class"])],10,XU),(0,s.R1)(c)?(0,i.Q3)("v-if",!0):((0,i.uX)(),(0,i.CE)("span",{key:0,class:(0,u.C4)((0,s.R1)(r).be("list","item-delete")),onClick:e=>f(n)},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(l).m("delete"))},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(lt))])),_:1},8,["class"])],10,UU))],2)):(0,i.Q3)("v-if",!0)]))],42,PU)))),128)),(0,i.RG)(e.$slots,"append")])),_:3},8,["class","name"]))}});var GU=J(zU,[["__file","upload-list.vue"]]);const qU=(0,H.b_)({disabled:{type:Boolean,default:!1}}),YU={file:e=>(0,u.cy)(e)},QU=["onDrop","onDragover"],ZU="ElUploadDrag",JU=(0,i.pM)({name:ZU}),eH=(0,i.pM)({...JU,props:qU,emits:YU,setup(e,{emit:t}){const n=(0,i.WQ)(SU);n||(0,ne.$)(ZU,"usage: ");const o=(0,ee.DU)("upload"),r=(0,s.KR)(!1),l=io(),a=e=>{if(l.value)return;r.value=!1,e.stopPropagation();const o=Array.from(e.dataTransfer.files),a=n.accept.value;if(!a)return void t("file",o);const i=o.filter((e=>{const{type:t,name:n}=e,o=n.includes(".")?`.${n.split(".").pop()}`:"",r=t.replace(/\/.*$/,"");return a.split(",").map((e=>e.trim())).filter((e=>e)).some((e=>e.startsWith(".")?o===e:/\/\*$/.test(e)?r===e.replace(/\/\*$/,""):!!/^[^/]+\/[^/]+$/.test(e)&&t===e))}));t("file",i)},c=()=>{l.value||(r.value=!0)};return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(o).b("dragger"),(0,s.R1)(o).is("dragover",r.value)]),onDrop:(0,ge.D$)(a,["prevent"]),onDragover:(0,ge.D$)(c,["prevent"]),onDragleave:t[0]||(t[0]=(0,ge.D$)((e=>r.value=!1),["prevent"]))},[(0,i.RG)(e.$slots,"default")],42,QU))}});var tH=J(eH,[["__file","upload-dragger.vue"]]);const nH=(0,H.b_)({...DU,beforeUpload:{type:(0,H.jq)(Function),default:u.tE},onRemove:{type:(0,H.jq)(Function),default:u.tE},onStart:{type:(0,H.jq)(Function),default:u.tE},onSuccess:{type:(0,H.jq)(Function),default:u.tE},onProgress:{type:(0,H.jq)(Function),default:u.tE},onError:{type:(0,H.jq)(Function),default:u.tE},onExceed:{type:(0,H.jq)(Function),default:u.tE}}),oH=["onKeydown"],rH=["name","multiple","accept"],lH=(0,i.pM)({name:"ElUploadContent",inheritAttrs:!1}),aH=(0,i.pM)({...lH,props:nH,setup(e,{expose:t}){const n=e,o=(0,ee.DU)("upload"),r=io(),l=(0,s.IJ)({}),a=(0,s.IJ)(),c=e=>{if(0===e.length)return;const{autoUpload:t,limit:o,fileList:r,multiple:l,onStart:a,onExceed:i}=n;if(o&&r.length+e.length>o)i(e,r);else{l||(e=e.slice(0,1));for(const n of e){const e=n;e.uid=WU(),a(e),t&&d(e)}}},d=async e=>{if(a.value.value="",!n.beforeUpload)return f(e);let t,o={};try{const r=n.data,l=n.beforeUpload(e);o=(0,u.Qd)(n.data)?em(n.data):n.data,t=await l,(0,u.Qd)(n.data)&&eg(r,o)&&(o=em(n.data))}catch(l){t=!1}if(!1===t)return void n.onRemove(e);let r=e;t instanceof Blob&&(r=t instanceof File?t:new File([t],e.name,{type:e.type})),f(Object.assign(r,{uid:e.uid}),o)},p=async(e,t)=>(0,u.Tn)(e)?e(t):e,f=async(e,t)=>{const{headers:o,data:r,method:a,withCredentials:i,name:s,action:u,onProgress:c,onSuccess:d,onError:f,httpRequest:v}=n;try{t=await p(null!=t?t:r,e)}catch(y){return void n.onRemove(e)}const{uid:h}=e,m={headers:o||{},withCredentials:i,file:e,data:t,method:a,filename:s,action:u,onProgress:t=>{c(t,e)},onSuccess:t=>{d(t,e),delete l.value[h]},onError:t=>{f(t,e),delete l.value[h]}},g=v(m);l.value[h]=g,g instanceof Promise&&g.then(m.onSuccess,m.onError)},v=e=>{const t=e.target.files;t&&c(Array.from(t))},h=()=>{r.value||(a.value.value="",a.value.click())},m=()=>{h()},g=e=>{const t=(0,Ce.Mc)(l.value).filter(e?([t])=>String(e.uid)===t:()=>!0);t.forEach((([e,t])=>{t instanceof XMLHttpRequest&&t.abort(),delete l.value[e]}))};return t({abort:g,upload:d}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{class:(0,u.C4)([(0,s.R1)(o).b(),(0,s.R1)(o).m(e.listType),(0,s.R1)(o).is("drag",e.drag)]),tabindex:"0",onClick:h,onKeydown:(0,ge.jR)((0,ge.D$)(m,["self"]),["enter","space"])},[e.drag?((0,i.uX)(),(0,i.Wv)(tH,{key:0,disabled:(0,s.R1)(r),onFile:c},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["disabled"])):(0,i.RG)(e.$slots,"default",{key:1}),(0,i.Lk)("input",{ref_key:"inputRef",ref:a,class:(0,u.C4)((0,s.R1)(o).e("input")),name:e.name,multiple:e.multiple,accept:e.accept,type:"file",onChange:v,onClick:t[0]||(t[0]=(0,ge.D$)((()=>{}),["stop"]))},null,42,rH)],42,oH))}});var iH=J(aH,[["__file","upload-content.vue"]]);const sH="ElUpload",uH=e=>{var t;(null==(t=e.url)?void 0:t.startsWith("blob:"))&&URL.revokeObjectURL(e.url)},cH=(e,t)=>{const n=V(e,"fileList",void 0,{passive:!0}),o=e=>n.value.find((t=>t.uid===e.uid));function r(e){var n;null==(n=t.value)||n.abort(e)}function l(e=["ready","uploading","success","fail"]){n.value=n.value.filter((t=>!e.includes(t.status)))}const a=(t,r)=>{const l=o(r);l&&(console.error(t),l.status="fail",n.value.splice(n.value.indexOf(l),1),e.onError(t,l,n.value),e.onChange(l,n.value))},s=(t,r)=>{const l=o(r);l&&(e.onProgress(t,l,n.value),l.status="uploading",l.percentage=Math.round(t.percent))},u=(t,r)=>{const l=o(r);l&&(l.status="success",l.response=t,e.onSuccess(t,l,n.value),e.onChange(l,n.value))},c=t=>{(0,Dn.A)(t.uid)&&(t.uid=WU());const o={name:t.name,percentage:0,status:"ready",size:t.size,raw:t,uid:t.uid};if("picture-card"===e.listType||"picture"===e.listType)try{o.url=URL.createObjectURL(t)}catch(r){(0,ne.U)(sH,r.message),e.onError(r,o,n.value)}n.value=[...n.value,o],e.onChange(o,n.value)},d=async t=>{const l=t instanceof File?o(t):t;l||(0,ne.$)(sH,"file to be removed not found");const a=t=>{r(t);const o=n.value;o.splice(o.indexOf(t),1),e.onRemove(t,o),uH(t)};if(e.beforeRemove){const t=await e.beforeRemove(l,n.value);!1!==t&&a(l)}else a(l)};function p(){n.value.filter((({status:e})=>"ready"===e)).forEach((({raw:e})=>{var n;return e&&(null==(n=t.value)?void 0:n.upload(e))}))}return(0,i.wB)((()=>e.listType),(t=>{"picture-card"!==t&&"picture"!==t||(n.value=n.value.map((t=>{const{raw:o,url:r}=t;if(!r&&o)try{t.url=URL.createObjectURL(o)}catch(l){e.onError(l,t,n.value)}return t})))})),(0,i.wB)(n,(e=>{for(const t of e)t.uid||(t.uid=WU()),t.status||(t.status="success")}),{immediate:!0,deep:!0}),{uploadFiles:n,abort:r,clearFiles:l,handleError:a,handleProgress:s,handleStart:c,handleSuccess:u,handleRemove:d,submit:p,revokeFileObjectURL:uH}},dH=(0,i.pM)({name:"ElUpload"}),pH=(0,i.pM)({...dH,props:FU,setup(e,{expose:t}){const n=e,o=io(),r=(0,s.IJ)(),{abort:l,submit:a,clearFiles:u,uploadFiles:c,handleStart:d,handleError:p,handleRemove:f,handleSuccess:v,handleProgress:h,revokeFileObjectURL:m}=cH(n,r),g=(0,i.EW)((()=>"picture-card"===n.listType)),y=(0,i.EW)((()=>({...n,fileList:c.value,onStart:d,onProgress:h,onSuccess:v,onError:p,onRemove:f})));return(0,i.xo)((()=>{c.value.forEach(m)})),(0,i.Gt)(SU,{accept:(0,s.lW)(n,"accept")}),t({abort:l,submit:a,clearFiles:u,handleStart:d,handleRemove:f}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",null,[(0,s.R1)(g)&&e.showFileList?((0,i.uX)(),(0,i.Wv)(GU,{key:0,disabled:(0,s.R1)(o),"list-type":e.listType,files:(0,s.R1)(c),crossorigin:e.crossorigin,"handle-preview":e.onPreview,onRemove:(0,s.R1)(f)},(0,i.eX)({append:(0,i.k6)((()=>[(0,i.bF)(iH,(0,i.v6)({ref_key:"uploadRef",ref:r},(0,s.R1)(y)),{default:(0,i.k6)((()=>[e.$slots.trigger?(0,i.RG)(e.$slots,"trigger",{key:0}):(0,i.Q3)("v-if",!0),!e.$slots.trigger&&e.$slots.default?(0,i.RG)(e.$slots,"default",{key:1}):(0,i.Q3)("v-if",!0)])),_:3},16)])),_:2},[e.$slots.file?{name:"default",fn:(0,i.k6)((({file:t})=>[(0,i.RG)(e.$slots,"file",{file:t})]))}:void 0]),1032,["disabled","list-type","files","crossorigin","handle-preview","onRemove"])):(0,i.Q3)("v-if",!0),!(0,s.R1)(g)||(0,s.R1)(g)&&!e.showFileList?((0,i.uX)(),(0,i.Wv)(iH,(0,i.v6)({key:1,ref_key:"uploadRef",ref:r},(0,s.R1)(y)),{default:(0,i.k6)((()=>[e.$slots.trigger?(0,i.RG)(e.$slots,"trigger",{key:0}):(0,i.Q3)("v-if",!0),!e.$slots.trigger&&e.$slots.default?(0,i.RG)(e.$slots,"default",{key:1}):(0,i.Q3)("v-if",!0)])),_:3},16)):(0,i.Q3)("v-if",!0),e.$slots.trigger?(0,i.RG)(e.$slots,"default",{key:2}):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"tip"),!(0,s.R1)(g)&&e.showFileList?((0,i.uX)(),(0,i.Wv)(GU,{key:3,disabled:(0,s.R1)(o),"list-type":e.listType,files:(0,s.R1)(c),crossorigin:e.crossorigin,"handle-preview":e.onPreview,onRemove:(0,s.R1)(f)},(0,i.eX)({_:2},[e.$slots.file?{name:"default",fn:(0,i.k6)((({file:t})=>[(0,i.RG)(e.$slots,"file",{file:t})]))}:void 0]),1032,["disabled","list-type","files","crossorigin","handle-preview","onRemove"])):(0,i.Q3)("v-if",!0)]))}});var fH=J(pH,[["__file","upload.vue"]]);const vH=pe(fH),hH=(0,H.b_)({zIndex:{type:Number,default:9},rotate:{type:Number,default:-22},width:Number,height:Number,image:String,content:{type:(0,H.jq)([String,Array]),default:"Element Plus"},font:{type:(0,H.jq)(Object)},gap:{type:(0,H.jq)(Array),default:()=>[100,100]},offset:{type:(0,H.jq)(Array)}});function mH(e){return e.replace(/([A-Z])/g,"-$1").toLowerCase()}function gH(e){return Object.keys(e).map((t=>`${mH(t)}: ${e[t]};`)).join(" ")}function yH(){return window.devicePixelRatio||1}const bH=(e,t)=>{let n=!1;return e.removedNodes.length&&t&&(n=Array.from(e.removedNodes).includes(t)),"attributes"===e.type&&e.target===t&&(n=!0),n},RH=3;function wH(e,t,n=1){const o=document.createElement("canvas"),r=o.getContext("2d"),l=e*n,a=t*n;return o.setAttribute("width",`${l}px`),o.setAttribute("height",`${a}px`),r.save(),[r,o,l,a]}function EH(){function e(e,t,n,o,r,l,a,i){const[s,u,c,d]=wH(o,r,n);if(e instanceof HTMLImageElement)s.drawImage(e,0,0,c,d);else{const{color:t,fontSize:o,fontStyle:a,fontWeight:i,fontFamily:u,textAlign:d,textBaseline:p}=l,f=Number(o)*n;s.font=`${a} normal ${i} ${f}px/${r}px ${u}`,s.fillStyle=t,s.textAlign=d,s.textBaseline=p;const v=Array.isArray(e)?e:[e];null==v||v.forEach(((e,t)=>{s.fillText(null!=e?e:"",c/2,t*(f+RH*n))}))}const p=Math.PI/180*Number(t),f=Math.max(o,r),[v,h,m]=wH(f,f,n);function g(e,t){const n=e*Math.cos(p)-t*Math.sin(p),o=e*Math.sin(p)+t*Math.cos(p);return[n,o]}v.translate(m/2,m/2),v.rotate(p),c>0&&d>0&&v.drawImage(u,-c/2,-d/2);let y=0,b=0,R=0,w=0;const E=c/2,C=d/2,k=[[0-E,0-C],[0+E,0-C],[0+E,0+C],[0-E,0+C]];k.forEach((([e,t])=>{const[n,o]=g(e,t);y=Math.min(y,n),b=Math.max(b,n),R=Math.min(R,o),w=Math.max(w,o)}));const x=y+m/2,_=R+m/2,S=b-y,T=w-R,O=a*n,I=i*n,A=2*(S+O),L=T+I,[M,N]=wH(A,L);function W(e=0,t=0){M.drawImage(h,x,_,S,T,e,t,S,T)}return W(),W(S+O,-T/2-I/2),W(S+O,+T/2+I/2),[N.toDataURL(),A/n,L/n]}return e}const CH=(0,i.pM)({name:"ElWatermark"}),kH=(0,i.pM)({...CH,props:hH,setup(e){const t=e,n={position:"relative"},o=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.color)?n:"rgba(0,0,0,.15)"})),r=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.fontSize)?n:16})),l=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.fontWeight)?n:"normal"})),a=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.fontStyle)?n:"normal"})),c=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.fontFamily)?n:"sans-serif"})),d=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.textAlign)?n:"center"})),p=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.font)?void 0:e.textBaseline)?n:"top"})),f=(0,i.EW)((()=>t.gap[0])),v=(0,i.EW)((()=>t.gap[1])),h=(0,i.EW)((()=>f.value/2)),m=(0,i.EW)((()=>v.value/2)),g=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.offset)?void 0:e[0])?n:h.value})),y=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.offset)?void 0:e[1])?n:m.value})),b=()=>{const e={zIndex:t.zIndex,position:"absolute",left:0,top:0,width:"100%",height:"100%",pointerEvents:"none",backgroundRepeat:"repeat"};let n=g.value-h.value,o=y.value-m.value;return n>0&&(e.left=`${n}px`,e.width=`calc(100% - ${n}px)`,n=0),o>0&&(e.top=`${o}px`,e.height=`calc(100% - ${o}px)`,o=0),e.backgroundPosition=`${n}px ${o}px`,e},R=(0,s.IJ)(null),w=(0,s.IJ)(),E=(0,s.KR)(!1),C=()=>{w.value&&(w.value.remove(),w.value=void 0)},k=(e,t)=>{var n;R.value&&w.value&&(E.value=!0,w.value.setAttribute("style",gH({...b(),backgroundImage:`url('${e}')`,backgroundSize:`${Math.floor(t)}px`})),null==(n=R.value)||n.append(w.value),setTimeout((()=>{E.value=!1})))},x=e=>{let n=120,o=64;const l=t.image,a=t.content,i=t.width,s=t.height;if(!l&&e.measureText){e.font=`${Number(r.value)}px ${c.value}`;const t=Array.isArray(a)?a:[a],l=t.map((t=>{const n=e.measureText(t);return[n.width,void 0!==n.fontBoundingBoxAscent?n.fontBoundingBoxAscent+n.fontBoundingBoxDescent:n.actualBoundingBoxAscent+n.actualBoundingBoxDescent]}));n=Math.ceil(Math.max(...l.map((e=>e[0])))),o=Math.ceil(Math.max(...l.map((e=>e[1]))))*t.length+(t.length-1)*RH}return[null!=i?i:n,null!=s?s:o]},_=EH(),S=()=>{const e=document.createElement("canvas"),n=e.getContext("2d"),i=t.image,s=t.content,u=t.rotate;if(n){w.value||(w.value=document.createElement("div"));const e=yH(),[t,h]=x(n),m=n=>{const[i,s]=_(n||"",u,e,t,h,{color:o.value,fontSize:r.value,fontStyle:a.value,fontWeight:l.value,fontFamily:c.value,textAlign:d.value,textBaseline:p.value},f.value,v.value);k(i,s)};if(i){const e=new Image;e.onload=()=>{m(e)},e.onerror=()=>{m(s)},e.crossOrigin="anonymous",e.referrerPolicy="no-referrer",e.src=i}else m(s)}};(0,i.sV)((()=>{S()})),(0,i.wB)((()=>t),(()=>{S()}),{deep:!0,flush:"post"}),(0,i.xo)((()=>{C()}));const T=e=>{E.value||e.forEach((e=>{bH(e,w.value)&&(C(),S())}))};return N(R,T,{attributes:!0,subtree:!0,childList:!0}),(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"containerRef",ref:R,style:(0,u.Tr)([n])},[(0,i.RG)(e.$slots,"default")],4))}});var xH=J(kH,[["__file","watermark.vue"]]);const _H=pe(xH),SH=(0,H.b_)({zIndex:{type:Number,default:1001},visible:Boolean,fill:{type:String,default:"rgba(0,0,0,0.5)"},pos:{type:(0,H.jq)(Object)},targetAreaClickable:{type:Boolean,default:!0}}),TH=(e,t,n,o,r)=>{const l=(0,s.KR)(null),a=()=>{let t;return t=(0,u.Kg)(e.value)?document.querySelector(e.value):(0,u.Tn)(e.value)?e.value():e.value,t},c=()=>{const e=a();if(!e||!t.value)return void(l.value=null);!IH(e)&&t.value&&e.scrollIntoView(r.value);const{left:n,top:o,width:i,height:s}=e.getBoundingClientRect();l.value={left:n,top:o,width:i,height:s,radius:0}};(0,i.sV)((()=>{(0,i.wB)([t,e],(()=>{c()}),{immediate:!0}),window.addEventListener("resize",c)})),(0,i.xo)((()=>{window.removeEventListener("resize",c)}));const d=e=>{var t;return null!=(t=(0,u.cy)(n.value.offset)?n.value.offset[e]:n.value.offset)?t:6},p=(0,i.EW)((()=>{var e;if(!l.value)return l.value;const t=d(0),o=d(1),r=(null==(e=n.value)?void 0:e.radius)||2;return{left:l.value.left-t,top:l.value.top-o,width:l.value.width+2*t,height:l.value.height+2*o,radius:r}})),f=(0,i.EW)((()=>{const e=a();return o.value&&e&&window.DOMRect?{getBoundingClientRect(){var e,t,n,o;return window.DOMRect.fromRect({width:(null==(e=p.value)?void 0:e.width)||0,height:(null==(t=p.value)?void 0:t.height)||0,x:(null==(n=p.value)?void 0:n.left)||0,y:(null==(o=p.value)?void 0:o.top)||0})}}:e||void 0}));return{mergedPosInfo:p,triggerTarget:f}},OH=Symbol("ElTour");function IH(e){const t=window.innerWidth||document.documentElement.clientWidth,n=window.innerHeight||document.documentElement.clientHeight,{top:o,right:r,bottom:l,left:a}=e.getBoundingClientRect();return o>=0&&a>=0&&r<=t&&l<=n}const AH=(e,t,n,o,r,l,a,u)=>{const d=(0,s.KR)(),p=(0,s.KR)(),f=(0,s.KR)({}),v={x:d,y:p,placement:o,strategy:r,middlewareData:f},h=(0,i.EW)((()=>{const e=[Sj((0,s.R1)(l)),EV(),wV(),LH()];return(0,s.R1)(u)&&(0,s.R1)(n)&&e.push(CV({element:(0,s.R1)(n)})),e})),m=async()=>{if(!c.oc)return;const n=(0,s.R1)(e),l=(0,s.R1)(t);if(!n||!l)return;const a=await kV(n,l,{placement:(0,s.R1)(o),strategy:(0,s.R1)(r),middleware:(0,s.R1)(h)});(0,Ce.YD)(v).forEach((e=>{v[e].value=a[e]}))},g=(0,i.EW)((()=>{if(!(0,s.R1)(e))return{position:"fixed",top:"50%",left:"50%",transform:"translate3d(-50%, -50%, 0)",maxWidth:"100vw",zIndex:(0,s.R1)(a)};const{overflow:t}=(0,s.R1)(f);return{position:(0,s.R1)(r),zIndex:(0,s.R1)(a),top:null!=(0,s.R1)(p)?`${(0,s.R1)(p)}px`:"",left:null!=(0,s.R1)(d)?`${(0,s.R1)(d)}px`:"",maxWidth:(null==t?void 0:t.maxWidth)?`${null==t?void 0:t.maxWidth}px`:""}})),y=(0,i.EW)((()=>{if(!(0,s.R1)(u))return{};const{arrow:e}=(0,s.R1)(f);return{left:null!=(null==e?void 0:e.x)?`${null==e?void 0:e.x}px`:"",top:null!=(null==e?void 0:e.y)?`${null==e?void 0:e.y}px`:""}}));let b;return(0,i.sV)((()=>{b=RV((0,s.R1)(e),(0,s.R1)(t),m),(0,i.nT)((()=>{m()}))})),(0,i.xo)((()=>{b&&b()})),{update:m,contentStyle:g,arrowStyle:y}},LH=()=>({name:"overflow",async fn(e){const t=await Cj(e);let n=0;t.left>0&&(n=t.left),t.right>0&&(n=t.right);const o=e.rects.floating.width;return{data:{maxWidth:o-n}}}}),MH={style:{width:"100%",height:"100%"}},NH=["d"],WH=(0,i.pM)({name:"ElTourMask",inheritAttrs:!1}),DH=(0,i.pM)({...WH,props:SH,setup(e){const t=e,{ns:n}=(0,i.WQ)(OH),o=(0,i.EW)((()=>{var e,n;return null!=(n=null==(e=t.pos)?void 0:e.radius)?n:2})),r=(0,i.EW)((()=>{const e=o.value,t=`a${e},${e} 0 0 1`;return{topRight:`${t} ${e},${e}`,bottomRight:`${t} ${-e},${e}`,bottomLeft:`${t} ${-e},${-e}`,topLeft:`${t} ${e},${-e}`}})),l=(0,i.EW)((()=>{const e=window.innerWidth,n=window.innerHeight,l=r.value,a=`M${e},0 L0,0 L0,${n} L${e},${n} L${e},0 Z`,i=o.value;return t.pos?`${a} M${t.pos.left+i},${t.pos.top} h${t.pos.width-2*i} ${l.topRight} v${t.pos.height-2*i} ${l.bottomRight} h${-t.pos.width+2*i} ${l.bottomLeft} v${-t.pos.height+2*i} ${l.topLeft} z`:a})),a=(0,i.EW)((()=>({fill:t.fill,pointerEvents:"auto",cursor:"auto"})));return Mk((0,s.lW)(t,"visible"),{ns:n}),(e,t)=>e.visible?((0,i.uX)(),(0,i.CE)("div",(0,i.v6)({key:0,class:(0,s.R1)(n).e("mask"),style:{position:"fixed",left:0,right:0,top:0,bottom:0,zIndex:e.zIndex,pointerEvents:e.pos&&e.targetAreaClickable?"none":"auto"}},e.$attrs),[((0,i.uX)(),(0,i.CE)("svg",MH,[(0,i.Lk)("path",{class:(0,u.C4)((0,s.R1)(n).e("hollow")),style:(0,u.Tr)((0,s.R1)(a)),d:(0,s.R1)(l)},null,14,NH)]))],16)):(0,i.Q3)("v-if",!0)}});var FH=J(DH,[["__file","mask.vue"]]);const $H=["absolute","fixed"],BH=["top-start","top-end","top","bottom-start","bottom-end","bottom","left-start","left-end","left","right-start","right-end","right"],PH=(0,H.b_)({placement:{type:(0,H.jq)(String),values:BH,default:"bottom"},reference:{type:(0,H.jq)(Object),default:null},strategy:{type:(0,H.jq)(String),values:$H,default:"absolute"},offset:{type:Number,default:10},showArrow:Boolean,zIndex:{type:Number,default:2001}}),KH={close:()=>!0},jH=["data-side"],VH=(0,i.pM)({name:"ElTourContent"}),XH=(0,i.pM)({...VH,props:PH,emits:KH,setup(e,{emit:t}){const n=e,o=(0,s.KR)(n.placement),r=(0,s.KR)(n.strategy),l=(0,s.KR)(null),a=(0,s.KR)(null);(0,i.wB)((()=>n.placement),(()=>{o.value=n.placement}));const{contentStyle:c,arrowStyle:d}=AH((0,s.lW)(n,"reference"),l,a,o,r,(0,s.lW)(n,"offset"),(0,s.lW)(n,"zIndex"),(0,s.lW)(n,"showArrow")),p=(0,i.EW)((()=>o.value.split("-")[0])),{ns:f}=(0,i.WQ)(OH),v=()=>{t("close")};return(e,t)=>((0,i.uX)(),(0,i.CE)("div",{ref_key:"contentRef",ref:l,style:(0,u.Tr)((0,s.R1)(c)),class:(0,u.C4)((0,s.R1)(f).e("content")),"data-side":(0,s.R1)(p),tabindex:"-1"},[(0,i.bF)((0,s.R1)(Li),{loop:"",trapped:"","focus-start-el":"container","focus-trap-el":l.value||void 0,onReleaseRequested:v},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["focus-trap-el"]),e.showArrow?((0,i.uX)(),(0,i.CE)("span",{key:0,ref_key:"arrowRef",ref:a,style:(0,u.Tr)((0,s.R1)(d)),class:(0,u.C4)((0,s.R1)(f).e("arrow"))},null,6)):(0,i.Q3)("v-if",!0)],14,jH))}});var UH=J(XH,[["__file","content.vue"]]),HH=(0,i.pM)({name:"ElTourSteps",props:{current:{type:Number,default:0}},emits:["update-total"],setup(e,{slots:t,emit:n}){let o=0;return()=>{var r,l;const a=null==(r=t.default)?void 0:r.call(t),i=[];let s=0;function c(e){(0,u.cy)(e)&&e.forEach((e=>{var t;const n=null==(t=(null==e?void 0:e.type)||{})?void 0:t.name;"ElTourStep"===n&&(i.push(e),s+=1)}))}return a.length&&c(Ac(null==(l=a[0])?void 0:l.children)),o!==s&&(o=s,n("update-total",s)),i.length?i[e.current]:null}}});const zH=(0,H.b_)({modelValue:Boolean,current:{type:Number,default:0},showArrow:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},closeIcon:{type:en},placement:PH.placement,contentStyle:{type:(0,H.jq)([Object])},mask:{type:(0,H.jq)([Boolean,Object]),default:!0},gap:{type:(0,H.jq)(Object),default:()=>({offset:6,radius:2})},zIndex:{type:Number},scrollIntoViewOptions:{type:(0,H.jq)([Boolean,Object]),default:()=>({block:"center"})},type:{type:(0,H.jq)(String)},appendTo:{type:(0,H.jq)([String,Object]),default:"body"},closeOnPressEscape:{type:Boolean,default:!0},targetAreaClickable:{type:Boolean,default:!0}}),GH={[G]:e=>(0,z.Lm)(e),["update:current"]:e=>(0,z.Et)(e),close:e=>(0,z.Et)(e),finish:()=>!0,change:e=>(0,z.Et)(e)},qH=(0,i.pM)({name:"ElTour"}),YH=(0,i.pM)({...qH,props:zH,emits:GH,setup(e,{emit:t}){const n=e,o=(0,ee.DU)("tour"),r=(0,s.KR)(0),l=(0,s.KR)(),a=V(n,"current",t,{passive:!0}),c=(0,i.EW)((()=>{var e;return null==(e=l.value)?void 0:e.target})),d=(0,i.EW)((()=>[o.b(),"primary"===b.value?o.m("primary"):""])),p=(0,i.EW)((()=>{var e;return(null==(e=l.value)?void 0:e.placement)||n.placement})),f=(0,i.EW)((()=>{var e,t;return null!=(t=null==(e=l.value)?void 0:e.contentStyle)?t:n.contentStyle})),v=(0,i.EW)((()=>{var e,t;return null!=(t=null==(e=l.value)?void 0:e.mask)?t:n.mask})),h=(0,i.EW)((()=>!!v.value&&n.modelValue)),m=(0,i.EW)((()=>(0,z.Lm)(v.value)?void 0:v.value)),g=(0,i.EW)((()=>{var e,t;return!!c.value&&(null!=(t=null==(e=l.value)?void 0:e.showArrow)?t:n.showArrow)})),y=(0,i.EW)((()=>{var e,t;return null!=(t=null==(e=l.value)?void 0:e.scrollIntoViewOptions)?t:n.scrollIntoViewOptions})),b=(0,i.EW)((()=>{var e,t;return null!=(t=null==(e=l.value)?void 0:e.type)?t:n.type})),{nextZIndex:R}=(0,Za.YK)(),w=R(),E=(0,i.EW)((()=>{var e;return null!=(e=n.zIndex)?e:w})),{mergedPosInfo:C,triggerTarget:k}=TH(c,(0,s.lW)(n,"modelValue"),(0,s.lW)(n,"gap"),v,y);(0,i.wB)((()=>n.modelValue),(e=>{e||(a.value=0)}));const x=()=>{n.closeOnPressEscape&&(t("update:modelValue",!1),t("close",a.value))},_=e=>{r.value=e},S=(0,i.Ht)();return(0,i.Gt)(OH,{currentStep:l,current:a,total:r,showClose:(0,s.lW)(n,"showClose"),closeIcon:(0,s.lW)(n,"closeIcon"),mergedType:b,ns:o,slots:S,updateModelValue(e){t("update:modelValue",e)},onClose(){t("close",a.value)},onFinish(){t("finish")},onChange(){t("change",a.value)}}),(e,t)=>{var n,o;return(0,i.uX)(),(0,i.CE)(i.FK,null,[((0,i.uX)(),(0,i.Wv)(i.Im,{to:e.appendTo},[(0,i.Lk)("div",(0,i.v6)({class:(0,s.R1)(d)},e.$attrs),[(0,i.bF)(FH,{visible:(0,s.R1)(h),fill:null==(n=(0,s.R1)(m))?void 0:n.color,style:(0,u.Tr)(null==(o=(0,s.R1)(m))?void 0:o.style),pos:(0,s.R1)(C),"z-index":(0,s.R1)(E),"target-area-clickable":e.targetAreaClickable},null,8,["visible","fill","style","pos","z-index","target-area-clickable"]),e.modelValue?((0,i.uX)(),(0,i.Wv)(UH,{key:(0,s.R1)(a),reference:(0,s.R1)(k),placement:(0,s.R1)(p),"show-arrow":(0,s.R1)(g),"z-index":(0,s.R1)(E),style:(0,u.Tr)((0,s.R1)(f)),onClose:x},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(HH),{current:(0,s.R1)(a),onUpdateTotal:_},{default:(0,i.k6)((()=>[(0,i.RG)(e.$slots,"default")])),_:3},8,["current"])])),_:3},8,["reference","placement","show-arrow","z-index","style"])):(0,i.Q3)("v-if",!0)],16)],8,["to"])),(0,i.Q3)(" just for IDE "),(0,i.Q3)("v-if",!0)],64)}}});var QH=J(YH,[["__file","tour.vue"]]);function ZH(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}var JH=ZH;function ez(e,t,n){var o=-1,r=e.length;t<0&&(t=-t>r?0:r+t),n=n>r?r:n,n<0&&(n+=r),r=t>n?0:n-t>>>0,t>>>=0;var l=Array(r);while(++o1),t})),Rd(e,Uf(e),n),o&&(n=Yh(n,sz|uz|cz,iz));var r=t.length;while(r--)lz(n,t[r]);return n})),pz=dz;const fz=(0,H.b_)({target:{type:(0,H.jq)([String,Object,Function])},title:String,description:String,showClose:{type:Boolean,default:void 0},closeIcon:{type:en},showArrow:{type:Boolean,default:void 0},placement:PH.placement,mask:{type:(0,H.jq)([Boolean,Object]),default:void 0},contentStyle:{type:(0,H.jq)([Object])},prevButtonProps:{type:(0,H.jq)(Object)},nextButtonProps:{type:(0,H.jq)(Object)},scrollIntoViewOptions:{type:(0,H.jq)([Boolean,Object]),default:void 0},type:{type:(0,H.jq)(String)}}),vz={close:()=>!0},hz=(0,i.pM)({name:"ElTourStep"}),mz=(0,i.pM)({...hz,props:fz,emits:vz,setup(e,{emit:t}){const n=e,{Close:o}=tn,{t:r}=(0,zu.Ym)(),{currentStep:l,current:a,total:c,showClose:d,closeIcon:p,mergedType:f,ns:v,slots:h,updateModelValue:m,onClose:g,onFinish:y,onChange:b}=(0,i.WQ)(OH);(0,i.wB)(n,(e=>{l.value=e}),{immediate:!0});const R=(0,i.EW)((()=>{var e;return null!=(e=n.showClose)?e:d.value})),w=(0,i.EW)((()=>{var e,t;return null!=(t=null!=(e=n.closeIcon)?e:p.value)?t:o})),E=e=>{if(e)return pz(e,["children","onClick"])},C=()=>{var e,t;a.value-=1,(null==(e=n.prevButtonProps)?void 0:e.onClick)&&(null==(t=n.prevButtonProps)||t.onClick()),b()},k=()=>{var e;a.value>=c.value-1?x():a.value+=1,(null==(e=n.nextButtonProps)?void 0:e.onClick)&&n.nextButtonProps.onClick(),b()},x=()=>{_(),y()},_=()=>{m(!1),g(),t("close")};return(e,t)=>((0,i.uX)(),(0,i.CE)(i.FK,null,[(0,s.R1)(R)?((0,i.uX)(),(0,i.CE)("button",{key:0,"aria-label":"Close",class:(0,u.C4)((0,s.R1)(v).e("closebtn")),type:"button",onClick:_},[(0,i.bF)((0,s.R1)(Ee),{class:(0,u.C4)((0,s.R1)(v).e("close"))},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(w))))])),_:1},8,["class"])],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("header",{class:(0,u.C4)([(0,s.R1)(v).e("header"),{"show-close":(0,s.R1)(d)}])},[(0,i.RG)(e.$slots,"header",{},(()=>[(0,i.Lk)("span",{role:"heading",class:(0,u.C4)((0,s.R1)(v).e("title"))},(0,u.v_)(e.title),3)]))],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(v).e("body"))},[(0,i.RG)(e.$slots,"default",{},(()=>[(0,i.Lk)("span",null,(0,u.v_)(e.description),1)]))],2),(0,i.Lk)("footer",{class:(0,u.C4)((0,s.R1)(v).e("footer"))},[(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(v).b("indicators"))},[(0,s.R1)(h).indicators?((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(h).indicators),{key:0,current:(0,s.R1)(a),total:(0,s.R1)(c)},null,8,["current","total"])):((0,i.uX)(!0),(0,i.CE)(i.FK,{key:1},(0,i.pI)((0,s.R1)(c),((e,t)=>((0,i.uX)(),(0,i.CE)("span",{key:e,class:(0,u.C4)([(0,s.R1)(v).b("indicator"),t===(0,s.R1)(a)?"is-active":""])},null,2)))),128))],2),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(v).b("buttons"))},[(0,s.R1)(a)>0?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ou),(0,i.v6)({key:0,size:"small",type:(0,s.R1)(f)},E(e.prevButtonProps),{onClick:C}),{default:(0,i.k6)((()=>{var t,n;return[(0,i.eW)((0,u.v_)(null!=(n=null==(t=e.prevButtonProps)?void 0:t.children)?n:(0,s.R1)(r)("el.tour.previous")),1)]})),_:1},16,["type"])):(0,i.Q3)("v-if",!0),(0,s.R1)(a)<=(0,s.R1)(c)-1?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ou),(0,i.v6)({key:1,size:"small",type:"primary"===(0,s.R1)(f)?"default":"primary"},E(e.nextButtonProps),{onClick:k}),{default:(0,i.k6)((()=>{var t,n;return[(0,i.eW)((0,u.v_)(null!=(n=null==(t=e.nextButtonProps)?void 0:t.children)?n:(0,s.R1)(a)===(0,s.R1)(c)-1?(0,s.R1)(r)("el.tour.finish"):(0,s.R1)(r)("el.tour.next")),1)]})),_:1},16,["type"])):(0,i.Q3)("v-if",!0)],2)],2)],64))}});var gz=J(mz,[["__file","step.vue"]]);const yz=pe(QH,{TourStep:gz}),bz=he(gz);var Rz=[me,pn,os,dP,ds,bs,xs,Ws,Ds,Ou,Iu,pc,gc,Qc,Zc,Gb,Sb,eR,yy,by,Ry,aR,AR,LR,ER,xw,Ow,Uw,Hw,zw,Gw,qw,ZC,pk,fk,Bk,Xk,ex,a_,i_,s_,K_,cT,dT,Ee,_T,yT,yo,NT,KT,hO,mO,gO,yO,xO,SA,MA,XA,Xo,eL,Ky,Vy,jy,sL,hL,EL,Do,GI,qI,YI,YM,aN,iN,PN,zN,ZN,iW,gW,yW,AW,L$,M$,cP,LP,MP,Mb,$P,dK,EK,TK,OK,zi,XV,pX,$X,QX,_U,vH,_H,yz,bz];const wz="ElInfiniteScroll",Ez=50,Cz=200,kz=0,xz={delay:{type:Number,default:Cz},distance:{type:Number,default:kz},disabled:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0}},_z=(e,t)=>Object.entries(xz).reduce(((n,[o,r])=>{var l,a;const{type:i,default:s}=r,u=e.getAttribute(`infinite-scroll-${o}`);let c=null!=(a=null!=(l=t[u])?l:u)?a:s;return c="false"!==c&&c,c=i(c),n[o]=Number.isNaN(c)?s:c,n}),{}),Sz=e=>{const{observer:t}=e[wz];t&&(t.disconnect(),delete e[wz].observer)},Tz=(e,t)=>{const{container:n,containerEl:o,instance:r,observer:l,lastScrollTop:a}=e[wz],{disabled:i,distance:s}=_z(e,r),{clientHeight:u,scrollHeight:c,scrollTop:d}=o,p=d-a;if(e[wz].lastScrollTop=d,l||i||p<0)return;let f=!1;if(n===e)f=c-(u+d)<=s;else{const{clientTop:t,scrollHeight:n}=e,r=$R(e,o);f=d+u>=r+t+n-s}f&&t.call(r)};function Oz(e,t){const{containerEl:n,instance:o}=e[wz],{disabled:r}=_z(e,o);r||0===n.clientHeight||(n.scrollHeight<=n.clientHeight?t.call(o):Sz(e))}const Iz={async mounted(e,t){const{instance:n,value:o}=t;(0,u.Tn)(o)||(0,ne.$)(wz,"'v-infinite-scroll' binding value must be a function"),await(0,i.dY)();const{delay:r,immediate:l}=_z(e,n),a=re(e,!0),s=a===window?document.documentElement:a,c=Ec(Tz.bind(null,e,o),r);if(a){if(e[wz]={instance:n,container:a,containerEl:s,delay:r,cb:o,onScroll:c,lastScrollTop:s.scrollTop},l){const t=new MutationObserver(Ec(Oz.bind(null,e,o),Ez));e[wz].observer=t,t.observe(e,{childList:!0,subtree:!0}),Oz(e,o)}a.addEventListener("scroll",c)}},unmounted(e){const{container:t,onScroll:n}=e[wz];null==t||t.removeEventListener("scroll",n),Sz(e)},async updated(e){if(e[wz]){const{containerEl:t,cb:n,observer:o}=e[wz];t.clientHeight&&o&&Oz(e,n)}else await(0,i.dY)()}},Az=Iz;Az.install=e=>{e.directive("InfiniteScroll",Az)};const Lz=Az;var Mz=n(5320);const Nz=["success","info","warning","error"],Wz=Xn({customClass:"",center:!1,dangerouslyUseHTMLString:!1,duration:3e3,icon:void 0,id:"",message:"",onClose:void 0,showClose:!1,type:"info",offset:16,zIndex:0,grouping:!1,repeatNum:1,appendTo:c.oc?document.body:void 0}),Dz=(0,H.b_)({customClass:{type:String,default:Wz.customClass},center:{type:Boolean,default:Wz.center},dangerouslyUseHTMLString:{type:Boolean,default:Wz.dangerouslyUseHTMLString},duration:{type:Number,default:Wz.duration},icon:{type:en,default:Wz.icon},id:{type:String,default:Wz.id},message:{type:(0,H.jq)([String,Object,Function]),default:Wz.message},onClose:{type:(0,H.jq)(Function),required:!1},showClose:{type:Boolean,default:Wz.showClose},type:{type:String,values:Nz,default:Wz.type},offset:{type:Number,default:Wz.offset},zIndex:{type:Number,default:Wz.zIndex},grouping:{type:Boolean,default:Wz.grouping},repeatNum:{type:Number,default:Wz.repeatNum}}),Fz={destroy:()=>!0},$z=(0,s.Gc)([]),Bz=e=>{const t=$z.findIndex((t=>t.id===e)),n=$z[t];let o;return t>0&&(o=$z[t-1]),{current:n,prev:o}},Pz=e=>{const{prev:t}=Bz(e);return t?t.vm.exposed.bottom.value:0},Kz=(e,t)=>{const n=$z.findIndex((t=>t.id===e));return n>0?20:t},jz=["id"],Vz=["innerHTML"],Xz=(0,i.pM)({name:"ElMessage"}),Uz=(0,i.pM)({...Xz,props:Dz,emits:Fz,setup(e,{expose:t}){const n=e,{Close:o}=nn,{ns:r,zIndex:a}=(0,l.ht)("message"),{currentZIndex:d,nextZIndex:p}=a,f=(0,s.KR)(),v=(0,s.KR)(!1),m=(0,s.KR)(0);let g;const y=(0,i.EW)((()=>n.type?"error"===n.type?"danger":n.type:"info")),b=(0,i.EW)((()=>{const e=n.type;return{[r.bm("icon",e)]:e&&on[e]}})),R=(0,i.EW)((()=>n.icon||on[n.type]||"")),w=(0,i.EW)((()=>Pz(n.id))),E=(0,i.EW)((()=>Kz(n.id,n.offset)+w.value)),C=(0,i.EW)((()=>m.value+E.value)),k=(0,i.EW)((()=>({top:`${E.value}px`,zIndex:d.value})));function x(){0!==n.duration&&({stop:g}=(0,c.TO)((()=>{S()}),n.duration))}function _(){null==g||g()}function S(){v.value=!1}function O({code:e}){e===aa.esc&&S()}return(0,i.sV)((()=>{x(),p(),v.value=!0})),(0,i.wB)((()=>n.repeatNum),(()=>{_(),x()})),h(document,"keydown",O),T(f,(()=>{m.value=f.value.getBoundingClientRect().height})),t({visible:v,bottom:C,close:S}),(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:(0,s.R1)(r).b("fade"),onBeforeLeave:e.onClose,onAfterLeave:t[0]||(t[0]=t=>e.$emit("destroy")),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("div",{id:e.id,ref_key:"messageRef",ref:f,class:(0,u.C4)([(0,s.R1)(r).b(),{[(0,s.R1)(r).m(e.type)]:e.type},(0,s.R1)(r).is("center",e.center),(0,s.R1)(r).is("closable",e.showClose),e.customClass]),style:(0,u.Tr)((0,s.R1)(k)),role:"alert",onMouseenter:_,onMouseleave:x},[e.repeatNum>1?((0,i.uX)(),(0,i.Wv)((0,s.R1)(xs),{key:0,value:e.repeatNum,type:(0,s.R1)(y),class:(0,u.C4)((0,s.R1)(r).e("badge"))},null,8,["value","type","class"])):(0,i.Q3)("v-if",!0),(0,s.R1)(R)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:1,class:(0,u.C4)([(0,s.R1)(r).e("icon"),(0,s.R1)(b)])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(R))))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.RG)(e.$slots,"default",{},(()=>[e.dangerouslyUseHTMLString?((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.Q3)(" Caution here, message could've been compromised, never use user's input as message "),(0,i.Lk)("p",{class:(0,u.C4)((0,s.R1)(r).e("content")),innerHTML:e.message},null,10,Vz)],2112)):((0,i.uX)(),(0,i.CE)("p",{key:0,class:(0,u.C4)((0,s.R1)(r).e("content"))},(0,u.v_)(e.message),3))])),e.showClose?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:2,class:(0,u.C4)((0,s.R1)(r).e("closeBtn")),onClick:(0,ge.D$)(S,["stop"])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(o))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0)],46,jz),[[ge.aG,v.value]])])),_:3},8,["name","onBeforeLeave"]))}});var Hz=J(Uz,[["__file","message.vue"]]);let zz=1;const Gz=e=>{const t=!e||(0,u.Kg)(e)||(0,i.vv)(e)||(0,u.Tn)(e)?{message:e}:e,n={...Wz,...t};if(n.appendTo){if((0,u.Kg)(n.appendTo)){let e=document.querySelector(n.appendTo);(0,z.vq)(e)||((0,ne.U)("ElMessage","the appendTo option is not an HTMLElement. Falling back to document.body."),e=document.body),n.appendTo=e}}else n.appendTo=document.body;return n},qz=e=>{const t=$z.indexOf(e);if(-1===t)return;$z.splice(t,1);const{handler:n}=e;n.close()},Yz=({appendTo:e,...t},n)=>{const o="message_"+zz++,r=t.onClose,l=document.createElement("div"),a={...t,id:o,onClose:()=>{null==r||r(),qz(p)},onDestroy:()=>{(0,ge.XX)(null,l)}},s=(0,i.bF)(Hz,a,(0,u.Tn)(a.message)||(0,i.vv)(a.message)?{default:(0,u.Tn)(a.message)?a.message:()=>a.message}:null);s.appContext=n||Qz._context,(0,ge.XX)(s,l),e.appendChild(l.firstElementChild);const c=s.component,d={close:()=>{c.exposed.visible.value=!1}},p={id:o,vnode:s,vm:c,handler:d,props:s.component.props};return p},Qz=(e={},t)=>{if(!c.oc)return{close:()=>{}};if((0,z.Et)(Sw.max)&&$z.length>=Sw.max)return{close:()=>{}};const n=Gz(e);if(n.grouping&&$z.length){const e=$z.find((({vnode:e})=>{var t;return(null==(t=e.props)?void 0:t.message)===n.message}));if(e)return e.props.repeatNum+=1,e.props.type=n.type,e.handler}const o=Yz(n,t);return $z.push(o),o.handler};function Zz(e){for(const t of $z)e&&e!==t.props.type||t.handler.close()}Nz.forEach((e=>{Qz[e]=(t={},n)=>{const o=Gz(t);return Qz({...o,type:e},n)}})),Qz.closeAll=Zz,Qz._context=null;const Jz=fe(Qz,"$message"),eG="_trap-focus-children",tG=[],nG=e=>{if(0===tG.length)return;const t=tG[tG.length-1][eG];if(t.length>0&&e.code===aa.tab){if(1===t.length)return e.preventDefault(),void(document.activeElement!==t[0]&&t[0].focus());const n=e.shiftKey,o=e.target===t[0],r=e.target===t[t.length-1];o&&n&&(e.preventDefault(),t[t.length-1].focus()),r&&!n&&(e.preventDefault(),t[0].focus())}},oG={beforeMount(e){e[eG]=pb(e),tG.push(e),tG.length<=1&&document.addEventListener("keydown",nG)},updated(e){(0,i.dY)((()=>{e[eG]=pb(e)}))},unmounted(){tG.shift(),0===tG.length&&document.removeEventListener("keydown",nG)}},rG=(0,i.pM)({name:"ElMessageBox",directives:{TrapFocus:oG},components:{ElButton:Ou,ElFocusTrap:Li,ElInput:yo,ElOverlay:bk,ElIcon:Ee,...nn},inheritAttrs:!1,props:{buttonSize:{type:String,validator:bW},modal:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},closeOnHashChange:{type:Boolean,default:!0},center:Boolean,draggable:Boolean,overflow:Boolean,roundButton:{default:!1,type:Boolean},container:{type:String,default:"body"},boxType:{type:String,default:""}},emits:["vanish","action"],setup(e,{emit:t}){const{locale:n,zIndex:o,ns:r,size:a}=(0,l.ht)("message-box",(0,i.EW)((()=>e.buttonSize))),{t:u}=n,{nextZIndex:c}=o,d=(0,s.KR)(!1),p=(0,s.Kh)({autofocus:!0,beforeClose:null,callback:null,cancelButtonText:"",cancelButtonClass:"",confirmButtonText:"",confirmButtonClass:"",customClass:"",customStyle:{},dangerouslyUseHTMLString:!1,distinguishCancelAndClose:!1,icon:"",inputPattern:null,inputPlaceholder:"",inputType:"text",inputValue:null,inputValidator:null,inputErrorMessage:"",message:null,modalFade:!0,modalClass:"",showCancelButton:!1,showConfirmButton:!0,type:"",title:void 0,showInput:!1,action:"",confirmButtonLoading:!1,cancelButtonLoading:!1,confirmButtonDisabled:!1,editorErrorMessage:"",validateError:!1,zIndex:c()}),f=(0,i.EW)((()=>{const e=p.type;return{[r.bm("icon",e)]:e&&on[e]}})),v=no(),h=no(),m=(0,i.EW)((()=>p.icon||on[p.type]||"")),g=(0,i.EW)((()=>!!p.message)),y=(0,s.KR)(),b=(0,s.KR)(),R=(0,s.KR)(),w=(0,s.KR)(),E=(0,s.KR)(),C=(0,i.EW)((()=>p.confirmButtonClass));(0,i.wB)((()=>p.inputValue),(async t=>{await(0,i.dY)(),"prompt"===e.boxType&&null!==t&&A()}),{immediate:!0}),(0,i.wB)((()=>d.value),(t=>{var n,o;t&&("prompt"!==e.boxType&&(p.autofocus?R.value=null!=(o=null==(n=E.value)?void 0:n.$el)?o:y.value:R.value=y.value),p.zIndex=c()),"prompt"===e.boxType&&(t?(0,i.dY)().then((()=>{var e;w.value&&w.value.$el&&(p.autofocus?R.value=null!=(e=L())?e:y.value:R.value=y.value)})):(p.editorErrorMessage="",p.validateError=!1))}));const k=(0,i.EW)((()=>e.draggable)),x=(0,i.EW)((()=>e.overflow));function _(){d.value&&(d.value=!1,(0,i.dY)((()=>{p.action&&t("action",p.action)})))}kk(y,b,k,x),(0,i.sV)((async()=>{await(0,i.dY)(),e.closeOnHashChange&&window.addEventListener("hashchange",_)})),(0,i.xo)((()=>{e.closeOnHashChange&&window.removeEventListener("hashchange",_)}));const S=()=>{e.closeOnClickModal&&I(p.distinguishCancelAndClose?"close":"cancel")},T=vk(S),O=e=>{if("textarea"!==p.inputType)return e.preventDefault(),I("confirm")},I=t=>{var n;("prompt"!==e.boxType||"confirm"!==t||A())&&(p.action=t,p.beforeClose?null==(n=p.beforeClose)||n.call(p,t,p,_):_())},A=()=>{if("prompt"===e.boxType){const e=p.inputPattern;if(e&&!e.test(p.inputValue||""))return p.editorErrorMessage=p.inputErrorMessage||u("el.messagebox.error"),p.validateError=!0,!1;const t=p.inputValidator;if("function"===typeof t){const e=t(p.inputValue);if(!1===e)return p.editorErrorMessage=p.inputErrorMessage||u("el.messagebox.error"),p.validateError=!0,!1;if("string"===typeof e)return p.editorErrorMessage=e,p.validateError=!0,!1}}return p.editorErrorMessage="",p.validateError=!1,!0},L=()=>{const e=w.value.$refs;return e.input||e.textarea},M=()=>{I("close")},N=()=>{e.closeOnPressEscape&&M()};return e.lockScroll&&Mk(d),{...(0,s.QW)(p),ns:r,overlayEvent:T,visible:d,hasMessage:g,typeClass:f,contentId:v,inputId:h,btnSize:a,iconComponent:m,confirmButtonClasses:C,rootRef:y,focusStartRef:R,headerRef:b,inputRef:w,confirmRef:E,doClose:_,handleClose:M,onCloseRequested:N,handleWrapperClick:S,handleInputEnter:O,handleAction:I,t:u}}}),lG=["aria-label","aria-describedby"],aG=["aria-label"],iG=["id"];function sG(e,t,n,o,r,l){const a=(0,i.g2)("el-icon"),s=(0,i.g2)("close"),c=(0,i.g2)("el-input"),d=(0,i.g2)("el-button"),p=(0,i.g2)("el-focus-trap"),f=(0,i.g2)("el-overlay");return(0,i.uX)(),(0,i.Wv)(ge.eB,{name:"fade-in-linear",onAfterLeave:t[11]||(t[11]=t=>e.$emit("vanish")),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.bF)(f,{"z-index":e.zIndex,"overlay-class":[e.ns.is("message-box"),e.modalClass],mask:e.modal},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{role:"dialog","aria-label":e.title,"aria-modal":"true","aria-describedby":e.showInput?void 0:e.contentId,class:(0,u.C4)(`${e.ns.namespace.value}-overlay-message-box`),onClick:t[8]||(t[8]=(...t)=>e.overlayEvent.onClick&&e.overlayEvent.onClick(...t)),onMousedown:t[9]||(t[9]=(...t)=>e.overlayEvent.onMousedown&&e.overlayEvent.onMousedown(...t)),onMouseup:t[10]||(t[10]=(...t)=>e.overlayEvent.onMouseup&&e.overlayEvent.onMouseup(...t))},[(0,i.bF)(p,{loop:"",trapped:e.visible,"focus-trap-el":e.rootRef,"focus-start-el":e.focusStartRef,onReleaseRequested:e.onCloseRequested},{default:(0,i.k6)((()=>[(0,i.Lk)("div",{ref:"rootRef",class:(0,u.C4)([e.ns.b(),e.customClass,e.ns.is("draggable",e.draggable),{[e.ns.m("center")]:e.center}]),style:(0,u.Tr)(e.customStyle),tabindex:"-1",onClick:t[7]||(t[7]=(0,ge.D$)((()=>{}),["stop"]))},[null!==e.title&&void 0!==e.title?((0,i.uX)(),(0,i.CE)("div",{key:0,ref:"headerRef",class:(0,u.C4)([e.ns.e("header"),{"show-close":e.showClose}])},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("title"))},[e.iconComponent&&e.center?((0,i.uX)(),(0,i.Wv)(a,{key:0,class:(0,u.C4)([e.ns.e("status"),e.typeClass])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.iconComponent)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.Lk)("span",null,(0,u.v_)(e.title),1)],2),e.showClose?((0,i.uX)(),(0,i.CE)("button",{key:0,type:"button",class:(0,u.C4)(e.ns.e("headerbtn")),"aria-label":e.t("el.messagebox.close"),onClick:t[0]||(t[0]=t=>e.handleAction(e.distinguishCancelAndClose?"close":"cancel")),onKeydown:t[1]||(t[1]=(0,ge.jR)((0,ge.D$)((t=>e.handleAction(e.distinguishCancelAndClose?"close":"cancel")),["prevent"]),["enter"]))},[(0,i.bF)(a,{class:(0,u.C4)(e.ns.e("close"))},{default:(0,i.k6)((()=>[(0,i.bF)(s)])),_:1},8,["class"])],42,aG)):(0,i.Q3)("v-if",!0)],2)):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{id:e.contentId,class:(0,u.C4)(e.ns.e("content"))},[(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("container"))},[e.iconComponent&&!e.center&&e.hasMessage?((0,i.uX)(),(0,i.Wv)(a,{key:0,class:(0,u.C4)([e.ns.e("status"),e.typeClass])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.iconComponent)))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),e.hasMessage?((0,i.uX)(),(0,i.CE)("div",{key:1,class:(0,u.C4)(e.ns.e("message"))},[(0,i.RG)(e.$slots,"default",{},(()=>[e.dangerouslyUseHTMLString?((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.showInput?"label":"p"),{key:1,for:e.showInput?e.inputId:void 0,innerHTML:e.message},null,8,["for","innerHTML"])):((0,i.uX)(),(0,i.Wv)((0,i.$y)(e.showInput?"label":"p"),{key:0,for:e.showInput?e.inputId:void 0},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)(e.dangerouslyUseHTMLString?"":e.message),1)])),_:1},8,["for"]))]))],2)):(0,i.Q3)("v-if",!0)],2),(0,i.bo)((0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("input"))},[(0,i.bF)(c,{id:e.inputId,ref:"inputRef",modelValue:e.inputValue,"onUpdate:modelValue":t[2]||(t[2]=t=>e.inputValue=t),type:e.inputType,placeholder:e.inputPlaceholder,"aria-invalid":e.validateError,class:(0,u.C4)({invalid:e.validateError}),onKeydown:(0,ge.jR)(e.handleInputEnter,["enter"])},null,8,["id","modelValue","type","placeholder","aria-invalid","class","onKeydown"]),(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("errormsg")),style:(0,u.Tr)({visibility:e.editorErrorMessage?"visible":"hidden"})},(0,u.v_)(e.editorErrorMessage),7)],2),[[ge.aG,e.showInput]])],10,iG),(0,i.Lk)("div",{class:(0,u.C4)(e.ns.e("btns"))},[e.showCancelButton?((0,i.uX)(),(0,i.Wv)(d,{key:0,loading:e.cancelButtonLoading,class:(0,u.C4)([e.cancelButtonClass]),round:e.roundButton,size:e.btnSize,onClick:t[3]||(t[3]=t=>e.handleAction("cancel")),onKeydown:t[4]||(t[4]=(0,ge.jR)((0,ge.D$)((t=>e.handleAction("cancel")),["prevent"]),["enter"]))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)(e.cancelButtonText||e.t("el.messagebox.cancel")),1)])),_:1},8,["loading","class","round","size"])):(0,i.Q3)("v-if",!0),(0,i.bo)((0,i.bF)(d,{ref:"confirmRef",type:"primary",loading:e.confirmButtonLoading,class:(0,u.C4)([e.confirmButtonClasses]),round:e.roundButton,disabled:e.confirmButtonDisabled,size:e.btnSize,onClick:t[5]||(t[5]=t=>e.handleAction("confirm")),onKeydown:t[6]||(t[6]=(0,ge.jR)((0,ge.D$)((t=>e.handleAction("confirm")),["prevent"]),["enter"]))},{default:(0,i.k6)((()=>[(0,i.eW)((0,u.v_)(e.confirmButtonText||e.t("el.messagebox.confirm")),1)])),_:1},8,["loading","class","round","disabled","size"]),[[ge.aG,e.showConfirmButton]])],2)],6)])),_:3},8,["trapped","focus-trap-el","focus-start-el","onReleaseRequested"])],42,lG)])),_:3},8,["z-index","overlay-class","mask"]),[[ge.aG,e.visible]])])),_:3})}var uG=J(rG,[["render",sG],["__file","index.vue"]]);const cG=new Map,dG=e=>{let t=document.body;return e.appendTo&&((0,u.Kg)(e.appendTo)&&(t=document.querySelector(e.appendTo)),(0,z.vq)(e.appendTo)&&(t=e.appendTo),(0,z.vq)(t)||((0,ne.U)("ElMessageBox","the appendTo option is not an HTMLElement. Falling back to document.body."),t=document.body)),t},pG=(e,t,n=null)=>{const o=(0,i.bF)(uG,e,(0,u.Tn)(e.message)||(0,i.vv)(e.message)?{default:(0,u.Tn)(e.message)?e.message:()=>e.message}:null);return o.appContext=n,(0,ge.XX)(o,t),dG(e).appendChild(t.firstElementChild),o.component},fG=()=>document.createElement("div"),vG=(e,t)=>{const n=fG();e.onVanish=()=>{(0,ge.XX)(null,n),cG.delete(r)},e.onAction=t=>{const n=cG.get(r);let l;l=e.showInput?{value:r.inputValue,action:t}:t,e.callback?e.callback(l,o.proxy):"cancel"===t||"close"===t?e.distinguishCancelAndClose&&"cancel"!==t?n.reject("close"):n.reject("cancel"):n.resolve(l)};const o=pG(e,n,t),r=o.proxy;for(const l in e)(0,u.$3)(e,l)&&!(0,u.$3)(r.$props,l)&&(r[l]=e[l]);return r.visible=!0,r};function hG(e,t=null){if(!c.oc)return Promise.reject();let n;return(0,u.Kg)(e)||(0,i.vv)(e)?e={message:e}:n=e.callback,new Promise(((o,r)=>{const l=vG(e,null!=t?t:hG._context);cG.set(l,{options:e,callback:n,resolve:o,reject:r})}))}const mG=["alert","confirm","prompt"],gG={alert:{closeOnPressEscape:!1,closeOnClickModal:!1},confirm:{showCancelButton:!0},prompt:{showCancelButton:!0,showInput:!0}};function yG(e){return(t,n,o,r)=>{let l="";return(0,u.Gv)(n)?(o=n,l=""):l=(0,z.b0)(n)?"":n,hG(Object.assign({title:l,message:t,type:"",...gG[e]},o,{boxType:e}),r)}}mG.forEach((e=>{hG[e]=yG(e)})),hG.close=()=>{cG.forEach(((e,t)=>{t.doClose()})),cG.clear()},hG._context=null;const bG=hG;bG.install=e=>{bG._context=e._context,e.config.globalProperties.$msgbox=bG,e.config.globalProperties.$messageBox=bG,e.config.globalProperties.$alert=bG.alert,e.config.globalProperties.$confirm=bG.confirm,e.config.globalProperties.$prompt=bG.prompt};const RG=bG,wG=["success","info","warning","error"],EG=(0,H.b_)({customClass:{type:String,default:""},dangerouslyUseHTMLString:{type:Boolean,default:!1},duration:{type:Number,default:4500},icon:{type:en},id:{type:String,default:""},message:{type:(0,H.jq)([String,Object]),default:""},offset:{type:Number,default:0},onClick:{type:(0,H.jq)(Function),default:()=>{}},onClose:{type:(0,H.jq)(Function),required:!0},position:{type:String,values:["top-right","top-left","bottom-right","bottom-left"],default:"top-right"},showClose:{type:Boolean,default:!0},title:{type:String,default:""},type:{type:String,values:[...wG,""],default:""},zIndex:Number}),CG={destroy:()=>!0},kG=["id"],xG=["textContent"],_G={key:0},SG=["innerHTML"],TG=(0,i.pM)({name:"ElNotification"}),OG=(0,i.pM)({...TG,props:EG,emits:CG,setup(e,{expose:t}){const n=e,{ns:o,zIndex:r}=(0,l.ht)("notification"),{nextZIndex:a,currentZIndex:d}=r,{Close:p}=tn,f=(0,s.KR)(!1);let v;const m=(0,i.EW)((()=>{const e=n.type;return e&&on[n.type]?o.m(e):""})),g=(0,i.EW)((()=>n.type&&on[n.type]||n.icon)),y=(0,i.EW)((()=>n.position.endsWith("right")?"right":"left")),b=(0,i.EW)((()=>n.position.startsWith("top")?"top":"bottom")),R=(0,i.EW)((()=>{var e;return{[b.value]:`${n.offset}px`,zIndex:null!=(e=n.zIndex)?e:d.value}}));function w(){n.duration>0&&({stop:v}=(0,c.TO)((()=>{f.value&&C()}),n.duration))}function E(){null==v||v()}function C(){f.value=!1}function k({code:e}){e===aa.delete||e===aa.backspace?E():e===aa.esc?f.value&&C():w()}return(0,i.sV)((()=>{w(),a(),f.value=!0})),h(document,"keydown",k),t({visible:f,close:C}),(e,t)=>((0,i.uX)(),(0,i.Wv)(ge.eB,{name:(0,s.R1)(o).b("fade"),onBeforeLeave:e.onClose,onAfterLeave:t[1]||(t[1]=t=>e.$emit("destroy")),persisted:""},{default:(0,i.k6)((()=>[(0,i.bo)((0,i.Lk)("div",{id:e.id,class:(0,u.C4)([(0,s.R1)(o).b(),e.customClass,(0,s.R1)(y)]),style:(0,u.Tr)((0,s.R1)(R)),role:"alert",onMouseenter:E,onMouseleave:w,onClick:t[0]||(t[0]=(...t)=>e.onClick&&e.onClick(...t))},[(0,s.R1)(g)?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)([(0,s.R1)(o).e("icon"),(0,s.R1)(m)])},{default:(0,i.k6)((()=>[((0,i.uX)(),(0,i.Wv)((0,i.$y)((0,s.R1)(g))))])),_:1},8,["class"])):(0,i.Q3)("v-if",!0),(0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).e("group"))},[(0,i.Lk)("h2",{class:(0,u.C4)((0,s.R1)(o).e("title")),textContent:(0,u.v_)(e.title)},null,10,xG),(0,i.bo)((0,i.Lk)("div",{class:(0,u.C4)((0,s.R1)(o).e("content")),style:(0,u.Tr)(e.title?void 0:{margin:0})},[(0,i.RG)(e.$slots,"default",{},(()=>[e.dangerouslyUseHTMLString?((0,i.uX)(),(0,i.CE)(i.FK,{key:1},[(0,i.Q3)(" Caution here, message could've been compromised, never use user's input as message "),(0,i.Lk)("p",{innerHTML:e.message},null,8,SG)],2112)):((0,i.uX)(),(0,i.CE)("p",_G,(0,u.v_)(e.message),1))]))],6),[[ge.aG,e.message]]),e.showClose?((0,i.uX)(),(0,i.Wv)((0,s.R1)(Ee),{key:0,class:(0,u.C4)((0,s.R1)(o).e("closeBtn")),onClick:(0,ge.D$)(C,["stop"])},{default:(0,i.k6)((()=>[(0,i.bF)((0,s.R1)(p))])),_:1},8,["class","onClick"])):(0,i.Q3)("v-if",!0)],2)],46,kG),[[ge.aG,f.value]])])),_:3},8,["name","onBeforeLeave"]))}});var IG=J(OG,[["__file","notification.vue"]]);const AG={"top-left":[],"top-right":[],"bottom-left":[],"bottom-right":[]},LG=16;let MG=1;const NG=function(e={},t=null){if(!c.oc)return{close:()=>{}};("string"===typeof e||(0,i.vv)(e))&&(e={message:e});const n=e.position||"top-right";let o=e.offset||0;AG[n].forEach((({vm:e})=>{var t;o+=((null==(t=e.el)?void 0:t.offsetHeight)||0)+LG})),o+=LG;const r="notification_"+MG++,l=e.onClose,a={...e,offset:o,id:r,onClose:()=>{WG(r,n,l)}};let s=document.body;(0,z.vq)(e.appendTo)?s=e.appendTo:(0,u.Kg)(e.appendTo)&&(s=document.querySelector(e.appendTo)),(0,z.vq)(s)||((0,ne.U)("ElNotification","the appendTo option is not an HTMLElement. Falling back to document.body."),s=document.body);const d=document.createElement("div"),p=(0,i.bF)(IG,a,(0,i.vv)(a.message)?{default:()=>a.message}:null);return p.appContext=null!=t?t:NG._context,p.props.onDestroy=()=>{(0,ge.XX)(null,d)},(0,ge.XX)(p,d),AG[n].push({vm:p}),s.appendChild(d.firstElementChild),{close:()=>{p.component.exposed.visible.value=!1}}};function WG(e,t,n){const o=AG[t],r=o.findIndex((({vm:t})=>{var n;return(null==(n=t.component)?void 0:n.props.id)===e}));if(-1===r)return;const{vm:l}=o[r];if(!l)return;null==n||n(l);const a=l.el.offsetHeight,i=t.split("-")[0];o.splice(r,1);const s=o.length;if(!(s<1))for(let u=r;u{e.component.exposed.visible.value=!1}))}wG.forEach((e=>{NG[e]=(t={})=>(("string"===typeof t||(0,i.vv)(t))&&(t={message:t}),NG({...t,type:e}))})),NG.closeAll=DG,NG._context=null;const FG=fe(NG,"$notify");var $G=[Lz,Mz.Ks,Jz,RG,FG,VA],BG=a([...Rz,...$G])},6268:function(e,t,n){"use strict";n.d(t,{vx:function(){return c},Ym:function(){return d}});var o=n(144),r=n(6768),l=n(9615),a={name:"en",el:{colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color."},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",page:"Page",prev:"Go to previous page",next:"Go to next page",currentPage:"page {pager}",prevPages:"Previous {pager} pages",nextPages:"Next {pager} pages",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tour:{next:"Next",previous:"Previous",finish:"Finish"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"},carousel:{leftArrow:"Carousel arrow left",rightArrow:"Carousel arrow right",indicator:"Carousel switch to index {index}"}}};const i=e=>(t,n)=>s(t,n,(0,o.R1)(e)),s=(e,t,n)=>(0,l.A)(n,e,e).replace(/\{(\w+)\}/g,((e,n)=>{var o;return`${null!=(o=null==t?void 0:t[n])?o:`{${n}}`}`})),u=e=>{const t=(0,r.EW)((()=>(0,o.R1)(e).name)),n=(0,o.i9)(e)?e:(0,o.KR)(e);return{lang:t,locale:n,t:i(e)}},c=Symbol("localeContextKey"),d=e=>{const t=e||(0,r.WQ)(c,(0,o.KR)());return u((0,r.EW)((()=>t.value||a)))}},3513:function(e,t,n){"use strict";n.d(t,{DU:function(){return c},E9:function(){return u},Lt:function(){return l},O5:function(){return s}});var o=n(6768),r=n(144);const l="el",a="is-",i=(e,t,n,o,r)=>{let l=`${e}-${t}`;return n&&(l+=`-${n}`),o&&(l+=`__${o}`),r&&(l+=`--${r}`),l},s=Symbol("namespaceContextKey"),u=e=>{const t=e||((0,o.nI)()?(0,o.WQ)(s,(0,r.KR)(l)):(0,r.KR)(l)),n=(0,o.EW)((()=>(0,r.R1)(t)||l));return n},c=(e,t)=>{const n=u(t),o=(t="")=>i(n.value,e,t,"",""),r=t=>t?i(n.value,e,"",t,""):"",l=t=>t?i(n.value,e,"","",t):"",s=(t,o)=>t&&o?i(n.value,e,t,o,""):"",c=(t,o)=>t&&o?i(n.value,e,"",t,o):"",d=(t,o)=>t&&o?i(n.value,e,t,"",o):"",p=(t,o,r)=>t&&o&&r?i(n.value,e,t,o,r):"",f=(e,...t)=>{const n=!(t.length>=1)||t[0];return e&&n?`${a}${e}`:""},v=e=>{const t={};for(const o in e)e[o]&&(t[`--${n.value}-${o}`]=e[o]);return t},h=t=>{const o={};for(const r in t)t[r]&&(o[`--${n.value}-${e}-${r}`]=t[r]);return o},m=e=>`--${n.value}-${e}`,g=t=>`--${n.value}-${e}-${t}`;return{namespace:n,b:o,e:r,m:l,be:s,em:c,bm:d,bem:p,is:f,cssVar:v,cssVarName:m,cssVarBlock:h,cssVarBlockName:g}}},3845:function(e,t,n){"use strict";n.d(t,{SN:function(){return s},mU:function(){return i},wC:function(){return u}});var o=n(6768),r=n(144),l=n(7378),a=n(1211);const i=(0,l.Y8)({type:String,values:a.I,required:!1}),s=Symbol("size"),u=()=>{const e=(0,o.WQ)(s,{});return(0,o.EW)((()=>(0,r.R1)(e.size)||""))}},2401:function(e,t,n){"use strict";n.d(t,{YK:function(){return u},_:function(){return i},d4:function(){return s}});var o=n(144),r=n(6768),l=n(2235);const a=(0,o.KR)(0),i=2e3,s=Symbol("zIndexContextKey"),u=e=>{const t=e||((0,r.nI)()?(0,r.WQ)(s,void 0):void 0),n=(0,r.EW)((()=>{const e=(0,o.R1)(t);return(0,l.Et)(e)?e:i})),u=(0,r.EW)((()=>n.value+a.value)),c=()=>(a.value++,u.value);return{initialZIndex:n,currentZIndex:u,nextZIndex:c}}},3558:function(e,t,n){"use strict";n.d(t,{_V:function(){return f},gd:function(){return p},iQ:function(){return c},nB:function(){return u},vy:function(){return d}});var o=n(2235),r=n(6894),l=n(153),a=n(4232);const i="utils/dom/style",s=(e="")=>e.split(" ").filter((e=>!!e.trim())),u=(e,t)=>{if(!e||!t)return!1;if(t.includes(" "))throw new Error("className should not contain space.");return e.classList.contains(t)},c=(e,t)=>{e&&t.trim()&&e.classList.add(...s(t))},d=(e,t)=>{e&&t.trim()&&e.classList.remove(...s(t))},p=(e,t)=>{var n;if(!l.oc||!e||!t)return"";let o=(0,a.PT)(t);"float"===o&&(o="cssFloat");try{const t=e.style[o];if(t)return t;const r=null==(n=document.defaultView)?void 0:n.getComputedStyle(e,"");return r?r[o]:""}catch(r){return e.style[o]}};function f(e,t="px"){return e?(0,o.Et)(e)||(0,o.Hp)(e)?`${e}${t}`:(0,a.Kg)(e)?e:void(0,r.U)(i,"binding value must be a string or number"):""}},6894:function(e,t,n){"use strict";n.d(t,{$:function(){return r},U:function(){return l}});class o extends Error{constructor(e){super(e),this.name="ElementPlusError"}}function r(e,t){throw new o(`[${e}] ${t}`)}function l(e,t){0}},4340:function(e,t,n){"use strict";n.d(t,{Mc:function(){return s},GT:function(){return u},YD:function(){return i}});var o=n(9615),r=n(203);function l(e,t,n){return null==e?e:(0,r.A)(e,t,n)}var a=l;const i=e=>Object.keys(e),s=e=>Object.entries(e),u=(e,t,n)=>({get value(){return(0,o.A)(e,t,n)},set value(n){a(e,t,n)}})},2235:function(e,t,n){"use strict";n.d(t,{Et:function(){return i},Hp:function(){return d},Im:function(){return s},Lm:function(){return a},Xj:function(){return c},b0:function(){return l},vq:function(){return u}});var o=n(4232),r=n(6032);const l=e=>void 0===e,a=e=>"boolean"===typeof e,i=e=>"number"===typeof e,s=e=>!e&&0!==e||(0,o.cy)(e)&&0===e.length||(0,o.Gv)(e)&&!Object.keys(e).length,u=e=>"undefined"!==typeof Element&&e instanceof Element,c=e=>(0,r.A)(e),d=e=>!!(0,o.Kg)(e)&&!Number.isNaN(Number(e))},7378:function(e,t,n){"use strict";n.d(t,{Y8:function(){return u},b_:function(){return c},jq:function(){return i}});n(4114);var o=n(6768),r=n(1154),l=n(4232);const a="__epPropKey",i=e=>e,s=e=>(0,l.Gv)(e)&&!!e[a],u=(e,t)=>{if(!(0,l.Gv)(e)||s(e))return e;const{values:n,required:r,default:i,type:u,validator:c}=e,d=n||c?r=>{let a=!1,s=[];if(n&&(s=Array.from(n),(0,l.$3)(e,"default")&&s.push(i),a||(a=s.includes(r))),c&&(a||(a=c(r))),!a&&s.length>0){const e=[...new Set(s)].map((e=>JSON.stringify(e))).join(", ");(0,o.R8)(`Invalid prop: validation failed${t?` for prop "${t}"`:""}. Expected one of [${e}], got value ${JSON.stringify(r)}.`)}return a}:void 0,p={type:u,required:!!r,validator:d,[a]:!0};return(0,l.$3)(e,"default")&&(p.default=i),p},c=e=>(0,r.A)(Object.entries(e).map((([e,t])=>[e,u(t,e)])))},7433:function(e,t,n){"use strict";function o(){this.__data__=[],this.size=0}n.d(t,{A:function(){return b}});var r=o,l=n(6841);function a(e,t){var n=e.length;while(n--)if((0,l.A)(e[n][0],t))return n;return-1}var i=a,s=Array.prototype,u=s.splice;function c(e){var t=this.__data__,n=i(t,e);if(n<0)return!1;var o=t.length-1;return n==o?t.pop():u.call(t,n,1),--this.size,!0}var d=c;function p(e){var t=this.__data__,n=i(t,e);return n<0?void 0:t[n][1]}var f=p;function v(e){return i(this.__data__,e)>-1}var h=v;n(4114);function m(e,t){var n=this.__data__,o=i(n,e);return o<0?(++this.size,n.push([e,t])):n[o][1]=t,this}var g=m;function y(e){var t=-1,n=null==e?0:e.length;this.clear();while(++t-1&&e%1==0&&e>>0,1):e.set(t,[]))},emit:function(t,n){var o=e.get(t);o&&o.slice().map((function(e){e(n)})),(o=e.get("*"))&&o.slice().map((function(e){e(t,n)}))}}}},5384:function(e,t,n){"use strict";n.d(t,{hU:function(){return to},s9:function(){return no}});n(4114); -/*! - * shared v9.9.1 - * (c) 2024 kazuya kawaguchi - * Released under the MIT License. - */ -const o="undefined"!==typeof window;const r=(e,t=!1)=>t?Symbol.for(e):Symbol(e),l=(e,t,n)=>a({l:e,k:t,s:n}),a=e=>JSON.stringify(e).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029").replace(/\u0027/g,"\\u0027"),i=e=>"number"===typeof e&&isFinite(e),s=e=>"[object Date]"===k(e),u=e=>"[object RegExp]"===k(e),c=e=>x(e)&&0===Object.keys(e).length,d=Object.assign;let p;const f=()=>p||(p="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof self?self:"undefined"!==typeof window?window:"undefined"!==typeof global?global:{});function v(e){return e.replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}const h=Object.prototype.hasOwnProperty;function m(e,t){return h.call(e,t)}const g=Array.isArray,y=e=>"function"===typeof e,b=e=>"string"===typeof e,R=e=>"boolean"===typeof e,w=e=>null!==e&&"object"===typeof e,E=e=>w(e)&&y(e.then)&&y(e.catch),C=Object.prototype.toString,k=e=>C.call(e),x=e=>{if(!w(e))return!1;const t=Object.getPrototypeOf(e);return null===t||t.constructor===Object},_=e=>null==e?"":g(e)||x(e)&&e.toString===C?JSON.stringify(e,null,2):String(e);function S(e,t=""){return e.reduce(((e,n,o)=>0===o?e+n:e+t+n),"")}function T(e){let t=e;return()=>++t}function O(e,t){"undefined"!==typeof console&&(console.warn("[intlify] "+e),t&&console.warn(t.stack))}const I=e=>!w(e)||g(e);function A(e,t){if(I(e)||I(t))throw new Error("Invalid value");const n=[{src:e,des:t}];while(n.length){const{src:e,des:t}=n.pop();Object.keys(e).forEach((o=>{I(e[o])||I(t[o])?t[o]=e[o]:n.push({src:e[o],des:t[o]})}))}}function L(e,t,n){return{line:e,column:t,offset:n}}function M(e,t,n){const o={start:e,end:t};return null!=n&&(o.source=n),o}const N=/\{([0-9a-zA-Z]+)\}/g;function W(e,...t){return 1===t.length&&$(t[0])&&(t=t[0]),t&&t.hasOwnProperty||(t={}),e.replace(N,((e,n)=>t.hasOwnProperty(n)?t[n]:""))}const D=Object.assign,F=e=>"string"===typeof e,$=e=>null!==e&&"object"===typeof e;function B(e,t=""){return e.reduce(((e,n,o)=>0===o?e+n:e+t+n),"")}const P={EXPECTED_TOKEN:1,INVALID_TOKEN_IN_PLACEHOLDER:2,UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER:3,UNKNOWN_ESCAPE_SEQUENCE:4,INVALID_UNICODE_ESCAPE_SEQUENCE:5,UNBALANCED_CLOSING_BRACE:6,UNTERMINATED_CLOSING_BRACE:7,EMPTY_PLACEHOLDER:8,NOT_ALLOW_NEST_PLACEHOLDER:9,INVALID_LINKED_FORMAT:10,MUST_HAVE_MESSAGES_IN_PLURAL:11,UNEXPECTED_EMPTY_LINKED_MODIFIER:12,UNEXPECTED_EMPTY_LINKED_KEY:13,UNEXPECTED_LEXICAL_ANALYSIS:14,UNHANDLED_CODEGEN_NODE_TYPE:15,UNHANDLED_MINIFIER_NODE_TYPE:16,__EXTEND_POINT__:17},K={[P.EXPECTED_TOKEN]:"Expected token: '{0}'",[P.INVALID_TOKEN_IN_PLACEHOLDER]:"Invalid token in placeholder: '{0}'",[P.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER]:"Unterminated single quote in placeholder",[P.UNKNOWN_ESCAPE_SEQUENCE]:"Unknown escape sequence: \\{0}",[P.INVALID_UNICODE_ESCAPE_SEQUENCE]:"Invalid unicode escape sequence: {0}",[P.UNBALANCED_CLOSING_BRACE]:"Unbalanced closing brace",[P.UNTERMINATED_CLOSING_BRACE]:"Unterminated closing brace",[P.EMPTY_PLACEHOLDER]:"Empty placeholder",[P.NOT_ALLOW_NEST_PLACEHOLDER]:"Not allowed nest placeholder",[P.INVALID_LINKED_FORMAT]:"Invalid linked format",[P.MUST_HAVE_MESSAGES_IN_PLURAL]:"Plural must have messages",[P.UNEXPECTED_EMPTY_LINKED_MODIFIER]:"Unexpected empty linked modifier",[P.UNEXPECTED_EMPTY_LINKED_KEY]:"Unexpected empty linked key",[P.UNEXPECTED_LEXICAL_ANALYSIS]:"Unexpected lexical analysis in token: '{0}'",[P.UNHANDLED_CODEGEN_NODE_TYPE]:"unhandled codegen node type: '{0}'",[P.UNHANDLED_MINIFIER_NODE_TYPE]:"unhandled mimifier node type: '{0}'"};function j(e,t,n={}){const{domain:o,messages:r,args:l}=n,a=W((r||K)[e]||"",...l||[]),i=new SyntaxError(String(a));return i.code=e,t&&(i.location=t),i.domain=o,i}function V(e){throw e}const X=" ",U="\r",H="\n",z=String.fromCharCode(8232),G=String.fromCharCode(8233);function q(e){const t=e;let n=0,o=1,r=1,l=0;const a=e=>t[e]===U&&t[e+1]===H,i=e=>t[e]===H,s=e=>t[e]===G,u=e=>t[e]===z,c=e=>a(e)||i(e)||s(e)||u(e),d=()=>n,p=()=>o,f=()=>r,v=()=>l,h=e=>a(e)||s(e)||u(e)?H:t[e],m=()=>h(n),g=()=>h(n+l);function y(){return l=0,c(n)&&(o++,r=0),a(n)&&n++,n++,r++,t[n]}function b(){return a(n+l)&&l++,l++,t[n+l]}function R(){n=0,o=1,r=1,l=0}function w(e=0){l=e}function E(){const e=n+l;while(e!==n)y();l=0}return{index:d,line:p,column:f,peekOffset:v,charAt:h,currentChar:m,currentPeek:g,next:y,peek:b,reset:R,resetPeek:w,skipToPeek:E}}const Y=void 0,Q=".",Z="'",J="tokenizer";function ee(e,t={}){const n=!1!==t.location,o=q(e),r=()=>o.index(),l=()=>L(o.line(),o.column(),o.index()),a=l(),i=r(),s={currentType:14,offset:i,startLoc:a,endLoc:a,lastType:14,lastOffset:i,lastStartLoc:a,lastEndLoc:a,braceNest:0,inLinked:!1,text:""},u=()=>s,{onError:c}=t;function d(e,t,o,...r){const l=u();if(t.column+=o,t.offset+=o,c){const o=n?M(l.startLoc,t):null,a=j(e,o,{domain:J,args:r});c(a)}}function p(e,t,o){e.endLoc=l(),e.currentType=t;const r={type:t};return n&&(r.loc=M(e.startLoc,e.endLoc)),null!=o&&(r.value=o),r}const f=e=>p(e,14);function v(e,t){return e.currentChar()===t?(e.next(),t):(d(P.EXPECTED_TOKEN,l(),0,t),"")}function h(e){let t="";while(e.currentPeek()===X||e.currentPeek()===H)t+=e.currentPeek(),e.peek();return t}function m(e){const t=h(e);return e.skipToPeek(),t}function g(e){if(e===Y)return!1;const t=e.charCodeAt(0);return t>=97&&t<=122||t>=65&&t<=90||95===t}function y(e){if(e===Y)return!1;const t=e.charCodeAt(0);return t>=48&&t<=57}function b(e,t){const{currentType:n}=t;if(2!==n)return!1;h(e);const o=g(e.currentPeek());return e.resetPeek(),o}function R(e,t){const{currentType:n}=t;if(2!==n)return!1;h(e);const o="-"===e.currentPeek()?e.peek():e.currentPeek(),r=y(o);return e.resetPeek(),r}function w(e,t){const{currentType:n}=t;if(2!==n)return!1;h(e);const o=e.currentPeek()===Z;return e.resetPeek(),o}function E(e,t){const{currentType:n}=t;if(8!==n)return!1;h(e);const o="."===e.currentPeek();return e.resetPeek(),o}function C(e,t){const{currentType:n}=t;if(9!==n)return!1;h(e);const o=g(e.currentPeek());return e.resetPeek(),o}function k(e,t){const{currentType:n}=t;if(8!==n&&12!==n)return!1;h(e);const o=":"===e.currentPeek();return e.resetPeek(),o}function x(e,t){const{currentType:n}=t;if(10!==n)return!1;const o=()=>{const t=e.currentPeek();return"{"===t?g(e.peek()):!("@"===t||"%"===t||"|"===t||":"===t||"."===t||t===X||!t)&&(t===H?(e.peek(),o()):g(t))},r=o();return e.resetPeek(),r}function _(e){h(e);const t="|"===e.currentPeek();return e.resetPeek(),t}function S(e){const t=h(e),n="%"===e.currentPeek()&&"{"===e.peek();return e.resetPeek(),{isModulo:n,hasSpace:t.length>0}}function T(e,t=!0){const n=(t=!1,o="",r=!1)=>{const l=e.currentPeek();return"{"===l?"%"!==o&&t:"@"!==l&&l?"%"===l?(e.peek(),n(t,"%",!0)):"|"===l?!("%"!==o&&!r)||!(o===X||o===H):l===X?(e.peek(),n(!0,X,r)):l!==H||(e.peek(),n(!0,H,r)):"%"===o||t},o=n();return t&&e.resetPeek(),o}function O(e,t){const n=e.currentChar();return n===Y?Y:t(n)?(e.next(),n):null}function I(e){const t=e=>{const t=e.charCodeAt(0);return t>=97&&t<=122||t>=65&&t<=90||t>=48&&t<=57||95===t||36===t};return O(e,t)}function A(e){const t=e=>{const t=e.charCodeAt(0);return t>=48&&t<=57};return O(e,t)}function N(e){const t=e=>{const t=e.charCodeAt(0);return t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102};return O(e,t)}function W(e){let t="",n="";while(t=A(e))n+=t;return n}function D(e){m(e);const t=e.currentChar();return"%"!==t&&d(P.EXPECTED_TOKEN,l(),0,t),e.next(),"%"}function F(e){let t="";while(1){const n=e.currentChar();if("{"===n||"}"===n||"@"===n||"|"===n||!n)break;if("%"===n){if(!T(e))break;t+=n,e.next()}else if(n===X||n===H)if(T(e))t+=n,e.next();else{if(_(e))break;t+=n,e.next()}else t+=n,e.next()}return t}function $(e){m(e);let t="",n="";while(t=I(e))n+=t;return e.currentChar()===Y&&d(P.UNTERMINATED_CLOSING_BRACE,l(),0),n}function B(e){m(e);let t="";return"-"===e.currentChar()?(e.next(),t+=`-${W(e)}`):t+=W(e),e.currentChar()===Y&&d(P.UNTERMINATED_CLOSING_BRACE,l(),0),t}function K(e){m(e),v(e,"'");let t="",n="";const o=e=>e!==Z&&e!==H;while(t=O(e,o))n+="\\"===t?V(e):t;const r=e.currentChar();return r===H||r===Y?(d(P.UNTERMINATED_SINGLE_QUOTE_IN_PLACEHOLDER,l(),0),r===H&&(e.next(),v(e,"'")),n):(v(e,"'"),n)}function V(e){const t=e.currentChar();switch(t){case"\\":case"'":return e.next(),`\\${t}`;case"u":return U(e,t,4);case"U":return U(e,t,6);default:return d(P.UNKNOWN_ESCAPE_SEQUENCE,l(),0,t),""}}function U(e,t,n){v(e,t);let o="";for(let r=0;r"{"!==e&&"}"!==e&&e!==X&&e!==H;while(t=O(e,o))n+=t;return n}function G(e){let t="",n="";while(t=I(e))n+=t;return n}function ee(e){const t=(n=!1,o)=>{const r=e.currentChar();return"{"!==r&&"%"!==r&&"@"!==r&&"|"!==r&&"("!==r&&")"!==r&&r?r===X?o:r===H||r===Q?(o+=r,e.next(),t(n,o)):(o+=r,e.next(),t(!0,o)):o};return t(!1,"")}function te(e){m(e);const t=v(e,"|");return m(e),t}function ne(e,t){let n=null;const o=e.currentChar();switch(o){case"{":return t.braceNest>=1&&d(P.NOT_ALLOW_NEST_PLACEHOLDER,l(),0),e.next(),n=p(t,2,"{"),m(e),t.braceNest++,n;case"}":return t.braceNest>0&&2===t.currentType&&d(P.EMPTY_PLACEHOLDER,l(),0),e.next(),n=p(t,3,"}"),t.braceNest--,t.braceNest>0&&m(e),t.inLinked&&0===t.braceNest&&(t.inLinked=!1),n;case"@":return t.braceNest>0&&d(P.UNTERMINATED_CLOSING_BRACE,l(),0),n=oe(e,t)||f(t),t.braceNest=0,n;default:let o=!0,r=!0,a=!0;if(_(e))return t.braceNest>0&&d(P.UNTERMINATED_CLOSING_BRACE,l(),0),n=p(t,1,te(e)),t.braceNest=0,t.inLinked=!1,n;if(t.braceNest>0&&(5===t.currentType||6===t.currentType||7===t.currentType))return d(P.UNTERMINATED_CLOSING_BRACE,l(),0),t.braceNest=0,re(e,t);if(o=b(e,t))return n=p(t,5,$(e)),m(e),n;if(r=R(e,t))return n=p(t,6,B(e)),m(e),n;if(a=w(e,t))return n=p(t,7,K(e)),m(e),n;if(!o&&!r&&!a)return n=p(t,13,z(e)),d(P.INVALID_TOKEN_IN_PLACEHOLDER,l(),0,n.value),m(e),n;break}return n}function oe(e,t){const{currentType:n}=t;let o=null;const r=e.currentChar();switch(8!==n&&9!==n&&12!==n&&10!==n||r!==H&&r!==X||d(P.INVALID_LINKED_FORMAT,l(),0),r){case"@":return e.next(),o=p(t,8,"@"),t.inLinked=!0,o;case".":return m(e),e.next(),p(t,9,".");case":":return m(e),e.next(),p(t,10,":");default:return _(e)?(o=p(t,1,te(e)),t.braceNest=0,t.inLinked=!1,o):E(e,t)||k(e,t)?(m(e),oe(e,t)):C(e,t)?(m(e),p(t,12,G(e))):x(e,t)?(m(e),"{"===r?ne(e,t)||o:p(t,11,ee(e))):(8===n&&d(P.INVALID_LINKED_FORMAT,l(),0),t.braceNest=0,t.inLinked=!1,re(e,t))}}function re(e,t){let n={type:14};if(t.braceNest>0)return ne(e,t)||f(t);if(t.inLinked)return oe(e,t)||f(t);const o=e.currentChar();switch(o){case"{":return ne(e,t)||f(t);case"}":return d(P.UNBALANCED_CLOSING_BRACE,l(),0),e.next(),p(t,3,"}");case"@":return oe(e,t)||f(t);default:if(_(e))return n=p(t,1,te(e)),t.braceNest=0,t.inLinked=!1,n;const{isModulo:o,hasSpace:r}=S(e);if(o)return r?p(t,0,F(e)):p(t,4,D(e));if(T(e))return p(t,0,F(e));break}return n}function le(){const{currentType:e,offset:t,startLoc:n,endLoc:a}=s;return s.lastType=e,s.lastOffset=t,s.lastStartLoc=n,s.lastEndLoc=a,s.offset=r(),s.startLoc=l(),o.currentChar()===Y?p(s,14):re(o,s)}return{nextToken:le,currentOffset:r,currentPosition:l,context:u}}const te="parser",ne=/(?:\\\\|\\'|\\u([0-9a-fA-F]{4})|\\U([0-9a-fA-F]{6}))/g;function oe(e,t,n){switch(e){case"\\\\":return"\\";case"\\'":return"'";default:{const e=parseInt(t||n,16);return e<=55295||e>=57344?String.fromCodePoint(e):"�"}}}function re(e={}){const t=!1!==e.location,{onError:n}=e;function o(e,o,r,l,...a){const i=e.currentPosition();if(i.offset+=l,i.column+=l,n){const e=t?M(r,i):null,l=j(o,e,{domain:te,args:a});n(l)}}function r(e,n,o){const r={type:e};return t&&(r.start=n,r.end=n,r.loc={start:o,end:o}),r}function l(e,n,o,r){r&&(e.type=r),t&&(e.end=n,e.loc&&(e.loc.end=o))}function a(e,t){const n=e.context(),o=r(3,n.offset,n.startLoc);return o.value=t,l(o,e.currentOffset(),e.currentPosition()),o}function i(e,t){const n=e.context(),{lastOffset:o,lastStartLoc:a}=n,i=r(5,o,a);return i.index=parseInt(t,10),e.nextToken(),l(i,e.currentOffset(),e.currentPosition()),i}function s(e,t){const n=e.context(),{lastOffset:o,lastStartLoc:a}=n,i=r(4,o,a);return i.key=t,e.nextToken(),l(i,e.currentOffset(),e.currentPosition()),i}function u(e,t){const n=e.context(),{lastOffset:o,lastStartLoc:a}=n,i=r(9,o,a);return i.value=t.replace(ne,oe),e.nextToken(),l(i,e.currentOffset(),e.currentPosition()),i}function c(e){const t=e.nextToken(),n=e.context(),{lastOffset:a,lastStartLoc:i}=n,s=r(8,a,i);return 12!==t.type?(o(e,P.UNEXPECTED_EMPTY_LINKED_MODIFIER,n.lastStartLoc,0),s.value="",l(s,a,i),{nextConsumeToken:t,node:s}):(null==t.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,n.lastStartLoc,0,le(t)),s.value=t.value||"",l(s,e.currentOffset(),e.currentPosition()),{node:s})}function d(e,t){const n=e.context(),o=r(7,n.offset,n.startLoc);return o.value=t,l(o,e.currentOffset(),e.currentPosition()),o}function p(e){const t=e.context(),n=r(6,t.offset,t.startLoc);let a=e.nextToken();if(9===a.type){const t=c(e);n.modifier=t.node,a=t.nextConsumeToken||e.nextToken()}switch(10!==a.type&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(a)),a=e.nextToken(),2===a.type&&(a=e.nextToken()),a.type){case 11:null==a.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(a)),n.key=d(e,a.value||"");break;case 5:null==a.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(a)),n.key=s(e,a.value||"");break;case 6:null==a.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(a)),n.key=i(e,a.value||"");break;case 7:null==a.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(a)),n.key=u(e,a.value||"");break;default:o(e,P.UNEXPECTED_EMPTY_LINKED_KEY,t.lastStartLoc,0);const c=e.context(),p=r(7,c.offset,c.startLoc);return p.value="",l(p,c.offset,c.startLoc),n.key=p,l(n,c.offset,c.startLoc),{nextConsumeToken:a,node:n}}return l(n,e.currentOffset(),e.currentPosition()),{node:n}}function f(e){const t=e.context(),n=1===t.currentType?e.currentOffset():t.offset,c=1===t.currentType?t.endLoc:t.startLoc,d=r(2,n,c);d.items=[];let f=null;do{const n=f||e.nextToken();switch(f=null,n.type){case 0:null==n.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(n)),d.items.push(a(e,n.value||""));break;case 6:null==n.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(n)),d.items.push(i(e,n.value||""));break;case 5:null==n.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(n)),d.items.push(s(e,n.value||""));break;case 7:null==n.value&&o(e,P.UNEXPECTED_LEXICAL_ANALYSIS,t.lastStartLoc,0,le(n)),d.items.push(u(e,n.value||""));break;case 8:const r=p(e);d.items.push(r.node),f=r.nextConsumeToken||null;break}}while(14!==t.currentType&&1!==t.currentType);const v=1===t.currentType?t.lastOffset:e.currentOffset(),h=1===t.currentType?t.lastEndLoc:e.currentPosition();return l(d,v,h),d}function v(e,t,n,a){const i=e.context();let s=0===a.items.length;const u=r(1,t,n);u.cases=[],u.cases.push(a);do{const t=f(e);s||(s=0===t.items.length),u.cases.push(t)}while(14!==i.currentType);return s&&o(e,P.MUST_HAVE_MESSAGES_IN_PLURAL,n,0),l(u,e.currentOffset(),e.currentPosition()),u}function h(e){const t=e.context(),{offset:n,startLoc:o}=t,r=f(e);return 14===t.currentType?r:v(e,n,o,r)}function m(n){const a=ee(n,D({},e)),i=a.context(),s=r(0,i.offset,i.startLoc);return t&&s.loc&&(s.loc.source=n),s.body=h(a),e.onCacheKey&&(s.cacheKey=e.onCacheKey(n)),14!==i.currentType&&o(a,P.UNEXPECTED_LEXICAL_ANALYSIS,i.lastStartLoc,0,n[i.offset]||""),l(s,a.currentOffset(),a.currentPosition()),s}return{parse:m}}function le(e){if(14===e.type)return"EOF";const t=(e.value||"").replace(/\r?\n/gu,"\\n");return t.length>10?t.slice(0,9)+"…":t}function ae(e,t={}){const n={ast:e,helpers:new Set},o=()=>n,r=e=>(n.helpers.add(e),e);return{context:o,helper:r}}function ie(e,t){for(let n=0;nde(e))),e}function de(e){if(1===e.items.length){const t=e.items[0];3!==t.type&&9!==t.type||(e.static=t.value,delete t.value)}else{const t=[];for(let n=0;ni;function u(e,t){i.code+=e}function c(e,t=!0){const n=t?r:"";u(l?n+" ".repeat(e):n)}function d(e=!0){const t=++i.indentLevel;e&&c(t)}function p(e=!0){const t=--i.indentLevel;e&&c(t)}function f(){c(i.indentLevel)}const v=e=>`_${e}`,h=()=>i.needIndent;return{context:s,push:u,indent:d,deindent:p,newline:f,helper:v,needIndent:h}}function me(e,t){const{helper:n}=e;e.push(`${n("linked")}(`),Re(e,t.key),t.modifier?(e.push(", "),Re(e,t.modifier),e.push(", _type")):e.push(", undefined, _type"),e.push(")")}function ge(e,t){const{helper:n,needIndent:o}=e;e.push(`${n("normalize")}([`),e.indent(o());const r=t.items.length;for(let l=0;l1){e.push(`${n("plural")}([`),e.indent(o());const r=t.cases.length;for(let n=0;n{const n=F(t.mode)?t.mode:"normal",o=F(t.filename)?t.filename:"message.intl",r=!!t.sourceMap,l=null!=t.breakLineCode?t.breakLineCode:"arrow"===n?";":"\n",a=t.needIndent?t.needIndent:"arrow"!==n,i=e.helpers||[],s=he(e,{mode:n,filename:o,sourceMap:r,breakLineCode:l,needIndent:a});s.push("normal"===n?"function __msg__ (ctx) {":"(ctx) => {"),s.indent(a),i.length>0&&(s.push(`const { ${B(i.map((e=>`${e}: _${e}`)),", ")} } = ctx`),s.newline()),s.push("return "),Re(s,e),s.deindent(a),s.push("}"),delete e.helpers;const{code:u,map:c}=s.context();return{ast:e,code:u,map:c?c.toJSON():void 0}};function Ee(e,t={}){const n=D({},t),o=!!n.jit,r=!!n.minify,l=null==n.optimize||n.optimize,a=re(n),i=a.parse(e);return o?(l&&ce(i),r&&fe(i),{ast:i,code:""}):(ue(i,n),we(i,n))} -/*! - * core-base v9.9.1 - * (c) 2024 kazuya kawaguchi - * Released under the MIT License. - */ -function Ce(){"boolean"!==typeof __INTLIFY_PROD_DEVTOOLS__&&(f().__INTLIFY_PROD_DEVTOOLS__=!1),"boolean"!==typeof __INTLIFY_JIT_COMPILATION__&&(f().__INTLIFY_JIT_COMPILATION__=!1),"boolean"!==typeof __INTLIFY_DROP_MESSAGE_COMPILER__&&(f().__INTLIFY_DROP_MESSAGE_COMPILER__=!1)}const ke=[];ke[0]={["w"]:[0],["i"]:[3,0],["["]:[4],["o"]:[7]},ke[1]={["w"]:[1],["."]:[2],["["]:[4],["o"]:[7]},ke[2]={["w"]:[2],["i"]:[3,0],["0"]:[3,0]},ke[3]={["i"]:[3,0],["0"]:[3,0],["w"]:[1,1],["."]:[2,1],["["]:[4,1],["o"]:[7,1]},ke[4]={["'"]:[5,0],['"']:[6,0],["["]:[4,2],["]"]:[1,3],["o"]:8,["l"]:[4,0]},ke[5]={["'"]:[4,0],["o"]:8,["l"]:[5,0]},ke[6]={['"']:[4,0],["o"]:8,["l"]:[6,0]};const xe=/^\s?(?:true|false|-?[\d.]+|'[^']*'|"[^"]*")\s?$/;function _e(e){return xe.test(e)}function Se(e){const t=e.charCodeAt(0),n=e.charCodeAt(e.length-1);return t!==n||34!==t&&39!==t?e:e.slice(1,-1)}function Te(e){if(void 0===e||null===e)return"o";const t=e.charCodeAt(0);switch(t){case 91:case 93:case 46:case 34:case 39:return e;case 95:case 36:case 45:return"i";case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"w"}return"i"}function Oe(e){const t=e.trim();return("0"!==e.charAt(0)||!isNaN(parseInt(e)))&&(_e(t)?Se(t):"*"+t)}function Ie(e){const t=[];let n,o,r,l,a,i,s,u=-1,c=0,d=0;const p=[];function f(){const t=e[u+1];if(5===c&&"'"===t||6===c&&'"'===t)return u++,r="\\"+t,p[0](),!0}p[0]=()=>{void 0===o?o=r:o+=r},p[1]=()=>{void 0!==o&&(t.push(o),o=void 0)},p[2]=()=>{p[0](),d++},p[3]=()=>{if(d>0)d--,c=4,p[0]();else{if(d=0,void 0===o)return!1;if(o=Oe(o),!1===o)return!1;p[1]()}};while(null!==c)if(u++,n=e[u],"\\"!==n||!f()){if(l=Te(n),s=ke[c],a=s[l]||s["l"]||8,8===a)return;if(c=a[0],void 0!==a[1]&&(i=p[a[1]],i&&(r=n,!1===i())))return;if(7===c)return t}}const Ae=new Map;function Le(e,t){return w(e)?e[t]:null}function Me(e,t){if(!w(e))return null;let n=Ae.get(t);if(n||(n=Ie(t),n&&Ae.set(t,n)),!n)return null;const o=n.length;let r=e,l=0;while(le,We=e=>"",De="text",Fe=e=>0===e.length?"":S(e),$e=_;function Be(e,t){return e=Math.abs(e),2===t?e?e>1?1:0:1:e?Math.min(e,2):0}function Pe(e){const t=i(e.pluralIndex)?e.pluralIndex:-1;return e.named&&(i(e.named.count)||i(e.named.n))?i(e.named.count)?e.named.count:i(e.named.n)?e.named.n:t:t}function Ke(e,t){t.count||(t.count=e),t.n||(t.n=e)}function je(e={}){const t=e.locale,n=Pe(e),o=w(e.pluralRules)&&b(t)&&y(e.pluralRules[t])?e.pluralRules[t]:Be,r=w(e.pluralRules)&&b(t)&&y(e.pluralRules[t])?Be:void 0,l=e=>e[o(n,e.length,r)],a=e.list||[],s=e=>a[e],u=e.named||{};i(e.pluralIndex)&&Ke(n,u);const c=e=>u[e];function p(t){const n=y(e.messages)?e.messages(t):!!w(e.messages)&&e.messages[t];return n||(e.parent?e.parent.message(t):We)}const f=t=>e.modifiers?e.modifiers[t]:Ne,v=x(e.processor)&&y(e.processor.normalize)?e.processor.normalize:Fe,h=x(e.processor)&&y(e.processor.interpolate)?e.processor.interpolate:$e,m=x(e.processor)&&b(e.processor.type)?e.processor.type:De,R=(e,...t)=>{const[n,o]=t;let r="text",l="";1===t.length?w(n)?(l=n.modifier||l,r=n.type||r):b(n)&&(l=n||l):2===t.length&&(b(n)&&(l=n||l),b(o)&&(r=o||r));const a=p(e)(E),i="vnode"===r&&g(a)&&l?a[0]:a;return l?f(l)(i,r):i},E={["list"]:s,["named"]:c,["plural"]:l,["linked"]:R,["message"]:p,["type"]:m,["interpolate"]:h,["normalize"]:v,["values"]:d({},a,u)};return E}let Ve=null;function Xe(e){Ve=e}function Ue(e,t,n){Ve&&Ve.emit("i18n:init",{timestamp:Date.now(),i18n:e,version:t,meta:n})}const He=ze("function:translate");function ze(e){return t=>Ve&&Ve.emit(e,t)}const Ge={NOT_FOUND_KEY:1,FALLBACK_TO_TRANSLATE:2,CANNOT_FORMAT_NUMBER:3,FALLBACK_TO_NUMBER_FORMAT:4,CANNOT_FORMAT_DATE:5,FALLBACK_TO_DATE_FORMAT:6,EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER:7,__EXTEND_POINT__:8};Ge.NOT_FOUND_KEY,Ge.FALLBACK_TO_TRANSLATE,Ge.CANNOT_FORMAT_NUMBER,Ge.FALLBACK_TO_NUMBER_FORMAT,Ge.CANNOT_FORMAT_DATE,Ge.FALLBACK_TO_DATE_FORMAT,Ge.EXPERIMENTAL_CUSTOM_MESSAGE_COMPILER;const qe=P.__EXTEND_POINT__,Ye=T(qe),Qe={INVALID_ARGUMENT:qe,INVALID_DATE_ARGUMENT:Ye(),INVALID_ISO_DATE_ARGUMENT:Ye(),NOT_SUPPORT_NON_STRING_MESSAGE:Ye(),NOT_SUPPORT_LOCALE_PROMISE_VALUE:Ye(),NOT_SUPPORT_LOCALE_ASYNC_FUNCTION:Ye(),NOT_SUPPORT_LOCALE_TYPE:Ye(),__EXTEND_POINT__:Ye()};function Ze(e){return j(e,null,void 0)}Qe.INVALID_ARGUMENT,Qe.INVALID_DATE_ARGUMENT,Qe.INVALID_ISO_DATE_ARGUMENT,Qe.NOT_SUPPORT_NON_STRING_MESSAGE,Qe.NOT_SUPPORT_LOCALE_PROMISE_VALUE,Qe.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION,Qe.NOT_SUPPORT_LOCALE_TYPE;function Je(e,t){return null!=t.locale?tt(t.locale):tt(e.locale)}let et;function tt(e){if(b(e))return e;if(y(e)){if(e.resolvedOnce&&null!=et)return et;if("Function"===e.constructor.name){const t=e();if(E(t))throw Ze(Qe.NOT_SUPPORT_LOCALE_PROMISE_VALUE);return et=t}throw Ze(Qe.NOT_SUPPORT_LOCALE_ASYNC_FUNCTION)}throw Ze(Qe.NOT_SUPPORT_LOCALE_TYPE)}function nt(e,t,n){return[...new Set([n,...g(t)?t:w(t)?Object.keys(t):b(t)?[t]:[n]])]}function ot(e,t,n){const o=b(n)?n:ut,r=e;r.__localeChainCache||(r.__localeChainCache=new Map);let l=r.__localeChainCache.get(o);if(!l){l=[];let e=[n];while(g(e))e=rt(l,e,t);const a=g(t)||!x(t)?t:t["default"]?t["default"]:null;e=b(a)?[a]:a,g(e)&&rt(l,e,!1),r.__localeChainCache.set(o,l)}return l}function rt(e,t,n){let o=!0;for(let r=0;r`${e.charAt(0).toLocaleUpperCase()}${e.substr(1)}`;function pt(){return{upper:(e,t)=>"text"===t&&b(e)?e.toUpperCase():"vnode"===t&&w(e)&&"__v_isVNode"in e?e.children.toUpperCase():e,lower:(e,t)=>"text"===t&&b(e)?e.toLowerCase():"vnode"===t&&w(e)&&"__v_isVNode"in e?e.children.toLowerCase():e,capitalize:(e,t)=>"text"===t&&b(e)?dt(e):"vnode"===t&&w(e)&&"__v_isVNode"in e?dt(e.children):e}}let ft,vt,ht;function mt(e){ft=e}function gt(e){vt=e}function yt(e){ht=e}let bt=null;const Rt=e=>{bt=e},wt=()=>bt;let Et=null;const Ct=e=>{Et=e},kt=()=>Et;let xt=0;function _t(e={}){const t=y(e.onWarn)?e.onWarn:O,n=b(e.version)?e.version:it,o=b(e.locale)||y(e.locale)?e.locale:ut,r=y(o)?ut:o,l=g(e.fallbackLocale)||x(e.fallbackLocale)||b(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:r,a=x(e.messages)?e.messages:{[r]:{}},i=x(e.datetimeFormats)?e.datetimeFormats:{[r]:{}},s=x(e.numberFormats)?e.numberFormats:{[r]:{}},c=d({},e.modifiers||{},pt()),p=e.pluralRules||{},f=y(e.missing)?e.missing:null,v=!R(e.missingWarn)&&!u(e.missingWarn)||e.missingWarn,h=!R(e.fallbackWarn)&&!u(e.fallbackWarn)||e.fallbackWarn,m=!!e.fallbackFormat,E=!!e.unresolving,C=y(e.postTranslation)?e.postTranslation:null,k=x(e.processor)?e.processor:null,_=!R(e.warnHtmlMessage)||e.warnHtmlMessage,S=!!e.escapeParameter,T=y(e.messageCompiler)?e.messageCompiler:ft;const I=y(e.messageResolver)?e.messageResolver:vt||Le,A=y(e.localeFallbacker)?e.localeFallbacker:ht||nt,L=w(e.fallbackContext)?e.fallbackContext:void 0,M=e,N=w(M.__datetimeFormatters)?M.__datetimeFormatters:new Map,W=w(M.__numberFormatters)?M.__numberFormatters:new Map,D=w(M.__meta)?M.__meta:{};xt++;const F={version:n,cid:xt,locale:o,fallbackLocale:l,messages:a,modifiers:c,pluralRules:p,missing:f,missingWarn:v,fallbackWarn:h,fallbackFormat:m,unresolving:E,postTranslation:C,processor:k,warnHtmlMessage:_,escapeParameter:S,messageCompiler:T,messageResolver:I,localeFallbacker:A,fallbackContext:L,onWarn:t,__meta:D};return F.datetimeFormats=i,F.numberFormats=s,F.__datetimeFormatters=N,F.__numberFormatters=W,__INTLIFY_PROD_DEVTOOLS__&&Ue(F,n,D),F}function St(e,t,n,o,r){const{missing:l,onWarn:a}=e;if(null!==l){const o=l(e,n,t,r);return b(o)?o:t}return t}function Tt(e,t,n){const o=e;o.__localeChainCache=new Map,e.localeFallbacker(e,n,t)}function Ot(e){const t=t=>It(t,e);return t}function It(e,t){const n=t.b||t.body;if(1===(n.t||n.type)){const t=n,o=t.c||t.cases;return e.plural(o.reduce(((t,n)=>[...t,At(e,n)]),[]))}return At(e,n)}function At(e,t){const n=t.s||t.static;if(n)return"text"===e.type?n:e.normalize([n]);{const n=(t.i||t.items).reduce(((t,n)=>[...t,Lt(e,n)]),[]);return e.normalize(n)}}function Lt(e,t){const n=t.t||t.type;switch(n){case 3:const o=t;return o.v||o.value;case 9:const r=t;return r.v||r.value;case 4:const l=t;return e.interpolate(e.named(l.k||l.key));case 5:const a=t;return e.interpolate(e.list(null!=a.i?a.i:a.index));case 6:const i=t,s=i.m||i.modifier;return e.linked(Lt(e,i.k||i.key),s?Lt(e,s):void 0,e.type);case 7:const u=t;return u.v||u.value;case 8:const c=t;return c.v||c.value;default:throw new Error(`unhandled node type on format message part: ${n}`)}}const Mt=e=>e;let Nt=Object.create(null);const Wt=e=>w(e)&&(0===e.t||0===e.type)&&("b"in e||"body"in e);function Dt(e,t={}){let n=!1;const o=t.onError||V;return t.onError=e=>{n=!0,o(e)},{...Ee(e,t),detectError:n}}const Ft=(e,t)=>{if(!b(e))throw Ze(Qe.NOT_SUPPORT_NON_STRING_MESSAGE);{!R(t.warnHtmlMessage)||t.warnHtmlMessage;const n=t.onCacheKey||Mt,o=n(e),r=Nt[o];if(r)return r;const{code:l,detectError:a}=Dt(e,t),i=new Function(`return ${l}`)();return a?i:Nt[o]=i}};function $t(e,t){if(__INTLIFY_JIT_COMPILATION__&&!__INTLIFY_DROP_MESSAGE_COMPILER__&&b(e)){!R(t.warnHtmlMessage)||t.warnHtmlMessage;const n=t.onCacheKey||Mt,o=n(e),r=Nt[o];if(r)return r;const{ast:l,detectError:a}=Dt(e,{...t,location:!1,jit:!0}),i=Ot(l);return a?i:Nt[o]=i}{0;const t=e.cacheKey;if(t){const n=Nt[t];return n||(Nt[t]=Ot(e))}return Ot(e)}}const Bt=()=>"",Pt=e=>y(e);function Kt(e,...t){const{fallbackFormat:n,postTranslation:o,unresolving:r,messageCompiler:l,fallbackLocale:a,messages:i}=e,[s,u]=Ht(...t),c=R(u.missingWarn)?u.missingWarn:e.missingWarn,p=R(u.fallbackWarn)?u.fallbackWarn:e.fallbackWarn,f=R(u.escapeParameter)?u.escapeParameter:e.escapeParameter,v=!!u.resolvedMessage,h=b(u.default)||R(u.default)?R(u.default)?l?s:()=>s:u.default:n?l?s:()=>s:"",m=n||""!==h,g=Je(e,u);f&&jt(u);let[y,w,E]=v?[s,g,i[g]||{}]:Vt(e,s,g,a,p,c),C=y,k=s;if(v||b(C)||Wt(C)||Pt(C)||m&&(C=h,k=C),!v&&(!(b(C)||Wt(C)||Pt(C))||!b(w)))return r?st:s;let x=!1;const _=()=>{x=!0},S=Pt(C)?C:Xt(e,s,w,C,k,_);if(x)return C;const T=Gt(e,w,E,u),O=je(T),I=Ut(e,S,O),A=o?o(I,s):I;if(__INTLIFY_PROD_DEVTOOLS__){const t={timestamp:Date.now(),key:b(s)?s:Pt(C)?C.key:"",locale:w||(Pt(C)?C.locale:""),format:b(C)?C:Pt(C)?C.source:"",message:A};t.meta=d({},e.__meta,wt()||{}),He(t)}return A}function jt(e){g(e.list)?e.list=e.list.map((e=>b(e)?v(e):e)):w(e.named)&&Object.keys(e.named).forEach((t=>{b(e.named[t])&&(e.named[t]=v(e.named[t]))}))}function Vt(e,t,n,o,r,l){const{messages:a,onWarn:i,messageResolver:s,localeFallbacker:u}=e,c=u(e,o,n);let d,p={},f=null,v=n,h=null;const m="translate";for(let g=0;go;return e.locale=n,e.key=t,e}const s=a(o,zt(e,n,r,o,i,l));return s.locale=n,s.key=t,s.source=o,s}function Ut(e,t,n){const o=t(n);return o}function Ht(...e){const[t,n,o]=e,r={};if(!b(t)&&!i(t)&&!Pt(t)&&!Wt(t))throw Ze(Qe.INVALID_ARGUMENT);const l=i(t)?String(t):(Pt(t),t);return i(n)?r.plural=n:b(n)?r.default=n:x(n)&&!c(n)?r.named=n:g(n)&&(r.list=n),i(o)?r.plural=o:b(o)?r.default=o:x(o)&&d(r,o),[l,r]}function zt(e,t,n,o,r,a){return{locale:t,key:n,warnHtmlMessage:r,onError:e=>{throw a&&a(e),e},onCacheKey:e=>l(t,n,e)}}function Gt(e,t,n,o){const{modifiers:r,pluralRules:l,messageResolver:a,fallbackLocale:s,fallbackWarn:u,missingWarn:c,fallbackContext:d}=e,p=o=>{let r=a(n,o);if(null==r&&d){const[,,e]=Vt(d,o,t,s,u,c);r=a(e,o)}if(b(r)||Wt(r)){let n=!1;const l=()=>{n=!0},a=Xt(e,o,t,r,o,l);return n?Bt:a}return Pt(r)?r:Bt},f={locale:t,modifiers:r,pluralRules:l,messages:p};return e.processor&&(f.processor=e.processor),o.list&&(f.list=o.list),o.named&&(f.named=o.named),i(o.plural)&&(f.pluralIndex=o.plural),f}const qt="undefined"!==typeof Intl;qt&&Intl.DateTimeFormat,qt&&Intl.NumberFormat;function Yt(e,...t){const{datetimeFormats:n,unresolving:o,fallbackLocale:r,onWarn:l,localeFallbacker:a}=e,{__datetimeFormatters:i}=e;const[s,u,p,f]=Zt(...t),v=R(p.missingWarn)?p.missingWarn:e.missingWarn,h=(R(p.fallbackWarn)?p.fallbackWarn:e.fallbackWarn,!!p.part),m=Je(e,p),g=a(e,r,m);if(!b(s)||""===s)return new Intl.DateTimeFormat(m,f).format(u);let y,w={},E=null,C=m,k=null;const _="datetime format";for(let c=0;c{Qt.includes(e)?u[e]=n[e]:l[e]=n[e]})),b(o)?l.locale=o:x(o)&&(u=o),x(r)&&(u=r),[l.key||"",a,l,u]}function Jt(e,t,n){const o=e;for(const r in n){const e=`${t}__${r}`;o.__datetimeFormatters.has(e)&&o.__datetimeFormatters.delete(e)}}function en(e,...t){const{numberFormats:n,unresolving:o,fallbackLocale:r,onWarn:l,localeFallbacker:a}=e,{__numberFormatters:i}=e;const[s,u,p,f]=nn(...t),v=R(p.missingWarn)?p.missingWarn:e.missingWarn,h=(R(p.fallbackWarn)?p.fallbackWarn:e.fallbackWarn,!!p.part),m=Je(e,p),g=a(e,r,m);if(!b(s)||""===s)return new Intl.NumberFormat(m,f).format(u);let y,w={},E=null,C=m,k=null;const _="number format";for(let c=0;c{tn.includes(e)?a[e]=n[e]:l[e]=n[e]})),b(o)?l.locale=o:x(o)&&(a=o),x(r)&&(a=r),[l.key||"",s,l,a]}function on(e,t,n){const o=e;for(const r in n){const e=`${t}__${r}`;o.__numberFormatters.has(e)&&o.__numberFormatters.delete(e)}}Ce();var rn=n(6768),ln=n(144); -/*! - * vue-i18n v9.9.1 - * (c) 2024 kazuya kawaguchi - * Released under the MIT License. - */ -const an="9.9.1";function sn(){"boolean"!==typeof __VUE_I18N_FULL_INSTALL__&&(f().__VUE_I18N_FULL_INSTALL__=!0),"boolean"!==typeof __VUE_I18N_LEGACY_API__&&(f().__VUE_I18N_LEGACY_API__=!0),"boolean"!==typeof __INTLIFY_JIT_COMPILATION__&&(f().__INTLIFY_JIT_COMPILATION__=!1),"boolean"!==typeof __INTLIFY_DROP_MESSAGE_COMPILER__&&(f().__INTLIFY_DROP_MESSAGE_COMPILER__=!1),"boolean"!==typeof __INTLIFY_PROD_DEVTOOLS__&&(f().__INTLIFY_PROD_DEVTOOLS__=!1)}const un=Ge.__EXTEND_POINT__,cn=T(un),dn={FALLBACK_TO_ROOT:un,NOT_SUPPORTED_PRESERVE:cn(),NOT_SUPPORTED_FORMATTER:cn(),NOT_SUPPORTED_PRESERVE_DIRECTIVE:cn(),NOT_SUPPORTED_GET_CHOICE_INDEX:cn(),COMPONENT_NAME_LEGACY_COMPATIBLE:cn(),NOT_FOUND_PARENT_SCOPE:cn(),IGNORE_OBJ_FLATTEN:cn(),NOTICE_DROP_ALLOW_COMPOSITION:cn()};dn.FALLBACK_TO_ROOT,dn.NOT_SUPPORTED_PRESERVE,dn.NOT_SUPPORTED_FORMATTER,dn.NOT_SUPPORTED_PRESERVE_DIRECTIVE,dn.NOT_SUPPORTED_GET_CHOICE_INDEX,dn.COMPONENT_NAME_LEGACY_COMPATIBLE,dn.NOT_FOUND_PARENT_SCOPE,dn.IGNORE_OBJ_FLATTEN,dn.NOTICE_DROP_ALLOW_COMPOSITION;const pn=Qe.__EXTEND_POINT__,fn=T(pn),vn={UNEXPECTED_RETURN_TYPE:pn,INVALID_ARGUMENT:fn(),MUST_BE_CALL_SETUP_TOP:fn(),NOT_INSTALLED:fn(),NOT_AVAILABLE_IN_LEGACY_MODE:fn(),REQUIRED_VALUE:fn(),INVALID_VALUE:fn(),CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN:fn(),NOT_INSTALLED_WITH_PROVIDE:fn(),UNEXPECTED_ERROR:fn(),NOT_COMPATIBLE_LEGACY_VUE_I18N:fn(),BRIDGE_SUPPORT_VUE_2_ONLY:fn(),MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION:fn(),NOT_AVAILABLE_COMPOSITION_IN_LEGACY:fn(),__EXTEND_POINT__:fn()};function hn(e,...t){return j(e,null,void 0)}vn.UNEXPECTED_RETURN_TYPE,vn.INVALID_ARGUMENT,vn.MUST_BE_CALL_SETUP_TOP,vn.NOT_INSTALLED,vn.UNEXPECTED_ERROR,vn.NOT_AVAILABLE_IN_LEGACY_MODE,vn.REQUIRED_VALUE,vn.INVALID_VALUE,vn.CANNOT_SETUP_VUE_DEVTOOLS_PLUGIN,vn.NOT_INSTALLED_WITH_PROVIDE,vn.NOT_COMPATIBLE_LEGACY_VUE_I18N,vn.BRIDGE_SUPPORT_VUE_2_ONLY,vn.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION,vn.NOT_AVAILABLE_COMPOSITION_IN_LEGACY;const mn=r("__translateVNode"),gn=r("__datetimeParts"),yn=r("__numberParts"),bn=r("__setPluralRules");r("__intlifyMeta");const Rn=r("__injectWithOption"),wn=r("__dispose");function En(e){if(!w(e))return e;for(const t in e)if(m(e,t))if(t.includes(".")){const n=t.split("."),o=n.length-1;let r=e,l=!1;for(let e=0;e{if("locale"in e&&"resource"in e){const{locale:t,resource:n}=e;t?(a[t]=a[t]||{},A(n,a[t])):A(n,a)}else b(e)&&A(JSON.parse(e),a)})),null==r&&l)for(const i in a)m(a,i)&&En(a[i]);return a}function kn(e){return e.type}function xn(e,t,n){let o=w(t.messages)?t.messages:{};"__i18nGlobal"in n&&(o=Cn(e.locale.value,{messages:o,__i18n:n.__i18nGlobal}));const r=Object.keys(o);if(r.length&&r.forEach((t=>{e.mergeLocaleMessage(t,o[t])})),w(t.datetimeFormats)){const n=Object.keys(t.datetimeFormats);n.length&&n.forEach((n=>{e.mergeDateTimeFormat(n,t.datetimeFormats[n])}))}if(w(t.numberFormats)){const n=Object.keys(t.numberFormats);n.length&&n.forEach((n=>{e.mergeNumberFormat(n,t.numberFormats[n])}))}}function _n(e){return(0,rn.bF)(rn.EY,null,e,0)}const Sn="__INTLIFY_META__",Tn=()=>[],On=()=>!1;let In=0;function An(e){return(t,n,o,r)=>e(n,o,(0,rn.nI)()||void 0,r)}const Ln=()=>{const e=(0,rn.nI)();let t=null;return e&&(t=kn(e)[Sn])?{[Sn]:t}:null};function Mn(e={},t){const{__root:n,__injectWithOption:r}=e,l=void 0===n,a=e.flatJson,s=o?ln.KR:ln.IJ;let c=!R(e.inheritLocale)||e.inheritLocale;const p=s(n&&c?n.locale.value:b(e.locale)?e.locale:ut),f=s(n&&c?n.fallbackLocale.value:b(e.fallbackLocale)||g(e.fallbackLocale)||x(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:p.value),v=s(Cn(p.value,e)),h=s(x(e.datetimeFormats)?e.datetimeFormats:{[p.value]:{}}),E=s(x(e.numberFormats)?e.numberFormats:{[p.value]:{}});let C=n?n.missingWarn:!R(e.missingWarn)&&!u(e.missingWarn)||e.missingWarn,k=n?n.fallbackWarn:!R(e.fallbackWarn)&&!u(e.fallbackWarn)||e.fallbackWarn,_=n?n.fallbackRoot:!R(e.fallbackRoot)||e.fallbackRoot,S=!!e.fallbackFormat,T=y(e.missing)?e.missing:null,O=y(e.missing)?An(e.missing):null,I=y(e.postTranslation)?e.postTranslation:null,L=n?n.warnHtmlMessage:!R(e.warnHtmlMessage)||e.warnHtmlMessage,M=!!e.escapeParameter;const N=n?n.modifiers:x(e.modifiers)?e.modifiers:{};let W,D=e.pluralRules||n&&n.pluralRules;const F=()=>{l&&Ct(null);const t={version:an,locale:p.value,fallbackLocale:f.value,messages:v.value,modifiers:N,pluralRules:D,missing:null===O?void 0:O,missingWarn:C,fallbackWarn:k,fallbackFormat:S,unresolving:!0,postTranslation:null===I?void 0:I,warnHtmlMessage:L,escapeParameter:M,messageResolver:e.messageResolver,messageCompiler:e.messageCompiler,__meta:{framework:"vue"}};t.datetimeFormats=h.value,t.numberFormats=E.value,t.__datetimeFormatters=x(W)?W.__datetimeFormatters:void 0,t.__numberFormatters=x(W)?W.__numberFormatters:void 0;const n=_t(t);return l&&Ct(n),n};function $(){return[p.value,f.value,v.value,h.value,E.value]}W=F(),Tt(W,p.value,f.value);const B=(0,rn.EW)({get:()=>p.value,set:e=>{p.value=e,W.locale=p.value}}),P=(0,rn.EW)({get:()=>f.value,set:e=>{f.value=e,W.fallbackLocale=f.value,Tt(W,p.value,e)}}),K=(0,rn.EW)((()=>v.value)),j=(0,rn.EW)((()=>h.value)),V=(0,rn.EW)((()=>E.value));function X(){return y(I)?I:null}function U(e){I=e,W.postTranslation=e}function H(){return T}function z(e){null!==e&&(O=An(e)),T=e,W.missing=O}const G=(e,t,o,r,a,s)=>{let u;$();try{__INTLIFY_PROD_DEVTOOLS__&&Rt(Ln()),l||(W.fallbackContext=n?kt():void 0),u=e(W)}finally{__INTLIFY_PROD_DEVTOOLS__&&Rt(null),l||(W.fallbackContext=void 0)}if("translate exists"!==o&&i(u)&&u===st||"translate exists"===o&&!u){const[e,o]=t();return n&&_?r(n):a(e)}if(s(u))return u;throw hn(vn.UNEXPECTED_RETURN_TYPE)};function q(...e){return G((t=>Reflect.apply(Kt,null,[t,...e])),(()=>Ht(...e)),"translate",(t=>Reflect.apply(t.t,t,[...e])),(e=>e),(e=>b(e)))}function Y(...e){const[t,n,o]=e;if(o&&!w(o))throw hn(vn.INVALID_ARGUMENT);return q(t,n,d({resolvedMessage:!0},o||{}))}function Q(...e){return G((t=>Reflect.apply(Yt,null,[t,...e])),(()=>Zt(...e)),"datetime format",(t=>Reflect.apply(t.d,t,[...e])),(()=>ct),(e=>b(e)))}function Z(...e){return G((t=>Reflect.apply(en,null,[t,...e])),(()=>nn(...e)),"number format",(t=>Reflect.apply(t.n,t,[...e])),(()=>ct),(e=>b(e)))}function J(e){return e.map((e=>b(e)||i(e)||R(e)?_n(String(e)):e))}const ee=e=>e,te={normalize:J,interpolate:ee,type:"vnode"};function ne(...e){return G((t=>{let n;const o=t;try{o.processor=te,n=Reflect.apply(Kt,null,[o,...e])}finally{o.processor=null}return n}),(()=>Ht(...e)),"translate",(t=>t[mn](...e)),(e=>[_n(e)]),(e=>g(e)))}function oe(...e){return G((t=>Reflect.apply(en,null,[t,...e])),(()=>nn(...e)),"number format",(t=>t[yn](...e)),Tn,(e=>b(e)||g(e)))}function re(...e){return G((t=>Reflect.apply(Yt,null,[t,...e])),(()=>Zt(...e)),"datetime format",(t=>t[gn](...e)),Tn,(e=>b(e)||g(e)))}function le(e){D=e,W.pluralRules=D}function ae(e,t){return G((()=>{if(!e)return!1;const n=b(t)?t:p.value,o=ue(n),r=W.messageResolver(o,e);return Wt(r)||Pt(r)||b(r)}),(()=>[e]),"translate exists",(n=>Reflect.apply(n.te,n,[e,t])),On,(e=>R(e)))}function ie(e){let t=null;const n=ot(W,f.value,p.value);for(let o=0;o{c&&(p.value=e,W.locale=e,Tt(W,p.value,f.value))})),(0,rn.wB)(n.fallbackLocale,(e=>{c&&(f.value=e,W.fallbackLocale=e,Tt(W,p.value,f.value))})));const ye={id:In,locale:B,fallbackLocale:P,get inheritLocale(){return c},set inheritLocale(e){c=e,e&&n&&(p.value=n.locale.value,f.value=n.fallbackLocale.value,Tt(W,p.value,f.value))},get availableLocales(){return Object.keys(v.value).sort()},messages:K,get modifiers(){return N},get pluralRules(){return D||{}},get isGlobal(){return l},get missingWarn(){return C},set missingWarn(e){C=e,W.missingWarn=C},get fallbackWarn(){return k},set fallbackWarn(e){k=e,W.fallbackWarn=k},get fallbackRoot(){return _},set fallbackRoot(e){_=e},get fallbackFormat(){return S},set fallbackFormat(e){S=e,W.fallbackFormat=S},get warnHtmlMessage(){return L},set warnHtmlMessage(e){L=e,W.warnHtmlMessage=e},get escapeParameter(){return M},set escapeParameter(e){M=e,W.escapeParameter=e},t:q,getLocaleMessage:ue,setLocaleMessage:ce,mergeLocaleMessage:de,getPostTranslationHandler:X,setPostTranslationHandler:U,getMissingHandler:H,setMissingHandler:z,[bn]:le};return ye.datetimeFormats=j,ye.numberFormats=V,ye.rt=Y,ye.te=ae,ye.tm=se,ye.d=Q,ye.n=Z,ye.getDateTimeFormat=pe,ye.setDateTimeFormat=fe,ye.mergeDateTimeFormat=ve,ye.getNumberFormat=he,ye.setNumberFormat=me,ye.mergeNumberFormat=ge,ye[Rn]=r,ye[mn]=ne,ye[gn]=re,ye[yn]=oe,ye}function Nn(e){const t=b(e.locale)?e.locale:ut,n=b(e.fallbackLocale)||g(e.fallbackLocale)||x(e.fallbackLocale)||!1===e.fallbackLocale?e.fallbackLocale:t,o=y(e.missing)?e.missing:void 0,r=!R(e.silentTranslationWarn)&&!u(e.silentTranslationWarn)||!e.silentTranslationWarn,l=!R(e.silentFallbackWarn)&&!u(e.silentFallbackWarn)||!e.silentFallbackWarn,a=!R(e.fallbackRoot)||e.fallbackRoot,i=!!e.formatFallbackMessages,s=x(e.modifiers)?e.modifiers:{},c=e.pluralizationRules,p=y(e.postTranslation)?e.postTranslation:void 0,f=!b(e.warnHtmlInMessage)||"off"!==e.warnHtmlInMessage,v=!!e.escapeParameterHtml,h=!R(e.sync)||e.sync;let m=e.messages;if(x(e.sharedMessages)){const t=e.sharedMessages,n=Object.keys(t);m=n.reduce(((e,n)=>{const o=e[n]||(e[n]={});return d(o,t[n]),e}),m||{})}const{__i18n:w,__root:E,__injectWithOption:C}=e,k=e.datetimeFormats,_=e.numberFormats,S=e.flatJson;return{locale:t,fallbackLocale:n,messages:m,flatJson:S,datetimeFormats:k,numberFormats:_,missing:o,missingWarn:r,fallbackWarn:l,fallbackRoot:a,fallbackFormat:i,modifiers:s,pluralRules:c,postTranslation:p,warnHtmlMessage:f,escapeParameter:v,messageResolver:e.messageResolver,inheritLocale:h,__i18n:w,__root:E,__injectWithOption:C}}function Wn(e={},t){{const t=Mn(Nn(e)),{__extender:n}=e,o={id:t.id,get locale(){return t.locale.value},set locale(e){t.locale.value=e},get fallbackLocale(){return t.fallbackLocale.value},set fallbackLocale(e){t.fallbackLocale.value=e},get messages(){return t.messages.value},get datetimeFormats(){return t.datetimeFormats.value},get numberFormats(){return t.numberFormats.value},get availableLocales(){return t.availableLocales},get formatter(){return{interpolate(){return[]}}},set formatter(e){},get missing(){return t.getMissingHandler()},set missing(e){t.setMissingHandler(e)},get silentTranslationWarn(){return R(t.missingWarn)?!t.missingWarn:t.missingWarn},set silentTranslationWarn(e){t.missingWarn=R(e)?!e:e},get silentFallbackWarn(){return R(t.fallbackWarn)?!t.fallbackWarn:t.fallbackWarn},set silentFallbackWarn(e){t.fallbackWarn=R(e)?!e:e},get modifiers(){return t.modifiers},get formatFallbackMessages(){return t.fallbackFormat},set formatFallbackMessages(e){t.fallbackFormat=e},get postTranslation(){return t.getPostTranslationHandler()},set postTranslation(e){t.setPostTranslationHandler(e)},get sync(){return t.inheritLocale},set sync(e){t.inheritLocale=e},get warnHtmlInMessage(){return t.warnHtmlMessage?"warn":"off"},set warnHtmlInMessage(e){t.warnHtmlMessage="off"!==e},get escapeParameterHtml(){return t.escapeParameter},set escapeParameterHtml(e){t.escapeParameter=e},get preserveDirectiveContent(){return!0},set preserveDirectiveContent(e){},get pluralizationRules(){return t.pluralRules||{}},__composer:t,t(...e){const[n,o,r]=e,l={};let a=null,i=null;if(!b(n))throw hn(vn.INVALID_ARGUMENT);const s=n;return b(o)?l.locale=o:g(o)?a=o:x(o)&&(i=o),g(r)?a=r:x(r)&&(i=r),Reflect.apply(t.t,t,[s,a||i||{},l])},rt(...e){return Reflect.apply(t.rt,t,[...e])},tc(...e){const[n,o,r]=e,l={plural:1};let a=null,s=null;if(!b(n))throw hn(vn.INVALID_ARGUMENT);const u=n;return b(o)?l.locale=o:i(o)?l.plural=o:g(o)?a=o:x(o)&&(s=o),b(r)?l.locale=r:g(r)?a=r:x(r)&&(s=r),Reflect.apply(t.t,t,[u,a||s||{},l])},te(e,n){return t.te(e,n)},tm(e){return t.tm(e)},getLocaleMessage(e){return t.getLocaleMessage(e)},setLocaleMessage(e,n){t.setLocaleMessage(e,n)},mergeLocaleMessage(e,n){t.mergeLocaleMessage(e,n)},d(...e){return Reflect.apply(t.d,t,[...e])},getDateTimeFormat(e){return t.getDateTimeFormat(e)},setDateTimeFormat(e,n){t.setDateTimeFormat(e,n)},mergeDateTimeFormat(e,n){t.mergeDateTimeFormat(e,n)},n(...e){return Reflect.apply(t.n,t,[...e])},getNumberFormat(e){return t.getNumberFormat(e)},setNumberFormat(e,n){t.setNumberFormat(e,n)},mergeNumberFormat(e,n){t.mergeNumberFormat(e,n)},getChoiceIndex(e,t){return-1}};return o.__extender=n,o}}const Dn={tag:{type:[String,Object]},locale:{type:String},scope:{type:String,validator:e=>"parent"===e||"global"===e,default:"parent"},i18n:{type:Object}};function Fn({slots:e},t){if(1===t.length&&"default"===t[0]){const t=e.default?e.default():[];return t.reduce(((e,t)=>[...e,...t.type===rn.FK?t.children:[t]]),[])}return t.reduce(((t,n)=>{const o=e[n];return o&&(t[n]=o()),t}),{})}function $n(e){return rn.FK}const Bn=(0,rn.pM)({name:"i18n-t",props:d({keypath:{type:String,required:!0},plural:{type:[Number,String],validator:e=>i(e)||!isNaN(e)}},Dn),setup(e,t){const{slots:n,attrs:o}=t,r=e.i18n||no({useScope:e.scope,__useComponent:!0});return()=>{const l=Object.keys(n).filter((e=>"_"!==e)),a={};e.locale&&(a.locale=e.locale),void 0!==e.plural&&(a.plural=b(e.plural)?+e.plural:e.plural);const i=Fn(t,l),s=r[mn](e.keypath,i,a),u=d({},o),c=b(e.tag)||w(e.tag)?e.tag:$n();return(0,rn.h)(c,u,s)}}}),Pn=Bn;function Kn(e){return g(e)&&!b(e[0])}function jn(e,t,n,o){const{slots:r,attrs:l}=t;return()=>{const t={part:!0};let a={};e.locale&&(t.locale=e.locale),b(e.format)?t.key=e.format:w(e.format)&&(b(e.format.key)&&(t.key=e.format.key),a=Object.keys(e.format).reduce(((t,o)=>n.includes(o)?d({},t,{[o]:e.format[o]}):t),{}));const i=o(e.value,t,a);let s=[t.key];g(i)?s=i.map(((e,t)=>{const n=r[e.type],o=n?n({[e.type]:e.value,index:t,parts:i}):[e.value];return Kn(o)&&(o[0].key=`${e.type}-${t}`),o})):b(i)&&(s=[i]);const u=d({},l),c=b(e.tag)||w(e.tag)?e.tag:$n();return(0,rn.h)(c,u,s)}}const Vn=(0,rn.pM)({name:"i18n-n",props:d({value:{type:Number,required:!0},format:{type:[String,Object]}},Dn),setup(e,t){const n=e.i18n||no({useScope:"parent",__useComponent:!0});return jn(e,t,tn,((...e)=>n[yn](...e)))}}),Xn=Vn,Un=(0,rn.pM)({name:"i18n-d",props:d({value:{type:[Number,Date],required:!0},format:{type:[String,Object]}},Dn),setup(e,t){const n=e.i18n||no({useScope:"parent",__useComponent:!0});return jn(e,t,Qt,((...e)=>n[gn](...e)))}}),Hn=Un;function zn(e,t){const n=e;if("composition"===e.mode)return n.__getInstance(t)||e.global;{const o=n.__getInstance(t);return null!=o?o.__composer:e.global.__composer}}function Gn(e){const t=t=>{const{instance:n,modifiers:o,value:r}=t;if(!n||!n.$)throw hn(vn.UNEXPECTED_ERROR);const l=zn(e,n.$);const a=qn(r);return[Reflect.apply(l.t,l,[...Yn(a)]),l]},n=(n,r)=>{const[l,a]=t(r);o&&e.global===a&&(n.__i18nWatcher=(0,rn.wB)(a.locale,(()=>{r.instance&&r.instance.$forceUpdate()}))),n.__composer=a,n.textContent=l},r=e=>{o&&e.__i18nWatcher&&(e.__i18nWatcher(),e.__i18nWatcher=void 0,delete e.__i18nWatcher),e.__composer&&(e.__composer=void 0,delete e.__composer)},l=(e,{value:t})=>{if(e.__composer){const n=e.__composer,o=qn(t);e.textContent=Reflect.apply(n.t,n,[...Yn(o)])}},a=e=>{const[n]=t(e);return{textContent:n}};return{created:n,unmounted:r,beforeUpdate:l,getSSRProps:a}}function qn(e){if(b(e))return{path:e};if(x(e)){if(!("path"in e))throw hn(vn.REQUIRED_VALUE,"path");return e}throw hn(vn.INVALID_VALUE)}function Yn(e){const{path:t,locale:n,args:o,choice:r,plural:l}=e,a={},s=o||{};return b(n)&&(a.locale=n),i(r)&&(a.plural=r),i(l)&&(a.plural=l),[t,s,a]}function Qn(e,t,...n){const o=x(n[0])?n[0]:{},r=!!o.useI18nComponentName,l=!R(o.globalInstall)||o.globalInstall;l&&([r?"i18n":Pn.name,"I18nT"].forEach((t=>e.component(t,Pn))),[Xn.name,"I18nN"].forEach((t=>e.component(t,Xn))),[Hn.name,"I18nD"].forEach((t=>e.component(t,Hn)))),e.directive("t",Gn(t))}function Zn(e,t,n){return{beforeCreate(){const o=(0,rn.nI)();if(!o)throw hn(vn.UNEXPECTED_ERROR);const r=this.$options;if(r.i18n){const o=r.i18n;if(r.__i18n&&(o.__i18n=r.__i18n),o.__root=t,this===this.$root)this.$i18n=Jn(e,o);else{o.__injectWithOption=!0,o.__extender=n.__vueI18nExtend,this.$i18n=Wn(o);const e=this.$i18n;e.__extender&&(e.__disposer=e.__extender(this.$i18n))}}else if(r.__i18n)if(this===this.$root)this.$i18n=Jn(e,r);else{this.$i18n=Wn({__i18n:r.__i18n,__injectWithOption:!0,__extender:n.__vueI18nExtend,__root:t});const e=this.$i18n;e.__extender&&(e.__disposer=e.__extender(this.$i18n))}else this.$i18n=e;r.__i18nGlobal&&xn(t,r,r),this.$t=(...e)=>this.$i18n.t(...e),this.$rt=(...e)=>this.$i18n.rt(...e),this.$tc=(...e)=>this.$i18n.tc(...e),this.$te=(e,t)=>this.$i18n.te(e,t),this.$d=(...e)=>this.$i18n.d(...e),this.$n=(...e)=>this.$i18n.n(...e),this.$tm=e=>this.$i18n.tm(e),n.__setInstance(o,this.$i18n)},mounted(){0},unmounted(){const e=(0,rn.nI)();if(!e)throw hn(vn.UNEXPECTED_ERROR);const t=this.$i18n;delete this.$t,delete this.$rt,delete this.$tc,delete this.$te,delete this.$d,delete this.$n,delete this.$tm,t.__disposer&&(t.__disposer(),delete t.__disposer,delete t.__extender),n.__deleteInstance(e),delete this.$i18n}}}function Jn(e,t){e.locale=t.locale||e.locale,e.fallbackLocale=t.fallbackLocale||e.fallbackLocale,e.missing=t.missing||e.missing,e.silentTranslationWarn=t.silentTranslationWarn||e.silentFallbackWarn,e.silentFallbackWarn=t.silentFallbackWarn||e.silentFallbackWarn,e.formatFallbackMessages=t.formatFallbackMessages||e.formatFallbackMessages,e.postTranslation=t.postTranslation||e.postTranslation,e.warnHtmlInMessage=t.warnHtmlInMessage||e.warnHtmlInMessage,e.escapeParameterHtml=t.escapeParameterHtml||e.escapeParameterHtml,e.sync=t.sync||e.sync,e.__composer[bn](t.pluralizationRules||e.pluralizationRules);const n=Cn(e.locale,{messages:t.messages,__i18n:t.__i18n});return Object.keys(n).forEach((t=>e.mergeLocaleMessage(t,n[t]))),t.datetimeFormats&&Object.keys(t.datetimeFormats).forEach((n=>e.mergeDateTimeFormat(n,t.datetimeFormats[n]))),t.numberFormats&&Object.keys(t.numberFormats).forEach((n=>e.mergeNumberFormat(n,t.numberFormats[n]))),e}const eo=r("global-vue-i18n");function to(e={},t){const n=__VUE_I18N_LEGACY_API__&&R(e.legacy)?e.legacy:__VUE_I18N_LEGACY_API__,o=!R(e.globalInjection)||e.globalInjection,l=!__VUE_I18N_LEGACY_API__||!n||!!e.allowComposition,a=new Map,[i,s]=oo(e,n),u=r("");function c(e){return a.get(e)||null}function d(e,t){a.set(e,t)}function p(e){a.delete(e)}{const e={get mode(){return __VUE_I18N_LEGACY_API__&&n?"legacy":"composition"},get allowComposition(){return l},async install(t,...r){if(t.__VUE_I18N_SYMBOL__=u,t.provide(t.__VUE_I18N_SYMBOL__,e),x(r[0])){const t=r[0];e.__composerExtend=t.__composerExtend,e.__vueI18nExtend=t.__vueI18nExtend}let l=null;!n&&o&&(l=vo(t,e.global)),__VUE_I18N_FULL_INSTALL__&&Qn(t,e,...r),__VUE_I18N_LEGACY_API__&&n&&t.mixin(Zn(s,s.__composer,e));const a=t.unmount;t.unmount=()=>{l&&l(),e.dispose(),a()}},get global(){return s},dispose(){i.stop()},__instances:a,__getInstance:c,__setInstance:d,__deleteInstance:p};return e}}function no(e={}){const t=(0,rn.nI)();if(null==t)throw hn(vn.MUST_BE_CALL_SETUP_TOP);if(!t.isCE&&null!=t.appContext.app&&!t.appContext.app.__VUE_I18N_SYMBOL__)throw hn(vn.NOT_INSTALLED);const n=ro(t),o=ao(n),r=kn(t),l=lo(e,r);if(__VUE_I18N_LEGACY_API__&&"legacy"===n.mode&&!e.__useComponent){if(!n.allowComposition)throw hn(vn.NOT_AVAILABLE_IN_LEGACY_MODE);return co(t,l,o,e)}if("global"===l)return xn(o,e,r),o;if("parent"===l){let r=io(n,t,e.__useComponent);return null==r&&(r=o),r}const a=n;let i=a.__getInstance(t);if(null==i){const n=d({},e);"__i18n"in r&&(n.__i18n=r.__i18n),o&&(n.__root=o),i=Mn(n),a.__composerExtend&&(i[wn]=a.__composerExtend(i)),uo(a,t,i),a.__setInstance(t,i)}return i}function oo(e,t,n){const o=(0,ln.uY)();{const n=__VUE_I18N_LEGACY_API__&&t?o.run((()=>Wn(e))):o.run((()=>Mn(e)));if(null==n)throw hn(vn.UNEXPECTED_ERROR);return[o,n]}}function ro(e){{const t=(0,rn.WQ)(e.isCE?eo:e.appContext.app.__VUE_I18N_SYMBOL__);if(!t)throw hn(e.isCE?vn.NOT_INSTALLED_WITH_PROVIDE:vn.UNEXPECTED_ERROR);return t}}function lo(e,t){return c(e)?"__i18n"in t?"local":"global":e.useScope?e.useScope:"local"}function ao(e){return"composition"===e.mode?e.global:e.global.__composer}function io(e,t,n=!1){let o=null;const r=t.root;let l=so(t,n);while(null!=l){const t=e;if("composition"===e.mode)o=t.__getInstance(l);else if(__VUE_I18N_LEGACY_API__){const e=t.__getInstance(l);null!=e&&(o=e.__composer,n&&o&&!o[Rn]&&(o=null))}if(null!=o)break;if(r===l)break;l=l.parent}return o}function so(e,t=!1){return null==e?null:t&&e.vnode.ctx||e.parent}function uo(e,t,n){(0,rn.sV)((()=>{0}),t),(0,rn.hi)((()=>{const o=n;e.__deleteInstance(t);const r=o[wn];r&&(r(),delete o[wn])}),t)}function co(e,t,n,o={}){const r="local"===t,l=(0,ln.IJ)(null);if(r&&e.proxy&&!e.proxy.$options.i18n&&!e.proxy.$options.__i18n)throw hn(vn.MUST_DEFINE_I18N_OPTION_IN_ALLOW_COMPOSITION);const a=R(o.inheritLocale)?o.inheritLocale:!b(o.locale),i=(0,ln.KR)(!r||a?n.locale.value:b(o.locale)?o.locale:ut),s=(0,ln.KR)(!r||a?n.fallbackLocale.value:b(o.fallbackLocale)||g(o.fallbackLocale)||x(o.fallbackLocale)||!1===o.fallbackLocale?o.fallbackLocale:i.value),c=(0,ln.KR)(Cn(i.value,o)),d=(0,ln.KR)(x(o.datetimeFormats)?o.datetimeFormats:{[i.value]:{}}),p=(0,ln.KR)(x(o.numberFormats)?o.numberFormats:{[i.value]:{}}),f=r?n.missingWarn:!R(o.missingWarn)&&!u(o.missingWarn)||o.missingWarn,v=r?n.fallbackWarn:!R(o.fallbackWarn)&&!u(o.fallbackWarn)||o.fallbackWarn,h=r?n.fallbackRoot:!R(o.fallbackRoot)||o.fallbackRoot,m=!!o.fallbackFormat,w=y(o.missing)?o.missing:null,E=y(o.postTranslation)?o.postTranslation:null,C=r?n.warnHtmlMessage:!R(o.warnHtmlMessage)||o.warnHtmlMessage,k=!!o.escapeParameter,_=r?n.modifiers:x(o.modifiers)?o.modifiers:{},S=o.pluralRules||r&&n.pluralRules;function T(){return[i.value,s.value,c.value,d.value,p.value]}const O=(0,rn.EW)({get:()=>l.value?l.value.locale.value:i.value,set:e=>{l.value&&(l.value.locale.value=e),i.value=e}}),I=(0,rn.EW)({get:()=>l.value?l.value.fallbackLocale.value:s.value,set:e=>{l.value&&(l.value.fallbackLocale.value=e),s.value=e}}),A=(0,rn.EW)((()=>l.value?l.value.messages.value:c.value)),L=(0,rn.EW)((()=>d.value)),M=(0,rn.EW)((()=>p.value));function N(){return l.value?l.value.getPostTranslationHandler():E}function W(e){l.value&&l.value.setPostTranslationHandler(e)}function D(){return l.value?l.value.getMissingHandler():w}function F(e){l.value&&l.value.setMissingHandler(e)}function $(e){return T(),e()}function B(...e){return l.value?$((()=>Reflect.apply(l.value.t,null,[...e]))):$((()=>""))}function P(...e){return l.value?Reflect.apply(l.value.rt,null,[...e]):""}function K(...e){return l.value?$((()=>Reflect.apply(l.value.d,null,[...e]))):$((()=>""))}function j(...e){return l.value?$((()=>Reflect.apply(l.value.n,null,[...e]))):$((()=>""))}function V(e){return l.value?l.value.tm(e):{}}function X(e,t){return!!l.value&&l.value.te(e,t)}function U(e){return l.value?l.value.getLocaleMessage(e):{}}function H(e,t){l.value&&(l.value.setLocaleMessage(e,t),c.value[e]=t)}function z(e,t){l.value&&l.value.mergeLocaleMessage(e,t)}function G(e){return l.value?l.value.getDateTimeFormat(e):{}}function q(e,t){l.value&&(l.value.setDateTimeFormat(e,t),d.value[e]=t)}function Y(e,t){l.value&&l.value.mergeDateTimeFormat(e,t)}function Q(e){return l.value?l.value.getNumberFormat(e):{}}function Z(e,t){l.value&&(l.value.setNumberFormat(e,t),p.value[e]=t)}function J(e,t){l.value&&l.value.mergeNumberFormat(e,t)}const ee={get id(){return l.value?l.value.id:-1},locale:O,fallbackLocale:I,messages:A,datetimeFormats:L,numberFormats:M,get inheritLocale(){return l.value?l.value.inheritLocale:a},set inheritLocale(e){l.value&&(l.value.inheritLocale=e)},get availableLocales(){return l.value?l.value.availableLocales:Object.keys(c.value)},get modifiers(){return l.value?l.value.modifiers:_},get pluralRules(){return l.value?l.value.pluralRules:S},get isGlobal(){return!!l.value&&l.value.isGlobal},get missingWarn(){return l.value?l.value.missingWarn:f},set missingWarn(e){l.value&&(l.value.missingWarn=e)},get fallbackWarn(){return l.value?l.value.fallbackWarn:v},set fallbackWarn(e){l.value&&(l.value.missingWarn=e)},get fallbackRoot(){return l.value?l.value.fallbackRoot:h},set fallbackRoot(e){l.value&&(l.value.fallbackRoot=e)},get fallbackFormat(){return l.value?l.value.fallbackFormat:m},set fallbackFormat(e){l.value&&(l.value.fallbackFormat=e)},get warnHtmlMessage(){return l.value?l.value.warnHtmlMessage:C},set warnHtmlMessage(e){l.value&&(l.value.warnHtmlMessage=e)},get escapeParameter(){return l.value?l.value.escapeParameter:k},set escapeParameter(e){l.value&&(l.value.escapeParameter=e)},t:B,getPostTranslationHandler:N,setPostTranslationHandler:W,getMissingHandler:D,setMissingHandler:F,rt:P,d:K,n:j,tm:V,te:X,getLocaleMessage:U,setLocaleMessage:H,mergeLocaleMessage:z,getDateTimeFormat:G,setDateTimeFormat:q,mergeDateTimeFormat:Y,getNumberFormat:Q,setNumberFormat:Z,mergeNumberFormat:J};function te(e){e.locale.value=i.value,e.fallbackLocale.value=s.value,Object.keys(c.value).forEach((t=>{e.mergeLocaleMessage(t,c.value[t])})),Object.keys(d.value).forEach((t=>{e.mergeDateTimeFormat(t,d.value[t])})),Object.keys(p.value).forEach((t=>{e.mergeNumberFormat(t,p.value[t])})),e.escapeParameter=k,e.fallbackFormat=m,e.fallbackRoot=h,e.fallbackWarn=v,e.missingWarn=f,e.warnHtmlMessage=C}return(0,rn.KC)((()=>{if(null==e.proxy||null==e.proxy.$i18n)throw hn(vn.NOT_AVAILABLE_COMPOSITION_IN_LEGACY);const n=l.value=e.proxy.$i18n.__composer;"global"===t?(i.value=n.locale.value,s.value=n.fallbackLocale.value,c.value=n.messages.value,d.value=n.datetimeFormats.value,p.value=n.numberFormats.value):r&&te(n)})),ee}const po=["locale","fallbackLocale","availableLocales"],fo=["t","rt","d","n","tm","te"];function vo(e,t){const n=Object.create(null);po.forEach((e=>{const o=Object.getOwnPropertyDescriptor(t,e);if(!o)throw hn(vn.UNEXPECTED_ERROR);const r=(0,ln.i9)(o.value)?{get(){return o.value.value},set(e){o.value.value=e}}:{get(){return o.get&&o.get()}};Object.defineProperty(n,e,r)})),e.config.globalProperties.$i18n=n,fo.forEach((n=>{const o=Object.getOwnPropertyDescriptor(t,n);if(!o||!o.value)throw hn(vn.UNEXPECTED_ERROR);Object.defineProperty(e.config.globalProperties,`$${n}`,o)}));const o=()=>{delete e.config.globalProperties.$i18n,fo.forEach((t=>{delete e.config.globalProperties[`$${t}`]}))};return o}if(sn(),__INTLIFY_JIT_COMPILATION__?mt($t):mt(Ft),gt(Me),yt(ot),__INTLIFY_PROD_DEVTOOLS__){const e=f();e.__INTLIFY__=!0,Xe(e.__INTLIFY_DEVTOOLS_GLOBAL_HOOK__)}}}]); \ No newline at end of file diff --git a/resources/dide-viewer/view/ondark.css b/resources/dide-viewer/view/ondark.css deleted file mode 100644 index 1cebdeb..0000000 --- a/resources/dide-viewer/view/ondark.css +++ /dev/null @@ -1,697 +0,0 @@ -:root { - --vscode-foreground: #cccccc; - --vscode-disabledForeground: rgba(204, 204, 204, 0.5); - --vscode-errorForeground: #f48771; - --vscode-descriptionForeground: #abb2bf; - --vscode-icon-foreground: #c5c5c5; - --vscode-focusBorder: #3e4452; - --vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18); - --vscode-textLink-foreground: #61afef; - --vscode-textLink-activeForeground: #3794ff; - --vscode-textPreformat-foreground: #d19a66; - --vscode-textPreformat-background: rgba(255, 255, 255, 0.1); - --vscode-textBlockQuote-background: #2e3440; - --vscode-textBlockQuote-border: #4b5362; - --vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4); - --vscode-widget-shadow: rgba(0, 0, 0, 0.36); - --vscode-input-background: #1d1f23; - --vscode-input-foreground: #abb2bf; - --vscode-inputOption-activeBorder: #007acc; - --vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5); - --vscode-inputOption-activeBackground: rgba(62, 68, 82, 0.4); - --vscode-inputOption-activeForeground: #ffffff; - --vscode-input-placeholderForeground: rgba(204, 204, 204, 0.5); - --vscode-inputValidation-infoBackground: #063b49; - --vscode-inputValidation-infoBorder: #007acc; - --vscode-inputValidation-warningBackground: #352a05; - --vscode-inputValidation-warningBorder: #b89500; - --vscode-inputValidation-errorBackground: #5a1d1d; - --vscode-inputValidation-errorBorder: #be1100; - --vscode-dropdown-background: #21252b; - --vscode-dropdown-foreground: #f0f0f0; - --vscode-dropdown-border: #21252b; - --vscode-button-foreground: #ffffff; - --vscode-button-separator: rgba(255, 255, 255, 0.4); - --vscode-button-background: #404754; - --vscode-button-hoverBackground: #4d5565; - --vscode-button-secondaryForeground: #c0bdbd; - --vscode-button-secondaryBackground: #30333d; - --vscode-button-secondaryHoverBackground: #3a3d49; - --vscode-badge-background: #282c34; - --vscode-badge-foreground: #ffffff; - --vscode-scrollbar-shadow: #23252c; - --vscode-scrollbarSlider-background: rgba(78, 86, 102, 0.38); - --vscode-scrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5); - --vscode-scrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5); - --vscode-progressBar-background: #0e70c0; - --vscode-editorError-foreground: #c24038; - --vscode-editorWarning-foreground: #d19a66; - --vscode-editorInfo-foreground: #3794ff; - --vscode-editorHint-foreground: rgba(238, 238, 238, 0.7); - --vscode-sash-hoverBorder: #3e4452; - --vscode-editor-background: #282c34; - --vscode-editor-foreground: #abb2bf; - --vscode-editorStickyScroll-background: #282c34; - --vscode-editorStickyScrollHover-background: #2a2d2e; - --vscode-editorWidget-background: #21252b; - --vscode-editorWidget-foreground: #cccccc; - --vscode-editorWidget-border: #454545; - --vscode-quickInput-background: #21252b; - --vscode-quickInput-foreground: #cccccc; - --vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1); - --vscode-pickerGroup-foreground: #3794ff; - --vscode-pickerGroup-border: #3f3f46; - --vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17); - --vscode-keybindingLabel-foreground: #cccccc; - --vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6); - --vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6); - --vscode-editor-selectionBackground: rgba(103, 118, 150, 0.38); - --vscode-editor-inactiveSelectionBackground: rgba(103, 118, 150, 0.19); - --vscode-editor-selectionHighlightBackground: rgba(255, 255, 255, 0.06); - --vscode-editor-selectionHighlightBorder: #dddddd; - --vscode-editor-findMatchBackground: #42557b; - --vscode-editor-findMatchHighlightBackground: rgba(97, 153, 255, 0.18); - --vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4); - --vscode-editor-findMatchBorder: #457dff; - --vscode-searchEditor-findMatchBackground: rgba(97, 153, 255, 0.12); - --vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65); - --vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25); - --vscode-editorHoverWidget-background: #21252b; - --vscode-editorHoverWidget-foreground: #cccccc; - --vscode-editorHoverWidget-border: #181a1f; - --vscode-editorHoverWidget-statusBarBackground: #282c34; - --vscode-editorLink-activeForeground: #4e94ce; - --vscode-editorInlayHint-foreground: #abb2bf; - --vscode-editorInlayHint-background: #2c313c; - --vscode-editorInlayHint-typeForeground: #abb2bf; - --vscode-editorInlayHint-typeBackground: #2c313c; - --vscode-editorInlayHint-parameterForeground: #abb2bf; - --vscode-editorInlayHint-parameterBackground: #2c313c; - --vscode-editorLightBulb-foreground: #ffcc00; - --vscode-editorLightBulbAutoFix-foreground: #75beff; - --vscode-editorLightBulbAi-foreground: #767676; - --vscode-diffEditor-insertedTextBackground: rgba(0, 128, 155, 0.2); - --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2); - --vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2); - --vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2); - --vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2); - --vscode-diffEditor-unchangedRegionBackground: #21252b; - --vscode-diffEditor-unchangedRegionForeground: #cccccc; - --vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16); - --vscode-list-focusBackground: #323842; - --vscode-list-focusForeground: #f0f0f0; - --vscode-list-focusOutline: #3e4452; - --vscode-list-activeSelectionBackground: #2c313a; - --vscode-list-activeSelectionForeground: #d7dae0; - --vscode-list-inactiveSelectionBackground: #323842; - --vscode-list-inactiveSelectionForeground: #d7dae0; - --vscode-list-hoverBackground: #2c313a; - --vscode-list-hoverForeground: #abb2bf; - --vscode-list-dropBackground: #062f4a; - --vscode-list-highlightForeground: #ecebeb; - --vscode-list-focusHighlightForeground: #ecebeb; - --vscode-list-invalidItemForeground: #b89500; - --vscode-list-errorForeground: #f88070; - --vscode-list-warningForeground: #d19a66; - --vscode-listFilterWidget-background: #21252b; - --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0); - --vscode-listFilterWidget-noMatchesOutline: #be1100; - --vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36); - --vscode-list-filterMatchBackground: rgba(97, 153, 255, 0.18); - --vscode-tree-indentGuidesStroke: rgba(255, 255, 255, 0.11); - --vscode-tree-inactiveIndentGuidesStroke: rgba(255, 255, 255, 0.05); - --vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13); - --vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04); - --vscode-list-deemphasizedForeground: #8c8c8c; - --vscode-checkbox-background: #21252b; - --vscode-checkbox-selectBackground: #21252b; - --vscode-checkbox-foreground: #f0f0f0; - --vscode-checkbox-border: #404754; - --vscode-checkbox-selectBorder: #c5c5c5; - --vscode-quickInputList-focusForeground: #d7dae0; - --vscode-quickInputList-focusBackground: #2c313a; - --vscode-menu-foreground: #abb2bf; - --vscode-menu-background: #21252b; - --vscode-menu-selectionForeground: #d7dae0; - --vscode-menu-selectionBackground: #2c313a; - --vscode-menu-separatorBackground: #343a45; - --vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31); - --vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31); - --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3); - --vscode-editor-snippetFinalTabstopHighlightBorder: #525252; - --vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8); - --vscode-breadcrumb-background: #282c34; - --vscode-breadcrumb-focusForeground: #e0e0e0; - --vscode-breadcrumb-activeSelectionForeground: #e0e0e0; - --vscode-breadcrumbPicker-background: #21252b; - --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5); - --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2); - --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5); - --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2); - --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4); - --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16); - --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5); - --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5); - --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4); - --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49); - --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8); - --vscode-minimap-findMatchHighlight: #d18616; - --vscode-minimap-selectionOccurrenceHighlight: #676767; - --vscode-minimap-selectionHighlight: #264f78; - --vscode-minimap-infoHighlight: #3794ff; - --vscode-minimap-warningHighlight: #d19a66; - --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7); - --vscode-minimap-foregroundOpacity: #000000; - --vscode-minimapSlider-background: rgba(78, 86, 102, 0.19); - --vscode-minimapSlider-hoverBackground: rgba(90, 99, 117, 0.25); - --vscode-minimapSlider-activeBackground: rgba(116, 125, 145, 0.25); - --vscode-problemsErrorIcon-foreground: #c24038; - --vscode-problemsWarningIcon-foreground: #d19a66; - --vscode-problemsInfoIcon-foreground: #3794ff; - --vscode-charts-foreground: #cccccc; - --vscode-charts-lines: rgba(204, 204, 204, 0.5); - --vscode-charts-red: #c24038; - --vscode-charts-blue: #3794ff; - --vscode-charts-yellow: #d19a66; - --vscode-charts-orange: #d18616; - --vscode-charts-green: #89d185; - --vscode-charts-purple: #b180d7; - --vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61); - --vscode-diffEditor-moveActive-border: #ffa500; - --vscode-diffEditor-unchangedRegionShadow: #000000; - --vscode-multiDiffEditor-headerBackground: #808080; - --vscode-symbolIcon-arrayForeground: #cccccc; - --vscode-symbolIcon-booleanForeground: #cccccc; - --vscode-symbolIcon-classForeground: #ee9d28; - --vscode-symbolIcon-colorForeground: #cccccc; - --vscode-symbolIcon-constantForeground: #cccccc; - --vscode-symbolIcon-constructorForeground: #b180d7; - --vscode-symbolIcon-enumeratorForeground: #ee9d28; - --vscode-symbolIcon-enumeratorMemberForeground: #75beff; - --vscode-symbolIcon-eventForeground: #ee9d28; - --vscode-symbolIcon-fieldForeground: #75beff; - --vscode-symbolIcon-fileForeground: #cccccc; - --vscode-symbolIcon-folderForeground: #cccccc; - --vscode-symbolicon-functionForeground: #b180d7; - --vscode-symbolIcon-interfaceForeground: #75beff; - --vscode-symbolIcon-keyForeground: #cccccc; - --vscode-symbolIcon-keywordForeground: #cccccc; - --vscode-symbolIcon-methodForeground: #b180d7; - --vscode-symbolIcon-moduleForeground: #cccccc; - --vscode-symbolIcon-namespaceForeground: #cccccc; - --vscode-symbolIcon-nullForeground: #cccccc; - --vscode-symbolIcon-numberForeground: #cccccc; - --vscode-symbolIcon-objectForeground: #cccccc; - --vscode-symbolIcon-operatorForeground: #cccccc; - --vscode-symbolIcon-packageForeground: #cccccc; - --vscode-symbolIcon-propertyForeground: #cccccc; - --vscode-symbolicon-realeferenceForeground: #cccccc; - --vscode-symbolIcon-snippetForeground: #cccccc; - --vscode-symbolicon-stringForeground: #cccccc; - --vscode-symbolIcon-structForeground: #cccccc; - --vscode-symbolIcon-textForeground: #cccccc; - --vscode-symbolIcon-typeParameterForeground: #cccccc; - --vscode-symbolIcon-unitForeground: #cccccc; - --vscode-symbolIcon-variableForeground: #75beff; - --vscode-actionBar-toggledBackground: rgba(62, 68, 82, 0.4); - --vscode-editorHoverWidget-highlightForeground: #61afef; - --vscode-editor-lineHighlightBackground: #2c313c; - --vscode-editor-lineHighlightBorder: #282828; - --vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04); - --vscode-editor-symbolHighlightBackground: rgba(97, 153, 255, 0.18); - --vscode-editorCursor-foreground: #528bff; - --vscode-editorCursor-background: rgba(255, 255, 255, 0.79); - --vscode-editorWhitespace-foreground: rgba(255, 255, 255, 0.11); - --vscode-editorLineNumber-foreground: #495162; - --vscode-editorIndentGuide-background: #3b4048; - --vscode-editorIndentGuide-activeBackground: rgba(200, 200, 200, 0.35); - --vscode-editorIndentGuide-background1: #3b4048; - --vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-activeBackground1: rgba(200, 200, 200, 0.35); - --vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0); - --vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0); - --vscode-editorActiveLineNumber-foreground: #c6c6c6; - --vscode-editorLineNumber-activeForeground: #abb2bf; - --vscode-editorRuler-foreground: rgba(171, 178, 191, 0.15); - --vscode-editorCodeLens-foreground: #999999; - --vscode-editorBracketMatch-background: #515a6b; - --vscode-editorBracketMatch-border: #515a6b; - --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3); - --vscode-editorGutter-background: #282c34; - --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67); - --vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34); - --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6); - --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7); - --vscode-editorOverviewRuler-warningForeground: #d19a66; - --vscode-editorOverviewRuler-infoForeground: #3794ff; - --vscode-editorBracketHighlight-foreground1: #d19a66; - --vscode-editorBracketHighlight-foreground2: #c678dd; - --vscode-editorBracketHighlight-foreground3: #56b6c2; - --vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0); - --vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0); - --vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0); - --vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8); - --vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0); - --vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0); - --vscode-editorUnicodeHighlight-border: #bd9b03; - --vscode-editorUnicodeHighlight-background: rgba(189, 155, 3, 0.15); - --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0; - --vscode-editor-foldBackground: rgba(103, 118, 150, 0.11); - --vscode-editorGutter-foldingControlForeground: #c5c5c5; - --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3); - --vscode-editor-wordHighlightBackground: rgba(210, 224, 255, 0.18); - --vscode-editor-wordHighlightStrongBackground: rgba(171, 178, 191, 0.15); - --vscode-editor-wordHighlightTextBackground: rgba(210, 224, 255, 0.18); - --vscode-editor-wordHighlightBorder: #7f848e; - --vscode-editor-wordHighlightStrongBorder: #7f848e; - --vscode-editor-wordHighlightTextBorder: #7f848e; - --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8); - --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8); - --vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8); - --vscode-peekViewTitle-background: #252526; - --vscode-peekViewTitleLabel-foreground: #ffffff; - --vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7); - --vscode-peekView-border: #3794ff; - --vscode-peekViewResult-background: #22262b; - --vscode-peekViewResult-lineForeground: #bbbbbb; - --vscode-peekViewResult-fileForeground: #ffffff; - --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2); - --vscode-peekViewResult-selectionForeground: #ffffff; - --vscode-peekViewEditor-background: #1b1d23; - --vscode-peekViewEditorGutter-background: #1b1d23; - --vscode-peekViewEditorStickyScroll-background: #1b1d23; - --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3); - --vscode-peekViewEditor-matchHighlightBackground: #29244b; - --vscode-editorMarkerNavigationError-background: #c24038; - --vscode-editorMarkerNavigationError-headerBackground: rgba(194, 64, 56, 0.1); - --vscode-editorMarkerNavigationWarning-background: #d19a66; - --vscode-editorMarkerNavigationWarning-headerBackground: rgba(209, 154, 102, 0.1); - --vscode-editorMarkerNavigationInfo-background: #3794ff; - --vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1); - --vscode-editorMarkerNavigation-background: #21252b; - --vscode-editorSuggestWidget-background: #21252b; - --vscode-editorSuggestWidget-border: #181a1f; - --vscode-editorSuggestWidget-foreground: #abb2bf; - --vscode-editorSuggestWidget-selectedForeground: #d7dae0; - --vscode-editorSuggestWidget-selectedBackground: #2c313a; - --vscode-editorSuggestWidget-highlightForeground: #ecebeb; - --vscode-editorSuggestWidget-focusHighlightForeground: #ecebeb; - --vscode-editorSuggestWidgetStatus-foreground: rgba(171, 178, 191, 0.5); - --vscode-tab-activeBackground: #282c34; - --vscode-tab-unfocusedActiveBackground: #282c34; - --vscode-tab-inactiveBackground: #21252b; - --vscode-tab-unfocusedInactiveBackground: #21252b; - --vscode-tab-activeForeground: #dcdcdc; - --vscode-tab-inactiveForeground: rgba(220, 220, 220, 0.5); - --vscode-tab-unfocusedActiveForeground: rgba(220, 220, 220, 0.5); - --vscode-tab-unfocusedInactiveForeground: rgba(220, 220, 220, 0.25); - --vscode-tab-hoverBackground: #323842; - --vscode-tab-unfocusedHoverBackground: #323842; - --vscode-tab-border: #181a1f; - --vscode-tab-lastPinnedBorder: rgba(255, 255, 255, 0.11); - --vscode-tab-activeBorder: #b4b4b4; - --vscode-tab-unfocusedActiveBorder: rgba(180, 180, 180, 0.5); - --vscode-tab-activeModifiedBorder: #3399cc; - --vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5); - --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5); - --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25); - --vscode-editorPane-background: #282c34; - --vscode-editorGroupHeader-tabsBackground: #21252b; - --vscode-editorGroupHeader-noTabsBackground: #282c34; - --vscode-editorGroup-border: #181a1f; - --vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5); - --vscode-editorGroup-dropIntoPromptForeground: #cccccc; - --vscode-editorGroup-dropIntoPromptBackground: #21252b; - --vscode-sideBySideEditor-horizontalBorder: #181a1f; - --vscode-sideBySideEditor-verticalBorder: #181a1f; - --vscode-panel-background: #282c34; - --vscode-panel-border: #3e4452; - --vscode-panelTitle-activeForeground: #e7e7e7; - --vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6); - --vscode-panelTitle-activeBorder: #e7e7e7; - --vscode-panel-dropBorder: #e7e7e7; - --vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5); - --vscode-panelSectionHeader-background: #21252b; - --vscode-panelSection-border: #3e4452; - --vscode-banner-background: #2c313a; - --vscode-banner-foreground: #d7dae0; - --vscode-banner-iconForeground: #3794ff; - --vscode-statusBar-foreground: #9da5b4; - --vscode-statusBar-noFolderForeground: #9da5b4; - --vscode-statusBar-background: #21252b; - --vscode-statusBar-noFolderBackground: #21252b; - --vscode-statusBar-focusBorder: #9da5b4; - --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18); - --vscode-statusBarItem-focusBorder: #9da5b4; - --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12); - --vscode-statusBarItem-hoverForeground: #9da5b4; - --vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2); - --vscode-statusBarItem-prominentForeground: #9da5b4; - --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5); - --vscode-statusBarItem-prominentHoverForeground: #9da5b4; - --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3); - --vscode-statusBarItem-errorBackground: #c72e0f; - --vscode-statusBarItem-errorForeground: #ffffff; - --vscode-statusBarItem-errorHoverForeground: #9da5b4; - --vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12); - --vscode-statusBarItem-warningBackground: #905c2b; - --vscode-statusBarItem-warningForeground: #ffffff; - --vscode-statusBarItem-warningHoverForeground: #9da5b4; - --vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12); - --vscode-activityBar-background: #282c34; - --vscode-activityBar-foreground: #d7dae0; - --vscode-activityBar-inactiveForeground: rgba(215, 218, 224, 0.4); - --vscode-activityBar-activeBorder: #d7dae0; - --vscode-activityBar-dropBorder: #d7dae0; - --vscode-activityBarBadge-background: #4d78cc; - --vscode-activityBarBadge-foreground: #f8fafd; - --vscode-profileBadge-background: #4d4d4d; - --vscode-profileBadge-foreground: #ffffff; - --vscode-statusBarItem-remoteBackground: #4d78cc; - --vscode-statusBarItem-remoteForeground: #f8fafd; - --vscode-statusBarItem-remoteHoverForeground: #9da5b4; - --vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12); - --vscode-statusBarItem-offlineBackground: #6c1717; - --vscode-statusBarItem-offlineForeground: #f8fafd; - --vscode-statusBarItem-offlineHoverForeground: #9da5b4; - --vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12); - --vscode-extensionBadge-remoteBackground: #4d78cc; - --vscode-extensionBadge-remoteForeground: #f8fafd; - --vscode-sideBar-background: #21252b; - --vscode-sideBar-foreground: #abb2bf; - --vscode-sideBarTitle-foreground: #abb2bf; - --vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5); - --vscode-sideBarSectionHeader-background: #282c34; - --vscode-sideBarSectionHeader-foreground: #abb2bf; - --vscode-titleBar-activeForeground: #9da5b4; - --vscode-titleBar-inactiveForeground: #6b717d; - --vscode-titleBar-activeBackground: #282c34; - --vscode-titleBar-inactiveBackground: #282c34; - --vscode-menubar-selectionForeground: #9da5b4; - --vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31); - --vscode-commandCenter-foreground: #9da5b4; - --vscode-commandCenter-activeForeground: #9da5b4; - --vscode-commandCenter-inactiveForeground: #6b717d; - --vscode-commandCenter-background: rgba(255, 255, 255, 0.05); - --vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08); - --vscode-commandCenter-border: rgba(157, 165, 180, 0.2); - --vscode-commandCenter-activeBorder: rgba(157, 165, 180, 0.3); - --vscode-commandCenter-inactiveBorder: rgba(107, 113, 125, 0.25); - --vscode-notifications-foreground: #cccccc; - --vscode-notifications-background: #21252b; - --vscode-notificationLink-foreground: #61afef; - --vscode-notificationCenterHeader-background: #2b3038; - --vscode-notifications-border: #2b3038; - --vscode-notificationsErrorIcon-foreground: #c24038; - --vscode-notificationsWarningIcon-foreground: #d19a66; - --vscode-notificationsInfoIcon-foreground: #3794ff; - --vscode-chat-requestBorder: rgba(255, 255, 255, 0.1); - --vscode-chat-slashCommandBackground: #34414b; - --vscode-chat-slashCommandForeground: #40a6ff; - --vscode-chat-avatarBackground: #1f1f1f; - --vscode-chat-avatarForeground: #cccccc; - --vscode-simpleFindWidget-sashBorder: #454545; - --vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5); - --vscode-commentsView-unresolvedIcon: #3e4452; - --vscode-editorCommentsWidget-replyInputBackground: #252526; - --vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5); - --vscode-editorCommentsWidget-unresolvedBorder: #3e4452; - --vscode-editorCommentsWidget-rangeBackground: rgba(62, 68, 82, 0.1); - --vscode-editorCommentsWidget-rangeActiveBackground: rgba(62, 68, 82, 0.1); - --vscode-editorGutter-commentRangeForeground: #323842; - --vscode-editorOverviewRuler-commentForeground: #323842; - --vscode-editorOverviewRuler-commentUnresolvedForeground: #323842; - --vscode-editorGutter-commentGlyphForeground: #abb2bf; - --vscode-editorGutter-commentUnresolvedGlyphForeground: #abb2bf; - --vscode-debugToolBar-background: #21252b; - --vscode-debugIcon-startForeground: #89d185; - --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2); - --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3); - --vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2); - --vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.2); - --vscode-mergeEditor-changeBase-background: #4b1818; - --vscode-mergeEditor-changeBase-word-background: #6f1313; - --vscode-mergeEditor-conflict-unhandledUnfocused-border: rgba(255, 166, 0, 0.48); - --vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600; - --vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29); - --vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8); - --vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93); - --vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03; - --vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28); - --vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2); - --vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2); - --vscode-settings-headerForeground: #ffffff; - --vscode-settings-settingsHeaderHoverForeground: rgba(255, 255, 255, 0.7); - --vscode-settings-modifiedItemIndicator: #0c7d9d; - --vscode-settings-headerBorder: #3e4452; - --vscode-settings-sashBorder: #3e4452; - --vscode-settings-dropdownBackground: #21252b; - --vscode-settings-dropdownForeground: #f0f0f0; - --vscode-settings-dropdownBorder: #21252b; - --vscode-settings-dropdownListBorder: #454545; - --vscode-settings-checkboxBackground: #21252b; - --vscode-settings-checkboxForeground: #f0f0f0; - --vscode-settings-checkboxBorder: #404754; - --vscode-settings-textInputBackground: #1d1f23; - --vscode-settings-textInputForeground: #abb2bf; - --vscode-settings-numberInputBackground: #1d1f23; - --vscode-settings-numberInputForeground: #abb2bf; - --vscode-settings-focusedRowBackground: #282c34; - --vscode-settings-rowHoverBackground: rgba(44, 49, 58, 0.3); - --vscode-settings-focusedRowBorder: #3e4452; - --vscode-terminal-background: #282c34; - --vscode-terminal-foreground: #abb2bf; - --vscode-terminal-selectionBackground: rgba(171, 178, 191, 0.19); - --vscode-terminal-inactiveSelectionBackground: rgba(171, 178, 191, 0.09); - --vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25); - --vscode-terminalCommandDecoration-successBackground: #1b81a8; - --vscode-terminalCommandDecoration-errorBackground: #f14c4c; - --vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8); - --vscode-terminal-border: #3e4452; - --vscode-terminal-findMatchBackground: #42557b; - --vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13); - --vscode-terminal-findMatchHighlightBackground: rgba(97, 153, 255, 0.18); - --vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49); - --vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5); - --vscode-terminal-tab-activeBorder: #b4b4b4; - --vscode-terminalStickyScrollHover-background: #2a2d2e; - --vscode-testing-iconFailed: #f14c4c; - --vscode-testing-iconErrored: #f14c4c; - --vscode-testing-iconPassed: #73c991; - --vscode-testing-runAction: #73c991; - --vscode-testing-iconQueued: #cca700; - --vscode-testing-iconUnset: #848484; - --vscode-testing-iconSkipped: #848484; - --vscode-testing-peekBorder: #c24038; - --vscode-testing-peekHeaderBackground: rgba(194, 64, 56, 0.1); - --vscode-testing-message-error-decorationForeground: #c24038; - --vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.2); - --vscode-testing-message-info-decorationForeground: rgba(171, 178, 191, 0.5); - --vscode-welcomePage-tileBackground: #21252b; - --vscode-welcomePage-tileHoverBackground: #282c34; - --vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1); - --vscode-welcomePage-progress-background: #1d1f23; - --vscode-welcomePage-progress-foreground: #61afef; - --vscode-walkthrough-stepTitle-foreground: #ffffff; - --vscode-walkThrough-embeddedEditorBackground: #2e3440; - --vscode-inlineChat-background: #21252b; - --vscode-inlineChat-border: #454545; - --vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36); - --vscode-inlineChat-regionHighlight: rgba(38, 79, 120, 0.25); - --vscode-inlineChatInput-border: #454545; - --vscode-inlineChatInput-focusBorder: #3e4452; - --vscode-inlineChatInput-placeholderForeground: rgba(204, 204, 204, 0.5); - --vscode-inlineChatInput-background: #1d1f23; - --vscode-inlineChatDiff-inserted: rgba(0, 128, 155, 0.1); - --vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1); - --vscode-debugExceptionWidget-border: #a31515; - --vscode-debugExceptionWidget-background: #420b0d; - --vscode-ports-iconRunningProcessForeground: #4d78cc; - --vscode-statusBar-debuggingBackground: #cc6633; - --vscode-statusBar-debuggingForeground: #ffffff; - --vscode-statusBar-debuggingBorder: rgba(255, 0, 0, 0); - --vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26); - --vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5); - --vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2); - --vscode-editorGutter-modifiedBackground: #948b60; - --vscode-editorGutter-addedBackground: #109868; - --vscode-editorGutter-deletedBackground: #9a353d; - --vscode-minimapGutter-modifiedBackground: #948b60; - --vscode-minimapGutter-addedBackground: #109868; - --vscode-minimapGutter-deletedBackground: #9a353d; - --vscode-editorOverviewRuler-modifiedForeground: rgba(148, 139, 96, 0.6); - --vscode-editorOverviewRuler-addedForeground: rgba(16, 152, 104, 0.6); - --vscode-editorOverviewRuler-deletedForeground: rgba(154, 53, 61, 0.6); - --vscode-debugIcon-breakpointForeground: #e51400; - --vscode-debugIcon-breakpointDisabledForeground: #848484; - --vscode-debugIcon-breakpointUnverifiedForeground: #848484; - --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00; - --vscode-debugIcon-breakpointStackframeForeground: #89d185; - --vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04); - --vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04); - --vscode-debugTokenExpression-name: #c586c0; - --vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6); - --vscode-debugTokenExpression-string: #ce9178; - --vscode-debugTokenExpression-boolean: #4e94ce; - --vscode-debugTokenExpression-number: #b5cea8; - --vscode-debugTokenExpression-error: #f48771; - --vscode-debugView-exceptionLabelForeground: #cccccc; - --vscode-debugView-exceptionLabelBackground: #6c2022; - --vscode-debugView-stateLabelForeground: #cccccc; - --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27); - --vscode-debugView-valueChangedHighlight: #569cd6; - --vscode-debugConsole-infoForeground: #3794ff; - --vscode-debugConsole-warningForeground: #d19a66; - --vscode-debugConsole-errorForeground: #f48771; - --vscode-debugConsole-sourceForeground: #cccccc; - --vscode-debugConsoleInputIcon-foreground: #cccccc; - --vscode-debugIcon-pauseForeground: #75beff; - --vscode-debugIcon-stopForeground: #f48771; - --vscode-debugIcon-disconnectForeground: #f48771; - --vscode-debugicon-realestartForeground: #89d185; - --vscode-debugIcon-stepOverForeground: #75beff; - --vscode-debugIcon-stepIntoForeground: #75beff; - --vscode-debugIcon-stepOutForeground: #75beff; - --vscode-debugIcon-continueForeground: #75beff; - --vscode-debugIcon-stepBackForeground: #75beff; - --vscode-notebook-cellBorderColor: #323842; - --vscode-notebook-focusedEditorBorder: #3e4452; - --vscode-notebookStatusSuccessIcon-foreground: #89d185; - --vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185; - --vscode-notebookStatusErrorIcon-foreground: #f48771; - --vscode-notebookStatusRunningIcon-foreground: #cccccc; - --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35); - --vscode-notebook-selectedCellBackground: #323842; - --vscode-notebook-selectedCellBorder: #323842; - --vscode-notebook-focusedCellBorder: #3e4452; - --vscode-notebook-inactiveFocusedCellBorder: #323842; - --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15); - --vscode-notebook-cellInsertionIndicator: #3e4452; - --vscode-notebookScrollbarSlider-background: rgba(78, 86, 102, 0.38); - --vscode-notebookScrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5); - --vscode-notebookScrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5); - --vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04); - --vscode-notebook-cellEditorBackground: #21252b; - --vscode-notebook-editorBackground: #282c34; - --vscode-scm-historyItemAdditionsForeground: #81b88b; - --vscode-scm-historyItemDeletionsForeground: #c74e39; - --vscode-scm-historyItemStatisticsBorder: rgba(204, 204, 204, 0.2); - --vscode-scm-historyItemSelectedStatisticsBorder: rgba(215, 218, 224, 0.2); - --vscode-extensionButton-background: #404754; - --vscode-extensionButton-foreground: #ffffff; - --vscode-extensionButton-hoverBackground: #4d5565; - --vscode-extensionButton-separator: rgba(255, 255, 255, 0.4); - --vscode-extensionButton-prominentBackground: #404754; - --vscode-extensionButton-prominentForeground: #ffffff; - --vscode-extensionButton-prominentHoverBackground: #4d5565; - --vscode-extensionIcon-starForeground: #ff8e00; - --vscode-extensionIcon-verifiedForeground: #61afef; - --vscode-extensionIcon-preReleaseForeground: #1d9271; - --vscode-extensionIcon-sponsorForeground: #d758b3; - --vscode-terminal-ansiBlack: #3f4451; - --vscode-terminal-ansiRed: #e05561; - --vscode-terminal-ansiGreen: #8cc265; - --vscode-terminal-ansiYellow: #d18f52; - --vscode-terminal-ansiBlue: #4aa5f0; - --vscode-terminal-ansiMagenta: #c162de; - --vscode-terminal-ansiCyan: #42b3c2; - --vscode-terminal-ansiWhite: #d7dae0; - --vscode-terminal-ansiBrightBlack: #4f5666; - --vscode-terminal-ansiBrightRed: #ff616e; - --vscode-terminal-ansiBrightGreen: #a5e075; - --vscode-terminal-ansiBrightYellow: #f0a45d; - --vscode-terminal-ansiBrightBlue: #4dc4ff; - --vscode-terminal-ansiBrightMagenta: #de73ff; - --vscode-terminal-ansiBrightCyan: #4cd1e0; - --vscode-terminal-ansiBrightWhite: #e6e6e6; - --vscode-interactive-activeCodeBorder: #3794ff; - --vscode-interactive-inactiveCodeBorder: #323842; - --vscode-gitDecoration-addedResourceForeground: #81b88b; - --vscode-gitDecoration-modifiedResourceForeground: #e2c08d; - --vscode-gitDecoration-deletedResourceForeground: #c74e39; - --vscode-gitDecoration-renamedResourceForeground: #73c991; - --vscode-gitDecoration-untrackedResourceForeground: #73c991; - --vscode-gitDecoration-ignoredResourceForeground: #636b78; - --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d; - --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39; - --vscode-gitDecoration-conflictingResourceForeground: #e4676b; - --vscode-gitDecoration-submoduleResourceForeground: #8db9e2; - --vscode-gitlens-gutterBackgroundColor: rgba(255, 255, 255, 0.07); - --vscode-gitlens-gutterForegroundColor: #bebebe; - --vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, 0.6); - --vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0); - --vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, 0.35); - --vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, 0.2); - --vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, 0.6); - --vscode-gitlens-openAutolinkedIssueIconColor: #3fb950; - --vscode-gitlens-closedAutolinkedIssueIconColor: #a371f7; - --vscode-gitlens-closedPullRequestIconColor: #f85149; - --vscode-gitlens-openPullRequestIconColor: #3fb950; - --vscode-gitlens-mergedPullRequestIconColor: #a371f7; - --vscode-gitlens-unpublishedChangesIconColor: #35b15e; - --vscode-gitlens-unpublishedCommitIconColor: #35b15e; - --vscode-gitlens-unpulledChangesIconColor: #b15e35; - --vscode-gitlens-decorations-addedForegroundColor: #81b88b; - --vscode-gitlens-decorations-copiedForegroundColor: #73c991; - --vscode-gitlens-decorations-deletedForegroundColor: #c74e39; - --vscode-gitlens-decorations-ignoredForegroundColor: #636b78; - --vscode-gitlens-decorations-modifiedForegroundColor: #e2c08d; - --vscode-gitlens-decorations-untrackedForegroundColor: #73c991; - --vscode-gitlens-decorations-renamedForegroundColor: #73c991; - --vscode-gitlens-decorations-branchAheadForegroundColor: #35b15e; - --vscode-gitlens-decorations-branchBehindForegroundColor: #b15e35; - --vscode-gitlens-decorations-branchDivergedForegroundColor: #d8af1b; - --vscode-gitlens-decorations-branchUpToDateForegroundColor: #abb2bf; - --vscode-gitlens-decorations-branchUnpublishedForegroundColor: #35b15e; - --vscode-gitlens-decorations-branchMissingUpstreamForegroundColor: #c74e39; - --vscode-gitlens-decorations-statusMergingOrRebasingConflictForegroundColor: #c74e39; - --vscode-gitlens-decorations-statusMergingOrRebasingForegroundColor: #d8af1b; - --vscode-gitlens-decorations-workspaceRepoMissingForegroundColor: #909090; - --vscode-gitlens-decorations-workspaceCurrentForegroundColor: #35b15e; - --vscode-gitlens-decorations-workspaceRepoOpenForegroundColor: #35b15e; - --vscode-gitlens-decorations-worktreeHasUncommittedChangesForegroundColor: #e2c08d; - --vscode-gitlens-decorations-worktreeMissingForegroundColor: #c74e39; - --vscode-gitlens-graphLane1Color: #15a0bf; - --vscode-gitlens-graphLane2Color: #0669f7; - --vscode-gitlens-graphLane3Color: #8e00c2; - --vscode-gitlens-graphLane4Color: #c517b6; - --vscode-gitlens-graphLane5Color: #d90171; - --vscode-gitlens-graphLane6Color: #cd0101; - --vscode-gitlens-graphLane7Color: #f25d2e; - --vscode-gitlens-graphLane8Color: #f2ca33; - --vscode-gitlens-graphLane9Color: #7bd938; - --vscode-gitlens-graphLane10Color: #2ece9d; - --vscode-gitlens-graphChangesColumnAddedColor: #347d39; - --vscode-gitlens-graphChangesColumnDeletedColor: #c93c37; - --vscode-gitlens-graphMinimapMarkerHeadColor: #05e617; - --vscode-gitlens-graphScrollMarkerHeadColor: #05e617; - --vscode-gitlens-graphMinimapMarkerUpstreamColor: #09ae17; - --vscode-gitlens-graphScrollMarkerUpstreamColor: #09ae17; - --vscode-gitlens-graphMinimapMarkerHighlightsColor: #fbff0a; - --vscode-gitlens-graphScrollMarkerHighlightsColor: #fbff0a; - --vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3087cf; - --vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3087cf; - --vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #2b5e88; - --vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #2b5e88; - --vscode-gitlens-graphMinimapMarkerStashesColor: #b34db3; - --vscode-gitlens-graphScrollMarkerStashesColor: #b34db3; - --vscode-gitlens-graphMinimapMarkerTagsColor: #6b562e; - --vscode-gitlens-graphScrollMarkerTagsColor: #6b562e; -} \ No newline at end of file diff --git a/resources/dide-viewer/view/test.vcd b/resources/dide-viewer/view/test.vcd deleted file mode 100644 index 502135d..0000000 --- a/resources/dide-viewer/view/test.vcd +++ /dev/null @@ -1,9529 +0,0 @@ -$date - Thu Jul 22 22:29:56 2021 -$end -$version - Icarus Verilog -$end -$timescale - 1ps -$end -$scope module friscv_rv32i_testbench $end -$var wire 1 ! inst_rready $end -$var wire 2 " inst_rresp [1:0] $end -$var wire 1 # uart_cts $end -$var wire 1 $ uart_rx $end -$var wire 1 % uart_tx $end -$var wire 1 & uart_rts $end -$var wire 1 ' mem_wr $end -$var wire 32 ( mem_wdata [31:0] $end -$var wire 4 ) mem_strb [3:0] $end -$var wire 1 * mem_ready $end -$var wire 32 + mem_rdata [31:0] $end -$var wire 1 , mem_en $end -$var wire 16 - mem_addr [15:0] $end -$var wire 1 . inst_rvalid $end -$var wire 8 / inst_rid [7:0] $end -$var wire 128 0 inst_rdata [127:0] $end -$var wire 1 1 inst_bvalid $end -$var wire 2 2 inst_bresp [1:0] $end -$var wire 1 3 inst_awready $end -$var wire 1 4 inst_arvalid $end -$var wire 1 5 inst_arready $end -$var wire 3 6 inst_arprot [2:0] $end -$var wire 8 7 inst_arid [7:0] $end -$var wire 16 8 inst_araddr [15:0] $end -$var wire 32 9 gpio_out [31:0] $end -$var wire 1 : ebreak $end -$var reg 1 ; aclk $end -$var reg 1 < aresetn $end -$var reg 1 = enable $end -$var reg 32 > gpio_in [31:0] $end -$var reg 16 ? inst_awaddr [15:0] $end -$var reg 8 @ inst_awid [7:0] $end -$var reg 3 A inst_awprot [2:0] $end -$var reg 1 B inst_awvalid $end -$var reg 1 C inst_bready $end -$var reg 128 D inst_wdata [127:0] $end -$var reg 8 E inst_wid [7:0] $end -$var reg 1 F inst_wready $end -$var reg 1 G inst_wvalid $end -$var reg 1 H srst $end -$var integer 32 I inst_counter [31:0] $end -$var integer 32 J svut_critical [31:0] $end -$var integer 32 K svut_error [31:0] $end -$var integer 32 L svut_error_total [31:0] $end -$var integer 32 M svut_nb_test [31:0] $end -$var integer 32 N svut_nb_test_success [31:0] $end -$var integer 32 O svut_status [31:0] $end -$var integer 32 P svut_test_number [31:0] $end -$var integer 32 Q svut_warning [31:0] $end -$var integer 32 R timer [31:0] $end -$scope module data_ram $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 16 S p2_addr [15:0] $end -$var wire 1 T p2_en $end -$var wire 4 U p2_strb [3:0] $end -$var wire 32 V p2_wdata [31:0] $end -$var wire 1 W p2_wr $end -$var wire 1 H srst $end -$var wire 32 X p2_rdata [31:0] $end -$var wire 1 ' p1_wr $end -$var wire 32 Y p1_wdata [31:0] $end -$var wire 4 Z p1_strb [3:0] $end -$var wire 32 [ p1_rdata [31:0] $end -$var wire 1 , p1_en $end -$var wire 16 \ p1_addr [15:0] $end -$var reg 1 * p1_ready $end -$var reg 1 ] p2_ready $end -$scope begin LATENCY1 $end -$upscope $end -$scope module ram $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 16 ^ p2_addr [15:0] $end -$var wire 1 T p2_en $end -$var wire 4 _ p2_strb [3:0] $end -$var wire 32 ` p2_wdata [31:0] $end -$var wire 1 W p2_wr $end -$var wire 1 H srst $end -$var wire 1 ' p1_wr $end -$var wire 32 a p1_wdata [31:0] $end -$var wire 4 b p1_strb [3:0] $end -$var wire 1 , p1_en $end -$var wire 16 c p1_addr [15:0] $end -$var reg 32 d p1_rdata [31:0] $end -$var reg 32 e p2_rdata [31:0] $end -$scope begin $ivl_for_loop0 $end -$var integer 32 f i [31:0] $end -$upscope $end -$scope begin $ivl_for_loop1 $end -$var integer 32 g i [31:0] $end -$upscope $end -$upscope $end -$upscope $end -$scope module dut $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 = enable $end -$var wire 32 h gpio_in [31:0] $end -$var wire 3 i inst_arprot_s [2:0] $end -$var wire 1 ! inst_rready $end -$var wire 2 j inst_rresp [1:0] $end -$var wire 2 k inst_rresp_s [1:0] $end -$var wire 32 l mem_rdata [31:0] $end -$var wire 1 * mem_ready $end -$var wire 4 m proc_fenceinfo [3:0] $end -$var wire 1 H srst $end -$var wire 1 # uart_cts $end -$var wire 1 $ uart_rx $end -$var wire 1 % uart_tx $end -$var wire 1 & uart_rts $end -$var wire 1 n proc_ready $end -$var wire 87 o proc_instbus [86:0] $end -$var wire 1 p proc_en $end -$var wire 1 q proc_empty $end -$var wire 1 r mst_wr $end -$var wire 32 s mst_wdata [31:0] $end -$var wire 4 t mst_strb [3:0] $end -$var wire 1 u mst_ready $end -$var wire 32 v mst_rdata [31:0] $end -$var wire 1 w mst_en $end -$var wire 16 x mst_addr [15:0] $end -$var wire 32 y memfy_rs2_val [31:0] $end -$var wire 5 z memfy_rs2_addr [4:0] $end -$var wire 32 { memfy_rs1_val [31:0] $end -$var wire 5 | memfy_rs1_addr [4:0] $end -$var wire 1 } memfy_rd_wr $end -$var wire 32 ~ memfy_rd_val [31:0] $end -$var wire 4 !" memfy_rd_strb [3:0] $end -$var wire 5 "" memfy_rd_addr [4:0] $end -$var wire 1 ' mem_wr $end -$var wire 32 #" mem_wdata [31:0] $end -$var wire 4 $" mem_strb [3:0] $end -$var wire 1 , mem_en $end -$var wire 16 %" mem_addr [15:0] $end -$var wire 1 &" inst_rvalid_s $end -$var wire 1 . inst_rvalid $end -$var wire 1 '" inst_rready_s $end -$var wire 8 (" inst_rid_s [7:0] $end -$var wire 8 )" inst_rid [7:0] $end -$var wire 32 *" inst_rdata_s [31:0] $end -$var wire 128 +" inst_rdata [127:0] $end -$var wire 1 ," inst_arvalid_s $end -$var wire 1 4 inst_arvalid $end -$var wire 1 -" inst_arready_s $end -$var wire 1 5 inst_arready $end -$var wire 3 ." inst_arprot [2:0] $end -$var wire 8 /" inst_arid_s [7:0] $end -$var wire 8 0" inst_arid [7:0] $end -$var wire 16 1" inst_araddr_s [15:0] $end -$var wire 16 2" inst_araddr [15:0] $end -$var wire 1 3" gpio_wr $end -$var wire 32 4" gpio_wdata [31:0] $end -$var wire 4 5" gpio_strb [3:0] $end -$var wire 1 6" gpio_ready $end -$var wire 32 7" gpio_rdata [31:0] $end -$var wire 32 8" gpio_out [31:0] $end -$var wire 1 9" gpio_en $end -$var wire 16 :" gpio_addr [15:0] $end -$var wire 1 ;" flush_req $end -$var wire 1 <" flush_ack $end -$var wire 1 : ebreak $end -$var wire 32 =" ctrl_rs2_val [31:0] $end -$var wire 5 >" ctrl_rs2_addr [4:0] $end -$var wire 32 ?" ctrl_rs1_val [31:0] $end -$var wire 5 @" ctrl_rs1_addr [4:0] $end -$var wire 1 A" ctrl_rd_wr $end -$var wire 32 B" ctrl_rd_val [31:0] $end -$var wire 5 C" ctrl_rd_addr [4:0] $end -$var wire 32 D" csr_rs1_val [31:0] $end -$var wire 5 E" csr_rs1_addr [4:0] $end -$var wire 1 F" csr_ready $end -$var wire 1 G" csr_rd_wr $end -$var wire 32 H" csr_rd_val [31:0] $end -$var wire 5 I" csr_rd_addr [4:0] $end -$var wire 87 J" csr_instbus [86:0] $end -$var wire 1 K" csr_en $end -$var wire 32 L" alu_rs2_val [31:0] $end -$var wire 5 M" alu_rs2_addr [4:0] $end -$var wire 32 N" alu_rs1_val [31:0] $end -$var wire 5 O" alu_rs1_addr [4:0] $end -$var wire 1 P" alu_rd_wr $end -$var wire 32 Q" alu_rd_val [31:0] $end -$var wire 4 R" alu_rd_strb [3:0] $end -$var wire 5 S" alu_rd_addr [4:0] $end -$scope begin USE_ICACHE $end -$scope module icache $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 3 T" ctrl_arprot [2:0] $end -$var wire 2 U" ctrl_rresp [1:0] $end -$var wire 1 <" flush_ack $end -$var wire 2 V" icache_arburst [1:0] $end -$var wire 4 W" icache_arcache [3:0] $end -$var wire 8 X" icache_arlen [7:0] $end -$var wire 2 Y" icache_arlock [1:0] $end -$var wire 4 Z" icache_arqos [3:0] $end -$var wire 4 [" icache_arregion [3:0] $end -$var wire 3 \" icache_arsize [2:0] $end -$var wire 1 ]" icache_rlast $end -$var wire 1 ! icache_rready $end -$var wire 2 ^" icache_rresp [1:0] $end -$var wire 1 H srst $end -$var wire 1 _" memctrl_arvalid $end -$var wire 1 `" memctrl_arready $end -$var wire 3 a" memctrl_arprot [2:0] $end -$var wire 8 b" memctrl_arid [7:0] $end -$var wire 16 c" memctrl_araddr [15:0] $end -$var wire 1 d" is_flushing $end -$var wire 1 . icache_rvalid $end -$var wire 8 e" icache_rid [7:0] $end -$var wire 128 f" icache_rdata [127:0] $end -$var wire 1 4 icache_arvalid $end -$var wire 1 5 icache_arready $end -$var wire 3 g" icache_arprot [2:0] $end -$var wire 8 h" icache_arid [7:0] $end -$var wire 16 i" icache_araddr [15:0] $end -$var wire 1 ;" flush_req $end -$var wire 1 j" flush_ack_memctrl $end -$var wire 1 k" flush_ack_fetcher $end -$var wire 1 &" ctrl_rvalid $end -$var wire 1 '" ctrl_rready $end -$var wire 8 l" ctrl_rid [7:0] $end -$var wire 32 m" ctrl_rdata [31:0] $end -$var wire 1 ," ctrl_arvalid $end -$var wire 1 -" ctrl_arready $end -$var wire 8 n" ctrl_arid [7:0] $end -$var wire 16 o" ctrl_araddr [15:0] $end -$var wire 1 p" cache_wen $end -$var wire 128 q" cache_wdata [127:0] $end -$var wire 16 r" cache_waddr [15:0] $end -$var wire 1 s" cache_ren $end -$var wire 32 t" cache_rdata [31:0] $end -$var wire 16 u" cache_raddr [15:0] $end -$var wire 1 v" cache_miss $end -$var wire 1 w" cache_hit $end -$scope module cache_lines $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 H srst $end -$var wire 3 x" wtag [2:0] $end -$var wire 132 y" wline [131:0] $end -$var wire 9 z" windex [8:0] $end -$var wire 1 p" wen $end -$var wire 128 {" wdata [127:0] $end -$var wire 16 |" waddr [15:0] $end -$var wire 3 }" rtag [2:0] $end -$var wire 1 ~" rset $end -$var wire 2 !# roffset [1:0] $end -$var wire 128 "# rline [127:0] $end -$var wire 9 ## rindex [8:0] $end -$var wire 1 s" ren $end -$var wire 16 $# raddr [15:0] $end -$var wire 1 d" flush $end -$var reg 1 w" hit $end -$var reg 1 v" miss $end -$var reg 32 %# rdata [31:0] $end -$scope begin $ivl_for_loop3 $end -$var integer 32 &# i [31:0] $end -$upscope $end -$upscope $end -$scope module fetcher $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 w" cache_hit $end -$var wire 1 v" cache_miss $end -$var wire 32 '# cache_rdata [31:0] $end -$var wire 3 (# ctrl_arprot [2:0] $end -$var wire 32 )# ctrl_rdata [31:0] $end -$var wire 8 *# ctrl_rid [7:0] $end -$var wire 2 +# ctrl_rresp [1:0] $end -$var wire 1 &" ctrl_rvalid $end -$var wire 3 ,# memctrl_arprot [2:0] $end -$var wire 1 H srst $end -$var wire 1 -# reboot $end -$var wire 1 `" memctrl_arready $end -$var wire 1 ;" flush_req $end -$var wire 1 .# fifo_full_mf $end -$var wire 1 /# fifo_full_if $end -$var wire 1 0# fifo_empty_mf $end -$var wire 1 1# fifo_empty_if $end -$var wire 1 '" ctrl_rready $end -$var wire 1 ," ctrl_arvalid $end -$var wire 1 -" ctrl_arready $end -$var wire 8 2# ctrl_arid [7:0] $end -$var wire 16 3# ctrl_araddr [15:0] $end -$var wire 1 p" cache_writing $end -$var wire 8 4# cache_rid [7:0] $end -$var wire 1 s" cache_ren $end -$var wire 16 5# cache_raddr [15:0] $end -$var wire 8 6# arid_mf [7:0] $end -$var wire 8 7# arid_if [7:0] $end -$var wire 16 8# araddr_mf [15:0] $end -$var wire 16 9# araddr_if [15:0] $end -$var reg 16 :# araddr_ffd [15:0] $end -$var reg 8 ;# arid_ffd [7:0] $end -$var reg 8 <# arid_reboot [7:0] $end -$var reg 1 k" flush_ack $end -$var reg 1 =# flush_fifo $end -$var reg 16 ># memctrl_araddr [15:0] $end -$var reg 8 ?# memctrl_arid [7:0] $end -$var reg 1 _" memctrl_arvalid $end -$var reg 1 @# pull_addr_if $end -$var reg 1 A# pull_addr_mf $end -$var reg 3 B# seq [2:0] $end -$scope module if_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 24 C# data_in [23:0] $end -$var wire 1 D# flush $end -$var wire 1 @# pull $end -$var wire 1 H srst $end -$var wire 1 E# wr_en $end -$var wire 1 ," push $end -$var wire 1 F# pass_thru $end -$var wire 1 G# full_flag $end -$var wire 1 /# full $end -$var wire 1 H# empty_flag $end -$var wire 1 1# empty $end -$var wire 24 I# data_out [23:0] $end -$var wire 24 J# data_fifo [23:0] $end -$var reg 4 K# rdptr [3:0] $end -$var reg 4 L# wrptr [3:0] $end -$scope begin PASS_THRU_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 3 M# addr_in [2:0] $end -$var wire 3 N# addr_out [2:0] $end -$var wire 24 O# data_in [23:0] $end -$var wire 1 E# wr_en $end -$var wire 24 P# data_out [23:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$scope module mf_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 24 Q# data_in [23:0] $end -$var wire 1 R# flush $end -$var wire 1 A# pull $end -$var wire 1 v" push $end -$var wire 1 H srst $end -$var wire 1 S# wr_en $end -$var wire 1 T# pass_thru $end -$var wire 1 U# full_flag $end -$var wire 1 .# full $end -$var wire 1 V# empty_flag $end -$var wire 1 0# empty $end -$var wire 24 W# data_out [23:0] $end -$var wire 24 X# data_fifo [23:0] $end -$var reg 2 Y# rdptr [1:0] $end -$var reg 2 Z# wrptr [1:0] $end -$scope begin PASS_THRU_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 1 [# addr_in $end -$var wire 1 \# addr_out $end -$var wire 24 ]# data_in [23:0] $end -$var wire 1 S# wr_en $end -$var wire 24 ^# data_out [23:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope module mem_ctrl $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 128 _# cache_wdata [127:0] $end -$var wire 16 `# ctrl_araddr [15:0] $end -$var wire 8 a# ctrl_arid [7:0] $end -$var wire 3 b# ctrl_arprot [2:0] $end -$var wire 1 `" ctrl_arready $end -$var wire 1 _" ctrl_arvalid $end -$var wire 16 c# mem_araddr [15:0] $end -$var wire 2 d# mem_arburst [1:0] $end -$var wire 4 e# mem_arcache [3:0] $end -$var wire 8 f# mem_arid [7:0] $end -$var wire 8 g# mem_arlen [7:0] $end -$var wire 2 h# mem_arlock [1:0] $end -$var wire 3 i# mem_arprot [2:0] $end -$var wire 4 j# mem_arqos [3:0] $end -$var wire 4 k# mem_arregion [3:0] $end -$var wire 3 l# mem_arsize [2:0] $end -$var wire 1 4 mem_arvalid $end -$var wire 1 ]" mem_rlast $end -$var wire 1 ! mem_rready $end -$var wire 2 m# mem_rresp [1:0] $end -$var wire 1 H srst $end -$var wire 1 . mem_rvalid $end -$var wire 8 n# mem_rid [7:0] $end -$var wire 128 o# mem_rdata [127:0] $end -$var wire 1 5 mem_arready $end -$var wire 1 ;" flush_req $end -$var wire 1 p" cache_wen $end -$var wire 16 p# cache_waddr [15:0] $end -$var reg 2 q# cfsm [1:0] $end -$var reg 17 r# erase_addr [16:0] $end -$var reg 1 s# erase_wen $end -$var reg 1 d" flush $end -$var reg 1 j" flush_ack $end -$upscope $end -$upscope $end -$upscope $end -$scope module control $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 3 t# arprot [2:0] $end -$var wire 1 -" arready $end -$var wire 1 K" csr_en $end -$var wire 87 u# csr_instbus [86:0] $end -$var wire 5 v# ctrl_rd_addr [4:0] $end -$var wire 5 w# ctrl_rs1_addr [4:0] $end -$var wire 5 x# ctrl_rs2_addr [4:0] $end -$var wire 1 <" flush_ack $end -$var wire 1 y# jump_branch $end -$var wire 1 p proc_en $end -$var wire 4 z# proc_fenceinfo [3:0] $end -$var wire 1 {# push_inst $end -$var wire 32 |# rdata [31:0] $end -$var wire 8 }# rid [7:0] $end -$var wire 1 '" rready $end -$var wire 2 ~# rresp [1:0] $end -$var wire 1 &" rvalid $end -$var wire 1 H srst $end -$var wire 5 !$ zimm [4:0] $end -$var wire 4 "$ succ [3:0] $end -$var wire 6 #$ shamt [5:0] $end -$var wire 5 $$ rs2 [4:0] $end -$var wire 5 %$ rs1 [4:0] $end -$var wire 5 &$ rd [4:0] $end -$var wire 1 '$ pull_inst $end -$var wire 1 ($ processing $end -$var wire 1 n proc_ready $end -$var wire 87 )$ proc_instbus [86:0] $end -$var wire 1 q proc_empty $end -$var wire 4 *$ pred [3:0] $end -$var wire 32 +$ pc_plus4 [31:0] $end -$var wire 32 ,$ pc_jalr [31:0] $end -$var wire 32 -$ pc_jal [31:0] $end -$var wire 32 .$ pc_branching [31:0] $end -$var wire 32 /$ pc_auipc [31:0] $end -$var wire 32 0$ pc [31:0] $end -$var wire 7 1$ opcode [6:0] $end -$var wire 1 2$ lui $end -$var wire 1 3$ jalr $end -$var wire 1 4$ jal $end -$var wire 32 5$ instruction [31:0] $end -$var wire 1 6$ inst_error $end -$var wire 20 7$ imm20 [19:0] $end -$var wire 12 8$ imm12 [11:0] $end -$var wire 1 9$ goto_branch $end -$var wire 7 :$ funct7 [6:0] $end -$var wire 3 ;$ funct3 [2:0] $end -$var wire 1 <$ fifo_full $end -$var wire 1 =$ fifo_empty $end -$var wire 2 >$ fence [1:0] $end -$var wire 3 ?$ env [2:0] $end -$var wire 32 @$ ctrl_rs2_val [31:0] $end -$var wire 32 A$ ctrl_rs1_val [31:0] $end -$var wire 1 A" ctrl_rd_wr $end -$var wire 32 B$ ctrl_rd_val [31:0] $end -$var wire 1 F" csr_ready $end -$var wire 12 C$ csr [11:0] $end -$var wire 1 D$ cant_process_now $end -$var wire 1 E$ cant_branch_now $end -$var wire 1 F$ branching $end -$var wire 1 G$ bne $end -$var wire 1 H$ bltu $end -$var wire 1 I$ blt $end -$var wire 1 J$ bgeu $end -$var wire 1 K$ bge $end -$var wire 1 L$ beq $end -$var wire 1 M$ auipc $end -$var reg 16 N$ araddr [15:0] $end -$var reg 8 O$ arid [7:0] $end -$var reg 1 ," arvalid $end -$var reg 4 P$ cfsm [3:0] $end -$var reg 1 : ebreak $end -$var reg 1 Q$ flush_fifo $end -$var reg 1 ;" flush_req $end -$var reg 32 R$ pc_auipc_saved [31:0] $end -$var reg 32 S$ pc_jal_saved [31:0] $end -$var reg 32 T$ pc_reg [31:0] $end -$scope module decoder $end -$var wire 32 U$ instruction [31:0] $end -$var reg 1 M$ auipc $end -$var reg 1 F$ branching $end -$var reg 12 V$ csr [11:0] $end -$var reg 3 W$ env [2:0] $end -$var reg 2 X$ fence [1:0] $end -$var reg 3 Y$ funct3 [2:0] $end -$var reg 7 Z$ funct7 [6:0] $end -$var reg 12 [$ imm12 [11:0] $end -$var reg 20 \$ imm20 [19:0] $end -$var reg 1 6$ inst_error $end -$var reg 1 4$ jal $end -$var reg 1 3$ jalr $end -$var reg 1 2$ lui $end -$var reg 7 ]$ opcode [6:0] $end -$var reg 4 ^$ pred [3:0] $end -$var reg 1 ($ processing $end -$var reg 5 _$ rd [4:0] $end -$var reg 5 `$ rs1 [4:0] $end -$var reg 5 a$ rs2 [4:0] $end -$var reg 6 b$ shamt [5:0] $end -$var reg 4 c$ succ [3:0] $end -$var reg 5 d$ zimm [4:0] $end -$upscope $end -$scope module inst_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 32 e$ data_in [31:0] $end -$var wire 1 Q$ flush $end -$var wire 1 f$ pass_thru $end -$var wire 1 '$ pull $end -$var wire 1 {# push $end -$var wire 1 H srst $end -$var wire 1 g$ wr_en $end -$var wire 1 h$ full_flag $end -$var wire 1 <$ full $end -$var wire 1 i$ empty_flag $end -$var wire 1 =$ empty $end -$var wire 32 j$ data_out [31:0] $end -$var wire 32 k$ data_fifo [31:0] $end -$var reg 4 l$ rdptr [3:0] $end -$var reg 4 m$ wrptr [3:0] $end -$scope begin STORE_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 3 n$ addr_in [2:0] $end -$var wire 3 o$ addr_out [2:0] $end -$var wire 32 p$ data_in [31:0] $end -$var wire 1 g$ wr_en $end -$var wire 32 q$ data_out [31:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope module csrs $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 87 r$ instbus [86:0] $end -$var wire 5 s$ rs1_addr [4:0] $end -$var wire 1 H srst $end -$var wire 1 K" valid $end -$var wire 5 t$ zimm [4:0] $end -$var wire 6 u$ shamt [5:0] $end -$var wire 5 v$ rs2 [4:0] $end -$var wire 32 w$ rs1_val [31:0] $end -$var wire 5 x$ rs1 [4:0] $end -$var wire 5 y$ rd [4:0] $end -$var wire 7 z$ opcode [6:0] $end -$var wire 20 {$ imm20 [19:0] $end -$var wire 12 |$ imm12 [11:0] $end -$var wire 7 }$ funct7 [6:0] $end -$var wire 3 ~$ funct3 [2:0] $end -$var wire 1 !% csr_rd $end -$var wire 12 "% csr [11:0] $end -$var reg 2 #% cfsm [1:0] $end -$var reg 12 $% csr_r [11:0] $end -$var reg 1 %% csr_wr $end -$var reg 3 &% funct3_r [2:0] $end -$var reg 32 '% newval [31:0] $end -$var reg 32 (% oldval [31:0] $end -$var reg 5 )% rd_wr_addr [4:0] $end -$var reg 1 G" rd_wr_en $end -$var reg 32 *% rd_wr_val [31:0] $end -$var reg 1 F" ready $end -$var reg 5 +% rs1_addr_r [4:0] $end -$var reg 32 ,% rs1_val_r [31:0] $end -$var reg 5 -% zimm_r [4:0] $end -$scope begin $ivl_for_loop2 $end -$var integer 32 .% i [31:0] $end -$upscope $end -$upscope $end -$scope module ios $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 32 /% gpio_in [31:0] $end -$var wire 1 H srst $end -$var wire 1 # uart_cts $end -$var wire 1 $ uart_rx $end -$var wire 1 % uart_tx $end -$var wire 1 & uart_rts $end -$var wire 1 0% slv1_wr $end -$var wire 32 1% slv1_wdata [31:0] $end -$var wire 4 2% slv1_strb [3:0] $end -$var wire 1 3% slv1_ready $end -$var wire 32 4% slv1_rdata [31:0] $end -$var wire 1 5% slv1_en $end -$var wire 16 6% slv1_addr [15:0] $end -$var wire 1 7% slv0_wr $end -$var wire 32 8% slv0_wdata [31:0] $end -$var wire 4 9% slv0_strb [3:0] $end -$var wire 1 :% slv0_ready $end -$var wire 32 ;% slv0_rdata [31:0] $end -$var wire 1 <% slv0_en $end -$var wire 16 =% slv0_addr [15:0] $end -$var wire 1 3" mst_wr $end -$var wire 32 >% mst_wdata [31:0] $end -$var wire 4 ?% mst_strb [3:0] $end -$var wire 1 6" mst_ready $end -$var wire 32 @% mst_rdata [31:0] $end -$var wire 1 w mst_en $end -$var wire 16 A% mst_addr [15:0] $end -$var wire 32 B% gpio_out [31:0] $end -$scope module apb_interconnect $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 H srst $end -$var wire 1 3% slv1_ready $end -$var wire 32 C% slv1_rdata [31:0] $end -$var wire 1 :% slv0_ready $end -$var wire 32 D% slv0_rdata [31:0] $end -$var wire 1 3" mst_wr $end -$var wire 32 E% mst_wdata [31:0] $end -$var wire 4 F% mst_strb [3:0] $end -$var wire 1 w mst_en $end -$var wire 16 G% mst_addr [15:0] $end -$var reg 32 H% mst_rdata [31:0] $end -$var reg 1 6" mst_ready $end -$var reg 16 I% slv0_addr [15:0] $end -$var reg 1 <% slv0_en $end -$var reg 4 J% slv0_strb [3:0] $end -$var reg 32 K% slv0_wdata [31:0] $end -$var reg 1 7% slv0_wr $end -$var reg 16 L% slv1_addr [15:0] $end -$var reg 1 5% slv1_en $end -$var reg 4 M% slv1_strb [3:0] $end -$var reg 32 N% slv1_wdata [31:0] $end -$var reg 1 0% slv1_wr $end -$upscope $end -$scope module gpios $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 32 O% gpio_in [31:0] $end -$var wire 32 P% gpio_out [31:0] $end -$var wire 16 Q% mst_addr [15:0] $end -$var wire 1 <% mst_en $end -$var wire 4 R% mst_strb [3:0] $end -$var wire 32 S% mst_wdata [31:0] $end -$var wire 1 7% mst_wr $end -$var wire 32 T% register1 [31:0] $end -$var wire 1 H srst $end -$var reg 32 U% mst_rdata [31:0] $end -$var reg 1 :% mst_ready $end -$var reg 32 V% register0 [31:0] $end -$upscope $end -$scope module uart $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 W% busy $end -$var wire 16 X% mst_addr [15:0] $end -$var wire 1 5% mst_en $end -$var wire 4 Y% mst_strb [3:0] $end -$var wire 32 Z% mst_wdata [31:0] $end -$var wire 1 0% mst_wr $end -$var wire 1 H srst $end -$var wire 1 # uart_cts $end -$var wire 1 & uart_rts $end -$var wire 1 $ uart_rx $end -$var wire 1 [% uart_rx_sync $end -$var wire 1 \% tx_full $end -$var wire 1 ]% tx_empty $end -$var wire 8 ^% tx_data [7:0] $end -$var wire 1 _% rx_full $end -$var wire 1 `% rx_empty $end -$var wire 8 a% register3 [7:0] $end -$var wire 32 b% register0 [31:0] $end -$var reg 16 c% clock_divider [15:0] $end -$var reg 1 d% enable $end -$var reg 1 e% loopback_mode $end -$var reg 32 f% mst_rdata [31:0] $end -$var reg 1 3% mst_ready $end -$var reg 1 g% parity_en $end -$var reg 1 h% parity_mode $end -$var reg 8 i% register2 [7:0] $end -$var reg 16 j% rx_baud_cnt [15:0] $end -$var reg 4 k% rx_bit_cnt [3:0] $end -$var reg 8 l% rx_data [7:0] $end -$var reg 1 m% rx_pull $end -$var reg 1 n% rx_push $end -$var reg 4 o% rxfsm [3:0] $end -$var reg 1 p% stop_mode $end -$var reg 16 q% tx_baud_cnt [15:0] $end -$var reg 4 r% tx_bit_cnt [3:0] $end -$var reg 8 s% tx_data_srr [7:0] $end -$var reg 1 t% tx_pull $end -$var reg 1 u% tx_push $end -$var reg 4 v% txfsm [3:0] $end -$var reg 2 w% uart_rx_cdc [1:0] $end -$var reg 1 % uart_tx $end -$scope module rx_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 8 x% data_in [7:0] $end -$var wire 1 y% flush $end -$var wire 1 z% pass_thru $end -$var wire 1 m% pull $end -$var wire 1 n% push $end -$var wire 1 H srst $end -$var wire 1 {% wr_en $end -$var wire 1 |% full_flag $end -$var wire 1 _% full $end -$var wire 1 }% empty_flag $end -$var wire 1 `% empty $end -$var wire 8 ~% data_out [7:0] $end -$var wire 8 !& data_fifo [7:0] $end -$var reg 3 "& rdptr [2:0] $end -$var reg 3 #& wrptr [2:0] $end -$scope begin STORE_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 2 $& addr_in [1:0] $end -$var wire 2 %& addr_out [1:0] $end -$var wire 8 && data_in [7:0] $end -$var wire 1 {% wr_en $end -$var wire 8 '& data_out [7:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$scope module tx_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 8 (& data_in [7:0] $end -$var wire 1 )& flush $end -$var wire 1 *& pass_thru $end -$var wire 1 t% pull $end -$var wire 1 u% push $end -$var wire 1 H srst $end -$var wire 1 +& wr_en $end -$var wire 1 ,& full_flag $end -$var wire 1 \% full $end -$var wire 1 -& empty_flag $end -$var wire 1 ]% empty $end -$var wire 8 .& data_out [7:0] $end -$var wire 8 /& data_fifo [7:0] $end -$var reg 3 0& rdptr [2:0] $end -$var reg 3 1& wrptr [2:0] $end -$scope begin STORE_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 2 2& addr_in [1:0] $end -$var wire 2 3& addr_out [1:0] $end -$var wire 8 4& data_in [7:0] $end -$var wire 1 +& wr_en $end -$var wire 8 5& data_out [7:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope module isa_registers $end -$var wire 1 ; aclk $end -$var wire 32 6& alu_rs1_val [31:0] $end -$var wire 32 7& alu_rs2_val [31:0] $end -$var wire 1 < aresetn $end -$var wire 5 8& csr_rd_addr [4:0] $end -$var wire 32 9& csr_rd_val [31:0] $end -$var wire 1 G" csr_rd_wr $end -$var wire 5 :& csr_rs1_addr [4:0] $end -$var wire 32 ;& csr_rs1_val [31:0] $end -$var wire 5 <& ctrl_rd_addr [4:0] $end -$var wire 32 =& ctrl_rd_val [31:0] $end -$var wire 1 A" ctrl_rd_wr $end -$var wire 5 >& ctrl_rs1_addr [4:0] $end -$var wire 32 ?& ctrl_rs1_val [31:0] $end -$var wire 5 @& ctrl_rs2_addr [4:0] $end -$var wire 32 A& ctrl_rs2_val [31:0] $end -$var wire 32 B& memfy_rs1_val [31:0] $end -$var wire 32 C& memfy_rs2_val [31:0] $end -$var wire 1 H srst $end -$var wire 32 D& x0 [31:0] $end -$var wire 32 E& x1 [31:0] $end -$var wire 32 F& x10 [31:0] $end -$var wire 32 G& x11 [31:0] $end -$var wire 32 H& x12 [31:0] $end -$var wire 32 I& x13 [31:0] $end -$var wire 32 J& x14 [31:0] $end -$var wire 32 K& x15 [31:0] $end -$var wire 32 L& x16 [31:0] $end -$var wire 32 M& x17 [31:0] $end -$var wire 32 N& x18 [31:0] $end -$var wire 32 O& x19 [31:0] $end -$var wire 32 P& x2 [31:0] $end -$var wire 32 Q& x20 [31:0] $end -$var wire 32 R& x21 [31:0] $end -$var wire 32 S& x22 [31:0] $end -$var wire 32 T& x23 [31:0] $end -$var wire 32 U& x24 [31:0] $end -$var wire 32 V& x25 [31:0] $end -$var wire 32 W& x26 [31:0] $end -$var wire 32 X& x27 [31:0] $end -$var wire 32 Y& x28 [31:0] $end -$var wire 32 Z& x29 [31:0] $end -$var wire 32 [& x3 [31:0] $end -$var wire 32 \& x30 [31:0] $end -$var wire 32 ]& x31 [31:0] $end -$var wire 32 ^& x4 [31:0] $end -$var wire 32 _& x5 [31:0] $end -$var wire 32 `& x6 [31:0] $end -$var wire 32 a& x7 [31:0] $end -$var wire 32 b& x8 [31:0] $end -$var wire 32 c& x9 [31:0] $end -$var wire 5 d& memfy_rs2_addr [4:0] $end -$var wire 5 e& memfy_rs1_addr [4:0] $end -$var wire 1 } memfy_rd_wr $end -$var wire 32 f& memfy_rd_val [31:0] $end -$var wire 4 g& memfy_rd_strb [3:0] $end -$var wire 5 h& memfy_rd_addr [4:0] $end -$var wire 5 i& alu_rs2_addr [4:0] $end -$var wire 5 j& alu_rs1_addr [4:0] $end -$var wire 1 P" alu_rd_wr $end -$var wire 32 k& alu_rd_val [31:0] $end -$var wire 4 l& alu_rd_strb [3:0] $end -$var wire 5 m& alu_rd_addr [4:0] $end -$var integer 32 n& s [31:0] $end -$scope begin RegisterGeneration[0] $end -$upscope $end -$scope begin RegisterGeneration[1] $end -$upscope $end -$scope begin RegisterGeneration[2] $end -$upscope $end -$scope begin RegisterGeneration[3] $end -$upscope $end -$scope begin RegisterGeneration[4] $end -$upscope $end -$scope begin RegisterGeneration[5] $end -$upscope $end -$scope begin RegisterGeneration[6] $end -$upscope $end -$scope begin RegisterGeneration[7] $end -$upscope $end -$scope begin RegisterGeneration[8] $end -$upscope $end -$scope begin RegisterGeneration[9] $end -$upscope $end -$scope begin RegisterGeneration[10] $end -$upscope $end -$scope begin RegisterGeneration[11] $end -$upscope $end -$scope begin RegisterGeneration[12] $end -$upscope $end -$scope begin RegisterGeneration[13] $end -$upscope $end -$scope begin RegisterGeneration[14] $end -$upscope $end -$scope begin RegisterGeneration[15] $end -$upscope $end -$scope begin RegisterGeneration[16] $end -$upscope $end -$scope begin RegisterGeneration[17] $end -$upscope $end -$scope begin RegisterGeneration[18] $end -$upscope $end -$scope begin RegisterGeneration[19] $end -$upscope $end -$scope begin RegisterGeneration[20] $end -$upscope $end -$scope begin RegisterGeneration[21] $end -$upscope $end -$scope begin RegisterGeneration[22] $end -$upscope $end -$scope begin RegisterGeneration[23] $end -$upscope $end -$scope begin RegisterGeneration[24] $end -$upscope $end -$scope begin RegisterGeneration[25] $end -$upscope $end -$scope begin RegisterGeneration[26] $end -$upscope $end -$scope begin RegisterGeneration[27] $end -$upscope $end -$scope begin RegisterGeneration[28] $end -$upscope $end -$scope begin RegisterGeneration[29] $end -$upscope $end -$scope begin RegisterGeneration[30] $end -$upscope $end -$scope begin RegisterGeneration[31] $end -$upscope $end -$upscope $end -$scope module mem_router $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 32 o& data_mem_rdata [31:0] $end -$var wire 1 * data_mem_ready $end -$var wire 32 p& gpio_rdata [31:0] $end -$var wire 1 6" gpio_ready $end -$var wire 1 H srst $end -$var wire 1 r mst_wr $end -$var wire 32 q& mst_wdata [31:0] $end -$var wire 4 r& mst_strb [3:0] $end -$var wire 1 w mst_en $end -$var wire 16 s& mst_addr [15:0] $end -$var reg 16 t& data_mem_addr [15:0] $end -$var reg 1 , data_mem_en $end -$var reg 4 u& data_mem_strb [3:0] $end -$var reg 32 v& data_mem_wdata [31:0] $end -$var reg 1 ' data_mem_wr $end -$var reg 16 w& gpio_addr [15:0] $end -$var reg 1 9" gpio_en $end -$var reg 4 x& gpio_strb [3:0] $end -$var reg 32 y& gpio_wdata [31:0] $end -$var reg 1 3" gpio_wr $end -$var reg 32 z& mst_rdata [31:0] $end -$var reg 1 u mst_ready $end -$upscope $end -$scope module processing $end -$var wire 1 ; aclk $end -$var wire 1 {& alu_empty $end -$var wire 1 |& alu_en $end -$var wire 1 }& alu_ready $end -$var wire 32 ~& alu_rs1_val [31:0] $end -$var wire 32 !' alu_rs2_val [31:0] $end -$var wire 1 < aresetn $end -$var wire 32 "' mem_rdata [31:0] $end -$var wire 1 u mem_ready $end -$var wire 1 #' memfy_empty $end -$var wire 1 $' memfy_en $end -$var wire 32 %' memfy_rs1_val [31:0] $end -$var wire 32 &' memfy_rs2_val [31:0] $end -$var wire 1 q proc_empty $end -$var wire 1 p proc_en $end -$var wire 4 '' proc_fenceinfo [3:0] $end -$var wire 87 (' proc_instbus [86:0] $end -$var wire 1 n proc_ready $end -$var wire 1 H srst $end -$var wire 5 )' memfy_rs2_addr [4:0] $end -$var wire 5 *' memfy_rs1_addr [4:0] $end -$var wire 1 +' memfy_ready $end -$var wire 1 } memfy_rd_wr $end -$var wire 32 ,' memfy_rd_val [31:0] $end -$var wire 4 -' memfy_rd_strb [3:0] $end -$var wire 5 .' memfy_rd_addr [4:0] $end -$var wire 1 r mem_wr $end -$var wire 32 /' mem_wdata [31:0] $end -$var wire 4 0' mem_strb [3:0] $end -$var wire 1 w mem_en $end -$var wire 16 1' mem_addr [15:0] $end -$var wire 5 2' alu_rs2_addr [4:0] $end -$var wire 5 3' alu_rs1_addr [4:0] $end -$var wire 1 P" alu_rd_wr $end -$var wire 32 4' alu_rd_val [31:0] $end -$var wire 4 5' alu_rd_strb [3:0] $end -$var wire 5 6' alu_rd_addr [4:0] $end -$scope module alu $end -$var wire 32 7' _and [31:0] $end -$var wire 32 8' _andi [31:0] $end -$var wire 32 9' _or [31:0] $end -$var wire 32 :' _ori [31:0] $end -$var wire 32 ;' _xor [31:0] $end -$var wire 32 <' _xori [31:0] $end -$var wire 1 ; aclk $end -$var wire 1 {& alu_empty $end -$var wire 1 |& alu_en $end -$var wire 87 =' alu_instbus [86:0] $end -$var wire 5 >' alu_rd_addr [4:0] $end -$var wire 1 P" alu_rd_wr $end -$var wire 1 }& alu_ready $end -$var wire 5 ?' alu_rs1_addr [4:0] $end -$var wire 32 @' alu_rs1_val [31:0] $end -$var wire 5 A' alu_rs2_addr [4:0] $end -$var wire 32 B' alu_rs2_val [31:0] $end -$var wire 1 < aresetn $end -$var wire 1 H srst $end -$var wire 5 C' zimm [4:0] $end -$var wire 6 D' shamt [5:0] $end -$var wire 5 E' rs2 [4:0] $end -$var wire 5 F' rs1 [4:0] $end -$var wire 5 G' rd [4:0] $end -$var wire 1 H' r_i_opcode $end -$var wire 7 I' opcode [6:0] $end -$var wire 20 J' imm20 [19:0] $end -$var wire 12 K' imm12 [11:0] $end -$var wire 7 L' funct7 [6:0] $end -$var wire 3 M' funct3 [2:0] $end -$var wire 12 N' csr [11:0] $end -$var wire 32 O' alu_rd_val [31:0] $end -$var wire 4 P' alu_rd_strb [3:0] $end -$var wire 32 Q' _sub [31:0] $end -$var wire 32 R' _srli [31:0] $end -$var wire 32 S' _srl [31:0] $end -$var wire 32 T' _srai [31:0] $end -$var wire 32 U' _sra [31:0] $end -$var wire 32 V' _sltu [31:0] $end -$var wire 32 W' _sltiu [31:0] $end -$var wire 32 X' _slti [31:0] $end -$var wire 32 Y' _slt [31:0] $end -$var wire 32 Z' _slli [31:0] $end -$var wire 32 [' _sll [31:0] $end -$var wire 32 \' _addi [31:0] $end -$var wire 32 ]' _add [31:0] $end -$upscope $end -$scope module memfy $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 32 ^' mem_rdata [31:0] $end -$var wire 1 u mem_ready $end -$var wire 1 #' memfy_empty $end -$var wire 1 $' memfy_en $end -$var wire 4 _' memfy_fenceinfo [3:0] $end -$var wire 87 `' memfy_instbus [86:0] $end -$var wire 5 a' memfy_rd_addr [4:0] $end -$var wire 5 b' memfy_rs1_addr [4:0] $end -$var wire 32 c' memfy_rs1_val [31:0] $end -$var wire 5 d' memfy_rs2_addr [4:0] $end -$var wire 32 e' memfy_rs2_val [31:0] $end -$var wire 1 H srst $end -$var wire 5 f' zimm [4:0] $end -$var wire 6 g' shamt [5:0] $end -$var wire 5 h' rs2 [4:0] $end -$var wire 5 i' rs1 [4:0] $end -$var wire 5 j' rd [4:0] $end -$var wire 7 k' opcode [6:0] $end -$var wire 1 } memfy_rd_wr $end -$var wire 32 l' memfy_rd_val [31:0] $end -$var wire 4 m' memfy_rd_strb [3:0] $end -$var wire 1 n' mem_access $end -$var wire 1 o' is_unaligned $end -$var wire 20 p' imm20 [19:0] $end -$var wire 12 q' imm12 [11:0] $end -$var wire 7 r' funct7 [6:0] $end -$var wire 3 s' funct3 [2:0] $end -$var wire 12 t' csr [11:0] $end -$var wire 32 u' addr [31:0] $end -$var reg 3 v' funct3_r [2:0] $end -$var reg 16 w' mem_addr [15:0] $end -$var reg 1 w mem_en $end -$var reg 4 x' mem_strb [3:0] $end -$var reg 32 y' mem_wdata [31:0] $end -$var reg 1 r mem_wr $end -$var reg 1 +' memfy_ready $end -$var reg 4 z' next_strb [3:0] $end -$var reg 2 {' offset [1:0] $end -$var reg 7 |' opcode_r [6:0] $end -$var reg 5 }' rd_r [4:0] $end -$var reg 1 ~' two_phases $end -$scope function aligned_strb $end -$upscope $end -$scope function get_aligned_mem_data $end -$upscope $end -$scope function get_aligned_rd_data $end -$upscope $end -$scope function get_mem_strb $end -$upscope $end -$scope function get_rd_strb $end -$upscope $end -$scope function get_rd_val $end -$upscope $end -$upscope $end -$upscope $end -$scope module statistic $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 1 !( debug $end -$var wire 1 = enable $end -$var wire 1 4 inst_en $end -$var wire 1 H srst $end -$var wire 1 5 inst_ready $end -$var reg 32 "( inst_served [31:0] $end -$var reg 32 #( inst_wait [31:0] $end -$var reg 32 $( uptime [31:0] $end -$upscope $end -$upscope $end -$scope module inst_axi4l_ram $end -$var wire 1 ; aclk $end -$var wire 16 %( araddr [15:0] $end -$var wire 1 < aresetn $end -$var wire 8 &( arid [7:0] $end -$var wire 3 '( arprot [2:0] $end -$var wire 1 5 arready $end -$var wire 1 4 arvalid $end -$var wire 16 (( awaddr [15:0] $end -$var wire 8 )( awid [7:0] $end -$var wire 3 *( awprot [2:0] $end -$var wire 1 B awvalid $end -$var wire 1 C bready $end -$var wire 1 +( raddr_pull $end -$var wire 8 ,( rid [7:0] $end -$var wire 1 ! rready $end -$var wire 2 -( rresp [1:0] $end -$var wire 1 H srst $end -$var wire 128 .( wdata [127:0] $end -$var wire 8 /( wid [7:0] $end -$var wire 1 F wready $end -$var wire 1 G wvalid $end -$var wire 128 0( rdata [127:0] $end -$var wire 1 1( raddr_full $end -$var wire 1 2( raddr_empty $end -$var wire 8 3( arid_s [7:0] $end -$var wire 16 4( araddr_s [15:0] $end -$var reg 1 3 awready $end -$var reg 2 5( bresp [1:0] $end -$var reg 1 1 bvalid $end -$var reg 1 . rvalid $end -$var integer 32 6( random [31:0] $end -$var integer 32 7( rcounter [31:0] $end -$scope module arch_fifo $end -$var wire 1 ; aclk $end -$var wire 1 < aresetn $end -$var wire 24 8( data_in [23:0] $end -$var wire 1 9( flush $end -$var wire 1 :( pass_thru $end -$var wire 1 +( pull $end -$var wire 1 4 push $end -$var wire 1 H srst $end -$var wire 1 ;( wr_en $end -$var wire 1 <( full_flag $end -$var wire 1 1( full $end -$var wire 1 =( empty_flag $end -$var wire 1 2( empty $end -$var wire 24 >( data_out [23:0] $end -$var wire 24 ?( data_fifo [23:0] $end -$var reg 4 @( rdptr [3:0] $end -$var reg 4 A( wrptr [3:0] $end -$scope begin STORE_MODE $end -$upscope $end -$scope module fifo_ram $end -$var wire 1 ; aclk $end -$var wire 3 B( addr_in [2:0] $end -$var wire 3 C( addr_out [2:0] $end -$var wire 24 D( data_in [23:0] $end -$var wire 1 ;( wr_en $end -$var wire 24 E( data_out [23:0] $end -$scope begin genblk2 $end -$upscope $end -$upscope $end -$upscope $end -$upscope $end -$scope task run $end -$var reg 1 F( msg $end -$upscope $end -$scope task setup $end -$var reg 1 G( msg $end -$upscope $end -$scope task teardown $end -$var reg 1 H( msg $end -$upscope $end -$upscope $end -$enddefinitions $end -#0 -$dumpvars -xH( -0G( -0F( -bx E( -b0 D( -b0 C( -b0 B( -b0 A( -b0 @( -bx ?( -bx >( -1=( -0<( -0;( -0:( -09( -b0 8( -b0 7( -b1 6( -bx 5( -bx 4( -bx 3( -12( -01( -bx 0( -bx /( -bx .( -b0 -( -bx ,( -0+( -bx *( -bx )( -bx (( -b0 '( -b0 &( -b0 %( -b0 $( -b0 #( -b0 "( -0!( -0~' -b0 }' -b0 |' -b0 {' -b0 z' -b0 y' -b0 x' -b0 w' -b0 v' -bx u' -bx t' -bx s' -bx r' -bx q' -bx p' -xo' -xn' -b1 m' -b0 l' -bx k' -bx j' -bx i' -bx h' -bx g' -bx f' -bx e' -bx d' -bx c' -bx b' -b0 a' -bx `' -b0 _' -b0 ^' -bx ]' -bx \' -bx [' -bx Z' -b0x Y' -b0x X' -b0x W' -b0x V' -bx U' -bx T' -bx S' -bx R' -bx Q' -bx P' -bx O' -bx N' -bx M' -bx L' -bx K' -bx J' -bx I' -xH' -bx G' -bx F' -bx E' -bx D' -bx C' -bx B' -bx A' -bx @' -bx ?' -bx >' -bx =' -bx <' -bx ;' -bx :' -bx 9' -bx 8' -bx 7' -bx 6' -bx 5' -bx 4' -bx 3' -bx 2' -b0 1' -b0 0' -b0 /' -b0 .' -b1 -' -b0 ,' -0+' -bx *' -bx )' -bx (' -b0 '' -bx &' -bx %' -0$' -1#' -b0 "' -bx !' -bx ~& -1}& -0|& -0{& -b0 z& -b0 y& -b0 x& -b0 w& -b0 v& -b0 u& -b0 t& -b0 s& -b0 r& -b0 q& -b0 p& -bx o& -bx n& -bx m& -bx l& -bx k& -bx j& -bx i& -b0 h& -b1 g& -b0 f& -bx e& -bx d& -b0 c& -b0 b& -b0 a& -b0 `& -b0 _& -b0 ^& -b0 ]& -b0 \& -b0 [& -b0 Z& -b0 Y& -b0 X& -b0 W& -b0 V& -b0 U& -b0 T& -b0 S& -b0 R& -b0 Q& -b0 P& -b0 O& -b0 N& -b0 M& -b0 L& -b0 K& -b0 J& -b0 I& -b0 H& -b0 G& -b0 F& -b0 E& -b0 D& -bx C& -bx B& -bx A& -bx @& -bx ?& -bx >& -bx000000000000 =& -bx <& -bx ;& -bx :& -b0 9& -b0 8& -bx 7& -bx 6& -bx 5& -b0 4& -b0 3& -b0 2& -b0 1& -b0 0& -bx /& -bx .& -1-& -0,& -0+& -0*& -0)& -b0 (& -bx '& -b0 && -b0 %& -b0 $& -b0 #& -b0 "& -bx !& -bx ~% -1}% -0|% -0{% -0z% -0y% -b0 x% -b0 w% -b0 v% -0u% -0t% -b0 s% -b0 r% -b0 q% -0p% -b0 o% -0n% -0m% -b0 l% -b0 k% -b0 j% -b0 i% -0h% -0g% -b0 f% -0e% -0d% -b100 c% -b110101000000000 b% -bx a% -1`% -0_% -bx ^% -1]% -0\% -0[% -b0 Z% -b0 Y% -b0 X% -0W% -b0 V% -b0 U% -bx T% -b0 S% -b0 R% -b0 Q% -b0 P% -bx O% -b0 N% -b0 M% -b0 L% -b0 K% -b0 J% -b0 I% -b0 H% -b0 G% -b0 F% -b0 E% -b0 D% -b0 C% -b0 B% -b0 A% -b0 @% -b0 ?% -b0 >% -b0 =% -0<% -b0 ;% -0:% -b0 9% -b0 8% -07% -b0 6% -05% -b0 4% -03% -b0 2% -b0 1% -00% -bx /% -b1000000000000 .% -b0 -% -b0 ,% -b0 +% -b0 *% -b0 )% -bx (% -b0 '% -b0 &% -0%% -b0 $% -b0 #% -bx "% -0!% -bx ~$ -bx }$ -bx |$ -bx {$ -bx z$ -bx y$ -bx x$ -bx w$ -bx v$ -bx u$ -bx t$ -bx s$ -bx r$ -bx q$ -b0 p$ -b0 o$ -b0 n$ -b0 m$ -b0 l$ -bx k$ -bx j$ -1i$ -0h$ -0g$ -0f$ -b0 e$ -bx d$ -bx c$ -bx b$ -bx a$ -bx `$ -bx _$ -bx ^$ -bx ]$ -bx \$ -bx [$ -bx Z$ -bx Y$ -bx X$ -bx W$ -bx V$ -bx U$ -b0 T$ -b0 S$ -b0 R$ -0Q$ -b0 P$ -b0 O$ -b0 N$ -xM$ -xL$ -xK$ -xJ$ -xI$ -xH$ -xG$ -xF$ -xE$ -xD$ -bx C$ -bx000000000000 B$ -bx A$ -bx @$ -bx ?$ -bx >$ -1=$ -0<$ -bx ;$ -bx :$ -x9$ -bx 8$ -bx 7$ -x6$ -bx 5$ -x4$ -x3$ -x2$ -bx 1$ -b0 0$ -bx /$ -bx .$ -bx -$ -bx ,$ -b100 +$ -bx *$ -bx )$ -x($ -0'$ -bx &$ -bx %$ -bx $$ -bx #$ -bx "$ -bx !$ -b0 ~# -b0 }# -b0 |# -0{# -b0 z# -xy# -bx x# -bx w# -bx v# -bx u# -b0 t# -0s# -b0 r# -b0 q# -b0 p# -bx o# -bx n# -b0 m# -b100 l# -b0 k# -b0 j# -b0 i# -b0 h# -b0 g# -b0 f# -b0 e# -b1 d# -b0 c# -b0 b# -b0 a# -b0 `# -bx _# -bx ^# -b0 ]# -0\# -0[# -b0 Z# -b0 Y# -bx X# -bx W# -1V# -0U# -0T# -0S# -0R# -b0 Q# -bx P# -b0 O# -b0 N# -b0 M# -b0 L# -b0 K# -bx J# -bx I# -1H# -0G# -0F# -0E# -0D# -b0 C# -b0 B# -0A# -0@# -b0 ?# -b0 ># -0=# -b0 <# -b0 ;# -b0 :# -bx 9# -bx 8# -bx 7# -bx 6# -bx 5# -bx 4# -b0 3# -b0 2# -11# -10# -0/# -0.# -0-# -b0 ,# -b0 +# -b0 *# -b0 )# -b0 (# -b0 '# -b1000000000 &# -b0 %# -bx $# -bx ## -bx "# -bx !# -x~" -bx }" -b0 |" -bx {" -b0 z" -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -b0 x" -0w" -0v" -bx u" -b0 t" -0s" -b0 r" -bx q" -0p" -b0 o" -b0 n" -b0 m" -b0 l" -0k" -0j" -b0 i" -b0 h" -b0 g" -bx f" -bx e" -0d" -b0 c" -b0 b" -b0 a" -1`" -0_" -b0 ^" -1]" -b100 \" -b0 [" -b0 Z" -b0 Y" -b0 X" -b0 W" -b1 V" -b0 U" -b0 T" -bx S" -bx R" -bx Q" -0P" -bx O" -bx N" -bx M" -bx L" -0K" -bx J" -b0 I" -b0 H" -0G" -0F" -bx E" -bx D" -bx C" -bx000000000000 B" -0A" -bx @" -bx ?" -bx >" -bx =" -0<" -0;" -b0 :" -09" -b0 8" -b0 7" -06" -b0 5" -b0 4" -03" -b0 2" -b0 1" -b0 0" -b0 /" -b0 ." -1-" -0," -bx +" -b0 *" -bx )" -b0 (" -1'" -0&" -b0 %" -b0 $" -b0 #" -b0 "" -b1 !" -b0 ~ -0} -bx | -bx { -bx z -bx y -b0 x -0w -b0 v -0u -b0 t -b0 s -0r -0q -0p -bx o -0n -b0 m -bx l -b0 k -b0 j -b0 i -bx h -bx g -bx f -bx e -bx d -b0 c -b0 b -b0 a -b0 ` -b0 _ -b0 ^ -0] -b0 \ -bx [ -b0 Z -b0 Y -bx X -0W -b0 V -b0 U -0T -b0 S -b0 R -b0 Q -b0 P -b0 O -b0 N -b0 M -b0 L -b0 K -b0 J -b0 I -0H -0G -xF -bx E -bx D -0C -0B -bx A -bx @ -bx ? -bx > -0= -0< -0; -0: -b0 9 -b0 8 -b0 7 -b0 6 -15 -04 -x3 -bx 2 -x1 -bx 0 -bx / -0. -b0 - -0, -bx + -0* -b0 ) -b0 ( -0' -1& -x% -x$ -1# -b0 " -1! -$end -#1000 -b100 6( -1; -#2000 -0; -#3000 -1; -#4000 -0; -#5000 -1; -#6000 -0; -#7000 -b0 6( -1; -#8000 -0; -#9000 -1< -1; -#10000 -0; -#11000 -1s" -0~" -b0 }" -b0 "# -bx B" -bx B$ -bx =& -b0 ## -b0 !# -b0 u" -b0 $# -b0 5# -b0 4# -0D$ -0E$ -b0 9# -b0 7# -01# -b0 I# -0E# -1F# -bx 0$ -1n -bx (" -bx l" -bx *# -bx }# -bx ;# -bx Q# -bx ]# -bx :# -1@# -b1 $( -b1 P$ -1," -1+' -1$ -1% -b1 r% -b0x w% -b1 k% -1F" -1; -#12000 -0; -#13000 -b1 !# -b100 u" -b100 $# -b100 5# -b100 9# -1S# -x[% -b100 I# -bx1 w% -b100 C# -b100 O# -b100 1" -b100 o" -b100 3# -b100 N$ -b10 $( -1v" -b1 B# -b0 (" -b0 l" -b0 *# -b0 }# -b0 ;# -b0 Q# -b0 ]# -b0 :# -1; -#14000 -0; -#15000 -0s" -b0 !# -bx 7# -1E# -b0 u" -b0 $# -b0 5# -b0 8# -b0 6# -00# -1;( -11# -bx 9# -b0 W# -0V# -1[# -0F# -bx I# -1[% -b0 X# -b0 ^# -b1 Z# -b100 Q# -b100 ]# -b100 :# -b10 B# -14 -1_" -0@# -b11 $( -b1000 C# -b1000 O# -b1000 1" -b1000 o" -b1000 3# -b1000 N$ -b11 w% -1; -#16000 -0; -#17000 -b100000000000000101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 y" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 q" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 {" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 _# -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 0 -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 +" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 f" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 o# -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 0( -b1000 9# -b0 7# -0S# -0;( -01# -b1000 I# -b0 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b1 B( -1.# -1U# -0[# -0H# -b1 M# -b1000 J# -b1000 P# -b0 >( -b0 ?( -b0 E( -b1 A( -b1100 C# -b1100 O# -b1100 1" -b1100 o" -b1100 3# -b1100 N$ -b1 "( -b100 $( -0v" -04 -0_" -b0 Q# -b0 ]# -b0 :# -b10 Z# -b1 L# -1; -#18000 -0; -#19000 -b10 M# -1+( -1p" -b10 L# -b101 $( -b10000 C# -b10000 O# -b10000 1" -b10000 o" -b10000 3# -b10000 N$ -1. -b1 M -1; -#20000 -0; -#21000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b1 C( -b11 M# -0. -b1 @( -b10100 C# -b10100 O# -b10100 1" -b10100 o" -b10100 3# -b10100 N$ -b110 $( -b11 B# -1A# -b11 L# -b1 R -1; -#22000 -0; -#23000 -b1 !# -b100 u" -b100 $# -b100 5# -b100 8# -1g$ -b100 W# -b100 M# -0.# -0U# -b100 X# -b100 ^# -1\# -1{# -b100 L# -b1 Y# -b10110111 *" -b10110111 m" -b10110111 )# -b10110111 |# -b10110111 e$ -b10110111 p$ -b10110111 t" -b10110111 %# -b10110111 '# -1&" -1w" -b111 $( -b11000 C# -b11000 O# -b11000 1" -b11000 o" -b11000 3# -b11000 N$ -b10 R -1; -#24000 -0; -#25000 -b0 Q" -b0 k& -b0 4' -b0 O' -19$ -1A" -0s" -b0 R" -b0 l& -b0 5' -b0 P' -0!% -b10 !# -b0 [' -b0 S' -b0 U' -0o' -0H' -b0 X' -b0 W' -0y# -b0 B" -b0 B$ -b0 =& -1'$ -b1000 u" -b1000 $# -b1000 5# -b0 Z' -b0 R' -b0 T' -b0 Y' -b0 V' -b0 ;' -b0 9' -b0 7' -0n' -b0 \' -b0 <' -b0 :' -b0 8' -b0 u' -b100 0$ -0K" -b100 8# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b1 S" -b1 m& -b1 6' -b1 >' -b1 G' -b1 j' -b1 y$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b0 ]' -b0 Q' -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 N" -b0 6& -b0 ~& -b0 @' -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 { -b0 B& -b0 %' -b0 c' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 D" -b0 w$ -b0 ;& -b0 E" -b0 s$ -b0 :& -b0 x$ -b0 L' -b0 r' -b0 }$ -b0 M' -b0 s' -b0 ~$ -b110111 I' -b110111 k' -b110111 z$ -b0 -$ -b0 J' -b0 p' -b0 {$ -b0 .$ -b0 ,$ -b0 K' -b0 q' -b0 |$ -1T# -10# -b100 W# -b0 "$ -b0 c$ -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b1 C" -b1 v# -b1 <& -b1 &$ -b1 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 ?" -b0 A$ -b0 ?& -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b0 :$ -b0 Z$ -b0 ;$ -b0 Y$ -b110111 1$ -b110111 ]$ -b0 /$ -b0 7$ -b0 \$ -b1000000000000000000000110111 J" -b1000000000000000000000110111 u# -b1000000000000000000000110111 r$ -b1000000000000000000000110111 o -b1000000000000000000000110111 )$ -b1000000000000000000000110111 (' -b1000000000000000000000110111 =' -b1000000000000000000000110111 `' -b0 8$ -b0 [$ -06$ -0($ -b0 >$ -b0 X$ -b0 ?$ -b0 W$ -0F$ -03$ -04$ -0M$ -12$ -0=$ -0i$ -b1 n$ -1V# -b0 X# -b0 ^# -0\# -b101 M# -b10110111 5$ -b10110111 U$ -b10110111 j$ -b10110111 k$ -b10110111 q$ -b11100 C# -b11100 O# -b11100 1" -b11100 o" -b11100 3# -b11100 N$ -b1 m$ -b1000 $( -b100110111 *" -b100110111 m" -b100110111 )# -b100110111 |# -b100110111 e$ -b100110111 p$ -b100110111 t" -b100110111 %# -b100110111 '# -b100 Q# -b100 ]# -b100 :# -b10 Y# -b101 L# -b11 R -1; -#26000 -0; -#27000 -1s" -b1000 0$ -0g$ -b10 S" -b10 m& -b10 6' -b10 >' -b10 G' -b10 j' -b10 y$ -b0 8# -b10 C" -b10 v# -b10 <& -b10000000000000000000000110111 J" -b10000000000000000000000110111 u# -b10000000000000000000000110111 r$ -b10000000000000000000000110111 o -b10000000000000000000000110111 )$ -b10000000000000000000000110111 (' -b10000000000000000000000110111 =' -b10000000000000000000000110111 `' -b10 &$ -b10 _$ -b110 M# -b0 W# -0T# -0{# -b10 n$ -b100110111 5$ -b100110111 U$ -b100110111 j$ -b100110111 k$ -b100110111 q$ -b1 o$ -b110 L# -b1000 Q# -b1000 ]# -b1000 :# -b1 B# -0A# -1@# -0&" -0w" -b1001 $( -b10 m$ -b1 l$ -b1000 +$ -b100 /$ -b100 -$ -b100 .$ -b100 T$ -b100000 C# -b100000 O# -b100000 1" -b100000 o" -b100000 3# -b100000 N$ -b100 R -1; -#28000 -0; -#29000 -x9$ -xo' -bx R" -bx l& -bx 5' -bx P' -0A" -bx [' -bx S' -bx U' -xH' -bx Q" -bx k& -bx 4' -bx O' -b1000 B" -b1000 B$ -b1000 =& -b11 !# -b1000 0$ -0'$ -bx Z' -bx R' -bx T' -bx <' -bx :' -bx ;' -bx 9' -bx 7' -b0x X' -b0x W' -b0x Y' -b0x V' -xn' -b1100 u" -b1100 $# -b1100 5# -bx D' -bx g' -bx u$ -bx N' -bx t' -bx "% -bx C' -bx f' -bx t$ -bx S" -bx m& -bx 6' -bx >' -bx G' -bx j' -bx y$ -bx L" -bx 7& -bx !' -bx B' -bx M" -bx i& -bx 2' -bx A' -bx E' -bx y -bx C& -bx &' -bx e' -bx z -bx d& -bx )' -bx d' -bx h' -bx v$ -xJ$ -xH$ -xK$ -xI$ -xG$ -xL$ -bx \' -bx ]' -bx Q' -bx N" -bx 6& -bx ~& -bx @' -bx O" -bx j& -bx 3' -bx ?' -bx F' -bx u' -bx { -bx B& -bx %' -bx c' -bx | -bx e& -bx *' -bx b' -bx i' -bx D" -bx w$ -bx ;& -bx E" -bx s$ -bx :& -bx x$ -bx L' -bx r' -bx }$ -bx M' -bx s' -bx ~$ -bx I' -bx k' -bx z$ -1g$ -b1100 9# -bx "$ -bx c$ -bx *$ -bx ^$ -bx #$ -bx b$ -bx C$ -bx V$ -bx !$ -bx d$ -bx C" -bx v# -bx <& -bx &$ -bx _$ -bx =" -bx @$ -bx A& -bx >" -bx x# -bx @& -bx $$ -bx a$ -bx ,$ -bx ?" -bx A$ -bx ?& -bx @" -bx w# -bx >& -bx %$ -bx `$ -bx :$ -bx Z$ -bx ;$ -bx Y$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx J" -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx u# -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx r$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx o -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx )$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx =' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx `' -bx 1$ -bx ]$ -16$ -02$ -b1100 I# -1=$ -1i$ -bx 5$ -bx U$ -bx j$ -bx k$ -bx q$ -b10 o$ -1{# -b1100 J# -b1100 P# -b1 N# -b111 M# -b1100 +$ -b1000 /$ -b1000 -$ -b1000 .$ -b1000 T$ -b100100 C# -b100100 O# -b100100 1" -b100100 o" -b100100 3# -b100100 N$ -b10 l$ -b1010 $( -b110110111 *" -b110110111 m" -b110110111 )# -b110110111 |# -b110110111 e$ -b110110111 p$ -b110110111 t" -b110110111 %# -b110110111 '# -1&" -1w" -b1 K# -b111 L# -b101 R -1; -#30000 -0; -#31000 -b0 Q" -b0 k& -b0 4' -b0 O' -19$ -1A" -0~" -b0 "# -b0 R" -b0 l& -b0 5' -b0 P' -b1100 0$ -b1 ## -b0 !# -b0 [' -b0 S' -b0 U' -0o' -0H' -b0 B" -b0 B$ -b0 =& -b10000 u" -b10000 $# -b10000 5# -1'$ -b0 Z' -b0 R' -b0 T' -b0 Y' -b0 V' -b0 <' -b0 :' -b0 ;' -b0 9' -b0 7' -b0 X' -b0 W' -0n' -b10000 9# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b11 S" -b11 m& -b11 6' -b11 >' -b11 G' -b11 j' -b11 y$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b0 ]' -b0 Q' -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 \' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 D" -b0 w$ -b0 ;& -b0 E" -b0 s$ -b0 :& -b0 x$ -b0 L' -b0 r' -b0 }$ -b0 M' -b0 s' -b0 ~$ -b110111 I' -b110111 k' -b110111 z$ -b10000 I# -b0 "$ -b0 c$ -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b11 C" -b11 v# -b11 <& -b11 &$ -b11 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b0 :$ -b0 Z$ -b0 ;$ -b0 Y$ -b11000000000000000000000110111 J" -b11000000000000000000000110111 u# -b11000000000000000000000110111 r$ -b11000000000000000000000110111 o -b11000000000000000000000110111 )$ -b11000000000000000000000110111 (' -b11000000000000000000000110111 =' -b11000000000000000000000110111 `' -b110111 1$ -b110111 ]$ -06$ -12$ -b0 M# -b10000 J# -b10000 P# -b10 N# -0=$ -0i$ -b11 n$ -b110110111 5$ -b110110111 U$ -b110110111 j$ -b110110111 k$ -b110110111 q$ -b1000 L# -b10 K# -b1100 Q# -b1100 ]# -b1100 :# -b101011000010110010011 *" -b101011000010110010011 m" -b101011000010110010011 )# -b101011000010110010011 |# -b101011000010110010011 e$ -b101011000010110010011 p$ -b101011000010110010011 t" -b101011000010110010011 %# -b101011000010110010011 '# -b1011 $( -b11 m$ -b101000 C# -b101000 O# -b101000 1" -b101000 o" -b101000 3# -b101000 N$ -b110 R -1; -#32000 -0; -#33000 -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -0A" -1H' -b1 Q" -b1 k& -b1 4' -b1 O' -1p -b10000 B" -b10000 B$ -b10000 =& -b1 !# -b10000 0$ -b1 X' -b1 <' -b1 :' -b10100 u" -b10100 $# -b10100 5# -b1 D' -b1 g' -b1 u$ -b1 N' -b1 t' -b1 "% -b1011 C' -b1011 f' -b1011 t$ -b1011 S" -b1011 m& -b1011 6' -b1011 >' -b1011 G' -b1011 j' -b1011 y$ -b1 M" -b1 i& -b1 2' -b1 A' -b1 E' -b1 z -b1 d& -b1 )' -b1 d' -b1 h' -b1 v$ -b1011 O" -b1011 j& -b1011 3' -b1011 ?' -b1011 F' -b1011 | -b1011 e& -b1011 *' -b1011 b' -b1011 i' -b1011 E" -b1011 s$ -b1011 :& -b1011 x$ -b10011 I' -b10011 k' -b10011 z$ -b1 \' -b1 K' -b1 u' -b1 q' -b1 |$ -0g$ -b10100 9# -b1 *$ -b1 ^$ -b1 #$ -b1 b$ -b1 C$ -b1 V$ -b1011 !$ -b1011 d$ -b1011 C" -b1011 v# -b1011 <& -b1011 &$ -b1011 _$ -b1 >" -b1 x# -b1 @& -b1 $$ -b1 a$ -b1011 @" -b1011 w# -b1011 >& -b1011 %$ -b1011 `$ -b10011 1$ -b10011 ]$ -b1 ,$ -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 J" -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 u# -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 r$ -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 o -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 )$ -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 (' -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 =' -b1000000000001000000000000000000000000000000010101101011000010101100000000000010011 `' -b1 8$ -b1 [$ -1($ -02$ -1S# -b10100 I# -b101011000010110010011 5$ -b101011000010110010011 U$ -b101011000010110010011 j$ -b101011000010110010011 k$ -b101011000010110010011 q$ -b11 o$ -b100 n$ -0{# -b10100 J# -b10100 P# -b11 N# -b1 M# -b10000 +$ -b1100 /$ -b1100 -$ -b1110 .$ -b1100 T$ -b101100 C# -b101100 O# -b101100 1" -b101100 o" -b101100 3# -b101100 N$ -b11 l$ -b100 m$ -b1100 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b10000 Q# -b10000 ]# -b10000 :# -b11 K# -b1001 L# -b111 R -1; -#34000 -0; -#35000 -b10000 B" -b10000 B$ -b10000 =& -b10000 0$ -x9$ -bx R" -bx l& -bx 5' -bx P' -0P" -0|& -0$' -b0 !# -bx [' -bx S' -bx U' -xo' -xH' -0p -b10000 u" -b10000 $# -b10000 5# -0s" -0'$ -bx R' -bx T' -bx 7' -b0x Y' -b0x V' -xn' -b0x W' -bx :' -b11000 9# -bx D' -bx g' -bx u$ -bx N' -bx t' -bx "% -bx C' -bx f' -bx t$ -bx S" -bx m& -bx 6' -bx >' -bx G' -bx j' -bx y$ -bx L" -bx 7& -bx !' -bx B' -bx M" -bx i& -bx 2' -bx A' -bx E' -bx y -bx C& -bx &' -bx e' -bx z -bx d& -bx )' -bx d' -bx h' -bx v$ -xJ$ -xH$ -xK$ -xI$ -bx O" -bx j& -bx 3' -bx ?' -bx F' -bx | -bx e& -bx *' -bx b' -bx i' -bx E" -bx s$ -bx :& -bx x$ -bx L' -bx r' -bx }$ -bx M' -bx s' -bx ~$ -bx I' -bx k' -bx z$ -b0 K' -b0 q' -b0 |$ -b10000 8# -b11000 I# -00# -b1 z" -1;( -bx Z' -bx "$ -bx c$ -bx *$ -bx ^$ -bx #$ -bx b$ -bx C$ -bx V$ -bx !$ -bx d$ -bx C" -bx v# -bx <& -bx &$ -bx _$ -bx =" -bx @$ -bx A& -bx >" -bx x# -bx @& -bx $$ -bx a$ -bx @" -bx w# -bx >& -bx %$ -bx `$ -bx :$ -bx Z$ -bx ;$ -bx Y$ -bx 1$ -bx ]$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx J" -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx u# -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx r$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx o -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx )$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx =' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx `' -b0 8$ -b0 [$ -16$ -0($ -b10000 W# -b10 M# -b11000 J# -b11000 P# -b100 N# -0V# -1[# -b10000 r" -b10000 |" -b10000 p# -xG$ -xL$ -bx <' -b0 8' -bx ;' -bx 9' -bx Q" -bx k& -bx 4' -bx O' -b0x X' -1=$ -1i$ -bx 5$ -bx U$ -bx j$ -bx k$ -bx q$ -b100 o$ -b10000 X# -b10000 ^# -b1010 L# -b100 K# -b11 Z# -b10100 Q# -b10100 ]# -b10100 :# -b10 B# -b10000 8( -b10000 D( -b10000 8 -b10000 2" -b10000 i" -b10000 c# -b10000 %( -b10000 c" -b10000 ># -b10000 `# -14 -1_" -0@# -b1101 $( -bx ,$ -bx ?" -bx A$ -bx ?& -bx \' -bx ]' -bx Q' -bx N" -bx 6& -bx ~& -bx @' -bx u' -bx { -bx B& -bx %' -bx c' -bx D" -bx w$ -bx ;& -b1 G& -b100 l$ -b10100 +$ -b10000 /$ -b10000 -$ -b10000 .$ -b10000 T$ -b110000 C# -b110000 O# -b110000 1" -b110000 o" -b110000 3# -b110000 N$ -b1000 R -b100 n& -1; -#36000 -0; -#37000 -b100000000000000000000000000010010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 y" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 q" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 {" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 _# -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 0 -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 +" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 f" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 o# -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 0( -0S# -0;( -b10000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b10 B( -1.# -1U# -0[# -b11 M# -b10000 >( -b10000 ?( -b10000 E( -b10 A( -b110100 C# -b110100 O# -b110100 1" -b110100 o" -b110100 3# -b110100 N$ -b10 "( -b1110 $( -0v" -04 -0_" -b10000 Q# -b10000 ]# -b10000 :# -b0 Z# -b1011 L# -b1001 R -1; -#38000 -0; -#39000 -0E# -0-" -1/# -1G# -b100 M# -1+( -1p" -b1100 L# -b1111 $( -b111000 C# -b111000 O# -b111000 1" -b111000 o" -b111000 3# -b111000 N$ -1. -b1010 R -1; -#40000 -0; -#41000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b10010111000000000000111110001111100100110000000000000000000101101011011100000010111001100000011000010011 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b10 C( -0. -b10 @( -b10000 $( -b11 B# -1A# -b1011 R -1; -#42000 -0; -#43000 -b1 !# -b10100 u" -b10100 $# -b10100 5# -b10100 8# -1g$ -b10100 W# -0.# -0U# -b10100 X# -b10100 ^# -1\# -1{# -b11 Y# -b10111001100000011000010011 *" -b10111001100000011000010011 m" -b10111001100000011000010011 )# -b10111001100000011000010011 |# -b10111001100000011000010011 e$ -b10111001100000011000010011 p$ -b10111001100000011000010011 t" -b10111001100000011000010011 %# -b10111001100000011000010011 '# -1&" -1w" -b10001 $( -b1100 R -1; -#44000 -0; -#45000 -b10100 B" -b10100 B$ -b10100 =& -b10100 0$ -19$ -0s" -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -b10 !# -b0 [' -b0 S' -b0 U' -0o' -1H' -1p -1'$ -b11000 u" -b11000 $# -b11000 5# -b0 Z' -b0 R' -b0 T' -b0 Y' -b0 V' -b0 ;' -b0 9' -b0 7' -b101110 Q" -b101110 k& -b101110 4' -b101110 O' -b1 X' -b0 W' -0n' -b101110 <' -b101110 :' -b10100 8# -b101110 D' -b101110 g' -b101110 u$ -b101110 N' -b101110 t' -b101110 "% -b1100 C' -b1100 f' -b1100 t$ -b1100 S" -b1100 m& -b1100 6' -b1100 >' -b1100 G' -b1100 j' -b1100 y$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b0 ]' -b0 Q' -b0 L" -b0 7& -b0 !' -b0 B' -b1110 M" -b1110 i& -b1110 2' -b1110 A' -b1110 E' -b0 y -b0 C& -b0 &' -b0 e' -b1110 z -b1110 d& -b1110 )' -b1110 d' -b1110 h' -b1110 v$ -b101110 \' -b0 N" -b0 6& -b0 ~& -b0 @' -b1100 O" -b1100 j& -b1100 3' -b1100 ?' -b1100 F' -b101110 u' -b0 { -b0 B& -b0 %' -b0 c' -b1100 | -b1100 e& -b1100 *' -b1100 b' -b1100 i' -b0 D" -b0 w$ -b0 ;& -b1100 E" -b1100 s$ -b1100 :& -b1100 x$ -b1 L' -b1 r' -b1 }$ -b0 M' -b0 s' -b0 ~$ -b10011 I' -b10011 k' -b10011 z$ -b101110 K' -b101110 q' -b101110 |$ -1T# -10# -b10100 W# -b10 "$ -b10 c$ -b1110 *$ -b1110 ^$ -b101110 #$ -b101110 b$ -b101110 C$ -b101110 V$ -b1100 !$ -b1100 d$ -b1100 C" -b1100 v# -b1100 <& -b1100 &$ -b1100 _$ -b0 =" -b0 @$ -b0 A& -b1110 >" -b1110 x# -b1110 @& -b1110 $$ -b1110 a$ -b101110 ,$ -b0 ?" -b0 A$ -b0 ?& -b1100 @" -b1100 w# -b1100 >& -b1100 %$ -b1100 `$ -b1 :$ -b1 Z$ -b0 ;$ -b0 Y$ -b10011 1$ -b10011 ]$ -b1101100 .$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 J" -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 u# -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 r$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 o -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 )$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 (' -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 =' -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 `' -b101110 8$ -b101110 [$ -06$ -1($ -0=$ -0i$ -b101 n$ -1V# -b10000 X# -b10000 ^# -0\# -b10111001100000011000010011 5$ -b10111001100000011000010011 U$ -b10111001100000011000010011 j$ -b10111001100000011000010011 k$ -b10111001100000011000010011 q$ -b101 m$ -b10010 $( -b1011010110111 *" -b1011010110111 m" -b1011010110111 )# -b1011010110111 |# -b1011010110111 e$ -b1011010110111 p$ -b1011010110111 t" -b1011010110111 %# -b1011010110111 '# -b10100 Q# -b10100 ]# -b10100 :# -b0 Y# -b1101 R -1; -#46000 -0; -#47000 -b0 Z' -b0 R' -b0 T' -b0 [' -b0 S' -b0 U' -09$ -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -b11000 0$ -1A" -0H' -0p -b1000000000000 B" -b1000000000000 B$ -b1000000000000 =& -1s" -b0 :' -0g$ -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b1101 S" -b1101 m& -b1101 6' -b1101 >' -b1101 G' -b1101 j' -b1101 y$ -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b0 L' -b0 r' -b0 }$ -b1 M' -b1 s' -b1 ~$ -b110111 I' -b110111 k' -b110111 z$ -b1 J' -b1 p' -b1 {$ -b0 K' -b0 q' -b0 |$ -b10000 8# -b0 "$ -b0 c$ -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b1101 C" -b1101 v# -b1101 <& -b1101 &$ -b1101 _$ -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b0 :$ -b0 Z$ -b1 ;$ -b1 Y$ -b110111 1$ -b110111 ]$ -b1 7$ -b1 \$ -b10000000000000000001101000000000000000000010110111 J" -b10000000000000000001101000000000000000000010110111 u# -b10000000000000000001101000000000000000000010110111 r$ -b10000000000000000001101000000000000000000010110111 o -b10000000000000000001101000000000000000000010110111 )$ -b10000000000000000001101000000000000000000010110111 (' -b10000000000000000001101000000000000000000010110111 =' -b10000000000000000001101000000000000000000010110111 `' -b0 8$ -b0 [$ -0($ -12$ -b10000 W# -0T# -0{# -0G$ -1L$ -b0 <' -b0 8' -b0 ;' -b0 9' -b0 Q" -b0 k& -b0 4' -b0 O' -b0 X' -b110 n$ -b1011010110111 5$ -b1011010110111 U$ -b1011010110111 j$ -b1011010110111 k$ -b1011010110111 q$ -b101 o$ -b11000 Q# -b11000 ]# -b11000 :# -b1 B# -0A# -1@# -0&" -0w" -b10011 $( -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 \' -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 D" -b0 w$ -b0 ;& -b101110 H& -b110 m$ -b101 l$ -b11000 +$ -b1000000010100 /$ -b10110 -$ -b10100 .$ -b10100 T$ -b1110 R -b100 n& -1; -#48000 -0; -#49000 -xo' -bx R" -bx l& -bx 5' -bx P' -0A" -bx [' -bx S' -bx U' -x9$ -xH' -bx Q" -bx k& -bx 4' -bx O' -b11000 B" -b11000 B$ -b11000 =& -b11 !# -b11000 0$ -0'$ -bx Z' -bx R' -bx T' -bx <' -bx :' -bx ;' -bx 9' -bx 7' -b0x X' -b0x W' -b0x Y' -b0x V' -xn' -1E# -1-" -b11100 u" -b11100 $# -b11100 5# -bx D' -bx g' -bx u$ -bx N' -bx t' -bx "% -bx C' -bx f' -bx t$ -bx S" -bx m& -bx 6' -bx >' -bx G' -bx j' -bx y$ -bx L" -bx 7& -bx !' -bx B' -bx M" -bx i& -bx 2' -bx A' -bx E' -bx y -bx C& -bx &' -bx e' -bx z -bx d& -bx )' -bx d' -bx h' -bx v$ -xJ$ -xH$ -xK$ -xI$ -xG$ -xL$ -bx \' -bx ]' -bx Q' -bx N" -bx 6& -bx ~& -bx @' -bx O" -bx j& -bx 3' -bx ?' -bx F' -bx u' -bx { -bx B& -bx %' -bx c' -bx | -bx e& -bx *' -bx b' -bx i' -bx D" -bx w$ -bx ;& -bx E" -bx s$ -bx :& -bx x$ -bx L' -bx r' -bx }$ -bx M' -bx s' -bx ~$ -bx I' -bx k' -bx z$ -b0 J' -b0 p' -b0 {$ -1g$ -b11100 9# -bx "$ -bx c$ -bx *$ -bx ^$ -bx #$ -bx b$ -bx C$ -bx V$ -bx !$ -bx d$ -bx C" -bx v# -bx <& -bx &$ -bx _$ -bx =" -bx @$ -bx A& -bx >" -bx x# -bx @& -bx $$ -bx a$ -bx ,$ -bx ?" -bx A$ -bx ?& -bx @" -bx w# -bx >& -bx %$ -bx `$ -bx :$ -bx Z$ -bx ;$ -bx Y$ -bx 1$ -bx ]$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx J" -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx u# -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx r$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx o -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx )$ -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx =' -bx00000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx `' -b0 7$ -b0 \$ -16$ -02$ -b11100 I# -1=$ -1i$ -bx 5$ -bx U$ -bx j$ -bx k$ -bx q$ -b110 o$ -1{# -0/# -0G# -b11100 J# -b11100 P# -b101 N# -b11100 +$ -b11000 /$ -b11000 -$ -b11000 .$ -b11000 T$ -b110 l$ -b1000000000000 I& -b10100 $( -b11111000111110010011 *" -b11111000111110010011 m" -b11111000111110010011 )# -b11111000111110010011 |# -b11111000111110010011 e$ -b11111000111110010011 p$ -b11111000111110010011 t" -b11111000111110010011 %# -b11111000111110010011 '# -1&" -1w" -b101 K# -b1111 R -1; -#50000 -0; -#51000 -b11100 B" -b11100 B$ -b11100 =& -b11100 0$ -19$ -0~" -b0 "# -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -b10 ## -b0 !# -b0 [' -b0 S' -b0 U' -0o' -1H' -1p -b100000 u" -b100000 $# -b100000 5# -1'$ -b0 Z' -b0 R' -b0 T' -b0 Y' -b0 V' -b0 <' -b0 :' -b0 ;' -b0 9' -b0 7' -b0 Q" -b0 k& -b0 4' -b0 O' -b0 X' -b0 W' -0n' -b100000 9# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b11111 C' -b11111 f' -b11111 t$ -b11111 S" -b11111 m& -b11111 6' -b11111 >' -b11111 G' -b11111 j' -b11111 y$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b0 ]' -b0 Q' -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 \' -b0 N" -b0 6& -b0 ~& -b0 @' -b11111 O" -b11111 j& -b11111 3' -b11111 ?' -b11111 F' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b11111 | -b11111 e& -b11111 *' -b11111 b' -b11111 i' -b0 D" -b0 w$ -b0 ;& -b11111 E" -b11111 s$ -b11111 :& -b11111 x$ -b0 L' -b0 r' -b0 }$ -b0 M' -b0 s' -b0 ~$ -b10011 I' -b10011 k' -b10011 z$ -b100000 I# -b0 "$ -b0 c$ -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b11111 !$ -b11111 d$ -b11111 C" -b11111 v# -b11111 <& -b11111 &$ -b11111 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b11111 @" -b11111 w# -b11111 >& -b11111 %$ -b11111 `$ -b0 :$ -b0 Z$ -b0 ;$ -b0 Y$ -b1111111111000001111100000000000010011 J" -b1111111111000001111100000000000010011 u# -b1111111111000001111100000000000010011 r$ -b1111111111000001111100000000000010011 o -b1111111111000001111100000000000010011 )$ -b1111111111000001111100000000000010011 (' -b1111111111000001111100000000000010011 =' -b1111111111000001111100000000000010011 `' -b10011 1$ -b10011 ]$ -06$ -1($ -b101 M# -b100000 J# -b100000 P# -b110 N# -0=$ -0i$ -b111 n$ -b11111000111110010011 5$ -b11111000111110010011 U$ -b11111000111110010011 j$ -b11111000111110010011 k$ -b11111000111110010011 q$ -b1101 L# -b110 K# -b11100 Q# -b11100 ]# -b11100 :# -b10010111 *" -b10010111 m" -b10010111 )# -b10010111 |# -b10010111 e$ -b10010111 p$ -b10010111 t" -b10010111 %# -b10010111 '# -b10101 $( -b111 m$ -b111100 C# -b111100 O# -b111100 1" -b111100 o" -b111100 3# -b111100 N$ -b10000 R -1; -#52000 -0; -#53000 -1A" -b100000 0$ -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -0H' -0p -b1 !# -b100100 u" -b100100 $# -b100100 5# -b0 C' -b0 f' -b0 t$ -b1 S" -b1 m& -b1 6' -b1 >' -b1 G' -b1 j' -b1 y$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b10111 I' -b10111 k' -b10111 z$ -0g$ -b100100 9# -b0 !$ -b0 d$ -b1 C" -b1 v# -b1 <& -b1 &$ -b1 _$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b1000000000000000000000010111 J" -b1000000000000000000000010111 u# -b1000000000000000000000010111 r$ -b1000000000000000000000010111 o -b1000000000000000000000010111 )$ -b1000000000000000000000010111 (' -b1000000000000000000000010111 =' -b1000000000000000000000010111 `' -b10111 1$ -b10111 ]$ -0($ -1M$ -1S# -b100100 I# -b10010111 5$ -b10010111 U$ -b10010111 j$ -b10010111 k$ -b10010111 q$ -b111 o$ -b0 n$ -0{# -b100100 J# -b100100 P# -b111 N# -b110 M# -b100000 +$ -b11100 /$ -b11100 -$ -b11100 .$ -b11100 T$ -b1000000 C# -b1000000 O# -b1000000 1" -b1000000 o" -b1000000 3# -b1000000 N$ -b111 l$ -b1000 m$ -b10110 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b100000 Q# -b100000 ]# -b100000 :# -b111 K# -b1110 L# -b10001 R -b100 n& -1; -#54000 -0; -#55000 -0A" -b0 !# -b100100 0$ -b0 B" -b0 B$ -b0 =& -b100000 u" -b100000 $# -b100000 5# -0s" -0'$ -b101000 9# -b110111 I' -b110111 k' -b110111 z$ -b100000 8# -b101000 I# -00# -b10 z" -1;( -b1000000000000000000000110111 J" -b1000000000000000000000110111 u# -b1000000000000000000000110111 r$ -b1000000000000000000000110111 o -b1000000000000000000000110111 )$ -b1000000000000000000000110111 (' -b1000000000000000000000110111 =' -b1000000000000000000000110111 `' -b110111 1$ -b110111 ]$ -0M$ -12$ -b100000 W# -b111 M# -b101000 J# -b101000 P# -b0 N# -0V# -1[# -b100000 r" -b100000 |" -b100000 p# -1=$ -1i$ -b10110111 5$ -b10110111 U$ -b10110111 j$ -b10110111 k$ -b10110111 q$ -b0 o$ -b100000 X# -b100000 ^# -b1111 L# -b1000 K# -b1 Z# -b100100 Q# -b100100 ]# -b100100 :# -b10 B# -b100000 8( -b100000 D( -b100000 8 -b100000 2" -b100000 i" -b100000 c# -b100000 %( -b100000 c" -b100000 ># -b100000 `# -14 -1_" -0@# -b10111 $( -b11100 E& -b1000 l$ -b100100 +$ -b100000 /$ -b100000 -$ -b100000 .$ -b100000 T$ -b1000100 C# -b1000100 O# -b1000100 1" -b1000100 o" -b1000100 3# -b1000100 N$ -b10010 R -1; -#56000 -0; -#57000 -0E# -0-" -b100000000000000000000000000100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 y" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 q" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 {" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 _# -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 0 -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 +" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 f" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 o# -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 0( -0S# -0;( -b100000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b11 B( -1.# -1U# -0[# -1/# -1G# -b0 M# -b100000 >( -b100000 ?( -b100000 E( -b11 A( -b1001000 C# -b1001000 O# -b1001000 1" -b1001000 o" -b1001000 3# -b1001000 N$ -b11 "( -b11000 $( -0v" -04 -0_" -b100000 Q# -b100000 ]# -b100000 :# -b10 Z# -b0 L# -b10011 R -1; -#58000 -0; -#59000 -1+( -1p" -b11001 $( -1. -b10100 R -1; -#60000 -0; -#61000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b100010111000000000000000000000001001101110000000000010000100000001001001100000000000000000000000010110111 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b11 C( -0. -b11 @( -b11010 $( -b11 B# -1A# -b10101 R -1; -#62000 -0; -#63000 -b1 !# -b100100 u" -b100100 $# -b100100 5# -b100100 8# -1g$ -b100100 W# -0.# -0U# -b100100 X# -b100100 ^# -1\# -1{# -b1 Y# -b10110111 *" -b10110111 m" -b10110111 )# -b10110111 |# -b10110111 e$ -b10110111 p$ -b10110111 t" -b10110111 %# -b10110111 '# -1&" -1w" -b11011 $( -b10110 R -1; -#64000 -0; -#65000 -1A" -0s" -b10 !# -1'$ -b101000 u" -b101000 $# -b101000 5# -b100100 8# -1T# -10# -b100100 W# -0=$ -0i$ -b1 n$ -1V# -b100000 X# -b100000 ^# -0\# -b1001 m$ -b11100 $( -b100001000000010010011 *" -b100001000000010010011 m" -b100001000000010010011 )# -b100001000000010010011 |# -b100001000000010010011 e$ -b100001000000010010011 p$ -b100001000000010010011 t" -b100001000000010010011 %# -b100001000000010010011 '# -b100100 Q# -b100100 ]# -b100100 :# -b10 Y# -b10111 R -1; -#66000 -0; -#67000 -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -0A" -1H' -b1 Q" -b1 k& -b1 4' -b1 O' -1p -b101000 B" -b101000 B$ -b101000 =& -1s" -b1 X' -b1 <' -b1 :' -b101000 0$ -0g$ -b1 D' -b1 g' -b1 u$ -b1 N' -b1 t' -b1 "% -b1 C' -b1 f' -b1 t$ -b1 M" -b1 i& -b1 2' -b1 A' -b1 E' -b1 z -b1 d& -b1 )' -b1 d' -b1 h' -b1 v$ -b1 O" -b1 j& -b1 3' -b1 ?' -b1 F' -b1 | -b1 e& -b1 *' -b1 b' -b1 i' -b1 E" -b1 s$ -b1 :& -b1 x$ -b10011 I' -b10011 k' -b10011 z$ -b1 \' -b1 K' -b1 u' -b1 q' -b1 |$ -b100000 8# -b1 *$ -b1 ^$ -b1 #$ -b1 b$ -b1 C$ -b1 V$ -b1 !$ -b1 d$ -b1 >" -b1 x# -b1 @& -b1 $$ -b1 a$ -b1 @" -b1 w# -b1 >& -b1 %$ -b1 `$ -b10011 1$ -b10011 ]$ -b1 ,$ -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 J" -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 u# -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 r$ -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 o -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 )$ -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 (' -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 =' -b1000000000001000000000000000000000000000000010000100001000010000100000000000010011 `' -b1 8$ -b1 [$ -1($ -02$ -b100000 W# -0T# -0{# -b10 n$ -b100001000000010010011 5$ -b100001000000010010011 U$ -b100001000000010010011 j$ -b100001000000010010011 k$ -b100001000000010010011 q$ -b1 o$ -b101000 Q# -b101000 ]# -b101000 :# -b1 B# -0A# -1@# -0&" -0w" -b11101 $( -b0 E& -b1010 m$ -b1001 l$ -b101000 +$ -b100100 /$ -b100100 -$ -b100110 .$ -b100100 T$ -b11000 R -1; -#68000 -0; -#69000 -b0 R' -b0 T' -b0 S' -b0 U' -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -b101100 0$ -0A" -0H' -0p -b0 B" -b0 B$ -b0 =& -b11 !# -0'$ -b0 :' -1E# -1-" -b101100 u" -b101100 $# -b101100 5# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b11 S" -b11 m& -b11 6' -b11 >' -b11 G' -b11 j' -b11 y$ -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b110111 I' -b110111 k' -b110111 z$ -b0 K' -b0 q' -b0 |$ -1g$ -b101100 9# -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b11 C" -b11 v# -b11 <& -b11 &$ -b11 _$ -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b110111 1$ -b110111 ]$ -b11000000000000000000000110111 J" -b11000000000000000000000110111 u# -b11000000000000000000000110111 r$ -b11000000000000000000000110111 o -b11000000000000000000000110111 )$ -b11000000000000000000000110111 (' -b11000000000000000000000110111 =' -b11000000000000000000000110111 `' -b0 8$ -b0 [$ -0($ -12$ -b0 Z' -b0 [' -b101100 I# -1=$ -1i$ -b110110111 5$ -b110110111 U$ -b110110111 j$ -b110110111 k$ -b110110111 q$ -b10 o$ -b0 <' -b0 8' -b0 Q" -b0 k& -b0 4' -b0 O' -b0 X' -b0 9' -b0 7' -1{# -0/# -0G# -b101100 J# -b101100 P# -b1 N# -b101100 +$ -b101000 /$ -b101000 -$ -b101000 .$ -b101000 T$ -b1010 l$ -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 =" -b0 @$ -b0 A& -b0 \' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 ]' -b0 Q' -b0 L" -b0 7& -b0 !' -b0 B' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 y -b0 C& -b0 &' -b0 e' -b0 D" -b0 w$ -b0 ;& -b1 E& -b11110 $( -b100110111 *" -b100110111 m" -b100110111 )# -b100110111 |# -b100110111 e$ -b100110111 p$ -b100110111 t" -b100110111 %# -b100110111 '# -1&" -1w" -b1001 K# -b11001 R -b100 n& -1; -#70000 -0; -#71000 -1A" -0~" -b0 "# -b11 ## -b0 !# -b110000 u" -b110000 $# -b110000 5# -1'$ -b110000 9# -b10 S" -b10 m& -b10 6' -b10 >' -b10 G' -b10 j' -b10 y$ -b110000 I# -b10 C" -b10 v# -b10 <& -b10000000000000000000000110111 J" -b10000000000000000000000110111 u# -b10000000000000000000000110111 r$ -b10000000000000000000000110111 o -b10000000000000000000000110111 )$ -b10000000000000000000000110111 (' -b10000000000000000000000110111 =' -b10000000000000000000000110111 `' -b10 &$ -b10 _$ -b1 M# -b110000 J# -b110000 P# -b10 N# -0=$ -0i$ -b11 n$ -b100110111 5$ -b100110111 U$ -b100110111 j$ -b100110111 k$ -b100110111 q$ -b1 L# -b1010 K# -b101100 Q# -b101100 ]# -b101100 :# -b100010111 *" -b100010111 m" -b100010111 )# -b100010111 |# -b100010111 e$ -b100010111 p$ -b100010111 t" -b100010111 %# -b100010111 '# -b11111 $( -b1011 m$ -b1001100 C# -b1001100 O# -b1001100 1" -b1001100 o" -b1001100 3# -b1001100 N$ -b11010 R -1; -#72000 -0; -#73000 -1A" -b101100 B" -b101100 B$ -b101100 =& -b1 !# -b110000 0$ -b110100 u" -b110100 $# -b110100 5# -b10111 I' -b10111 k' -b10111 z$ -0g$ -b110100 9# -b10000000000000000000000010111 J" -b10000000000000000000000010111 u# -b10000000000000000000000010111 r$ -b10000000000000000000000010111 o -b10000000000000000000000010111 )$ -b10000000000000000000000010111 (' -b10000000000000000000000010111 =' -b10000000000000000000000010111 `' -b10111 1$ -b10111 ]$ -1M$ -02$ -1S# -b110100 I# -b100010111 5$ -b100010111 U$ -b100010111 j$ -b100010111 k$ -b100010111 q$ -b11 o$ -b100 n$ -0{# -b110100 J# -b110100 P# -b11 N# -b10 M# -b110000 +$ -b101100 /$ -b101100 -$ -b101100 .$ -b101100 T$ -b1010000 C# -b1010000 O# -b1010000 1" -b1010000 o" -b1010000 3# -b1010000 N$ -b1011 l$ -b1100 m$ -b100000 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b110000 Q# -b110000 ]# -b110000 :# -b1011 K# -b10 L# -b11011 R -1; -#74000 -0; -#75000 -b101110 Z' -b101110 R' -b101110 T' -b101110 [' -b101110 S' -b101110 U' -09$ -0A" -b1111 R" -b1111 l& -b1111 5' -b1111 P' -b0 !# -1H' -b1011100 Q" -b1011100 k& -b1011100 4' -b1011100 O' -b110100 0$ -b110100 B" -b110100 B$ -b110100 =& -b110000 u" -b110000 $# -b110000 5# -0s" -0'$ -b101110 ;' -b101110 9' -b101110 :' -b101110 8' -b111000 9# -b101110 D' -b101110 g' -b101110 u$ -b101110 N' -b101110 t' -b101110 "% -b1100 C' -b1100 f' -b1100 t$ -b1100 S" -b1100 m& -b1100 6' -b1100 >' -b1100 G' -b1100 j' -b1100 y$ -b1110 M" -b1110 i& -b1110 2' -b1110 A' -b1110 E' -b1110 z -b1110 d& -b1110 )' -b1110 d' -b1110 h' -b1110 v$ -1G$ -0L$ -b101110 ]' -b101110 Q' -b101110 N" -b101110 6& -b101110 ~& -b101110 @' -b1100 O" -b1100 j& -b1100 3' -b1100 ?' -b1100 F' -b101110 { -b101110 B& -b101110 %' -b101110 c' -b1100 | -b1100 e& -b1100 *' -b1100 b' -b1100 i' -b101110 D" -b101110 w$ -b101110 ;& -b1100 E" -b1100 s$ -b1100 :& -b1100 x$ -b1 L' -b1 r' -b1 }$ -b10011 I' -b10011 k' -b10011 z$ -b1011100 \' -b101110 K' -b1011100 u' -b101110 q' -b101110 |$ -b110000 8# -b111000 I# -00# -b11 z" -1;( -b10 "$ -b10 c$ -b1110 *$ -b1110 ^$ -b101110 #$ -b101110 b$ -b101110 C$ -b101110 V$ -b1100 !$ -b1100 d$ -b1100 C" -b1100 v# -b1100 <& -b1100 &$ -b1100 _$ -b1110 >" -b1110 x# -b1110 @& -b1110 $$ -b1110 a$ -b101110 ?" -b101110 A$ -b101110 ?& -b1100 @" -b1100 w# -b1100 >& -b1100 %$ -b1100 `$ -b1 :$ -b1 Z$ -b10011 1$ -b10011 ]$ -b1011100 ,$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 J" -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 u# -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 r$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 o -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 )$ -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 (' -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 =' -b101110000000101110000000000000000000000000001011100110001100011100110000000010000010011 `' -b101110 8$ -b101110 [$ -1($ -0M$ -b110000 W# -b11 M# -b111000 J# -b111000 P# -b100 N# -0V# -1[# -b110000 r" -b110000 |" -b110000 p# -1=$ -1i$ -b10111001100000011000010011 5$ -b10111001100000011000010011 U$ -b10111001100000011000010011 j$ -b10111001100000011000010011 k$ -b10111001100000011000010011 q$ -b100 o$ -b110000 X# -b110000 ^# -b11 L# -b1100 K# -b11 Z# -b110100 Q# -b110100 ]# -b110100 :# -b10 B# -b110000 8( -b110000 D( -b110000 8 -b110000 2" -b110000 i" -b110000 c# -b110000 %( -b110000 c" -b110000 ># -b110000 `# -14 -1_" -0@# -b100001 $( -b101100 P& -b1100 l$ -b110100 +$ -b110000 /$ -b110000 -$ -b10001100 .$ -b110000 T$ -b1010100 C# -b1010100 O# -b1010100 1" -b1010100 o" -b1010100 3# -b1010100 N$ -b11100 R -1; -#76000 -0; -#77000 -0E# -0-" -b100000000000000000000001000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 y" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 q" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 {" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 _# -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 0 -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 +" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 f" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 o# -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 0( -0S# -0;( -b110000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b100 B( -1.# -1U# -0[# -1/# -1G# -b100 M# -b110000 >( -b110000 ?( -b110000 E( -b100 A( -b1011000 C# -b1011000 O# -b1011000 1" -b1011000 o" -b1011000 3# -b1011000 N$ -b100 "( -b100010 $( -0v" -04 -0_" -b110000 Q# -b110000 ]# -b110000 :# -b0 Z# -b100 L# -b11101 R -1; -#78000 -0; -#79000 -1+( -1p" -b100011 $( -1. -b11110 R -1; -#80000 -0; -#81000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b1000110110111000000000000000000100001100101110000000000100001100000011001001100000000001000010000000100010011 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b100 C( -0. -b100 @( -b100100 $( -b11 B# -1A# -b11111 R -1; -#82000 -0; -#83000 -b1 !# -b110100 u" -b110100 $# -b110100 5# -b110100 8# -1g$ -b110100 W# -0.# -0U# -b110100 X# -b110100 ^# -1\# -1{# -b11 Y# -b1000010000000100010011 *" -b1000010000000100010011 m" -b1000010000000100010011 )# -b1000010000000100010011 |# -b1000010000000100010011 e$ -b1000010000000100010011 p$ -b1000010000000100010011 t" -b1000010000000100010011 %# -b1000010000000100010011 '# -1&" -1w" -b100101 $( -b100000 R -1; -#84000 -0; -#85000 -b101100 [' -b101100 S' -b101100 U' -19$ -1P" -1|& -1$' -0s" -1p -b10 !# -b10110000 Z' -b1011 R' -b1011 T' -1'$ -b111000 u" -b111000 $# -b111000 5# -b0 ;' -b101100 9' -b101100 7' -b101110 Q" -b101110 k& -b101110 4' -b101110 O' -b1 W' -b101110 <' -b0 8' -b110100 8# -b10 D' -b10 g' -b10 u$ -b10 N' -b10 t' -b10 "% -b10 C' -b10 f' -b10 t$ -b10 S" -b10 m& -b10 6' -b10 >' -b10 G' -b10 j' -b10 y$ -0G$ -1L$ -b101100 L" -b101100 7& -b101100 !' -b101100 B' -b10 M" -b10 i& -b10 2' -b10 A' -b10 E' -b101100 y -b101100 C& -b101100 &' -b101100 e' -b10 z -b10 d& -b10 )' -b10 d' -b10 h' -b10 v$ -b1011000 ]' -b0 Q' -b101100 N" -b101100 6& -b101100 ~& -b101100 @' -b10 O" -b10 j& -b10 3' -b10 ?' -b10 F' -b101100 { -b101100 B& -b101100 %' -b101100 c' -b10 | -b10 e& -b10 *' -b10 b' -b10 i' -b101100 D" -b101100 w$ -b101100 ;& -b10 E" -b10 s$ -b10 :& -b10 x$ -b0 L' -b0 r' -b0 }$ -b101110 \' -b10 K' -b101110 u' -b10 q' -b10 |$ -1T# -10# -b110100 W# -b0 "$ -b0 c$ -b10 *$ -b10 ^$ -b10 #$ -b10 b$ -b10 C$ -b10 V$ -b10 !$ -b10 d$ -b10 C" -b10 v# -b10 <& -b10 &$ -b10 _$ -b101100 =" -b101100 @$ -b101100 A& -b10 >" -b10 x# -b10 @& -b10 $$ -b10 a$ -b101100 ?" -b101100 A$ -b101100 ?& -b10 @" -b10 w# -b10 >& -b10 %$ -b10 `$ -b0 :$ -b0 Z$ -b110100 .$ -b101110 ,$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 J" -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 u# -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 r$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 o -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 )$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 (' -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 =' -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 `' -b10 8$ -b10 [$ -0=$ -0i$ -b101 n$ -1V# -b110000 X# -b110000 ^# -0\# -b1000010000000100010011 5$ -b1000010000000100010011 U$ -b1000010000000100010011 j$ -b1000010000000100010011 k$ -b1000010000000100010011 q$ -b1101 m$ -b100110 $( -b1000011000000110010011 *" -b1000011000000110010011 m" -b1000011000000110010011 )# -b1000011000000110010011 |# -b1000011000000110010011 e$ -b1000011000000110010011 p$ -b1000011000000110010011 t" -b1000011000000110010011 %# -b1000011000000110010011 '# -b110100 Q# -b110100 ]# -b110100 :# -b0 Y# -b100001 R -1; -#86000 -0; -#87000 -b0 [' -b0 S' -b0 U' -b111000 B" -b111000 B$ -b111000 =& -09$ -b111000 0$ -b0 R' -b0 T' -1s" -b10 :' -b101110 ;' -b1 X' -b0 W' -b1 Y' -b1 V' -0g$ -b0 Z' -b11 C' -b11 f' -b11 t$ -b11 S" -b11 m& -b11 6' -b11 >' -b11 G' -b11 j' -b11 y$ -0J$ -1H$ -0K$ -1I$ -1G$ -0L$ -b11 O" -b11 j& -b11 3' -b11 ?' -b11 F' -b11 | -b11 e& -b11 *' -b11 b' -b11 i' -b11 E" -b11 s$ -b11 :& -b11 x$ -b110000 8# -b11 !$ -b11 d$ -b11 C" -b11 v# -b11 <& -b11 &$ -b11 _$ -b11 @" -b11 w# -b11 >& -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 J" -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 u# -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 r$ -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 o -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 )$ -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 (' -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 =' -b10000000000010000000000000000000000000000000100001100011000100001100000000000010011 `' -b11 %$ -b11 `$ -b110000 W# -0T# -0{# -b10 <' -b0 8' -b10 Q" -b10 k& -b10 4' -b10 O' -b101110 9' -b0 7' -b110 n$ -b1000011000000110010011 5$ -b1000011000000110010011 U$ -b1000011000000110010011 j$ -b1000011000000110010011 k$ -b1000011000000110010011 q$ -b101 o$ -b111000 Q# -b111000 ]# -b111000 :# -b1 B# -0A# -1@# -0&" -0w" -b100111 $( -b10 ,$ -b0 ?" -b0 A$ -b0 ?& -b101110 =" -b101110 @$ -b101110 A& -b10 \' -b0 N" -b0 6& -b0 ~& -b0 @' -b101110 ]' -b11111111111111111111111111010010 Q' -b101110 L" -b101110 7& -b101110 !' -b101110 B' -b10 u' -b0 { -b0 B& -b0 %' -b0 c' -b101110 y -b101110 C& -b101110 &' -b101110 e' -b0 D" -b0 w$ -b0 ;& -b101110 P& -b1110 m$ -b1101 l$ -b111000 +$ -b110100 /$ -b110100 -$ -b111000 .$ -b110100 T$ -b100010 R -b100 n& -1; -#88000 -0; -#89000 -b0 R' -b0 T' -b0 [' -b0 S' -b0 U' -b111100 B" -b111100 B$ -b111100 =& -b111100 0$ -19$ -0P" -0|& -0$' -0p -b11 !# -0'$ -b0 Y' -b0 V' -b0 9' -b0 :' -1E# -1-" -b111100 u" -b111100 $# -b111100 5# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b11111 C' -b11111 f' -b11111 t$ -b11111 S" -b11111 m& -b11111 6' -b11111 >' -b11111 G' -b11111 j' -b11111 y$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b11111 O" -b11111 j& -b11111 3' -b11111 ?' -b11111 F' -b11111 | -b11111 e& -b11111 *' -b11111 b' -b11111 i' -b11111 E" -b11111 s$ -b11111 :& -b11111 x$ -b0 K' -b0 q' -b0 |$ -b0 Z' -1g$ -b111100 9# -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b11111 !$ -b11111 d$ -b11111 C" -b11111 v# -b11111 <& -b11111 &$ -b11111 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b11111 @" -b11111 w# -b11111 >& -b11111 %$ -b11111 `$ -b1111111111000001111100000000000010011 J" -b1111111111000001111100000000000010011 u# -b1111111111000001111100000000000010011 r$ -b1111111111000001111100000000000010011 o -b1111111111000001111100000000000010011 )$ -b1111111111000001111100000000000010011 (' -b1111111111000001111100000000000010011 =' -b1111111111000001111100000000000010011 `' -b0 8$ -b0 [$ -b111100 I# -1=$ -1i$ -b11111000111110010011 5$ -b11111000111110010011 U$ -b11111000111110010011 j$ -b11111000111110010011 k$ -b11111000111110010011 q$ -b110 o$ -b0 <' -b0 8' -b0 ;' -b0 7' -b0 Q" -b0 k& -b0 4' -b0 O' -b0 X' -1{# -0/# -0G# -b111100 J# -b111100 P# -b101 N# -b111100 +$ -b111000 /$ -b111000 -$ -b111000 .$ -b111000 T$ -b1110 l$ -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 \' -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 D" -b0 w$ -b0 ;& -b10 [& -b101000 $( -b10000110010111 *" -b10000110010111 m" -b10000110010111 )# -b10000110010111 |# -b10000110010111 e$ -b10000110010111 p$ -b10000110010111 t" -b10000110010111 %# -b10000110010111 '# -1&" -1w" -b1101 K# -b100011 R -b100 n& -1; -#90000 -0; -#91000 -09$ -1A" -b10000000111000 B" -b10000000111000 B$ -b10000000111000 =& -0~" -b0 "# -b0 R" -b0 l& -b0 5' -b0 P' -b100 ## -b0 !# -0H' -b1000000 u" -b1000000 $# -b1000000 5# -1'$ -b1000000 9# -b0 C' -b0 f' -b0 t$ -b11 S" -b11 m& -b11 6' -b11 >' -b11 G' -b11 j' -b11 y$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b10 M' -b10 s' -b10 ~$ -b10111 I' -b10111 k' -b10111 z$ -b10 J' -b10 p' -b10 {$ -b1000000 I# -b0 !$ -b0 d$ -b11 C" -b11 v# -b11 <& -b11 &$ -b11 _$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b10 ;$ -b10 Y$ -b10111 1$ -b10111 ]$ -b111100 -$ -b10000000111000 /$ -b100000000000000000000011000000000000000000100010111 J" -b100000000000000000000011000000000000000000100010111 u# -b100000000000000000000011000000000000000000100010111 r$ -b100000000000000000000011000000000000000000100010111 o -b100000000000000000000011000000000000000000100010111 )$ -b100000000000000000000011000000000000000000100010111 (' -b100000000000000000000011000000000000000000100010111 =' -b100000000000000000000011000000000000000000100010111 `' -b10 7$ -b10 \$ -0($ -1M$ -b101 M# -b1000000 J# -b1000000 P# -b110 N# -0=$ -0i$ -b111 n$ -b10000110010111 5$ -b10000110010111 U$ -b10000110010111 j$ -b10000110010111 k$ -b10000110010111 q$ -b101 L# -b1110 K# -b111100 Q# -b111100 ]# -b111100 :# -b1000110110111 *" -b1000110110111 m" -b1000110110111 )# -b1000110110111 |# -b1000110110111 e$ -b1000110110111 p$ -b1000110110111 t" -b1000110110111 %# -b1000110110111 '# -b101001 $( -b1111 m$ -b1011100 C# -b1011100 O# -b1011100 1" -b1011100 o" -b1011100 3# -b1011100 N$ -b100100 R -1; -#92000 -0; -#93000 -b1000000 0$ -b1000000000000 B" -b1000000000000 B$ -b1000000000000 =& -b1 !# -b1000100 u" -b1000100 $# -b1000100 5# -b1 M' -b1 s' -b1 ~$ -b110111 I' -b110111 k' -b110111 z$ -b1 J' -b1 p' -b1 {$ -0g$ -b1000100 9# -b1 ;$ -b1 Y$ -b110111 1$ -b110111 ]$ -b10000000000000000000011000000000000000000010110111 J" -b10000000000000000000011000000000000000000010110111 u# -b10000000000000000000011000000000000000000010110111 r$ -b10000000000000000000011000000000000000000010110111 o -b10000000000000000000011000000000000000000010110111 )$ -b10000000000000000000011000000000000000000010110111 (' -b10000000000000000000011000000000000000000010110111 =' -b10000000000000000000011000000000000000000010110111 `' -b1 7$ -b1 \$ -0M$ -12$ -1S# -b1000100 I# -b1000110110111 5$ -b1000110110111 U$ -b1000110110111 j$ -b1000110110111 k$ -b1000110110111 q$ -b111 o$ -b0 n$ -0{# -b1000100 J# -b1000100 P# -b111 N# -b110 M# -b1000000 +$ -b1000000111100 /$ -b111110 -$ -b111100 .$ -b111100 T$ -b1100000 C# -b1100000 O# -b1100000 1" -b1100000 o" -b1100000 3# -b1100000 N$ -b1111 l$ -b0 m$ -b10000000111000 [& -b101010 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b1000000 Q# -b1000000 ]# -b1000000 :# -b1111 K# -b110 L# -b100101 R -1; -#94000 -0; -#95000 -19$ -0A" -b0 !# -b0 B" -b0 B$ -b0 =& -b1000000 u" -b1000000 $# -b1000000 5# -0s" -0'$ -b1000100 0$ -b1001000 9# -b1 S" -b1 m& -b1 6' -b1 >' -b1 G' -b1 j' -b1 y$ -b0 M' -b0 s' -b0 ~$ -b0 J' -b0 p' -b0 {$ -b1000000 8# -b1001000 I# -00# -b100 z" -1;( -b1 C" -b1 v# -b1 <& -b1 &$ -b1 _$ -b0 ;$ -b0 Y$ -b1000000000000000000000110111 J" -b1000000000000000000000110111 u# -b1000000000000000000000110111 r$ -b1000000000000000000000110111 o -b1000000000000000000000110111 )$ -b1000000000000000000000110111 (' -b1000000000000000000000110111 =' -b1000000000000000000000110111 `' -b0 7$ -b0 \$ -b1000000 W# -b111 M# -b1001000 J# -b1001000 P# -b0 N# -0V# -1[# -b1000000 r" -b1000000 |" -b1000000 p# -1=$ -1i$ -b10110111 5$ -b10110111 U$ -b10110111 j$ -b10110111 k$ -b10110111 q$ -b0 o$ -b1000000 X# -b1000000 ^# -b111 L# -b0 K# -b1 Z# -b1000100 Q# -b1000100 ]# -b1000100 :# -b10 B# -b1000000 8( -b1000000 D( -b1000000 8 -b1000000 2" -b1000000 i" -b1000000 c# -b1000000 %( -b1000000 c" -b1000000 ># -b1000000 `# -14 -1_" -0@# -b101011 $( -b1000000000000 [& -b0 l$ -b1000100 +$ -b1000000 /$ -b1000000 -$ -b1000000 .$ -b1000000 T$ -b1100100 C# -b1100100 O# -b1100100 1" -b1100100 o" -b1100100 3# -b1100100 N$ -b100110 R -1; -#96000 -0; -#97000 -0E# -0-" -b100000000000000000000000010100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 y" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 q" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 {" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 _# -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 0 -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 +" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 f" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 o# -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 0( -0S# -0;( -b1000000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b101 B( -1.# -1U# -0[# -1/# -1G# -b0 M# -b1000000 >( -b1000000 ?( -b1000000 E( -b101 A( -b1101000 C# -b1101000 O# -b1101000 1" -b1101000 o" -b1101000 3# -b1101000 N$ -b101 "( -b101100 $( -0v" -04 -0_" -b1000000 Q# -b1000000 ]# -b1000000 :# -b10 Z# -b1000 L# -b100111 R -1; -#98000 -0; -#99000 -1+( -1p" -b101101 $( -1. -b101000 R -1; -#100000 -0; -#101000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b10100010111000000100001010110010000011000110000000011000101000001010001001100000000000000000000010100010111 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b101 C( -0. -b101 @( -b101110 $( -b11 B# -1A# -b101001 R -1; -#102000 -0; -#103000 -b1 !# -b1000100 u" -b1000100 $# -b1000100 5# -b1000100 8# -1g$ -b1000100 W# -0.# -0U# -b1000100 X# -b1000100 ^# -1\# -1{# -b1 Y# -b10100010111 *" -b10100010111 m" -b10100010111 )# -b10100010111 |# -b10100010111 e$ -b10100010111 p$ -b10100010111 t" -b10100010111 %# -b10100010111 '# -1&" -1w" -b101111 $( -b101010 R -1; -#104000 -0; -#105000 -1A" -0s" -b1000100 0$ -b10 !# -b1000000 B" -b1000000 B$ -b1000000 =& -1'$ -b1001000 u" -b1001000 $# -b1001000 5# -b1000100 8# -b1010 S" -b1010 m& -b1010 6' -b1010 >' -b1010 G' -b1010 j' -b1010 y$ -b10111 I' -b10111 k' -b10111 z$ -1T# -10# -b1000100 W# -b1010 C" -b1010 v# -b1010 <& -b1010 &$ -b1010 _$ -b1010000000000000000000000010111 J" -b1010000000000000000000000010111 u# -b1010000000000000000000000010111 r$ -b1010000000000000000000000010111 o -b1010000000000000000000000010111 )$ -b1010000000000000000000000010111 (' -b1010000000000000000000000010111 =' -b1010000000000000000000000010111 `' -b10111 1$ -b10111 ]$ -1M$ -02$ -0=$ -0i$ -b1 n$ -1V# -b1000000 X# -b1000000 ^# -0\# -b10100010111 5$ -b10100010111 U$ -b10100010111 j$ -b10100010111 k$ -b10100010111 q$ -b1 m$ -b110000 $( -b110001010000010100010011 *" -b110001010000010100010011 m" -b110001010000010100010011 )# -b110001010000010100010011 |# -b110001010000010100010011 e$ -b110001010000010100010011 p$ -b110001010000010100010011 t" -b110001010000010100010011 %# -b110001010000010100010011 '# -b1000100 Q# -b1000100 ]# -b1000100 :# -b10 Y# -b101011 R -1; -#106000 -0; -#107000 -b1000000 [' -b1000000 S' -b1000000 U' -b1000000000000000000 Z' -09$ -0A" -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -1H' -b1001100 Q" -b1001100 k& -b1001100 4' -b1001100 O' -1p -b1001000 0$ -b1001000 B" -b1001000 B$ -b1001000 =& -1s" -b1101110 ;' -b1101110 9' -b1 W' -b1001100 <' -b1001100 :' -0g$ -b1100 D' -b1100 g' -b1100 u$ -b1100 N' -b1100 t' -b1100 "% -b1010 C' -b1010 f' -b1010 t$ -b101110 L" -b101110 7& -b101110 !' -b101110 B' -b1100 M" -b1100 i& -b1100 2' -b1100 A' -b1100 E' -b101110 y -b101110 C& -b101110 &' -b101110 e' -b1100 z -b1100 d& -b1100 )' -b1100 d' -b1100 h' -b1100 v$ -1G$ -0L$ -b1101110 ]' -b10010 Q' -b1000000 N" -b1000000 6& -b1000000 ~& -b1000000 @' -b1010 O" -b1010 j& -b1010 3' -b1010 ?' -b1010 F' -b1000000 { -b1000000 B& -b1000000 %' -b1000000 c' -b1010 | -b1010 e& -b1010 *' -b1010 b' -b1010 i' -b1000000 D" -b1000000 w$ -b1000000 ;& -b1010 E" -b1010 s$ -b1010 :& -b1010 x$ -b10011 I' -b10011 k' -b10011 z$ -b1001100 \' -b1100 K' -b1001100 u' -b1100 q' -b1100 |$ -b1000000 8# -b1100 *$ -b1100 ^$ -b1100 #$ -b1100 b$ -b1100 C$ -b1100 V$ -b1010 !$ -b1010 d$ -b101110 =" -b101110 @$ -b101110 A& -b1100 >" -b1100 x# -b1100 @& -b1100 $$ -b1100 a$ -b1000000 ?" -b1000000 A$ -b1000000 ?& -b1010 @" -b1010 w# -b1010 >& -b1010 %$ -b1010 `$ -b10011 1$ -b10011 ]$ -b1001100 ,$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 J" -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 u# -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 r$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 o -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 )$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 (' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 =' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 `' -b1100 8$ -b1100 [$ -1($ -0M$ -b1000000 W# -0T# -0{# -b10 n$ -b110001010000010100010011 5$ -b110001010000010100010011 U$ -b110001010000010100010011 j$ -b110001010000010100010011 k$ -b110001010000010100010011 q$ -b1 o$ -b1001000 Q# -b1001000 ]# -b1001000 :# -b1 B# -0A# -1@# -0&" -0w" -b110001 $( -b1000000 F& -b10 m$ -b1 l$ -b1001000 +$ -b1000100 /$ -b1000100 -$ -b1011100 .$ -b1000100 T$ -b101100 R -1; -#108000 -0; -#109000 -b0 [' -b0 S' -b0 U' -b0 R' -b0 T' -b0 Z' -19$ -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -b1001100 0$ -0A" -0H' -0p -b0 B" -b0 B$ -b0 =& -b11 !# -0'$ -b0 9' -b0 W' -b0 :' -1E# -1-" -b1001100 u" -b1001100 $# -b1001100 5# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b10 S" -b10 m& -b10 6' -b10 >' -b10 G' -b10 j' -b10 y$ -0G$ -1L$ -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b110111 I' -b110111 k' -b110111 z$ -b0 K' -b0 q' -b0 |$ -1g$ -b1001100 9# -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b10 C" -b10 v# -b10 <& -b10 &$ -b10 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b110111 1$ -b110111 ]$ -b10000000000000000000000110111 J" -b10000000000000000000000110111 u# -b10000000000000000000000110111 r$ -b10000000000000000000000110111 o -b10000000000000000000000110111 )$ -b10000000000000000000000110111 (' -b10000000000000000000000110111 =' -b10000000000000000000000110111 `' -b0 8$ -b0 [$ -0($ -12$ -b1001100 I# -1=$ -1i$ -b100110111 5$ -b100110111 U$ -b100110111 j$ -b100110111 k$ -b100110111 q$ -b10 o$ -b0 <' -b0 8' -b0 ;' -b0 7' -b0 Q" -b0 k& -b0 4' -b0 O' -1{# -0/# -0G# -b1001100 J# -b1001100 P# -b1 N# -b1001100 +$ -b1001000 /$ -b1001000 -$ -b1001000 .$ -b1001000 T$ -b10 l$ -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 \' -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 D" -b0 w$ -b0 ;& -b1001100 F& -b110010 $( -b10000101011001000001100011 *" -b10000101011001000001100011 m" -b10000101011001000001100011 )# -b10000101011001000001100011 |# -b10000101011001000001100011 e$ -b10000101011001000001100011 p$ -b10000101011001000001100011 t" -b10000101011001000001100011 %# -b10000101011001000001100011 '# -1&" -1w" -b1 K# -b101101 R -b100 n& -1; -#110000 -0; -#111000 -b1 Z' -b1 R' -b1 T' -09$ -0~" -b0 "# -b1001100 0$ -b101 ## -b0 !# -b10 [' -0y# -b1001100 B" -b1001100 B$ -b1001100 =& -b1010000 u" -b1010000 $# -b1010000 5# -1'$ -b1 9' -b1 7' -b1 X' -b10001 <' -b10001 :' -b1010000 9# -b100001 D' -b100001 g' -b100001 u$ -b100001 N' -b100001 t' -b100001 "% -b1011 C' -b1011 f' -b1011 t$ -b0 S" -b0 m& -b0 6' -b0 >' -b0 G' -b0 j' -b0 y$ -b1 L" -b1 7& -b1 !' -b1 B' -b1 M" -b1 i& -b1 2' -b1 A' -b1 E' -b1 y -b1 C& -b1 &' -b1 e' -b1 z -b1 d& -b1 )' -b1 d' -b1 h' -b1 v$ -b10 ]' -b0 Q' -b1 N" -b1 6& -b1 ~& -b1 @' -b1011 O" -b1011 j& -b1011 3' -b1011 ?' -b1011 F' -b1 { -b1 B& -b1 %' -b1 c' -b1011 | -b1011 e& -b1011 *' -b1011 b' -b1011 i' -b1 D" -b1 w$ -b1 ;& -b1011 E" -b1011 s$ -b1011 :& -b1011 x$ -b1 L' -b1 r' -b1 }$ -b1 M' -b1 s' -b1 ~$ -b1100011 I' -b1100011 k' -b1100011 z$ -b10001 \' -b10000 K' -b10001 u' -b10000 q' -b10000 |$ -b1010000 I# -b10 "$ -b10 c$ -b1 *$ -b1 ^$ -b100001 #$ -b100001 b$ -b100001 C$ -b100001 V$ -b1011 !$ -b1011 d$ -b0 C" -b0 v# -b0 <& -b0 &$ -b0 _$ -b1 =" -b1 @$ -b1 A& -b1 >" -b1 x# -b1 @& -b1 $$ -b1 a$ -b1 ?" -b1 A$ -b1 ?& -b1011 @" -b1011 w# -b1011 >& -b1011 %$ -b1011 `$ -b1 :$ -b1 Z$ -b1 ;$ -b1 Y$ -b1100011 1$ -b1100011 ]$ -b1101000 .$ -b10001 ,$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 J" -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 u# -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 r$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 o -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 )$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 (' -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 =' -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 `' -b10000 8$ -b10000 [$ -1F$ -02$ -b1 M# -b1010000 J# -b1010000 P# -b10 N# -0=$ -0i$ -b11 n$ -b10000101011001000001100011 5$ -b10000101011001000001100011 U$ -b10000101011001000001100011 j$ -b10000101011001000001100011 k$ -b10000101011001000001100011 q$ -b1001 L# -b10 K# -b1001100 Q# -b1001100 ]# -b1001100 :# -b10100010111 *" -b10100010111 m" -b10100010111 )# -b10100010111 |# -b10100010111 e$ -b10100010111 p$ -b10100010111 t" -b10100010111 %# -b10100010111 '# -b110011 $( -b11 m$ -b1101100 C# -b1101100 O# -b1101100 1" -b1101100 o" -b1101100 3# -b1101100 N$ -b101110 R -1; -#112000 -0; -#113000 -b0 Z' -b0 R' -b0 T' -19$ -1A" -b1010000 0$ -b0 S' -b0 U' -b0 [' -b1 !# -b0 9' -b0 7' -b0 X' -b0 <' -b0 :' -b1010100 u" -b1010100 $# -b1010100 5# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b1010 S" -b1010 m& -b1010 6' -b1010 >' -b1010 G' -b1010 j' -b1010 y$ -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 { -b0 B& -b0 %' -b0 c' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 D" -b0 w$ -b0 ;& -b0 E" -b0 s$ -b0 :& -b0 x$ -b0 L' -b0 r' -b0 }$ -b0 M' -b0 s' -b0 ~$ -b10111 I' -b10111 k' -b10111 z$ -b0 \' -b0 K' -b0 u' -b0 q' -b0 |$ -0g$ -b1010100 9# -b0 "$ -b0 c$ -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b1010 C" -b1010 v# -b1010 <& -b1010 &$ -b1010 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 ?" -b0 A$ -b0 ?& -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b0 :$ -b0 Z$ -b0 ;$ -b0 Y$ -b10111 1$ -b10111 ]$ -b0 ,$ -b1010000000000000000000000010111 J" -b1010000000000000000000000010111 u# -b1010000000000000000000000010111 r$ -b1010000000000000000000000010111 o -b1010000000000000000000000010111 )$ -b1010000000000000000000000010111 (' -b1010000000000000000000000010111 =' -b1010000000000000000000000010111 `' -b0 8$ -b0 [$ -0F$ -1M$ -1S# -b1010100 I# -b10100010111 5$ -b10100010111 U$ -b10100010111 j$ -b10100010111 k$ -b10100010111 q$ -b11 o$ -b100 n$ -0{# -b1010100 J# -b1010100 P# -b11 N# -b10 M# -b1010000 +$ -b1001100 /$ -b1001100 -$ -b1001100 .$ -b1001100 T$ -b1110000 C# -b1110000 O# -b1110000 1" -b1110000 o" -b1110000 3# -b1110000 N$ -b11 l$ -b100 m$ -b110100 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b1010000 Q# -b1010000 ]# -b1010000 :# -b11 K# -b1010 L# -b101111 R -1; -#114000 -0; -#115000 -b101110 [' -b101110 S' -b101110 U' -0A" -b1111 R" -b1111 l& -b1111 5' -b1111 P' -b0 !# -b10111000 Z' -b1011 R' -b1011 T' -1H' -b110000 Q" -b110000 k& -b110000 4' -b110000 O' -b1010100 0$ -b1010100 B" -b1010100 B$ -b1010100 =& -b1010000 u" -b1010000 $# -b1010000 5# -0s" -0'$ -b101110 9' -b101110 7' -b1 W' -b101100 <' -b101110 :' -b10 8' -b1011000 9# -b10 D' -b10 g' -b10 u$ -b10 N' -b10 t' -b10 "% -b10 C' -b10 f' -b10 t$ -b10 S" -b10 m& -b10 6' -b10 >' -b10 G' -b10 j' -b10 y$ -b101110 L" -b101110 7& -b101110 !' -b101110 B' -b10 M" -b10 i& -b10 2' -b10 A' -b10 E' -b101110 y -b101110 C& -b101110 &' -b101110 e' -b10 z -b10 d& -b10 )' -b10 d' -b10 h' -b10 v$ -b1011100 ]' -b0 Q' -b101110 N" -b101110 6& -b101110 ~& -b101110 @' -b10 O" -b10 j& -b10 3' -b10 ?' -b10 F' -b101110 { -b101110 B& -b101110 %' -b101110 c' -b10 | -b10 e& -b10 *' -b10 b' -b10 i' -b101110 D" -b101110 w$ -b101110 ;& -b10 E" -b10 s$ -b10 :& -b10 x$ -b10011 I' -b10011 k' -b10011 z$ -b110000 \' -b10 K' -b110000 u' -b10 q' -b10 |$ -b1010000 8# -b1011000 I# -00# -b101 z" -1;( -b10 *$ -b10 ^$ -b10 #$ -b10 b$ -b10 C$ -b10 V$ -b10 !$ -b10 d$ -b10 C" -b10 v# -b10 <& -b10 &$ -b10 _$ -b101110 =" -b101110 @$ -b101110 A& -b10 >" -b10 x# -b10 @& -b10 $$ -b10 a$ -b101110 ?" -b101110 A$ -b101110 ?& -b10 @" -b10 w# -b10 >& -b10 %$ -b10 `$ -b10011 1$ -b10011 ]$ -b110000 ,$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 J" -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 u# -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 r$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 o -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 )$ -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 (' -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 =' -b10000000000010000000000000000000000000000000100001000010000100001000000000000010011 `' -b10 8$ -b10 [$ -1($ -0M$ -b1010000 W# -b11 M# -b1011000 J# -b1011000 P# -b100 N# -0V# -1[# -b1010000 r" -b1010000 |" -b1010000 p# -1=$ -1i$ -b1000010000000100010011 5$ -b1000010000000100010011 U$ -b1000010000000100010011 j$ -b1000010000000100010011 k$ -b1000010000000100010011 q$ -b100 o$ -b1010000 X# -b1010000 ^# -b1011 L# -b100 K# -b11 Z# -b1010100 Q# -b1010100 ]# -b1010100 :# -b10 B# -b1010000 8( -b1010000 D( -b1010000 8 -b1010000 2" -b1010000 i" -b1010000 c# -b1010000 %( -b1010000 c" -b1010000 ># -b1010000 `# -14 -1_" -0@# -b110101 $( -b100 l$ -b1010100 +$ -b1010000 /$ -b1010000 -$ -b1010100 .$ -b1010000 T$ -b1110100 C# -b1110100 O# -b1110100 1" -b1110100 o" -b1110100 3# -b1110100 N$ -b110000 R -1; -#116000 -0; -#117000 -0E# -0-" -b100000000000110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 y" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 q" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 {" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 _# -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 0 -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 +" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 f" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 o# -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 0( -0S# -0;( -b1010000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b110 B( -1.# -1U# -0[# -1/# -1G# -b100 M# -b1010000 >( -b1010000 ?( -b1010000 E( -b110 A( -b1111000 C# -b1111000 O# -b1111000 1" -b1111000 o" -b1111000 3# -b1111000 N$ -b110 "( -b110110 $( -0v" -04 -0_" -b1010000 Q# -b1010000 ]# -b1010000 :# -b0 Z# -b1100 L# -b110001 R -1; -#118000 -0; -#119000 -1+( -1p" -b110111 $( -1. -b110010 R -1; -#120000 -0; -#121000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b110001010000010100010011000000000000000000000101000101110000000000100110000110100110001100000000110001010000010100010011 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b110 C( -0. -b110 @( -b111000 $( -b11 B# -1A# -b110011 R -1; -#122000 -0; -#123000 -b1 !# -b1010100 u" -b1010100 $# -b1010100 5# -b1010100 8# -1g$ -b1010100 W# -0.# -0U# -b1010100 X# -b1010100 ^# -1\# -1{# -b11 Y# -b110001010000010100010011 *" -b110001010000010100010011 m" -b110001010000010100010011 )# -b110001010000010100010011 |# -b110001010000010100010011 e$ -b110001010000010100010011 p$ -b110001010000010100010011 t" -b110001010000010100010011 %# -b110001010000010100010011 '# -1&" -1w" -b111001 $( -b110100 R -1; -#124000 -0; -#125000 -b1001100 [' -b1001100 S' -b1001100 U' -09$ -1P" -1|& -1$' -0s" -1p -b10 !# -b1001100000000000000 Z' -b0 R' -b0 T' -1'$ -b1011000 u" -b1011000 $# -b1011000 5# -b1100010 ;' -b1101110 9' -b1100 7' -b1011000 Q" -b1011000 k& -b1011000 4' -b1011000 O' -b1000000 <' -b1001100 :' -b1100 8' -b1010100 8# -b1100 D' -b1100 g' -b1100 u$ -b1100 N' -b1100 t' -b1100 "% -b1010 C' -b1010 f' -b1010 t$ -b1010 S" -b1010 m& -b1010 6' -b1010 >' -b1010 G' -b1010 j' -b1010 y$ -b1100 M" -b1100 i& -b1100 2' -b1100 A' -b1100 E' -b1100 z -b1100 d& -b1100 )' -b1100 d' -b1100 h' -b1100 v$ -1G$ -0L$ -b1111010 ]' -b11110 Q' -b1001100 N" -b1001100 6& -b1001100 ~& -b1001100 @' -b1010 O" -b1010 j& -b1010 3' -b1010 ?' -b1010 F' -b1001100 { -b1001100 B& -b1001100 %' -b1001100 c' -b1010 | -b1010 e& -b1010 *' -b1010 b' -b1010 i' -b1001100 D" -b1001100 w$ -b1001100 ;& -b1010 E" -b1010 s$ -b1010 :& -b1010 x$ -b1011000 \' -b1100 K' -b1011000 u' -b1100 q' -b1100 |$ -1T# -10# -b1010100 W# -b1100 *$ -b1100 ^$ -b1100 #$ -b1100 b$ -b1100 C$ -b1100 V$ -b1010 !$ -b1010 d$ -b1010 C" -b1010 v# -b1010 <& -b1010 &$ -b1010 _$ -b1100 >" -b1100 x# -b1100 @& -b1100 $$ -b1100 a$ -b1001100 ?" -b1001100 A$ -b1001100 ?& -b1010 @" -b1010 w# -b1010 >& -b1010 %$ -b1010 `$ -b1101000 .$ -b1011000 ,$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 J" -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 u# -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 r$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 o -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 )$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 (' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 =' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 `' -b1100 8$ -b1100 [$ -0=$ -0i$ -b101 n$ -1V# -b1010000 X# -b1010000 ^# -0\# -b110001010000010100010011 5$ -b110001010000010100010011 U$ -b110001010000010100010011 j$ -b110001010000010100010011 k$ -b110001010000010100010011 q$ -b101 m$ -b111010 $( -b1001100001101001100011 *" -b1001100001101001100011 m" -b1001100001101001100011 )# -b1001100001101001100011 |# -b1001100001101001100011 e$ -b1001100001101001100011 p$ -b1001100001101001100011 t" -b1001100001101001100011 %# -b1001100001101001100011 '# -b1010100 Q# -b1010100 ]# -b1010100 :# -b0 Y# -b110101 R -1; -#126000 -0; -#127000 -b101110 [' -b101110 S' -b101110 U' -b1011000 B" -b1011000 B$ -b1011000 =& -0y# -b1011000 0$ -09$ -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -b10111000 Z' -b1011 R' -b1011 T' -0H' -0p -1s" -0g$ -b10 D' -b10 g' -b10 u$ -b10 N' -b10 t' -b10 "% -b1100 C' -b1100 f' -b1100 t$ -b10100 S" -b10100 m& -b10100 6' -b10100 >' -b10100 G' -b10100 j' -b10100 y$ -b10 M" -b10 i& -b10 2' -b10 A' -b10 E' -b10 z -b10 d& -b10 )' -b10 d' -b10 h' -b10 v$ -0G$ -1L$ -b1100 O" -b1100 j& -b1100 3' -b1100 ?' -b1100 F' -b1100 | -b1100 e& -b1100 *' -b1100 b' -b1100 i' -b1100 E" -b1100 s$ -b1100 :& -b1100 x$ -b1 M' -b1 s' -b1 ~$ -b1100011 I' -b1100011 k' -b1100011 z$ -b1010 K' -b1010 q' -b1010 |$ -b1010000 8# -b10 *$ -b10 ^$ -b10 #$ -b10 b$ -b10 C$ -b10 V$ -b1100 !$ -b1100 d$ -b10100 C" -b10100 v# -b10100 <& -b10100 &$ -b10100 _$ -b10 >" -b10 x# -b10 @& -b10 $$ -b10 a$ -b1100 @" -b1100 w# -b1100 >& -b1100 %$ -b1100 `$ -b1 ;$ -b1 Y$ -b1100011 1$ -b1100011 ]$ -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 J" -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 u# -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 r$ -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 o -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 )$ -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 (' -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 =' -b10000000000010000000000000000000000000000010100110010100000100110000000000011100011 `' -b1010 8$ -b1010 [$ -0($ -1F$ -b1010000 W# -0T# -0{# -b100100 <' -b101110 :' -b1010 8' -b0 ;' -b101110 9' -b101110 7' -b0 Q" -b0 k& -b0 4' -b0 O' -b110 n$ -b1001100001101001100011 5$ -b1001100001101001100011 U$ -b1001100001101001100011 j$ -b1001100001101001100011 k$ -b1001100001101001100011 q$ -b101 o$ -b1011000 Q# -b1011000 ]# -b1011000 :# -b1 B# -0A# -1@# -0&" -0w" -b111011 $( -b111000 ,$ -b101110 ?" -b101110 A$ -b101110 ?& -b111000 \' -b1011100 ]' -b0 Q' -b101110 N" -b101110 6& -b101110 ~& -b101110 @' -b111000 u' -b101110 { -b101110 B& -b101110 %' -b101110 c' -b101110 D" -b101110 w$ -b101110 ;& -b1011000 F& -b110 m$ -b101 l$ -b1011000 +$ -b1010100 /$ -b1010100 -$ -b1101000 .$ -b1010100 T$ -b110110 R -b100 n& -1; -#128000 -0; -#129000 -b0 [' -b0 S' -b0 U' -b0 B" -b0 B$ -b0 =& -b1011100 0$ -b0 Z' -b0 R' -b0 T' -b11 !# -0'$ -b0 9' -b0 7' -b0 W' -b0 <' -b0 :' -b0 8' -1E# -1-" -b1011100 u" -b1011100 $# -b1011100 5# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -b11 S" -b11 m& -b11 6' -b11 >' -b11 G' -b11 j' -b11 y$ -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 { -b0 B& -b0 %' -b0 c' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 D" -b0 w$ -b0 ;& -b0 E" -b0 s$ -b0 :& -b0 x$ -b10 M' -b10 s' -b10 ~$ -b10111 I' -b10111 k' -b10111 z$ -b10 J' -b10 p' -b10 {$ -b0 \' -b0 K' -b0 u' -b0 q' -b0 |$ -1g$ -b1011100 9# -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b11 C" -b11 v# -b11 <& -b11 &$ -b11 _$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 ?" -b0 A$ -b0 ?& -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b10 ;$ -b10 Y$ -b10111 1$ -b10111 ]$ -b10 7$ -b10 \$ -b0 ,$ -b100000000000000000000011000000000000000000100010111 J" -b100000000000000000000011000000000000000000100010111 u# -b100000000000000000000011000000000000000000100010111 r$ -b100000000000000000000011000000000000000000100010111 o -b100000000000000000000011000000000000000000100010111 )$ -b100000000000000000000011000000000000000000100010111 (' -b100000000000000000000011000000000000000000100010111 =' -b100000000000000000000011000000000000000000100010111 `' -b0 8$ -b0 [$ -0F$ -1M$ -b1011100 I# -1=$ -1i$ -b10000110010111 5$ -b10000110010111 U$ -b10000110010111 j$ -b10000110010111 k$ -b10000110010111 q$ -b110 o$ -1{# -0/# -0G# -b1011100 J# -b1011100 P# -b101 N# -b1011100 +$ -b10000001011000 /$ -b1011100 -$ -b1011000 .$ -b1011000 T$ -b110 l$ -b111100 $( -b10100010111 *" -b10100010111 m" -b10100010111 )# -b10100010111 |# -b10100010111 e$ -b10100010111 p$ -b10100010111 t" -b10100010111 %# -b10100010111 '# -1&" -1w" -b101 K# -b110111 R -1; -#130000 -0; -#131000 -b1011000 B" -b1011000 B$ -b1011000 =& -19$ -1A" -0~" -b0 "# -b110 ## -b0 !# -b1100000 u" -b1100000 $# -b1100000 5# -1'$ -b1100000 9# -b1010 S" -b1010 m& -b1010 6' -b1010 >' -b1010 G' -b1010 j' -b1010 y$ -b0 M' -b0 s' -b0 ~$ -b0 J' -b0 p' -b0 {$ -b1100000 I# -b1010 C" -b1010 v# -b1010 <& -b1010 &$ -b1010 _$ -b0 ;$ -b0 Y$ -b1011000 -$ -b1011000 /$ -b1010000000000000000000000010111 J" -b1010000000000000000000000010111 u# -b1010000000000000000000000010111 r$ -b1010000000000000000000000010111 o -b1010000000000000000000000010111 )$ -b1010000000000000000000000010111 (' -b1010000000000000000000000010111 =' -b1010000000000000000000000010111 `' -b0 7$ -b0 \$ -b101 M# -b1100000 J# -b1100000 P# -b110 N# -0=$ -0i$ -b111 n$ -b10100010111 5$ -b10100010111 U$ -b10100010111 j$ -b10100010111 k$ -b10100010111 q$ -b1101 L# -b110 K# -b1011100 Q# -b1011100 ]# -b1011100 :# -b110001010000010100010011 *" -b110001010000010100010011 m" -b110001010000010100010011 )# -b110001010000010100010011 |# -b110001010000010100010011 e$ -b110001010000010100010011 p$ -b110001010000010100010011 t" -b110001010000010100010011 %# -b110001010000010100010011 '# -b111101 $( -b111 m$ -b1111100 C# -b1111100 O# -b1111100 1" -b1111100 o" -b1111100 3# -b1111100 N$ -b111000 R -1; -#132000 -0; -#133000 -b1011000 [' -b1011000 S' -b1011000 U' -b1011000000000000000 Z' -09$ -0A" -b1111 R" -b1111 l& -b1111 5' -b1111 P' -1P" -1|& -1$' -b1100000 0$ -b1100000 B" -b1100000 B$ -b1100000 =& -1H' -b1100100 Q" -b1100100 k& -b1100100 4' -b1100100 O' -1p -b1 !# -b1110110 ;' -b1111110 9' -b1000 7' -b1 W' -b1010100 <' -b1011100 :' -b1000 8' -b1100100 u" -b1100100 $# -b1100100 5# -b1100 D' -b1100 g' -b1100 u$ -b1100 N' -b1100 t' -b1100 "% -b1010 C' -b1010 f' -b1010 t$ -b101110 L" -b101110 7& -b101110 !' -b101110 B' -b1100 M" -b1100 i& -b1100 2' -b1100 A' -b1100 E' -b101110 y -b101110 C& -b101110 &' -b101110 e' -b1100 z -b1100 d& -b1100 )' -b1100 d' -b1100 h' -b1100 v$ -1G$ -0L$ -b10000110 ]' -b101010 Q' -b1011000 N" -b1011000 6& -b1011000 ~& -b1011000 @' -b1010 O" -b1010 j& -b1010 3' -b1010 ?' -b1010 F' -b1011000 { -b1011000 B& -b1011000 %' -b1011000 c' -b1010 | -b1010 e& -b1010 *' -b1010 b' -b1010 i' -b1011000 D" -b1011000 w$ -b1011000 ;& -b1010 E" -b1010 s$ -b1010 :& -b1010 x$ -b10011 I' -b10011 k' -b10011 z$ -b1100100 \' -b1100 K' -b1100100 u' -b1100 q' -b1100 |$ -0g$ -b1100100 9# -b1100 *$ -b1100 ^$ -b1100 #$ -b1100 b$ -b1100 C$ -b1100 V$ -b1010 !$ -b1010 d$ -b101110 =" -b101110 @$ -b101110 A& -b1100 >" -b1100 x# -b1100 @& -b1100 $$ -b1100 a$ -b1011000 ?" -b1011000 A$ -b1011000 ?& -b1010 @" -b1010 w# -b1010 >& -b1010 %$ -b1010 `$ -b10011 1$ -b10011 ]$ -b1100100 ,$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 J" -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 u# -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 r$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 o -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 )$ -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 (' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 =' -b1100000000001100000000000000000000000000000011000101001010011000101000000000000010011 `' -b1100 8$ -b1100 [$ -1($ -0M$ -1S# -b1100100 I# -b110001010000010100010011 5$ -b110001010000010100010011 U$ -b110001010000010100010011 j$ -b110001010000010100010011 k$ -b110001010000010100010011 q$ -b111 o$ -b0 n$ -0{# -b1100100 J# -b1100100 P# -b111 N# -b110 M# -b1100000 +$ -b1011100 /$ -b1011100 -$ -b1110100 .$ -b1011100 T$ -b10000000 C# -b10000000 O# -b10000000 1" -b10000000 o" -b10000000 3# -b10000000 N$ -b111 l$ -b1000 m$ -b111110 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b1100000 Q# -b1100000 ]# -b1100000 :# -b111 K# -b1110 L# -b111001 R -1; -#134000 -0; -#135000 -b0 [' -b0 S' -b0 U' -b0 R' -b0 T' -b0 Z' -b0 B" -b0 B$ -b0 =& -19$ -b1100100 0$ -b0 R" -b0 l& -b0 5' -b0 P' -0P" -0|& -0$' -b0 !# -0H' -0p -b1100000 u" -b1100000 $# -b1100000 5# -0s" -0'$ -b0 W' -b1101000 9# -b0 D' -b0 g' -b0 u$ -b0 N' -b0 t' -b0 "% -b0 C' -b0 f' -b0 t$ -0G$ -1L$ -b0 L" -b0 7& -b0 !' -b0 B' -b0 M" -b0 i& -b0 2' -b0 A' -b0 E' -b0 y -b0 C& -b0 &' -b0 e' -b0 z -b0 d& -b0 )' -b0 d' -b0 h' -b0 v$ -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 E" -b0 s$ -b0 :& -b0 x$ -b10111 I' -b10111 k' -b10111 z$ -b0 K' -b0 q' -b0 |$ -b1100000 8# -b1101000 I# -00# -b110 z" -1;( -b0 *$ -b0 ^$ -b0 #$ -b0 b$ -b0 C$ -b0 V$ -b0 !$ -b0 d$ -b0 =" -b0 @$ -b0 A& -b0 >" -b0 x# -b0 @& -b0 $$ -b0 a$ -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b10111 1$ -b10111 ]$ -b1010000000000000000000000010111 J" -b1010000000000000000000000010111 u# -b1010000000000000000000000010111 r$ -b1010000000000000000000000010111 o -b1010000000000000000000000010111 )$ -b1010000000000000000000000010111 (' -b1010000000000000000000000010111 =' -b1010000000000000000000000010111 `' -b0 8$ -b0 [$ -0($ -1M$ -b1100000 W# -b111 M# -b1101000 J# -b1101000 P# -b0 N# -0V# -1[# -b1100000 r" -b1100000 |" -b1100000 p# -b0 <' -b0 :' -b0 8' -b0 ;' -b0 9' -b0 7' -b0 Q" -b0 k& -b0 4' -b0 O' -1=$ -1i$ -b10100010111 5$ -b10100010111 U$ -b10100010111 j$ -b10100010111 k$ -b10100010111 q$ -b0 o$ -b1100000 X# -b1100000 ^# -b1111 L# -b1000 K# -b1 Z# -b1100100 Q# -b1100100 ]# -b1100100 :# -b10 B# -b1100000 8( -b1100000 D( -b1100000 8 -b1100000 2" -b1100000 i" -b1100000 c# -b1100000 %( -b1100000 c" -b1100000 ># -b1100000 `# -14 -1_" -0@# -b111111 $( -b0 ,$ -b0 ?" -b0 A$ -b0 ?& -b0 \' -b0 ]' -b0 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 u' -b0 { -b0 B& -b0 %' -b0 c' -b0 D" -b0 w$ -b0 ;& -b1100100 F& -b1000 l$ -b1100100 +$ -b1100000 /$ -b1100000 -$ -b1100000 .$ -b1100000 T$ -b10000100 C# -b10000100 O# -b10000100 1" -b10000100 o" -b10000100 3# -b10000100 N$ -b111010 R -b100 n& -1; -#136000 -0; -#137000 -0E# -0-" -b100000000000000001010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 y" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 q" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 {" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 _# -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 0 -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 +" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 f" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 o# -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 0( -0S# -0;( -b1100000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b111 B( -1.# -1U# -0[# -1/# -1G# -b0 M# -b1100000 >( -b1100000 ?( -b1100000 E( -b111 A( -b10001000 C# -b10001000 O# -b10001000 1" -b10001000 o" -b10001000 3# -b10001000 N$ -b111 "( -b1000000 $( -0v" -04 -0_" -b1100000 Q# -b1100000 ]# -b1100000 :# -b10 Z# -b0 L# -b111011 R -1; -#138000 -0; -#139000 -1+( -1p" -b1000001 $( -1. -b111100 R -1; -#140000 -0; -#141000 -b1000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx y" -bx q" -bx {" -bx _# -bx 0 -bx +" -bx f" -bx o# -bx 0( -1s" -bx 4( -bx / -bx )" -bx e" -bx n# -bx ,( -bx 3( -1~" -b1010000000001100111000000000001111110001111100100110000000000010000000000000111001100000000001101101001010001100011 "# -0+( -0p" -12( -1=( -bx >( -bx ?( -bx E( -b111 C( -0. -b111 @( -b1000010 $( -b11 B# -1A# -b111101 R -1; -#142000 -0; -#143000 -b1 !# -b1100100 u" -b1100100 $# -b1100100 5# -b1100100 8# -1g$ -b1100100 W# -0.# -0U# -b1100100 X# -b1100100 ^# -1\# -1{# -b1 Y# -b1101101001010001100011 *" -b1101101001010001100011 m" -b1101101001010001100011 )# -b1101101001010001100011 |# -b1101101001010001100011 e$ -b1101101001010001100011 p$ -b1101101001010001100011 t" -b1101101001010001100011 %# -b1101101001010001100011 '# -1&" -1w" -b1000011 $( -b111110 R -1; -#144000 -0; -#145000 -b1000000000000 [' -b1000000000000 S' -b1000000000000 U' -09$ -b1100100 0$ -b1100100 B" -b1100100 B$ -b1100100 =& -0s" -b1000000000000000 Z' -b1000000000 R' -b1000000000 T' -b10 !# -0y# -1'$ -b1101000 u" -b1101000 $# -b1101000 5# -b1000000000000 9' -b1000000000000 7' -b1 W' -b1000000000100 <' -b1000000000100 :' -b1100100 8# -b11 D' -b11 g' -b11 u$ -b11 N' -b11 t' -b11 "% -b1101 C' -b1101 f' -b1101 t$ -b1000 S" -b1000 m& -b1000 6' -b1000 >' -b1000 G' -b1000 j' -b1000 y$ -b1000000000000 L" -b1000000000000 7& -b1000000000000 !' -b1000000000000 B' -b11 M" -b11 i& -b11 2' -b11 A' -b11 E' -b1000000000000 y -b1000000000000 C& -b1000000000000 &' -b1000000000000 e' -b11 z -b11 d& -b11 )' -b11 d' -b11 h' -b11 v$ -b10000000000000 ]' -b0 Q' -b1000000000000 N" -b1000000000000 6& -b1000000000000 ~& -b1000000000000 @' -b1101 O" -b1101 j& -b1101 3' -b1101 ?' -b1101 F' -b1000000000000 { -b1000000000000 B& -b1000000000000 %' -b1000000000000 c' -b1101 | -b1101 e& -b1101 *' -b1101 b' -b1101 i' -b1000000000000 D" -b1000000000000 w$ -b1000000000000 ;& -b1101 E" -b1101 s$ -b1101 :& -b1101 x$ -b1 M' -b1 s' -b1 ~$ -b1100011 I' -b1100011 k' -b1100011 z$ -b1000000000100 \' -b100 K' -b1000000000100 u' -b100 q' -b100 |$ -1T# -10# -b1100100 W# -b11 *$ -b11 ^$ -b11 #$ -b11 b$ -b11 C$ -b11 V$ -b1101 !$ -b1101 d$ -b1000 C" -b1000 v# -b1000 <& -b1000 &$ -b1000 _$ -b1000000000000 =" -b1000000000000 @$ -b1000000000000 A& -b11 >" -b11 x# -b11 @& -b11 $$ -b11 a$ -b1000000000000 ?" -b1000000000000 A$ -b1000000000000 ?& -b1101 @" -b1101 w# -b1101 >& -b1101 %$ -b1101 `$ -b1 ;$ -b1 Y$ -b1100011 1$ -b1100011 ]$ -b1101000 .$ -b1000000000100 ,$ -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 J" -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 u# -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 r$ -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 o -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 )$ -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 (' -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 =' -b11000000000011000000000000000000000000000001000110101000000110110100000000011100011 `' -b100 8$ -b100 [$ -1F$ -0M$ -0=$ -0i$ -b1 n$ -1V# -b1100000 X# -b1100000 ^# -0\# -b1101101001010001100011 5$ -b1101101001010001100011 U$ -b1101101001010001100011 j$ -b1101101001010001100011 k$ -b1101101001010001100011 q$ -b1001 m$ -b1000100 $( -b100000000000001110011 *" -b100000000000001110011 m" -b100000000000001110011 )# -b100000000000001110011 |# -b100000000000001110011 e$ -b100000000000001110011 p$ -b100000000000001110011 t" -b100000000000001110011 %# -b100000000000001110011 '# -b1100100 Q# -b1100100 ]# -b1100100 :# -b10 Y# -b111111 R -1; -#146000 -0; -#147000 -b1101000 B" -b1101000 B$ -b1101000 =& -09$ -b0 [' -b0 S' -b0 U' -b1101000 0$ -1s" -b0 Z' -b0 R' -b0 T' -b1 ;' -b1 9' -b0 7' -b0 W' -b1 Y' -b1 V' -b0 <' -b0 :' -0g$ -b1 D' -b1 g' -b1 u$ -b1 N' -b1 t' -b1 "% -b0 C' -b0 f' -b0 t$ -b0 S" -b0 m& -b0 6' -b0 >' -b0 G' -b0 j' -b0 y$ -b1 L" -b1 7& -b1 !' -b1 B' -b1 M" -b1 i& -b1 2' -b1 A' -b1 E' -b1 y -b1 C& -b1 &' -b1 e' -b1 z -b1 d& -b1 )' -b1 d' -b1 h' -b1 v$ -0J$ -1H$ -0K$ -1I$ -1G$ -0L$ -b1 ]' -b11111111111111111111111111111111 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b0 O" -b0 j& -b0 3' -b0 ?' -b0 F' -b0 { -b0 B& -b0 %' -b0 c' -b0 | -b0 e& -b0 *' -b0 b' -b0 i' -b0 D" -b0 w$ -b0 ;& -b0 E" -b0 s$ -b0 :& -b0 x$ -b0 M' -b0 s' -b0 ~$ -b1110011 I' -b1110011 k' -b1110011 z$ -b0 \' -b0 K' -b0 u' -b0 q' -b0 |$ -b1100000 8# -b1 *$ -b1 ^$ -b1 #$ -b1 b$ -b1 C$ -b1 V$ -b0 !$ -b0 d$ -b0 C" -b0 v# -b0 <& -b0 &$ -b0 _$ -b1 =" -b1 @$ -b1 A& -b1 >" -b1 x# -b1 @& -b1 $$ -b1 a$ -b0 ?" -b0 A$ -b0 ?& -b0 @" -b0 w# -b0 >& -b0 %$ -b0 `$ -b0 ;$ -b0 Y$ -b1110011 1$ -b1110011 ]$ -b0 ,$ -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 J" -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 u# -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 r$ -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 o -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 )$ -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 (' -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 =' -b1000000000001000000000000000000000000000000000000000000000010000000000000001110011 `' -b0 8$ -b0 [$ -b10 ?$ -b10 W$ -0F$ -b1100000 W# -0T# -0{# -b10 n$ -b100000000000001110011 5$ -b100000000000001110011 U$ -b100000000000001110011 j$ -b100000000000001110011 k$ -b100000000000001110011 q$ -b1 o$ -b1101000 Q# -b1101000 ]# -b1101000 :# -b1 B# -0A# -1@# -0&" -0w" -b1000101 $( -b1010 m$ -b1001 l$ -b1101000 +$ -b1100100 /$ -b1100100 -$ -b1100100 .$ -b1100100 T$ -b1000000 R -1; -#148000 -0; -#149000 -b1 Z' -b1 R' -b1 T' -0y# -b1101000 B" -b1101000 B$ -b1101000 =& -09$ -b10 [' -b1101000 0$ -b11 !# -b0 ;' -b1 7' -b0 Y' -b0 V' -b1 X' -b10001 <' -b10001 :' -1E# -1-" -b1101100 u" -b1101100 $# -b1101100 5# -0'$ -b100001 D' -b100001 g' -b100001 u$ -b100001 N' -b100001 t' -b100001 "% -b1011 C' -b1011 f' -b1011 t$ -1J$ -0H$ -1K$ -0I$ -0G$ -1L$ -b10 ]' -b0 Q' -b1 N" -b1 6& -b1 ~& -b1 @' -b1011 O" -b1011 j& -b1011 3' -b1011 ?' -b1011 F' -b1 { -b1 B& -b1 %' -b1 c' -b1011 | -b1011 e& -b1011 *' -b1011 b' -b1011 i' -b1 D" -b1 w$ -b1 ;& -b1011 E" -b1011 s$ -b1011 :& -b1011 x$ -b1 L' -b1 r' -b1 }$ -b1 M' -b1 s' -b1 ~$ -b1100011 I' -b1100011 k' -b1100011 z$ -b10001 \' -b10000 K' -b10001 u' -b10000 q' -b10000 |$ -1g$ -b1101100 9# -b10 "$ -b10 c$ -b100001 #$ -b100001 b$ -b100001 C$ -b100001 V$ -b1011 !$ -b1011 d$ -b1 ?" -b1 A$ -b1 ?& -b1011 @" -b1011 w# -b1011 >& -b1011 %$ -b1011 `$ -b1 :$ -b1 Z$ -b1 ;$ -b1 Y$ -b1100011 1$ -b1100011 ]$ -b10000100 .$ -b10001 ,$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 J" -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 u# -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 r$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 o -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 )$ -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 (' -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 =' -b100001000000100001000000000000000000000000000100000101100000000010101100000010011100011 `' -b10000 8$ -b10000 [$ -b0 ?$ -b0 W$ -1F$ -b1101100 I# -1=$ -1i$ -b10000101011001000001100011 5$ -b10000101011001000001100011 U$ -b10000101011001000001100011 j$ -b10000101011001000001100011 k$ -b10000101011001000001100011 q$ -b10 o$ -1{# -0/# -0G# -b1101100 J# -b1101100 P# -b1 N# -b110 P$ -1: -b1010 l$ -b1000110 $( -b111111000111110010011 *" -b111111000111110010011 m" -b111111000111110010011 )# -b111111000111110010011 |# -b111111000111110010011 e$ -b111111000111110010011 p$ -b111111000111110010011 t" -b111111000111110010011 %# -b111111000111110010011 '# -1&" -1w" -b1001 K# -b1000001 R -1; -#150000 -0; -#151000 -09$ -0~" -b0 "# -b1111 R" -b1111 l& -b1111 5' -b1111 P' -b111 ## -b0 !# -b0 [' -1H' -b1 Q" -b1 k& -b1 4' -b1 O' -b1110000 u" -b1110000 $# -b1110000 5# -b0 Z' -b0 R' -b0 T' -b1 ;' -b0 7' -b1 Y' -b1 V' -b1 <' -b1 :' -b1110000 9# -b1 D' -b1 g' -b1 u$ -b1 N' -b1 t' -b1 "% -b11111 C' -b11111 f' -b11111 t$ -b11111 S" -b11111 m& -b11111 6' -b11111 >' -b11111 G' -b11111 j' -b11111 y$ -0J$ -1H$ -0K$ -1I$ -1G$ -0L$ -b1 ]' -b11111111111111111111111111111111 Q' -b0 N" -b0 6& -b0 ~& -b0 @' -b11111 O" -b11111 j& -b11111 3' -b11111 ?' -b11111 F' -b0 { -b0 B& -b0 %' -b0 c' -b11111 | -b11111 e& -b11111 *' -b11111 b' -b11111 i' -b0 D" -b0 w$ -b0 ;& -b11111 E" -b11111 s$ -b11111 :& -b11111 x$ -b0 L' -b0 r' -b0 }$ -b0 M' -b0 s' -b0 ~$ -b10011 I' -b10011 k' -b10011 z$ -b1 \' -b1 K' -b1 u' -b1 q' -b1 |$ -b1110000 I# -0E# -b0 "$ -b0 c$ -b1 #$ -b1 b$ -b1 C$ -b1 V$ -b11111 !$ -b11111 d$ -b11111 C" -b11111 v# -b11111 <& -b11111 &$ -b11111 _$ -b0 ?" -b0 A$ -b0 ?& -b11111 @" -b11111 w# -b11111 >& -b11111 %$ -b11111 `$ -b0 :$ -b0 Z$ -b0 ;$ -b0 Y$ -b10011 1$ -b10011 ]$ -b1100110 .$ -b1 ,$ -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 J" -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 u# -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 r$ -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 o -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 )$ -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 (' -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 =' -b1000000000001000000000000000000000000000000011111111111000011111100000000000010011 `' -b1 8$ -b1 [$ -1($ -0F$ -b1 M# -b1110000 J# -b1110000 P# -b10 N# -0=$ -0i$ -b11 n$ -b111111000111110010011 5$ -b111111000111110010011 U$ -b111111000111110010011 j$ -b111111000111110010011 k$ -b111111000111110010011 q$ -b1 L# -b1010 K# -b1101100 Q# -b1101100 ]# -b1101100 :# -b1010000000001100111 *" -b1010000000001100111 m" -b1010000000001100111 )# -b1010000000001100111 |# -b1010000000001100111 e$ -b1010000000001100111 p$ -b1010000000001100111 t" -b1010000000001100111 %# -b1010000000001100111 '# -b1000111 $( -b1011 m$ -0," -1; -#152000 -0; -#153000 -b1 !# -b1110100 u" -b1110100 $# -b1110100 5# -0g$ -b1110100 9# -1S# -b1110100 I# -b100 n$ -0{# -b1110100 J# -b1110100 P# -b11 N# -b1100 m$ -b1001000 $( -b0 *" -b0 m" -b0 )# -b0 |# -b0 e$ -b0 p$ -b0 t" -b0 %# -b0 '# -1v" -0&" -0w" -b1110000 Q# -b1110000 ]# -b1110000 :# -b1011 K# -1; -#154000 -0; -#155000 -b0 !# -b1110000 u" -b1110000 $# -b1110000 5# -0s" -b1111000 9# -b1110000 8# -b1111000 I# -00# -b111 z" -1;( -b1110000 W# -b1111000 J# -b1111000 P# -b100 N# -0V# -1[# -b1110000 r" -b1110000 |" -b1110000 p# -b1110000 X# -b1110000 ^# -b1100 K# -b11 Z# -b1110100 Q# -b1110100 ]# -b1110100 :# -b10 B# -b1110000 8( -b1110000 D( -b1110000 8 -b1110000 2" -b1110000 i" -b1110000 c# -b1110000 %( -b1110000 c" -b1110000 ># -b1110000 `# -14 -1_" -0@# -b1001001 $( -1; -#156000 -0; -#157000 -0S# -0;( -b1110000 4( -b0 / -b0 )" -b0 e" -b0 n# -b0 ,( -b0 3( -02( -0=( -b0 B( -1.# -1U# -0[# -b1110000 >( -b1110000 ?( -b1110000 E( -b1000 A( -b1000 "( -b1001010 $( -0v" -04 -0_" -b1110000 Q# -b1110000 ]# -b1110000 :# -b0 Z# -1; -#158000 -0; -#159000 -1+( -1p" -b1001011 $( -1. -1; -#160000 -0; -#161000 -b100000000000000101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 y" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 q" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 {" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 _# -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 0 -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 +" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 f" -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 o# -b101011000010110010011000000000000000000000001101101110000000000000000000000010011011100000000000000000000000010110111 0( -1s" -b0 4( -1~" -bx "# -0+( -0p" -12( -1=( -b0 >( -b0 ?( -b0 E( -b0 C( -0. -b1000 @( -b1001100 $( -b11 B# -1A# -b1 P -b1 N -0H( -1; diff --git a/resources/dide-viewer/view/vcd.css b/resources/dide-viewer/view/vcd.css deleted file mode 100644 index 59ae30a..0000000 --- a/resources/dide-viewer/view/vcd.css +++ /dev/null @@ -1,117 +0,0 @@ -:root { - --display-signal-info-height: 50px; - --signal-default-color: #4CAF50; - --main-color: #CB81DA; - --main-dark-color: #2D323B; - --main-light-color: var(--main-color); - --sidebar-width: 230px; - --right-nav-width: 60px; - --time-scale-height: 50px; - --sidebar-padding: 10px; - --sidebar-item-margin: 5px; - --vcd-render-padding: 30px; - /* 需要满足如下公式 --time-scale-height + --sidebar-padding = --vcd-render-padding + canvas预留 高度 */ - --render-scale-x: 1; - - /* css 动画属性 */ - --animation-7s: .7s cubic-bezier(0.23,1,0.32,1); - --animation-5s: .5s cubic-bezier(0.23,1,0.32,1); - --animation-3s: .35s cubic-bezier(0.23,1,0.32,1); - --gray-box-shadow-0: 0 0 8px 3px rgba(182, 181, 182, 0.9); -} - -html, body { - background-color: var(--background); - color: var(--foreground); - overflow: hidden; -} - -body::-webkit-scrollbar { - width: 0; -} - -* hr { - border: none; - background-color: var(--vscode-focusBorder); - height: 2px; - width: 95%; -} - -::-webkit-scrollbar { - width: 12px; -} - -::-webkit-scrollbar-track { - background: var(--sidebar); -} - -::-webkit-scrollbar-thumb { - background: var(--scrollbar-background); - border-radius: .3em; -} - -::-webkit-scrollbar-thumb:hover { - background: var(--scrollbar-hover); - border-radius: .3em; -} - -::-webkit-scrollbar-thumb:active { - background: var(--scrollbar-active); - border-radius: .3em; -} - -::-webkit-scrollbar-button { - height: 0; - width: 0; -} - -::-webkit-scrollbar-corner { - background: none; - display: none; -} - -.el-select__wrapper { - background-color: transparent !important; - width: 50% !important; - min-width: 200px !important; - padding: 13px !important; - font-size: 16px !important; - color: var(--sidebar-item-text) !important; -} - -.el-select__placeholder { - color: var(--sidebar-item-text) !important; -} - -.el-select-dropdown { - min-width: 300px !important; - background-color: var(--sidebar); - border: 1.0px solid var(--main-color); - outline: none; -} - -.el-checkbox-button__inner { - font-size: 16px !important; -} - -.el-select { - width: fit-content !important; -} - -a { - color: var(--main-color); -} - -.digital-ide-icon { - background-image: url(./icon.svg); - background-size: 100%; - height: 50px; - width: 50px; -} - -.digital-ide-icon.big { - background-image: url(./icon.svg); - background-size: 100%; - height: 200px; - width: 200px; -} \ No newline at end of file diff --git a/resources/dide-viewer/view/vcd.js b/resources/dide-viewer/view/vcd.js deleted file mode 100644 index e1bb66b..0000000 --- a/resources/dide-viewer/view/vcd.js +++ /dev/null @@ -1,12 +0,0 @@ -!function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,(function(r){return o(e[i][1][r]||r)}),p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i>6],primitive=0==(32&tag);if(31==(31&tag)){let oct=tag;for(tag=0;128==(128&oct);){if(oct=buf.readUInt8(fail),buf.isError(oct))return oct;tag<<=7,tag|=127&oct}}else tag&=31;return{cls:cls,primitive:primitive,tag:tag,tagStr:der.tag[tag]}}function derDecodeLen(buf,primitive,fail){let len=buf.readUInt8(fail);if(buf.isError(len))return len;if(!primitive&&128===len)return null;if(0==(128&len))return len;const num=127&len;if(num>4)return buf.error("length octect is too long");len=0;for(let i=0;i=31)return reporter.error("Multi-octet tag encoding unsupported");primitive||(res|=32);return res|=der.tagClassByName[cls||"universal"]<<6,res}(tag,primitive,cls,this.reporter);if(content.length<128){const header=Buffer.alloc(2);return header[0]=encodedTag,header[1]=content.length,this._createEncoderBuffer([header,content])}let lenOctets=1;for(let i=content.length;i>=256;i>>=8)lenOctets++;const header=Buffer.alloc(2+lenOctets);header[0]=encodedTag,header[1]=128|lenOctets;for(let i=1+lenOctets,j=content.length;j>0;i--,j>>=8)header[i]=255&j;return this._createEncoderBuffer([header,content])},DERNode.prototype._encodeStr=function(str,tag){if("bitstr"===tag)return this._createEncoderBuffer([0|str.unused,str.data]);if("bmpstr"===tag){const buf=Buffer.alloc(2*str.length);for(let i=0;i=40)return this.reporter.error("Second objid identifier OOB");id.splice(0,2,40*id[0]+id[1])}let size=0;for(let i=0;i=128;ident>>=7)size++}const objid=Buffer.alloc(size);let offset=objid.length-1;for(let i=id.length-1;i>=0;i--){let ident=id[i];for(objid[offset--]=127&ident;(ident>>=7)>0;)objid[offset--]=128|127&ident}return this._createEncoderBuffer(objid)},DERNode.prototype._encodeTime=function(time,tag){let str;const date=new Date(time);return"gentime"===tag?str=[two(date.getUTCFullYear()),two(date.getUTCMonth()+1),two(date.getUTCDate()),two(date.getUTCHours()),two(date.getUTCMinutes()),two(date.getUTCSeconds()),"Z"].join(""):"utctime"===tag?str=[two(date.getUTCFullYear()%100),two(date.getUTCMonth()+1),two(date.getUTCDate()),two(date.getUTCHours()),two(date.getUTCMinutes()),two(date.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+tag+" time is not supported yet"),this._encodeStr(str,"octstr")},DERNode.prototype._encodeNull=function(){return this._createEncoderBuffer("")},DERNode.prototype._encodeInt=function(num,values){if("string"==typeof num){if(!values)return this.reporter.error("String int or enum given, but no values map");if(!values.hasOwnProperty(num))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(num));num=values[num]}if("number"!=typeof num&&!Buffer.isBuffer(num)){const numArray=num.toArray();!num.sign&&128&numArray[0]&&numArray.unshift(0),num=Buffer.from(numArray)}if(Buffer.isBuffer(num)){let size=num.length;0===num.length&&size++;const out=Buffer.alloc(size);return num.copy(out),0===num.length&&(out[0]=0),this._createEncoderBuffer(out)}if(num<128)return this._createEncoderBuffer(num);if(num<256)return this._createEncoderBuffer([0,num]);let size=1;for(let i=num;i>=256;i>>=8)size++;const out=new Array(size);for(let i=out.length-1;i>=0;i--)out[i]=255&num,num>>=8;return 128&out[0]&&out.unshift(0),this._createEncoderBuffer(Buffer.from(out))},DERNode.prototype._encodeBool=function(value){return this._createEncoderBuffer(value?255:0)},DERNode.prototype._use=function(entity,obj){return"function"==typeof entity&&(entity=entity(obj)),entity._getEncoder("der").tree},DERNode.prototype._skipDefault=function(dataBuffer,reporter,parent){const state=this._baseState;let i;if(null===state.default)return!1;const data=dataBuffer.join();if(void 0===state.defaultBuffer&&(state.defaultBuffer=this._encodeValue(state.default,reporter,parent).join()),data.length!==state.defaultBuffer.length)return!1;for(i=0;i=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function parseHexByte(string,lowerBound,index){var r=parseHex4Bits(string,index);return index-1>=lowerBound&&(r|=parseHex4Bits(string,index-1)<<4),r}function parseBase(str,start,end,mul){for(var r=0,len=Math.min(str.length,end),i=start;i=49?c-49+10:c>=17?c-17+10:c}return r}BN.isBN=function(num){return num instanceof BN||null!==num&&"object"==typeof num&&num.constructor.wordSize===BN.wordSize&&Array.isArray(num.words)},BN.max=function(left,right){return left.cmp(right)>0?left:right},BN.min=function(left,right){return left.cmp(right)<0?left:right},BN.prototype._init=function(number,base,endian){if("number"==typeof number)return this._initNumber(number,base,endian);if("object"==typeof number)return this._initArray(number,base,endian);"hex"===base&&(base=16),assert(base===(0|base)&&base>=2&&base<=36);var start=0;"-"===(number=number.toString().replace(/\s+/g,""))[0]&&(start++,this.negative=1),start=0;i-=3)w=number[i]|number[i-1]<<8|number[i-2]<<16,this.words[j]|=w<>>26-off&67108863,(off+=24)>=26&&(off-=26,j++);else if("le"===endian)for(i=0,j=0;i>>26-off&67108863,(off+=24)>=26&&(off-=26,j++);return this.strip()},BN.prototype._parseHex=function(number,start,endian){this.length=Math.ceil((number.length-start)/6),this.words=new Array(this.length);for(var i=0;i=start;i-=2)w=parseHexByte(number,start,i)<=18?(off-=18,j+=1,this.words[j]|=w>>>26):off+=8;else for(i=(number.length-start)%2==0?start+1:start;i=18?(off-=18,j+=1,this.words[j]|=w>>>26):off+=8;this.strip()},BN.prototype._parseBase=function(number,base,start){this.words=[0],this.length=1;for(var limbLen=0,limbPow=1;limbPow<=67108863;limbPow*=base)limbLen++;limbLen--,limbPow=limbPow/base|0;for(var total=number.length-start,mod=total%limbLen,end=Math.min(total,total-mod)+start,word=0,i=start;i1&&0===this.words[this.length-1];)this.length--;return this._normSign()},BN.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},BN.prototype.inspect=function(){return(this.red?""};var zeros=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],groupSizes=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],groupBases=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function smallMulTo(self,num,out){out.negative=num.negative^self.negative;var len=self.length+num.length|0;out.length=len,len=len-1|0;var a=0|self.words[0],b=0|num.words[0],r=a*b,lo=67108863&r,carry=r/67108864|0;out.words[0]=lo;for(var k=1;k>>26,rword=67108863&carry,maxJ=Math.min(k,num.length-1),j=Math.max(0,k-self.length+1);j<=maxJ;j++){var i=k-j|0;ncarry+=(r=(a=0|self.words[i])*(b=0|num.words[j])+rword)/67108864|0,rword=67108863&r}out.words[k]=0|rword,carry=0|ncarry}return 0!==carry?out.words[k]=0|carry:out.length--,out.strip()}BN.prototype.toString=function(base,padding){var out;if(padding=0|padding||1,16===(base=base||10)||"hex"===base){out="";for(var off=0,carry=0,i=0;i>>24-off&16777215)||i!==this.length-1?zeros[6-word.length]+word+out:word+out,(off+=2)>=26&&(off-=26,i--)}for(0!==carry&&(out=carry.toString(16)+out);out.length%padding!=0;)out="0"+out;return 0!==this.negative&&(out="-"+out),out}if(base===(0|base)&&base>=2&&base<=36){var groupSize=groupSizes[base],groupBase=groupBases[base];out="";var c=this.clone();for(c.negative=0;!c.isZero();){var r=c.modn(groupBase).toString(base);out=(c=c.idivn(groupBase)).isZero()?r+out:zeros[groupSize-r.length]+r+out}for(this.isZero()&&(out="0"+out);out.length%padding!=0;)out="0"+out;return 0!==this.negative&&(out="-"+out),out}assert(!1,"Base should be between 2 and 36")},BN.prototype.toNumber=function(){var ret=this.words[0];return 2===this.length?ret+=67108864*this.words[1]:3===this.length&&1===this.words[2]?ret+=4503599627370496+67108864*this.words[1]:this.length>2&&assert(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-ret:ret},BN.prototype.toJSON=function(){return this.toString(16)},BN.prototype.toBuffer=function(endian,length){return assert(void 0!==Buffer),this.toArrayLike(Buffer,endian,length)},BN.prototype.toArray=function(endian,length){return this.toArrayLike(Array,endian,length)},BN.prototype.toArrayLike=function(ArrayType,endian,length){var byteLength=this.byteLength(),reqLength=length||Math.max(1,byteLength);assert(byteLength<=reqLength,"byte array longer than desired length"),assert(reqLength>0,"Requested array length <= 0"),this.strip();var b,i,littleEndian="le"===endian,res=new ArrayType(reqLength),q=this.clone();if(littleEndian){for(i=0;!q.isZero();i++)b=q.andln(255),q.iushrn(8),res[i]=b;for(;i=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},BN.prototype._zeroBits=function(w){if(0===w)return 26;var t=w,r=0;return 0==(8191&t)&&(r+=13,t>>>=13),0==(127&t)&&(r+=7,t>>>=7),0==(15&t)&&(r+=4,t>>>=4),0==(3&t)&&(r+=2,t>>>=2),0==(1&t)&&r++,r},BN.prototype.bitLength=function(){var w=this.words[this.length-1],hi=this._countBits(w);return 26*(this.length-1)+hi},BN.prototype.zeroBits=function(){if(this.isZero())return 0;for(var r=0,i=0;inum.length?this.clone().ior(num):num.clone().ior(this)},BN.prototype.uor=function(num){return this.length>num.length?this.clone().iuor(num):num.clone().iuor(this)},BN.prototype.iuand=function(num){var b;b=this.length>num.length?num:this;for(var i=0;inum.length?this.clone().iand(num):num.clone().iand(this)},BN.prototype.uand=function(num){return this.length>num.length?this.clone().iuand(num):num.clone().iuand(this)},BN.prototype.iuxor=function(num){var a,b;this.length>num.length?(a=this,b=num):(a=num,b=this);for(var i=0;inum.length?this.clone().ixor(num):num.clone().ixor(this)},BN.prototype.uxor=function(num){return this.length>num.length?this.clone().iuxor(num):num.clone().iuxor(this)},BN.prototype.inotn=function(width){assert("number"==typeof width&&width>=0);var bytesNeeded=0|Math.ceil(width/26),bitsLeft=width%26;this._expand(bytesNeeded),bitsLeft>0&&bytesNeeded--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-bitsLeft),this.strip()},BN.prototype.notn=function(width){return this.clone().inotn(width)},BN.prototype.setn=function(bit,val){assert("number"==typeof bit&&bit>=0);var off=bit/26|0,wbit=bit%26;return this._expand(off+1),this.words[off]=val?this.words[off]|1<num.length?(a=this,b=num):(a=num,b=this);for(var carry=0,i=0;i>>26;for(;0!==carry&&i>>26;if(this.length=a.length,0!==carry)this.words[this.length]=carry,this.length++;else if(a!==this)for(;inum.length?this.clone().iadd(num):num.clone().iadd(this)},BN.prototype.isub=function(num){if(0!==num.negative){num.negative=0;var r=this.iadd(num);return num.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(num),this.negative=1,this._normSign();var a,b,cmp=this.cmp(num);if(0===cmp)return this.negative=0,this.length=1,this.words[0]=0,this;cmp>0?(a=this,b=num):(a=num,b=this);for(var carry=0,i=0;i>26,this.words[i]=67108863&r;for(;0!==carry&&i>26,this.words[i]=67108863&r;if(0===carry&&i>>13,a1=0|a[1],al1=8191&a1,ah1=a1>>>13,a2=0|a[2],al2=8191&a2,ah2=a2>>>13,a3=0|a[3],al3=8191&a3,ah3=a3>>>13,a4=0|a[4],al4=8191&a4,ah4=a4>>>13,a5=0|a[5],al5=8191&a5,ah5=a5>>>13,a6=0|a[6],al6=8191&a6,ah6=a6>>>13,a7=0|a[7],al7=8191&a7,ah7=a7>>>13,a8=0|a[8],al8=8191&a8,ah8=a8>>>13,a9=0|a[9],al9=8191&a9,ah9=a9>>>13,b0=0|b[0],bl0=8191&b0,bh0=b0>>>13,b1=0|b[1],bl1=8191&b1,bh1=b1>>>13,b2=0|b[2],bl2=8191&b2,bh2=b2>>>13,b3=0|b[3],bl3=8191&b3,bh3=b3>>>13,b4=0|b[4],bl4=8191&b4,bh4=b4>>>13,b5=0|b[5],bl5=8191&b5,bh5=b5>>>13,b6=0|b[6],bl6=8191&b6,bh6=b6>>>13,b7=0|b[7],bl7=8191&b7,bh7=b7>>>13,b8=0|b[8],bl8=8191&b8,bh8=b8>>>13,b9=0|b[9],bl9=8191&b9,bh9=b9>>>13;out.negative=self.negative^num.negative,out.length=19;var w0=(c+(lo=Math.imul(al0,bl0))|0)+((8191&(mid=(mid=Math.imul(al0,bh0))+Math.imul(ah0,bl0)|0))<<13)|0;c=((hi=Math.imul(ah0,bh0))+(mid>>>13)|0)+(w0>>>26)|0,w0&=67108863,lo=Math.imul(al1,bl0),mid=(mid=Math.imul(al1,bh0))+Math.imul(ah1,bl0)|0,hi=Math.imul(ah1,bh0);var w1=(c+(lo=lo+Math.imul(al0,bl1)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh1)|0)+Math.imul(ah0,bl1)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh1)|0)+(mid>>>13)|0)+(w1>>>26)|0,w1&=67108863,lo=Math.imul(al2,bl0),mid=(mid=Math.imul(al2,bh0))+Math.imul(ah2,bl0)|0,hi=Math.imul(ah2,bh0),lo=lo+Math.imul(al1,bl1)|0,mid=(mid=mid+Math.imul(al1,bh1)|0)+Math.imul(ah1,bl1)|0,hi=hi+Math.imul(ah1,bh1)|0;var w2=(c+(lo=lo+Math.imul(al0,bl2)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh2)|0)+Math.imul(ah0,bl2)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh2)|0)+(mid>>>13)|0)+(w2>>>26)|0,w2&=67108863,lo=Math.imul(al3,bl0),mid=(mid=Math.imul(al3,bh0))+Math.imul(ah3,bl0)|0,hi=Math.imul(ah3,bh0),lo=lo+Math.imul(al2,bl1)|0,mid=(mid=mid+Math.imul(al2,bh1)|0)+Math.imul(ah2,bl1)|0,hi=hi+Math.imul(ah2,bh1)|0,lo=lo+Math.imul(al1,bl2)|0,mid=(mid=mid+Math.imul(al1,bh2)|0)+Math.imul(ah1,bl2)|0,hi=hi+Math.imul(ah1,bh2)|0;var w3=(c+(lo=lo+Math.imul(al0,bl3)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh3)|0)+Math.imul(ah0,bl3)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh3)|0)+(mid>>>13)|0)+(w3>>>26)|0,w3&=67108863,lo=Math.imul(al4,bl0),mid=(mid=Math.imul(al4,bh0))+Math.imul(ah4,bl0)|0,hi=Math.imul(ah4,bh0),lo=lo+Math.imul(al3,bl1)|0,mid=(mid=mid+Math.imul(al3,bh1)|0)+Math.imul(ah3,bl1)|0,hi=hi+Math.imul(ah3,bh1)|0,lo=lo+Math.imul(al2,bl2)|0,mid=(mid=mid+Math.imul(al2,bh2)|0)+Math.imul(ah2,bl2)|0,hi=hi+Math.imul(ah2,bh2)|0,lo=lo+Math.imul(al1,bl3)|0,mid=(mid=mid+Math.imul(al1,bh3)|0)+Math.imul(ah1,bl3)|0,hi=hi+Math.imul(ah1,bh3)|0;var w4=(c+(lo=lo+Math.imul(al0,bl4)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh4)|0)+Math.imul(ah0,bl4)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh4)|0)+(mid>>>13)|0)+(w4>>>26)|0,w4&=67108863,lo=Math.imul(al5,bl0),mid=(mid=Math.imul(al5,bh0))+Math.imul(ah5,bl0)|0,hi=Math.imul(ah5,bh0),lo=lo+Math.imul(al4,bl1)|0,mid=(mid=mid+Math.imul(al4,bh1)|0)+Math.imul(ah4,bl1)|0,hi=hi+Math.imul(ah4,bh1)|0,lo=lo+Math.imul(al3,bl2)|0,mid=(mid=mid+Math.imul(al3,bh2)|0)+Math.imul(ah3,bl2)|0,hi=hi+Math.imul(ah3,bh2)|0,lo=lo+Math.imul(al2,bl3)|0,mid=(mid=mid+Math.imul(al2,bh3)|0)+Math.imul(ah2,bl3)|0,hi=hi+Math.imul(ah2,bh3)|0,lo=lo+Math.imul(al1,bl4)|0,mid=(mid=mid+Math.imul(al1,bh4)|0)+Math.imul(ah1,bl4)|0,hi=hi+Math.imul(ah1,bh4)|0;var w5=(c+(lo=lo+Math.imul(al0,bl5)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh5)|0)+Math.imul(ah0,bl5)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh5)|0)+(mid>>>13)|0)+(w5>>>26)|0,w5&=67108863,lo=Math.imul(al6,bl0),mid=(mid=Math.imul(al6,bh0))+Math.imul(ah6,bl0)|0,hi=Math.imul(ah6,bh0),lo=lo+Math.imul(al5,bl1)|0,mid=(mid=mid+Math.imul(al5,bh1)|0)+Math.imul(ah5,bl1)|0,hi=hi+Math.imul(ah5,bh1)|0,lo=lo+Math.imul(al4,bl2)|0,mid=(mid=mid+Math.imul(al4,bh2)|0)+Math.imul(ah4,bl2)|0,hi=hi+Math.imul(ah4,bh2)|0,lo=lo+Math.imul(al3,bl3)|0,mid=(mid=mid+Math.imul(al3,bh3)|0)+Math.imul(ah3,bl3)|0,hi=hi+Math.imul(ah3,bh3)|0,lo=lo+Math.imul(al2,bl4)|0,mid=(mid=mid+Math.imul(al2,bh4)|0)+Math.imul(ah2,bl4)|0,hi=hi+Math.imul(ah2,bh4)|0,lo=lo+Math.imul(al1,bl5)|0,mid=(mid=mid+Math.imul(al1,bh5)|0)+Math.imul(ah1,bl5)|0,hi=hi+Math.imul(ah1,bh5)|0;var w6=(c+(lo=lo+Math.imul(al0,bl6)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh6)|0)+Math.imul(ah0,bl6)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh6)|0)+(mid>>>13)|0)+(w6>>>26)|0,w6&=67108863,lo=Math.imul(al7,bl0),mid=(mid=Math.imul(al7,bh0))+Math.imul(ah7,bl0)|0,hi=Math.imul(ah7,bh0),lo=lo+Math.imul(al6,bl1)|0,mid=(mid=mid+Math.imul(al6,bh1)|0)+Math.imul(ah6,bl1)|0,hi=hi+Math.imul(ah6,bh1)|0,lo=lo+Math.imul(al5,bl2)|0,mid=(mid=mid+Math.imul(al5,bh2)|0)+Math.imul(ah5,bl2)|0,hi=hi+Math.imul(ah5,bh2)|0,lo=lo+Math.imul(al4,bl3)|0,mid=(mid=mid+Math.imul(al4,bh3)|0)+Math.imul(ah4,bl3)|0,hi=hi+Math.imul(ah4,bh3)|0,lo=lo+Math.imul(al3,bl4)|0,mid=(mid=mid+Math.imul(al3,bh4)|0)+Math.imul(ah3,bl4)|0,hi=hi+Math.imul(ah3,bh4)|0,lo=lo+Math.imul(al2,bl5)|0,mid=(mid=mid+Math.imul(al2,bh5)|0)+Math.imul(ah2,bl5)|0,hi=hi+Math.imul(ah2,bh5)|0,lo=lo+Math.imul(al1,bl6)|0,mid=(mid=mid+Math.imul(al1,bh6)|0)+Math.imul(ah1,bl6)|0,hi=hi+Math.imul(ah1,bh6)|0;var w7=(c+(lo=lo+Math.imul(al0,bl7)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh7)|0)+Math.imul(ah0,bl7)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh7)|0)+(mid>>>13)|0)+(w7>>>26)|0,w7&=67108863,lo=Math.imul(al8,bl0),mid=(mid=Math.imul(al8,bh0))+Math.imul(ah8,bl0)|0,hi=Math.imul(ah8,bh0),lo=lo+Math.imul(al7,bl1)|0,mid=(mid=mid+Math.imul(al7,bh1)|0)+Math.imul(ah7,bl1)|0,hi=hi+Math.imul(ah7,bh1)|0,lo=lo+Math.imul(al6,bl2)|0,mid=(mid=mid+Math.imul(al6,bh2)|0)+Math.imul(ah6,bl2)|0,hi=hi+Math.imul(ah6,bh2)|0,lo=lo+Math.imul(al5,bl3)|0,mid=(mid=mid+Math.imul(al5,bh3)|0)+Math.imul(ah5,bl3)|0,hi=hi+Math.imul(ah5,bh3)|0,lo=lo+Math.imul(al4,bl4)|0,mid=(mid=mid+Math.imul(al4,bh4)|0)+Math.imul(ah4,bl4)|0,hi=hi+Math.imul(ah4,bh4)|0,lo=lo+Math.imul(al3,bl5)|0,mid=(mid=mid+Math.imul(al3,bh5)|0)+Math.imul(ah3,bl5)|0,hi=hi+Math.imul(ah3,bh5)|0,lo=lo+Math.imul(al2,bl6)|0,mid=(mid=mid+Math.imul(al2,bh6)|0)+Math.imul(ah2,bl6)|0,hi=hi+Math.imul(ah2,bh6)|0,lo=lo+Math.imul(al1,bl7)|0,mid=(mid=mid+Math.imul(al1,bh7)|0)+Math.imul(ah1,bl7)|0,hi=hi+Math.imul(ah1,bh7)|0;var w8=(c+(lo=lo+Math.imul(al0,bl8)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh8)|0)+Math.imul(ah0,bl8)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh8)|0)+(mid>>>13)|0)+(w8>>>26)|0,w8&=67108863,lo=Math.imul(al9,bl0),mid=(mid=Math.imul(al9,bh0))+Math.imul(ah9,bl0)|0,hi=Math.imul(ah9,bh0),lo=lo+Math.imul(al8,bl1)|0,mid=(mid=mid+Math.imul(al8,bh1)|0)+Math.imul(ah8,bl1)|0,hi=hi+Math.imul(ah8,bh1)|0,lo=lo+Math.imul(al7,bl2)|0,mid=(mid=mid+Math.imul(al7,bh2)|0)+Math.imul(ah7,bl2)|0,hi=hi+Math.imul(ah7,bh2)|0,lo=lo+Math.imul(al6,bl3)|0,mid=(mid=mid+Math.imul(al6,bh3)|0)+Math.imul(ah6,bl3)|0,hi=hi+Math.imul(ah6,bh3)|0,lo=lo+Math.imul(al5,bl4)|0,mid=(mid=mid+Math.imul(al5,bh4)|0)+Math.imul(ah5,bl4)|0,hi=hi+Math.imul(ah5,bh4)|0,lo=lo+Math.imul(al4,bl5)|0,mid=(mid=mid+Math.imul(al4,bh5)|0)+Math.imul(ah4,bl5)|0,hi=hi+Math.imul(ah4,bh5)|0,lo=lo+Math.imul(al3,bl6)|0,mid=(mid=mid+Math.imul(al3,bh6)|0)+Math.imul(ah3,bl6)|0,hi=hi+Math.imul(ah3,bh6)|0,lo=lo+Math.imul(al2,bl7)|0,mid=(mid=mid+Math.imul(al2,bh7)|0)+Math.imul(ah2,bl7)|0,hi=hi+Math.imul(ah2,bh7)|0,lo=lo+Math.imul(al1,bl8)|0,mid=(mid=mid+Math.imul(al1,bh8)|0)+Math.imul(ah1,bl8)|0,hi=hi+Math.imul(ah1,bh8)|0;var w9=(c+(lo=lo+Math.imul(al0,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh9)|0)+Math.imul(ah0,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh9)|0)+(mid>>>13)|0)+(w9>>>26)|0,w9&=67108863,lo=Math.imul(al9,bl1),mid=(mid=Math.imul(al9,bh1))+Math.imul(ah9,bl1)|0,hi=Math.imul(ah9,bh1),lo=lo+Math.imul(al8,bl2)|0,mid=(mid=mid+Math.imul(al8,bh2)|0)+Math.imul(ah8,bl2)|0,hi=hi+Math.imul(ah8,bh2)|0,lo=lo+Math.imul(al7,bl3)|0,mid=(mid=mid+Math.imul(al7,bh3)|0)+Math.imul(ah7,bl3)|0,hi=hi+Math.imul(ah7,bh3)|0,lo=lo+Math.imul(al6,bl4)|0,mid=(mid=mid+Math.imul(al6,bh4)|0)+Math.imul(ah6,bl4)|0,hi=hi+Math.imul(ah6,bh4)|0,lo=lo+Math.imul(al5,bl5)|0,mid=(mid=mid+Math.imul(al5,bh5)|0)+Math.imul(ah5,bl5)|0,hi=hi+Math.imul(ah5,bh5)|0,lo=lo+Math.imul(al4,bl6)|0,mid=(mid=mid+Math.imul(al4,bh6)|0)+Math.imul(ah4,bl6)|0,hi=hi+Math.imul(ah4,bh6)|0,lo=lo+Math.imul(al3,bl7)|0,mid=(mid=mid+Math.imul(al3,bh7)|0)+Math.imul(ah3,bl7)|0,hi=hi+Math.imul(ah3,bh7)|0,lo=lo+Math.imul(al2,bl8)|0,mid=(mid=mid+Math.imul(al2,bh8)|0)+Math.imul(ah2,bl8)|0,hi=hi+Math.imul(ah2,bh8)|0;var w10=(c+(lo=lo+Math.imul(al1,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al1,bh9)|0)+Math.imul(ah1,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah1,bh9)|0)+(mid>>>13)|0)+(w10>>>26)|0,w10&=67108863,lo=Math.imul(al9,bl2),mid=(mid=Math.imul(al9,bh2))+Math.imul(ah9,bl2)|0,hi=Math.imul(ah9,bh2),lo=lo+Math.imul(al8,bl3)|0,mid=(mid=mid+Math.imul(al8,bh3)|0)+Math.imul(ah8,bl3)|0,hi=hi+Math.imul(ah8,bh3)|0,lo=lo+Math.imul(al7,bl4)|0,mid=(mid=mid+Math.imul(al7,bh4)|0)+Math.imul(ah7,bl4)|0,hi=hi+Math.imul(ah7,bh4)|0,lo=lo+Math.imul(al6,bl5)|0,mid=(mid=mid+Math.imul(al6,bh5)|0)+Math.imul(ah6,bl5)|0,hi=hi+Math.imul(ah6,bh5)|0,lo=lo+Math.imul(al5,bl6)|0,mid=(mid=mid+Math.imul(al5,bh6)|0)+Math.imul(ah5,bl6)|0,hi=hi+Math.imul(ah5,bh6)|0,lo=lo+Math.imul(al4,bl7)|0,mid=(mid=mid+Math.imul(al4,bh7)|0)+Math.imul(ah4,bl7)|0,hi=hi+Math.imul(ah4,bh7)|0,lo=lo+Math.imul(al3,bl8)|0,mid=(mid=mid+Math.imul(al3,bh8)|0)+Math.imul(ah3,bl8)|0,hi=hi+Math.imul(ah3,bh8)|0;var w11=(c+(lo=lo+Math.imul(al2,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al2,bh9)|0)+Math.imul(ah2,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah2,bh9)|0)+(mid>>>13)|0)+(w11>>>26)|0,w11&=67108863,lo=Math.imul(al9,bl3),mid=(mid=Math.imul(al9,bh3))+Math.imul(ah9,bl3)|0,hi=Math.imul(ah9,bh3),lo=lo+Math.imul(al8,bl4)|0,mid=(mid=mid+Math.imul(al8,bh4)|0)+Math.imul(ah8,bl4)|0,hi=hi+Math.imul(ah8,bh4)|0,lo=lo+Math.imul(al7,bl5)|0,mid=(mid=mid+Math.imul(al7,bh5)|0)+Math.imul(ah7,bl5)|0,hi=hi+Math.imul(ah7,bh5)|0,lo=lo+Math.imul(al6,bl6)|0,mid=(mid=mid+Math.imul(al6,bh6)|0)+Math.imul(ah6,bl6)|0,hi=hi+Math.imul(ah6,bh6)|0,lo=lo+Math.imul(al5,bl7)|0,mid=(mid=mid+Math.imul(al5,bh7)|0)+Math.imul(ah5,bl7)|0,hi=hi+Math.imul(ah5,bh7)|0,lo=lo+Math.imul(al4,bl8)|0,mid=(mid=mid+Math.imul(al4,bh8)|0)+Math.imul(ah4,bl8)|0,hi=hi+Math.imul(ah4,bh8)|0;var w12=(c+(lo=lo+Math.imul(al3,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al3,bh9)|0)+Math.imul(ah3,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah3,bh9)|0)+(mid>>>13)|0)+(w12>>>26)|0,w12&=67108863,lo=Math.imul(al9,bl4),mid=(mid=Math.imul(al9,bh4))+Math.imul(ah9,bl4)|0,hi=Math.imul(ah9,bh4),lo=lo+Math.imul(al8,bl5)|0,mid=(mid=mid+Math.imul(al8,bh5)|0)+Math.imul(ah8,bl5)|0,hi=hi+Math.imul(ah8,bh5)|0,lo=lo+Math.imul(al7,bl6)|0,mid=(mid=mid+Math.imul(al7,bh6)|0)+Math.imul(ah7,bl6)|0,hi=hi+Math.imul(ah7,bh6)|0,lo=lo+Math.imul(al6,bl7)|0,mid=(mid=mid+Math.imul(al6,bh7)|0)+Math.imul(ah6,bl7)|0,hi=hi+Math.imul(ah6,bh7)|0,lo=lo+Math.imul(al5,bl8)|0,mid=(mid=mid+Math.imul(al5,bh8)|0)+Math.imul(ah5,bl8)|0,hi=hi+Math.imul(ah5,bh8)|0;var w13=(c+(lo=lo+Math.imul(al4,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al4,bh9)|0)+Math.imul(ah4,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah4,bh9)|0)+(mid>>>13)|0)+(w13>>>26)|0,w13&=67108863,lo=Math.imul(al9,bl5),mid=(mid=Math.imul(al9,bh5))+Math.imul(ah9,bl5)|0,hi=Math.imul(ah9,bh5),lo=lo+Math.imul(al8,bl6)|0,mid=(mid=mid+Math.imul(al8,bh6)|0)+Math.imul(ah8,bl6)|0,hi=hi+Math.imul(ah8,bh6)|0,lo=lo+Math.imul(al7,bl7)|0,mid=(mid=mid+Math.imul(al7,bh7)|0)+Math.imul(ah7,bl7)|0,hi=hi+Math.imul(ah7,bh7)|0,lo=lo+Math.imul(al6,bl8)|0,mid=(mid=mid+Math.imul(al6,bh8)|0)+Math.imul(ah6,bl8)|0,hi=hi+Math.imul(ah6,bh8)|0;var w14=(c+(lo=lo+Math.imul(al5,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al5,bh9)|0)+Math.imul(ah5,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah5,bh9)|0)+(mid>>>13)|0)+(w14>>>26)|0,w14&=67108863,lo=Math.imul(al9,bl6),mid=(mid=Math.imul(al9,bh6))+Math.imul(ah9,bl6)|0,hi=Math.imul(ah9,bh6),lo=lo+Math.imul(al8,bl7)|0,mid=(mid=mid+Math.imul(al8,bh7)|0)+Math.imul(ah8,bl7)|0,hi=hi+Math.imul(ah8,bh7)|0,lo=lo+Math.imul(al7,bl8)|0,mid=(mid=mid+Math.imul(al7,bh8)|0)+Math.imul(ah7,bl8)|0,hi=hi+Math.imul(ah7,bh8)|0;var w15=(c+(lo=lo+Math.imul(al6,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al6,bh9)|0)+Math.imul(ah6,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah6,bh9)|0)+(mid>>>13)|0)+(w15>>>26)|0,w15&=67108863,lo=Math.imul(al9,bl7),mid=(mid=Math.imul(al9,bh7))+Math.imul(ah9,bl7)|0,hi=Math.imul(ah9,bh7),lo=lo+Math.imul(al8,bl8)|0,mid=(mid=mid+Math.imul(al8,bh8)|0)+Math.imul(ah8,bl8)|0,hi=hi+Math.imul(ah8,bh8)|0;var w16=(c+(lo=lo+Math.imul(al7,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al7,bh9)|0)+Math.imul(ah7,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah7,bh9)|0)+(mid>>>13)|0)+(w16>>>26)|0,w16&=67108863,lo=Math.imul(al9,bl8),mid=(mid=Math.imul(al9,bh8))+Math.imul(ah9,bl8)|0,hi=Math.imul(ah9,bh8);var w17=(c+(lo=lo+Math.imul(al8,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al8,bh9)|0)+Math.imul(ah8,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah8,bh9)|0)+(mid>>>13)|0)+(w17>>>26)|0,w17&=67108863;var w18=(c+(lo=Math.imul(al9,bl9))|0)+((8191&(mid=(mid=Math.imul(al9,bh9))+Math.imul(ah9,bl9)|0))<<13)|0;return c=((hi=Math.imul(ah9,bh9))+(mid>>>13)|0)+(w18>>>26)|0,w18&=67108863,o[0]=w0,o[1]=w1,o[2]=w2,o[3]=w3,o[4]=w4,o[5]=w5,o[6]=w6,o[7]=w7,o[8]=w8,o[9]=w9,o[10]=w10,o[11]=w11,o[12]=w12,o[13]=w13,o[14]=w14,o[15]=w15,o[16]=w16,o[17]=w17,o[18]=w18,0!==c&&(o[19]=c,out.length++),out};function jumboMulTo(self,num,out){return(new FFTM).mulp(self,num,out)}function FFTM(x,y){this.x=x,this.y=y}Math.imul||(comb10MulTo=smallMulTo),BN.prototype.mulTo=function(num,out){var res,len=this.length+num.length;return res=10===this.length&&10===num.length?comb10MulTo(this,num,out):len<63?smallMulTo(this,num,out):len<1024?function(self,num,out){out.negative=num.negative^self.negative,out.length=self.length+num.length;for(var carry=0,hncarry=0,k=0;k>>26)|0)>>>26,ncarry&=67108863}out.words[k]=rword,carry=ncarry,ncarry=hncarry}return 0!==carry?out.words[k]=carry:out.length--,out.strip()}(this,num,out):jumboMulTo(this,num,out),res},FFTM.prototype.makeRBT=function(N){for(var t=new Array(N),l=BN.prototype._countBits(N)-1,i=0;i>=1;return rb},FFTM.prototype.permute=function(rbt,rws,iws,rtws,itws,N){for(var i=0;i>>=1)i++;return 1<>>=13,rws[2*i+1]=8191&carry,carry>>>=13;for(i=2*len;i>=26,carry+=w/67108864|0,carry+=lo>>>26,this.words[i]=67108863&lo}return 0!==carry&&(this.words[i]=carry,this.length++),this},BN.prototype.muln=function(num){return this.clone().imuln(num)},BN.prototype.sqr=function(){return this.mul(this)},BN.prototype.isqr=function(){return this.imul(this.clone())},BN.prototype.pow=function(num){var w=function(num){for(var w=new Array(num.bitLength()),bit=0;bit>>wbit}return w}(num);if(0===w.length)return new BN(1);for(var res=this,i=0;i=0);var i,r=bits%26,s=(bits-r)/26,carryMask=67108863>>>26-r<<26-r;if(0!==r){var carry=0;for(i=0;i>>26-r}carry&&(this.words[i]=carry,this.length++)}if(0!==s){for(i=this.length-1;i>=0;i--)this.words[i+s]=this.words[i];for(i=0;i=0),h=hint?(hint-hint%26)/26:0;var r=bits%26,s=Math.min((bits-r)/26,this.length),mask=67108863^67108863>>>r<s)for(this.length-=s,i=0;i=0&&(0!==carry||i>=h);i--){var word=0|this.words[i];this.words[i]=carry<<26-r|word>>>r,carry=word&mask}return maskedWords&&0!==carry&&(maskedWords.words[maskedWords.length++]=carry),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},BN.prototype.ishrn=function(bits,hint,extended){return assert(0===this.negative),this.iushrn(bits,hint,extended)},BN.prototype.shln=function(bits){return this.clone().ishln(bits)},BN.prototype.ushln=function(bits){return this.clone().iushln(bits)},BN.prototype.shrn=function(bits){return this.clone().ishrn(bits)},BN.prototype.ushrn=function(bits){return this.clone().iushrn(bits)},BN.prototype.testn=function(bit){assert("number"==typeof bit&&bit>=0);var r=bit%26,s=(bit-r)/26,q=1<=0);var r=bits%26,s=(bits-r)/26;if(assert(0===this.negative,"imaskn works only with positive numbers"),this.length<=s)return this;if(0!==r&&s++,this.length=Math.min(s,this.length),0!==r){var mask=67108863^67108863>>>r<=67108864;i++)this.words[i]-=67108864,i===this.length-1?this.words[i+1]=1:this.words[i+1]++;return this.length=Math.max(this.length,i+1),this},BN.prototype.isubn=function(num){if(assert("number"==typeof num),assert(num<67108864),num<0)return this.iaddn(-num);if(0!==this.negative)return this.negative=0,this.iaddn(num),this.negative=1,this;if(this.words[0]-=num,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var i=0;i>26)-(right/67108864|0),this.words[i+shift]=67108863&w}for(;i>26,this.words[i+shift]=67108863&w;if(0===carry)return this.strip();for(assert(-1===carry),carry=0,i=0;i>26,this.words[i]=67108863&w;return this.negative=1,this.strip()},BN.prototype._wordDiv=function(num,mode){var shift=(this.length,num.length),a=this.clone(),b=num,bhi=0|b.words[b.length-1];0!==(shift=26-this._countBits(bhi))&&(b=b.ushln(shift),a.iushln(shift),bhi=0|b.words[b.length-1]);var q,m=a.length-b.length;if("mod"!==mode){(q=new BN(null)).length=m+1,q.words=new Array(q.length);for(var i=0;i=0;j--){var qj=67108864*(0|a.words[b.length+j])+(0|a.words[b.length+j-1]);for(qj=Math.min(qj/bhi|0,67108863),a._ishlnsubmul(b,qj,j);0!==a.negative;)qj--,a.negative=0,a._ishlnsubmul(b,1,j),a.isZero()||(a.negative^=1);q&&(q.words[j]=qj)}return q&&q.strip(),a.strip(),"div"!==mode&&0!==shift&&a.iushrn(shift),{div:q||null,mod:a}},BN.prototype.divmod=function(num,mode,positive){return assert(!num.isZero()),this.isZero()?{div:new BN(0),mod:new BN(0)}:0!==this.negative&&0===num.negative?(res=this.neg().divmod(num,mode),"mod"!==mode&&(div=res.div.neg()),"div"!==mode&&(mod=res.mod.neg(),positive&&0!==mod.negative&&mod.iadd(num)),{div:div,mod:mod}):0===this.negative&&0!==num.negative?(res=this.divmod(num.neg(),mode),"mod"!==mode&&(div=res.div.neg()),{div:div,mod:res.mod}):0!=(this.negative&num.negative)?(res=this.neg().divmod(num.neg(),mode),"div"!==mode&&(mod=res.mod.neg(),positive&&0!==mod.negative&&mod.isub(num)),{div:res.div,mod:mod}):num.length>this.length||this.cmp(num)<0?{div:new BN(0),mod:this}:1===num.length?"div"===mode?{div:this.divn(num.words[0]),mod:null}:"mod"===mode?{div:null,mod:new BN(this.modn(num.words[0]))}:{div:this.divn(num.words[0]),mod:new BN(this.modn(num.words[0]))}:this._wordDiv(num,mode);var div,mod,res},BN.prototype.div=function(num){return this.divmod(num,"div",!1).div},BN.prototype.mod=function(num){return this.divmod(num,"mod",!1).mod},BN.prototype.umod=function(num){return this.divmod(num,"mod",!0).mod},BN.prototype.divRound=function(num){var dm=this.divmod(num);if(dm.mod.isZero())return dm.div;var mod=0!==dm.div.negative?dm.mod.isub(num):dm.mod,half=num.ushrn(1),r2=num.andln(1),cmp=mod.cmp(half);return cmp<0||1===r2&&0===cmp?dm.div:0!==dm.div.negative?dm.div.isubn(1):dm.div.iaddn(1)},BN.prototype.modn=function(num){assert(num<=67108863);for(var p=(1<<26)%num,acc=0,i=this.length-1;i>=0;i--)acc=(p*acc+(0|this.words[i]))%num;return acc},BN.prototype.idivn=function(num){assert(num<=67108863);for(var carry=0,i=this.length-1;i>=0;i--){var w=(0|this.words[i])+67108864*carry;this.words[i]=w/num|0,carry=w%num}return this.strip()},BN.prototype.divn=function(num){return this.clone().idivn(num)},BN.prototype.egcd=function(p){assert(0===p.negative),assert(!p.isZero());var x=this,y=p.clone();x=0!==x.negative?x.umod(p):x.clone();for(var A=new BN(1),B=new BN(0),C=new BN(0),D=new BN(1),g=0;x.isEven()&&y.isEven();)x.iushrn(1),y.iushrn(1),++g;for(var yp=y.clone(),xp=x.clone();!x.isZero();){for(var i=0,im=1;0==(x.words[0]&im)&&i<26;++i,im<<=1);if(i>0)for(x.iushrn(i);i-- >0;)(A.isOdd()||B.isOdd())&&(A.iadd(yp),B.isub(xp)),A.iushrn(1),B.iushrn(1);for(var j=0,jm=1;0==(y.words[0]&jm)&&j<26;++j,jm<<=1);if(j>0)for(y.iushrn(j);j-- >0;)(C.isOdd()||D.isOdd())&&(C.iadd(yp),D.isub(xp)),C.iushrn(1),D.iushrn(1);x.cmp(y)>=0?(x.isub(y),A.isub(C),B.isub(D)):(y.isub(x),C.isub(A),D.isub(B))}return{a:C,b:D,gcd:y.iushln(g)}},BN.prototype._invmp=function(p){assert(0===p.negative),assert(!p.isZero());var a=this,b=p.clone();a=0!==a.negative?a.umod(p):a.clone();for(var res,x1=new BN(1),x2=new BN(0),delta=b.clone();a.cmpn(1)>0&&b.cmpn(1)>0;){for(var i=0,im=1;0==(a.words[0]&im)&&i<26;++i,im<<=1);if(i>0)for(a.iushrn(i);i-- >0;)x1.isOdd()&&x1.iadd(delta),x1.iushrn(1);for(var j=0,jm=1;0==(b.words[0]&jm)&&j<26;++j,jm<<=1);if(j>0)for(b.iushrn(j);j-- >0;)x2.isOdd()&&x2.iadd(delta),x2.iushrn(1);a.cmp(b)>=0?(a.isub(b),x1.isub(x2)):(b.isub(a),x2.isub(x1))}return(res=0===a.cmpn(1)?x1:x2).cmpn(0)<0&&res.iadd(p),res},BN.prototype.gcd=function(num){if(this.isZero())return num.abs();if(num.isZero())return this.abs();var a=this.clone(),b=num.clone();a.negative=0,b.negative=0;for(var shift=0;a.isEven()&&b.isEven();shift++)a.iushrn(1),b.iushrn(1);for(;;){for(;a.isEven();)a.iushrn(1);for(;b.isEven();)b.iushrn(1);var r=a.cmp(b);if(r<0){var t=a;a=b,b=t}else if(0===r||0===b.cmpn(1))break;a.isub(b)}return b.iushln(shift)},BN.prototype.invm=function(num){return this.egcd(num).a.umod(num)},BN.prototype.isEven=function(){return 0==(1&this.words[0])},BN.prototype.isOdd=function(){return 1==(1&this.words[0])},BN.prototype.andln=function(num){return this.words[0]&num},BN.prototype.bincn=function(bit){assert("number"==typeof bit);var r=bit%26,s=(bit-r)/26,q=1<>>26,w&=67108863,this.words[i]=w}return 0!==carry&&(this.words[i]=carry,this.length++),this},BN.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},BN.prototype.cmpn=function(num){var res,negative=num<0;if(0!==this.negative&&!negative)return-1;if(0===this.negative&&negative)return 1;if(this.strip(),this.length>1)res=1;else{negative&&(num=-num),assert(num<=67108863,"Number is too big");var w=0|this.words[0];res=w===num?0:wnum.length)return 1;if(this.length=0;i--){var a=0|this.words[i],b=0|num.words[i];if(a!==b){ab&&(res=1);break}}return res},BN.prototype.gtn=function(num){return 1===this.cmpn(num)},BN.prototype.gt=function(num){return 1===this.cmp(num)},BN.prototype.gten=function(num){return this.cmpn(num)>=0},BN.prototype.gte=function(num){return this.cmp(num)>=0},BN.prototype.ltn=function(num){return-1===this.cmpn(num)},BN.prototype.lt=function(num){return-1===this.cmp(num)},BN.prototype.lten=function(num){return this.cmpn(num)<=0},BN.prototype.lte=function(num){return this.cmp(num)<=0},BN.prototype.eqn=function(num){return 0===this.cmpn(num)},BN.prototype.eq=function(num){return 0===this.cmp(num)},BN.red=function(num){return new Red(num)},BN.prototype.toRed=function(ctx){return assert(!this.red,"Already a number in reduction context"),assert(0===this.negative,"red works only with positives"),ctx.convertTo(this)._forceRed(ctx)},BN.prototype.fromRed=function(){return assert(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},BN.prototype._forceRed=function(ctx){return this.red=ctx,this},BN.prototype.forceRed=function(ctx){return assert(!this.red,"Already a number in reduction context"),this._forceRed(ctx)},BN.prototype.redAdd=function(num){return assert(this.red,"redAdd works only with red numbers"),this.red.add(this,num)},BN.prototype.redIAdd=function(num){return assert(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,num)},BN.prototype.redSub=function(num){return assert(this.red,"redSub works only with red numbers"),this.red.sub(this,num)},BN.prototype.redISub=function(num){return assert(this.red,"redISub works only with red numbers"),this.red.isub(this,num)},BN.prototype.redShl=function(num){return assert(this.red,"redShl works only with red numbers"),this.red.shl(this,num)},BN.prototype.redMul=function(num){return assert(this.red,"redMul works only with red numbers"),this.red._verify2(this,num),this.red.mul(this,num)},BN.prototype.redIMul=function(num){return assert(this.red,"redMul works only with red numbers"),this.red._verify2(this,num),this.red.imul(this,num)},BN.prototype.redSqr=function(){return assert(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},BN.prototype.redISqr=function(){return assert(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},BN.prototype.redSqrt=function(){return assert(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},BN.prototype.redInvm=function(){return assert(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},BN.prototype.redNeg=function(){return assert(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},BN.prototype.redPow=function(num){return assert(this.red&&!num.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,num)};var primes={k256:null,p224:null,p192:null,p25519:null};function MPrime(name,p){this.name=name,this.p=new BN(p,16),this.n=this.p.bitLength(),this.k=new BN(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function K256(){MPrime.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function P224(){MPrime.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function P192(){MPrime.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function P25519(){MPrime.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Red(m){if("string"==typeof m){var prime=BN._prime(m);this.m=prime.p,this.prime=prime}else assert(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function Mont(m){Red.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new BN(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}MPrime.prototype._tmp=function(){var tmp=new BN(null);return tmp.words=new Array(Math.ceil(this.n/13)),tmp},MPrime.prototype.ireduce=function(num){var rlen,r=num;do{this.split(r,this.tmp),rlen=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(rlen>this.n);var cmp=rlen0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},MPrime.prototype.split=function(input,out){input.iushrn(this.n,0,out)},MPrime.prototype.imulK=function(num){return num.imul(this.k)},inherits(K256,MPrime),K256.prototype.split=function(input,output){for(var outLen=Math.min(input.length,9),i=0;i>>22,prev=next}prev>>>=22,input.words[i-10]=prev,0===prev&&input.length>10?input.length-=10:input.length-=9},K256.prototype.imulK=function(num){num.words[num.length]=0,num.words[num.length+1]=0,num.length+=2;for(var lo=0,i=0;i>>=26,num.words[i]=lo,carry=hi}return 0!==carry&&(num.words[num.length++]=carry),num},BN._prime=function(name){if(primes[name])return primes[name];var prime;if("k256"===name)prime=new K256;else if("p224"===name)prime=new P224;else if("p192"===name)prime=new P192;else{if("p25519"!==name)throw new Error("Unknown prime "+name);prime=new P25519}return primes[name]=prime,prime},Red.prototype._verify1=function(a){assert(0===a.negative,"red works only with positives"),assert(a.red,"red works only with red numbers")},Red.prototype._verify2=function(a,b){assert(0==(a.negative|b.negative),"red works only with positives"),assert(a.red&&a.red===b.red,"red works only with red numbers")},Red.prototype.imod=function(a){return this.prime?this.prime.ireduce(a)._forceRed(this):a.umod(this.m)._forceRed(this)},Red.prototype.neg=function(a){return a.isZero()?a.clone():this.m.sub(a)._forceRed(this)},Red.prototype.add=function(a,b){this._verify2(a,b);var res=a.add(b);return res.cmp(this.m)>=0&&res.isub(this.m),res._forceRed(this)},Red.prototype.iadd=function(a,b){this._verify2(a,b);var res=a.iadd(b);return res.cmp(this.m)>=0&&res.isub(this.m),res},Red.prototype.sub=function(a,b){this._verify2(a,b);var res=a.sub(b);return res.cmpn(0)<0&&res.iadd(this.m),res._forceRed(this)},Red.prototype.isub=function(a,b){this._verify2(a,b);var res=a.isub(b);return res.cmpn(0)<0&&res.iadd(this.m),res},Red.prototype.shl=function(a,num){return this._verify1(a),this.imod(a.ushln(num))},Red.prototype.imul=function(a,b){return this._verify2(a,b),this.imod(a.imul(b))},Red.prototype.mul=function(a,b){return this._verify2(a,b),this.imod(a.mul(b))},Red.prototype.isqr=function(a){return this.imul(a,a.clone())},Red.prototype.sqr=function(a){return this.mul(a,a)},Red.prototype.sqrt=function(a){if(a.isZero())return a.clone();var mod3=this.m.andln(3);if(assert(mod3%2==1),3===mod3){var pow=this.m.add(new BN(1)).iushrn(2);return this.pow(a,pow)}for(var q=this.m.subn(1),s=0;!q.isZero()&&0===q.andln(1);)s++,q.iushrn(1);assert(!q.isZero());var one=new BN(1).toRed(this),nOne=one.redNeg(),lpow=this.m.subn(1).iushrn(1),z=this.m.bitLength();for(z=new BN(2*z*z).toRed(this);0!==this.pow(z,lpow).cmp(nOne);)z.redIAdd(nOne);for(var c=this.pow(z,q),r=this.pow(a,q.addn(1).iushrn(1)),t=this.pow(a,q),m=s;0!==t.cmp(one);){for(var tmp=t,i=0;0!==tmp.cmp(one);i++)tmp=tmp.redSqr();assert(i=0;i--){for(var word=num.words[i],j=start-1;j>=0;j--){var bit=word>>j&1;res!==wnd[0]&&(res=this.sqr(res)),0!==bit||0!==current?(current<<=1,current|=bit,(4===++currentLen||0===i&&0===j)&&(res=this.mul(res,wnd[current]),currentLen=0,current=0)):currentLen=0}start=26}return res},Red.prototype.convertTo=function(num){var r=num.umod(this.m);return r===num?r.clone():r},Red.prototype.convertFrom=function(num){var res=num.clone();return res.red=null,res},BN.mont=function(num){return new Mont(num)},inherits(Mont,Red),Mont.prototype.convertTo=function(num){return this.imod(num.ushln(this.shift))},Mont.prototype.convertFrom=function(num){var r=this.imod(num.mul(this.rinv));return r.red=null,r},Mont.prototype.imul=function(a,b){if(a.isZero()||b.isZero())return a.words[0]=0,a.length=1,a;var t=a.imul(b),c=t.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),u=t.isub(c).iushrn(this.shift),res=u;return u.cmp(this.m)>=0?res=u.isub(this.m):u.cmpn(0)<0&&(res=u.iadd(this.m)),res._forceRed(this)},Mont.prototype.mul=function(a,b){if(a.isZero()||b.isZero())return new BN(0)._forceRed(this);var t=a.mul(b),c=t.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),u=t.isub(c).iushrn(this.shift),res=u;return u.cmp(this.m)>=0?res=u.isub(this.m):u.cmpn(0)<0&&(res=u.iadd(this.m)),res._forceRed(this)},Mont.prototype.invm=function(a){return this.imod(a._invmp(this.m).mul(this.r2))._forceRed(this)}}(void 0===module||module,this)},{buffer:20}],17:[function(require,module,exports){"use strict";exports.byteLength=function(b64){var lens=getLens(b64),validLen=lens[0],placeHoldersLen=lens[1];return 3*(validLen+placeHoldersLen)/4-placeHoldersLen},exports.toByteArray=function(b64){var tmp,i,lens=getLens(b64),validLen=lens[0],placeHoldersLen=lens[1],arr=new Arr(function(b64,validLen,placeHoldersLen){return 3*(validLen+placeHoldersLen)/4-placeHoldersLen}(0,validLen,placeHoldersLen)),curByte=0,len=placeHoldersLen>0?validLen-4:validLen;for(i=0;i>16&255,arr[curByte++]=tmp>>8&255,arr[curByte++]=255&tmp;2===placeHoldersLen&&(tmp=revLookup[b64.charCodeAt(i)]<<2|revLookup[b64.charCodeAt(i+1)]>>4,arr[curByte++]=255&tmp);1===placeHoldersLen&&(tmp=revLookup[b64.charCodeAt(i)]<<10|revLookup[b64.charCodeAt(i+1)]<<4|revLookup[b64.charCodeAt(i+2)]>>2,arr[curByte++]=tmp>>8&255,arr[curByte++]=255&tmp);return arr},exports.fromByteArray=function(uint8){for(var tmp,len=uint8.length,extraBytes=len%3,parts=[],i=0,len2=len-extraBytes;ilen2?len2:i+16383));1===extraBytes?(tmp=uint8[len-1],parts.push(lookup[tmp>>2]+lookup[tmp<<4&63]+"==")):2===extraBytes&&(tmp=(uint8[len-2]<<8)+uint8[len-1],parts.push(lookup[tmp>>10]+lookup[tmp>>4&63]+lookup[tmp<<2&63]+"="));return parts.join("")};for(var lookup=[],revLookup=[],Arr="undefined"!=typeof Uint8Array?Uint8Array:Array,code="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",i=0;i<64;++i)lookup[i]=code[i],revLookup[code.charCodeAt(i)]=i;function getLens(b64){var len=b64.length;if(len%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var validLen=b64.indexOf("=");return-1===validLen&&(validLen=len),[validLen,validLen===len?0:4-validLen%4]}function encodeChunk(uint8,start,end){for(var tmp,num,output=[],i=start;i>18&63]+lookup[num>>12&63]+lookup[num>>6&63]+lookup[63&num]);return output.join("")}revLookup["-".charCodeAt(0)]=62,revLookup["_".charCodeAt(0)]=63},{}],18:[function(require,module,exports){!function(module,exports){"use strict";function assert(val,msg){if(!val)throw new Error(msg||"Assertion failed")}function inherits(ctor,superCtor){ctor.super_=superCtor;var TempCtor=function(){};TempCtor.prototype=superCtor.prototype,ctor.prototype=new TempCtor,ctor.prototype.constructor=ctor}function BN(number,base,endian){if(BN.isBN(number))return number;this.negative=0,this.words=null,this.length=0,this.red=null,null!==number&&("le"!==base&&"be"!==base||(endian=base,base=10),this._init(number||0,base||10,endian||"be"))}var Buffer;"object"==typeof module?module.exports=BN:exports.BN=BN,BN.BN=BN,BN.wordSize=26;try{Buffer="undefined"!=typeof window&&void 0!==window.Buffer?window.Buffer:require("buffer").Buffer}catch(e){}function parseHex4Bits(string,index){var c=string.charCodeAt(index);return c>=48&&c<=57?c-48:c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:void assert(!1,"Invalid character in "+string)}function parseHexByte(string,lowerBound,index){var r=parseHex4Bits(string,index);return index-1>=lowerBound&&(r|=parseHex4Bits(string,index-1)<<4),r}function parseBase(str,start,end,mul){for(var r=0,b=0,len=Math.min(str.length,end),i=start;i=49?c-49+10:c>=17?c-17+10:c,assert(c>=0&&b0?left:right},BN.min=function(left,right){return left.cmp(right)<0?left:right},BN.prototype._init=function(number,base,endian){if("number"==typeof number)return this._initNumber(number,base,endian);if("object"==typeof number)return this._initArray(number,base,endian);"hex"===base&&(base=16),assert(base===(0|base)&&base>=2&&base<=36);var start=0;"-"===(number=number.toString().replace(/\s+/g,""))[0]&&(start++,this.negative=1),start=0;i-=3)w=number[i]|number[i-1]<<8|number[i-2]<<16,this.words[j]|=w<>>26-off&67108863,(off+=24)>=26&&(off-=26,j++);else if("le"===endian)for(i=0,j=0;i>>26-off&67108863,(off+=24)>=26&&(off-=26,j++);return this._strip()},BN.prototype._parseHex=function(number,start,endian){this.length=Math.ceil((number.length-start)/6),this.words=new Array(this.length);for(var i=0;i=start;i-=2)w=parseHexByte(number,start,i)<=18?(off-=18,j+=1,this.words[j]|=w>>>26):off+=8;else for(i=(number.length-start)%2==0?start+1:start;i=18?(off-=18,j+=1,this.words[j]|=w>>>26):off+=8;this._strip()},BN.prototype._parseBase=function(number,base,start){this.words=[0],this.length=1;for(var limbLen=0,limbPow=1;limbPow<=67108863;limbPow*=base)limbLen++;limbLen--,limbPow=limbPow/base|0;for(var total=number.length-start,mod=total%limbLen,end=Math.min(total,total-mod)+start,word=0,i=start;i1&&0===this.words[this.length-1];)this.length--;return this._normSign()},BN.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},"undefined"!=typeof Symbol&&"function"==typeof Symbol.for)try{BN.prototype[Symbol.for("nodejs.util.inspect.custom")]=inspect}catch(e){BN.prototype.inspect=inspect}else BN.prototype.inspect=inspect;function inspect(){return(this.red?""}var zeros=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],groupSizes=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],groupBases=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];BN.prototype.toString=function(base,padding){var out;if(padding=0|padding||1,16===(base=base||10)||"hex"===base){out="";for(var off=0,carry=0,i=0;i>>24-off&16777215,(off+=2)>=26&&(off-=26,i--),out=0!==carry||i!==this.length-1?zeros[6-word.length]+word+out:word+out}for(0!==carry&&(out=carry.toString(16)+out);out.length%padding!=0;)out="0"+out;return 0!==this.negative&&(out="-"+out),out}if(base===(0|base)&&base>=2&&base<=36){var groupSize=groupSizes[base],groupBase=groupBases[base];out="";var c=this.clone();for(c.negative=0;!c.isZero();){var r=c.modrn(groupBase).toString(base);out=(c=c.idivn(groupBase)).isZero()?r+out:zeros[groupSize-r.length]+r+out}for(this.isZero()&&(out="0"+out);out.length%padding!=0;)out="0"+out;return 0!==this.negative&&(out="-"+out),out}assert(!1,"Base should be between 2 and 36")},BN.prototype.toNumber=function(){var ret=this.words[0];return 2===this.length?ret+=67108864*this.words[1]:3===this.length&&1===this.words[2]?ret+=4503599627370496+67108864*this.words[1]:this.length>2&&assert(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-ret:ret},BN.prototype.toJSON=function(){return this.toString(16,2)},Buffer&&(BN.prototype.toBuffer=function(endian,length){return this.toArrayLike(Buffer,endian,length)}),BN.prototype.toArray=function(endian,length){return this.toArrayLike(Array,endian,length)};function smallMulTo(self,num,out){out.negative=num.negative^self.negative;var len=self.length+num.length|0;out.length=len,len=len-1|0;var a=0|self.words[0],b=0|num.words[0],r=a*b,lo=67108863&r,carry=r/67108864|0;out.words[0]=lo;for(var k=1;k>>26,rword=67108863&carry,maxJ=Math.min(k,num.length-1),j=Math.max(0,k-self.length+1);j<=maxJ;j++){var i=k-j|0;ncarry+=(r=(a=0|self.words[i])*(b=0|num.words[j])+rword)/67108864|0,rword=67108863&r}out.words[k]=0|rword,carry=0|ncarry}return 0!==carry?out.words[k]=0|carry:out.length--,out._strip()}BN.prototype.toArrayLike=function(ArrayType,endian,length){this._strip();var byteLength=this.byteLength(),reqLength=length||Math.max(1,byteLength);assert(byteLength<=reqLength,"byte array longer than desired length"),assert(reqLength>0,"Requested array length <= 0");var res=function(ArrayType,size){return ArrayType.allocUnsafe?ArrayType.allocUnsafe(size):new ArrayType(size)}(ArrayType,reqLength);return this["_toArrayLike"+("le"===endian?"LE":"BE")](res,byteLength),res},BN.prototype._toArrayLikeLE=function(res,byteLength){for(var position=0,carry=0,i=0,shift=0;i>8&255),position>16&255),6===shift?(position>24&255),carry=0,shift=0):(carry=word>>>24,shift+=2)}if(position=0&&(res[position--]=word>>8&255),position>=0&&(res[position--]=word>>16&255),6===shift?(position>=0&&(res[position--]=word>>24&255),carry=0,shift=0):(carry=word>>>24,shift+=2)}if(position>=0)for(res[position--]=carry;position>=0;)res[position--]=0},Math.clz32?BN.prototype._countBits=function(w){return 32-Math.clz32(w)}:BN.prototype._countBits=function(w){var t=w,r=0;return t>=4096&&(r+=13,t>>>=13),t>=64&&(r+=7,t>>>=7),t>=8&&(r+=4,t>>>=4),t>=2&&(r+=2,t>>>=2),r+t},BN.prototype._zeroBits=function(w){if(0===w)return 26;var t=w,r=0;return 0==(8191&t)&&(r+=13,t>>>=13),0==(127&t)&&(r+=7,t>>>=7),0==(15&t)&&(r+=4,t>>>=4),0==(3&t)&&(r+=2,t>>>=2),0==(1&t)&&r++,r},BN.prototype.bitLength=function(){var w=this.words[this.length-1],hi=this._countBits(w);return 26*(this.length-1)+hi},BN.prototype.zeroBits=function(){if(this.isZero())return 0;for(var r=0,i=0;inum.length?this.clone().ior(num):num.clone().ior(this)},BN.prototype.uor=function(num){return this.length>num.length?this.clone().iuor(num):num.clone().iuor(this)},BN.prototype.iuand=function(num){var b;b=this.length>num.length?num:this;for(var i=0;inum.length?this.clone().iand(num):num.clone().iand(this)},BN.prototype.uand=function(num){return this.length>num.length?this.clone().iuand(num):num.clone().iuand(this)},BN.prototype.iuxor=function(num){var a,b;this.length>num.length?(a=this,b=num):(a=num,b=this);for(var i=0;inum.length?this.clone().ixor(num):num.clone().ixor(this)},BN.prototype.uxor=function(num){return this.length>num.length?this.clone().iuxor(num):num.clone().iuxor(this)},BN.prototype.inotn=function(width){assert("number"==typeof width&&width>=0);var bytesNeeded=0|Math.ceil(width/26),bitsLeft=width%26;this._expand(bytesNeeded),bitsLeft>0&&bytesNeeded--;for(var i=0;i0&&(this.words[i]=~this.words[i]&67108863>>26-bitsLeft),this._strip()},BN.prototype.notn=function(width){return this.clone().inotn(width)},BN.prototype.setn=function(bit,val){assert("number"==typeof bit&&bit>=0);var off=bit/26|0,wbit=bit%26;return this._expand(off+1),this.words[off]=val?this.words[off]|1<num.length?(a=this,b=num):(a=num,b=this);for(var carry=0,i=0;i>>26;for(;0!==carry&&i>>26;if(this.length=a.length,0!==carry)this.words[this.length]=carry,this.length++;else if(a!==this)for(;inum.length?this.clone().iadd(num):num.clone().iadd(this)},BN.prototype.isub=function(num){if(0!==num.negative){num.negative=0;var r=this.iadd(num);return num.negative=1,r._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(num),this.negative=1,this._normSign();var a,b,cmp=this.cmp(num);if(0===cmp)return this.negative=0,this.length=1,this.words[0]=0,this;cmp>0?(a=this,b=num):(a=num,b=this);for(var carry=0,i=0;i>26,this.words[i]=67108863&r;for(;0!==carry&&i>26,this.words[i]=67108863&r;if(0===carry&&i>>13,a1=0|a[1],al1=8191&a1,ah1=a1>>>13,a2=0|a[2],al2=8191&a2,ah2=a2>>>13,a3=0|a[3],al3=8191&a3,ah3=a3>>>13,a4=0|a[4],al4=8191&a4,ah4=a4>>>13,a5=0|a[5],al5=8191&a5,ah5=a5>>>13,a6=0|a[6],al6=8191&a6,ah6=a6>>>13,a7=0|a[7],al7=8191&a7,ah7=a7>>>13,a8=0|a[8],al8=8191&a8,ah8=a8>>>13,a9=0|a[9],al9=8191&a9,ah9=a9>>>13,b0=0|b[0],bl0=8191&b0,bh0=b0>>>13,b1=0|b[1],bl1=8191&b1,bh1=b1>>>13,b2=0|b[2],bl2=8191&b2,bh2=b2>>>13,b3=0|b[3],bl3=8191&b3,bh3=b3>>>13,b4=0|b[4],bl4=8191&b4,bh4=b4>>>13,b5=0|b[5],bl5=8191&b5,bh5=b5>>>13,b6=0|b[6],bl6=8191&b6,bh6=b6>>>13,b7=0|b[7],bl7=8191&b7,bh7=b7>>>13,b8=0|b[8],bl8=8191&b8,bh8=b8>>>13,b9=0|b[9],bl9=8191&b9,bh9=b9>>>13;out.negative=self.negative^num.negative,out.length=19;var w0=(c+(lo=Math.imul(al0,bl0))|0)+((8191&(mid=(mid=Math.imul(al0,bh0))+Math.imul(ah0,bl0)|0))<<13)|0;c=((hi=Math.imul(ah0,bh0))+(mid>>>13)|0)+(w0>>>26)|0,w0&=67108863,lo=Math.imul(al1,bl0),mid=(mid=Math.imul(al1,bh0))+Math.imul(ah1,bl0)|0,hi=Math.imul(ah1,bh0);var w1=(c+(lo=lo+Math.imul(al0,bl1)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh1)|0)+Math.imul(ah0,bl1)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh1)|0)+(mid>>>13)|0)+(w1>>>26)|0,w1&=67108863,lo=Math.imul(al2,bl0),mid=(mid=Math.imul(al2,bh0))+Math.imul(ah2,bl0)|0,hi=Math.imul(ah2,bh0),lo=lo+Math.imul(al1,bl1)|0,mid=(mid=mid+Math.imul(al1,bh1)|0)+Math.imul(ah1,bl1)|0,hi=hi+Math.imul(ah1,bh1)|0;var w2=(c+(lo=lo+Math.imul(al0,bl2)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh2)|0)+Math.imul(ah0,bl2)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh2)|0)+(mid>>>13)|0)+(w2>>>26)|0,w2&=67108863,lo=Math.imul(al3,bl0),mid=(mid=Math.imul(al3,bh0))+Math.imul(ah3,bl0)|0,hi=Math.imul(ah3,bh0),lo=lo+Math.imul(al2,bl1)|0,mid=(mid=mid+Math.imul(al2,bh1)|0)+Math.imul(ah2,bl1)|0,hi=hi+Math.imul(ah2,bh1)|0,lo=lo+Math.imul(al1,bl2)|0,mid=(mid=mid+Math.imul(al1,bh2)|0)+Math.imul(ah1,bl2)|0,hi=hi+Math.imul(ah1,bh2)|0;var w3=(c+(lo=lo+Math.imul(al0,bl3)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh3)|0)+Math.imul(ah0,bl3)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh3)|0)+(mid>>>13)|0)+(w3>>>26)|0,w3&=67108863,lo=Math.imul(al4,bl0),mid=(mid=Math.imul(al4,bh0))+Math.imul(ah4,bl0)|0,hi=Math.imul(ah4,bh0),lo=lo+Math.imul(al3,bl1)|0,mid=(mid=mid+Math.imul(al3,bh1)|0)+Math.imul(ah3,bl1)|0,hi=hi+Math.imul(ah3,bh1)|0,lo=lo+Math.imul(al2,bl2)|0,mid=(mid=mid+Math.imul(al2,bh2)|0)+Math.imul(ah2,bl2)|0,hi=hi+Math.imul(ah2,bh2)|0,lo=lo+Math.imul(al1,bl3)|0,mid=(mid=mid+Math.imul(al1,bh3)|0)+Math.imul(ah1,bl3)|0,hi=hi+Math.imul(ah1,bh3)|0;var w4=(c+(lo=lo+Math.imul(al0,bl4)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh4)|0)+Math.imul(ah0,bl4)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh4)|0)+(mid>>>13)|0)+(w4>>>26)|0,w4&=67108863,lo=Math.imul(al5,bl0),mid=(mid=Math.imul(al5,bh0))+Math.imul(ah5,bl0)|0,hi=Math.imul(ah5,bh0),lo=lo+Math.imul(al4,bl1)|0,mid=(mid=mid+Math.imul(al4,bh1)|0)+Math.imul(ah4,bl1)|0,hi=hi+Math.imul(ah4,bh1)|0,lo=lo+Math.imul(al3,bl2)|0,mid=(mid=mid+Math.imul(al3,bh2)|0)+Math.imul(ah3,bl2)|0,hi=hi+Math.imul(ah3,bh2)|0,lo=lo+Math.imul(al2,bl3)|0,mid=(mid=mid+Math.imul(al2,bh3)|0)+Math.imul(ah2,bl3)|0,hi=hi+Math.imul(ah2,bh3)|0,lo=lo+Math.imul(al1,bl4)|0,mid=(mid=mid+Math.imul(al1,bh4)|0)+Math.imul(ah1,bl4)|0,hi=hi+Math.imul(ah1,bh4)|0;var w5=(c+(lo=lo+Math.imul(al0,bl5)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh5)|0)+Math.imul(ah0,bl5)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh5)|0)+(mid>>>13)|0)+(w5>>>26)|0,w5&=67108863,lo=Math.imul(al6,bl0),mid=(mid=Math.imul(al6,bh0))+Math.imul(ah6,bl0)|0,hi=Math.imul(ah6,bh0),lo=lo+Math.imul(al5,bl1)|0,mid=(mid=mid+Math.imul(al5,bh1)|0)+Math.imul(ah5,bl1)|0,hi=hi+Math.imul(ah5,bh1)|0,lo=lo+Math.imul(al4,bl2)|0,mid=(mid=mid+Math.imul(al4,bh2)|0)+Math.imul(ah4,bl2)|0,hi=hi+Math.imul(ah4,bh2)|0,lo=lo+Math.imul(al3,bl3)|0,mid=(mid=mid+Math.imul(al3,bh3)|0)+Math.imul(ah3,bl3)|0,hi=hi+Math.imul(ah3,bh3)|0,lo=lo+Math.imul(al2,bl4)|0,mid=(mid=mid+Math.imul(al2,bh4)|0)+Math.imul(ah2,bl4)|0,hi=hi+Math.imul(ah2,bh4)|0,lo=lo+Math.imul(al1,bl5)|0,mid=(mid=mid+Math.imul(al1,bh5)|0)+Math.imul(ah1,bl5)|0,hi=hi+Math.imul(ah1,bh5)|0;var w6=(c+(lo=lo+Math.imul(al0,bl6)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh6)|0)+Math.imul(ah0,bl6)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh6)|0)+(mid>>>13)|0)+(w6>>>26)|0,w6&=67108863,lo=Math.imul(al7,bl0),mid=(mid=Math.imul(al7,bh0))+Math.imul(ah7,bl0)|0,hi=Math.imul(ah7,bh0),lo=lo+Math.imul(al6,bl1)|0,mid=(mid=mid+Math.imul(al6,bh1)|0)+Math.imul(ah6,bl1)|0,hi=hi+Math.imul(ah6,bh1)|0,lo=lo+Math.imul(al5,bl2)|0,mid=(mid=mid+Math.imul(al5,bh2)|0)+Math.imul(ah5,bl2)|0,hi=hi+Math.imul(ah5,bh2)|0,lo=lo+Math.imul(al4,bl3)|0,mid=(mid=mid+Math.imul(al4,bh3)|0)+Math.imul(ah4,bl3)|0,hi=hi+Math.imul(ah4,bh3)|0,lo=lo+Math.imul(al3,bl4)|0,mid=(mid=mid+Math.imul(al3,bh4)|0)+Math.imul(ah3,bl4)|0,hi=hi+Math.imul(ah3,bh4)|0,lo=lo+Math.imul(al2,bl5)|0,mid=(mid=mid+Math.imul(al2,bh5)|0)+Math.imul(ah2,bl5)|0,hi=hi+Math.imul(ah2,bh5)|0,lo=lo+Math.imul(al1,bl6)|0,mid=(mid=mid+Math.imul(al1,bh6)|0)+Math.imul(ah1,bl6)|0,hi=hi+Math.imul(ah1,bh6)|0;var w7=(c+(lo=lo+Math.imul(al0,bl7)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh7)|0)+Math.imul(ah0,bl7)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh7)|0)+(mid>>>13)|0)+(w7>>>26)|0,w7&=67108863,lo=Math.imul(al8,bl0),mid=(mid=Math.imul(al8,bh0))+Math.imul(ah8,bl0)|0,hi=Math.imul(ah8,bh0),lo=lo+Math.imul(al7,bl1)|0,mid=(mid=mid+Math.imul(al7,bh1)|0)+Math.imul(ah7,bl1)|0,hi=hi+Math.imul(ah7,bh1)|0,lo=lo+Math.imul(al6,bl2)|0,mid=(mid=mid+Math.imul(al6,bh2)|0)+Math.imul(ah6,bl2)|0,hi=hi+Math.imul(ah6,bh2)|0,lo=lo+Math.imul(al5,bl3)|0,mid=(mid=mid+Math.imul(al5,bh3)|0)+Math.imul(ah5,bl3)|0,hi=hi+Math.imul(ah5,bh3)|0,lo=lo+Math.imul(al4,bl4)|0,mid=(mid=mid+Math.imul(al4,bh4)|0)+Math.imul(ah4,bl4)|0,hi=hi+Math.imul(ah4,bh4)|0,lo=lo+Math.imul(al3,bl5)|0,mid=(mid=mid+Math.imul(al3,bh5)|0)+Math.imul(ah3,bl5)|0,hi=hi+Math.imul(ah3,bh5)|0,lo=lo+Math.imul(al2,bl6)|0,mid=(mid=mid+Math.imul(al2,bh6)|0)+Math.imul(ah2,bl6)|0,hi=hi+Math.imul(ah2,bh6)|0,lo=lo+Math.imul(al1,bl7)|0,mid=(mid=mid+Math.imul(al1,bh7)|0)+Math.imul(ah1,bl7)|0,hi=hi+Math.imul(ah1,bh7)|0;var w8=(c+(lo=lo+Math.imul(al0,bl8)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh8)|0)+Math.imul(ah0,bl8)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh8)|0)+(mid>>>13)|0)+(w8>>>26)|0,w8&=67108863,lo=Math.imul(al9,bl0),mid=(mid=Math.imul(al9,bh0))+Math.imul(ah9,bl0)|0,hi=Math.imul(ah9,bh0),lo=lo+Math.imul(al8,bl1)|0,mid=(mid=mid+Math.imul(al8,bh1)|0)+Math.imul(ah8,bl1)|0,hi=hi+Math.imul(ah8,bh1)|0,lo=lo+Math.imul(al7,bl2)|0,mid=(mid=mid+Math.imul(al7,bh2)|0)+Math.imul(ah7,bl2)|0,hi=hi+Math.imul(ah7,bh2)|0,lo=lo+Math.imul(al6,bl3)|0,mid=(mid=mid+Math.imul(al6,bh3)|0)+Math.imul(ah6,bl3)|0,hi=hi+Math.imul(ah6,bh3)|0,lo=lo+Math.imul(al5,bl4)|0,mid=(mid=mid+Math.imul(al5,bh4)|0)+Math.imul(ah5,bl4)|0,hi=hi+Math.imul(ah5,bh4)|0,lo=lo+Math.imul(al4,bl5)|0,mid=(mid=mid+Math.imul(al4,bh5)|0)+Math.imul(ah4,bl5)|0,hi=hi+Math.imul(ah4,bh5)|0,lo=lo+Math.imul(al3,bl6)|0,mid=(mid=mid+Math.imul(al3,bh6)|0)+Math.imul(ah3,bl6)|0,hi=hi+Math.imul(ah3,bh6)|0,lo=lo+Math.imul(al2,bl7)|0,mid=(mid=mid+Math.imul(al2,bh7)|0)+Math.imul(ah2,bl7)|0,hi=hi+Math.imul(ah2,bh7)|0,lo=lo+Math.imul(al1,bl8)|0,mid=(mid=mid+Math.imul(al1,bh8)|0)+Math.imul(ah1,bl8)|0,hi=hi+Math.imul(ah1,bh8)|0;var w9=(c+(lo=lo+Math.imul(al0,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al0,bh9)|0)+Math.imul(ah0,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah0,bh9)|0)+(mid>>>13)|0)+(w9>>>26)|0,w9&=67108863,lo=Math.imul(al9,bl1),mid=(mid=Math.imul(al9,bh1))+Math.imul(ah9,bl1)|0,hi=Math.imul(ah9,bh1),lo=lo+Math.imul(al8,bl2)|0,mid=(mid=mid+Math.imul(al8,bh2)|0)+Math.imul(ah8,bl2)|0,hi=hi+Math.imul(ah8,bh2)|0,lo=lo+Math.imul(al7,bl3)|0,mid=(mid=mid+Math.imul(al7,bh3)|0)+Math.imul(ah7,bl3)|0,hi=hi+Math.imul(ah7,bh3)|0,lo=lo+Math.imul(al6,bl4)|0,mid=(mid=mid+Math.imul(al6,bh4)|0)+Math.imul(ah6,bl4)|0,hi=hi+Math.imul(ah6,bh4)|0,lo=lo+Math.imul(al5,bl5)|0,mid=(mid=mid+Math.imul(al5,bh5)|0)+Math.imul(ah5,bl5)|0,hi=hi+Math.imul(ah5,bh5)|0,lo=lo+Math.imul(al4,bl6)|0,mid=(mid=mid+Math.imul(al4,bh6)|0)+Math.imul(ah4,bl6)|0,hi=hi+Math.imul(ah4,bh6)|0,lo=lo+Math.imul(al3,bl7)|0,mid=(mid=mid+Math.imul(al3,bh7)|0)+Math.imul(ah3,bl7)|0,hi=hi+Math.imul(ah3,bh7)|0,lo=lo+Math.imul(al2,bl8)|0,mid=(mid=mid+Math.imul(al2,bh8)|0)+Math.imul(ah2,bl8)|0,hi=hi+Math.imul(ah2,bh8)|0;var w10=(c+(lo=lo+Math.imul(al1,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al1,bh9)|0)+Math.imul(ah1,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah1,bh9)|0)+(mid>>>13)|0)+(w10>>>26)|0,w10&=67108863,lo=Math.imul(al9,bl2),mid=(mid=Math.imul(al9,bh2))+Math.imul(ah9,bl2)|0,hi=Math.imul(ah9,bh2),lo=lo+Math.imul(al8,bl3)|0,mid=(mid=mid+Math.imul(al8,bh3)|0)+Math.imul(ah8,bl3)|0,hi=hi+Math.imul(ah8,bh3)|0,lo=lo+Math.imul(al7,bl4)|0,mid=(mid=mid+Math.imul(al7,bh4)|0)+Math.imul(ah7,bl4)|0,hi=hi+Math.imul(ah7,bh4)|0,lo=lo+Math.imul(al6,bl5)|0,mid=(mid=mid+Math.imul(al6,bh5)|0)+Math.imul(ah6,bl5)|0,hi=hi+Math.imul(ah6,bh5)|0,lo=lo+Math.imul(al5,bl6)|0,mid=(mid=mid+Math.imul(al5,bh6)|0)+Math.imul(ah5,bl6)|0,hi=hi+Math.imul(ah5,bh6)|0,lo=lo+Math.imul(al4,bl7)|0,mid=(mid=mid+Math.imul(al4,bh7)|0)+Math.imul(ah4,bl7)|0,hi=hi+Math.imul(ah4,bh7)|0,lo=lo+Math.imul(al3,bl8)|0,mid=(mid=mid+Math.imul(al3,bh8)|0)+Math.imul(ah3,bl8)|0,hi=hi+Math.imul(ah3,bh8)|0;var w11=(c+(lo=lo+Math.imul(al2,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al2,bh9)|0)+Math.imul(ah2,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah2,bh9)|0)+(mid>>>13)|0)+(w11>>>26)|0,w11&=67108863,lo=Math.imul(al9,bl3),mid=(mid=Math.imul(al9,bh3))+Math.imul(ah9,bl3)|0,hi=Math.imul(ah9,bh3),lo=lo+Math.imul(al8,bl4)|0,mid=(mid=mid+Math.imul(al8,bh4)|0)+Math.imul(ah8,bl4)|0,hi=hi+Math.imul(ah8,bh4)|0,lo=lo+Math.imul(al7,bl5)|0,mid=(mid=mid+Math.imul(al7,bh5)|0)+Math.imul(ah7,bl5)|0,hi=hi+Math.imul(ah7,bh5)|0,lo=lo+Math.imul(al6,bl6)|0,mid=(mid=mid+Math.imul(al6,bh6)|0)+Math.imul(ah6,bl6)|0,hi=hi+Math.imul(ah6,bh6)|0,lo=lo+Math.imul(al5,bl7)|0,mid=(mid=mid+Math.imul(al5,bh7)|0)+Math.imul(ah5,bl7)|0,hi=hi+Math.imul(ah5,bh7)|0,lo=lo+Math.imul(al4,bl8)|0,mid=(mid=mid+Math.imul(al4,bh8)|0)+Math.imul(ah4,bl8)|0,hi=hi+Math.imul(ah4,bh8)|0;var w12=(c+(lo=lo+Math.imul(al3,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al3,bh9)|0)+Math.imul(ah3,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah3,bh9)|0)+(mid>>>13)|0)+(w12>>>26)|0,w12&=67108863,lo=Math.imul(al9,bl4),mid=(mid=Math.imul(al9,bh4))+Math.imul(ah9,bl4)|0,hi=Math.imul(ah9,bh4),lo=lo+Math.imul(al8,bl5)|0,mid=(mid=mid+Math.imul(al8,bh5)|0)+Math.imul(ah8,bl5)|0,hi=hi+Math.imul(ah8,bh5)|0,lo=lo+Math.imul(al7,bl6)|0,mid=(mid=mid+Math.imul(al7,bh6)|0)+Math.imul(ah7,bl6)|0,hi=hi+Math.imul(ah7,bh6)|0,lo=lo+Math.imul(al6,bl7)|0,mid=(mid=mid+Math.imul(al6,bh7)|0)+Math.imul(ah6,bl7)|0,hi=hi+Math.imul(ah6,bh7)|0,lo=lo+Math.imul(al5,bl8)|0,mid=(mid=mid+Math.imul(al5,bh8)|0)+Math.imul(ah5,bl8)|0,hi=hi+Math.imul(ah5,bh8)|0;var w13=(c+(lo=lo+Math.imul(al4,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al4,bh9)|0)+Math.imul(ah4,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah4,bh9)|0)+(mid>>>13)|0)+(w13>>>26)|0,w13&=67108863,lo=Math.imul(al9,bl5),mid=(mid=Math.imul(al9,bh5))+Math.imul(ah9,bl5)|0,hi=Math.imul(ah9,bh5),lo=lo+Math.imul(al8,bl6)|0,mid=(mid=mid+Math.imul(al8,bh6)|0)+Math.imul(ah8,bl6)|0,hi=hi+Math.imul(ah8,bh6)|0,lo=lo+Math.imul(al7,bl7)|0,mid=(mid=mid+Math.imul(al7,bh7)|0)+Math.imul(ah7,bl7)|0,hi=hi+Math.imul(ah7,bh7)|0,lo=lo+Math.imul(al6,bl8)|0,mid=(mid=mid+Math.imul(al6,bh8)|0)+Math.imul(ah6,bl8)|0,hi=hi+Math.imul(ah6,bh8)|0;var w14=(c+(lo=lo+Math.imul(al5,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al5,bh9)|0)+Math.imul(ah5,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah5,bh9)|0)+(mid>>>13)|0)+(w14>>>26)|0,w14&=67108863,lo=Math.imul(al9,bl6),mid=(mid=Math.imul(al9,bh6))+Math.imul(ah9,bl6)|0,hi=Math.imul(ah9,bh6),lo=lo+Math.imul(al8,bl7)|0,mid=(mid=mid+Math.imul(al8,bh7)|0)+Math.imul(ah8,bl7)|0,hi=hi+Math.imul(ah8,bh7)|0,lo=lo+Math.imul(al7,bl8)|0,mid=(mid=mid+Math.imul(al7,bh8)|0)+Math.imul(ah7,bl8)|0,hi=hi+Math.imul(ah7,bh8)|0;var w15=(c+(lo=lo+Math.imul(al6,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al6,bh9)|0)+Math.imul(ah6,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah6,bh9)|0)+(mid>>>13)|0)+(w15>>>26)|0,w15&=67108863,lo=Math.imul(al9,bl7),mid=(mid=Math.imul(al9,bh7))+Math.imul(ah9,bl7)|0,hi=Math.imul(ah9,bh7),lo=lo+Math.imul(al8,bl8)|0,mid=(mid=mid+Math.imul(al8,bh8)|0)+Math.imul(ah8,bl8)|0,hi=hi+Math.imul(ah8,bh8)|0;var w16=(c+(lo=lo+Math.imul(al7,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al7,bh9)|0)+Math.imul(ah7,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah7,bh9)|0)+(mid>>>13)|0)+(w16>>>26)|0,w16&=67108863,lo=Math.imul(al9,bl8),mid=(mid=Math.imul(al9,bh8))+Math.imul(ah9,bl8)|0,hi=Math.imul(ah9,bh8);var w17=(c+(lo=lo+Math.imul(al8,bl9)|0)|0)+((8191&(mid=(mid=mid+Math.imul(al8,bh9)|0)+Math.imul(ah8,bl9)|0))<<13)|0;c=((hi=hi+Math.imul(ah8,bh9)|0)+(mid>>>13)|0)+(w17>>>26)|0,w17&=67108863;var w18=(c+(lo=Math.imul(al9,bl9))|0)+((8191&(mid=(mid=Math.imul(al9,bh9))+Math.imul(ah9,bl9)|0))<<13)|0;return c=((hi=Math.imul(ah9,bh9))+(mid>>>13)|0)+(w18>>>26)|0,w18&=67108863,o[0]=w0,o[1]=w1,o[2]=w2,o[3]=w3,o[4]=w4,o[5]=w5,o[6]=w6,o[7]=w7,o[8]=w8,o[9]=w9,o[10]=w10,o[11]=w11,o[12]=w12,o[13]=w13,o[14]=w14,o[15]=w15,o[16]=w16,o[17]=w17,o[18]=w18,0!==c&&(o[19]=c,out.length++),out};function bigMulTo(self,num,out){out.negative=num.negative^self.negative,out.length=self.length+num.length;for(var carry=0,hncarry=0,k=0;k>>26)|0)>>>26,ncarry&=67108863}out.words[k]=rword,carry=ncarry,ncarry=hncarry}return 0!==carry?out.words[k]=carry:out.length--,out._strip()}function jumboMulTo(self,num,out){return bigMulTo(self,num,out)}function FFTM(x,y){this.x=x,this.y=y}Math.imul||(comb10MulTo=smallMulTo),BN.prototype.mulTo=function(num,out){var len=this.length+num.length;return 10===this.length&&10===num.length?comb10MulTo(this,num,out):len<63?smallMulTo(this,num,out):len<1024?bigMulTo(this,num,out):jumboMulTo(this,num,out)},FFTM.prototype.makeRBT=function(N){for(var t=new Array(N),l=BN.prototype._countBits(N)-1,i=0;i>=1;return rb},FFTM.prototype.permute=function(rbt,rws,iws,rtws,itws,N){for(var i=0;i>>=1)i++;return 1<>>=13,rws[2*i+1]=8191&carry,carry>>>=13;for(i=2*len;i>=26,carry+=w/67108864|0,carry+=lo>>>26,this.words[i]=67108863&lo}return 0!==carry&&(this.words[i]=carry,this.length++),isNegNum?this.ineg():this},BN.prototype.muln=function(num){return this.clone().imuln(num)},BN.prototype.sqr=function(){return this.mul(this)},BN.prototype.isqr=function(){return this.imul(this.clone())},BN.prototype.pow=function(num){var w=function(num){for(var w=new Array(num.bitLength()),bit=0;bit>>wbit&1}return w}(num);if(0===w.length)return new BN(1);for(var res=this,i=0;i=0);var i,r=bits%26,s=(bits-r)/26,carryMask=67108863>>>26-r<<26-r;if(0!==r){var carry=0;for(i=0;i>>26-r}carry&&(this.words[i]=carry,this.length++)}if(0!==s){for(i=this.length-1;i>=0;i--)this.words[i+s]=this.words[i];for(i=0;i=0),h=hint?(hint-hint%26)/26:0;var r=bits%26,s=Math.min((bits-r)/26,this.length),mask=67108863^67108863>>>r<s)for(this.length-=s,i=0;i=0&&(0!==carry||i>=h);i--){var word=0|this.words[i];this.words[i]=carry<<26-r|word>>>r,carry=word&mask}return maskedWords&&0!==carry&&(maskedWords.words[maskedWords.length++]=carry),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},BN.prototype.ishrn=function(bits,hint,extended){return assert(0===this.negative),this.iushrn(bits,hint,extended)},BN.prototype.shln=function(bits){return this.clone().ishln(bits)},BN.prototype.ushln=function(bits){return this.clone().iushln(bits)},BN.prototype.shrn=function(bits){return this.clone().ishrn(bits)},BN.prototype.ushrn=function(bits){return this.clone().iushrn(bits)},BN.prototype.testn=function(bit){assert("number"==typeof bit&&bit>=0);var r=bit%26,s=(bit-r)/26,q=1<=0);var r=bits%26,s=(bits-r)/26;if(assert(0===this.negative,"imaskn works only with positive numbers"),this.length<=s)return this;if(0!==r&&s++,this.length=Math.min(s,this.length),0!==r){var mask=67108863^67108863>>>r<=67108864;i++)this.words[i]-=67108864,i===this.length-1?this.words[i+1]=1:this.words[i+1]++;return this.length=Math.max(this.length,i+1),this},BN.prototype.isubn=function(num){if(assert("number"==typeof num),assert(num<67108864),num<0)return this.iaddn(-num);if(0!==this.negative)return this.negative=0,this.iaddn(num),this.negative=1,this;if(this.words[0]-=num,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var i=0;i>26)-(right/67108864|0),this.words[i+shift]=67108863&w}for(;i>26,this.words[i+shift]=67108863&w;if(0===carry)return this._strip();for(assert(-1===carry),carry=0,i=0;i>26,this.words[i]=67108863&w;return this.negative=1,this._strip()},BN.prototype._wordDiv=function(num,mode){var shift=(this.length,num.length),a=this.clone(),b=num,bhi=0|b.words[b.length-1];0!==(shift=26-this._countBits(bhi))&&(b=b.ushln(shift),a.iushln(shift),bhi=0|b.words[b.length-1]);var q,m=a.length-b.length;if("mod"!==mode){(q=new BN(null)).length=m+1,q.words=new Array(q.length);for(var i=0;i=0;j--){var qj=67108864*(0|a.words[b.length+j])+(0|a.words[b.length+j-1]);for(qj=Math.min(qj/bhi|0,67108863),a._ishlnsubmul(b,qj,j);0!==a.negative;)qj--,a.negative=0,a._ishlnsubmul(b,1,j),a.isZero()||(a.negative^=1);q&&(q.words[j]=qj)}return q&&q._strip(),a._strip(),"div"!==mode&&0!==shift&&a.iushrn(shift),{div:q||null,mod:a}},BN.prototype.divmod=function(num,mode,positive){return assert(!num.isZero()),this.isZero()?{div:new BN(0),mod:new BN(0)}:0!==this.negative&&0===num.negative?(res=this.neg().divmod(num,mode),"mod"!==mode&&(div=res.div.neg()),"div"!==mode&&(mod=res.mod.neg(),positive&&0!==mod.negative&&mod.iadd(num)),{div:div,mod:mod}):0===this.negative&&0!==num.negative?(res=this.divmod(num.neg(),mode),"mod"!==mode&&(div=res.div.neg()),{div:div,mod:res.mod}):0!=(this.negative&num.negative)?(res=this.neg().divmod(num.neg(),mode),"div"!==mode&&(mod=res.mod.neg(),positive&&0!==mod.negative&&mod.isub(num)),{div:res.div,mod:mod}):num.length>this.length||this.cmp(num)<0?{div:new BN(0),mod:this}:1===num.length?"div"===mode?{div:this.divn(num.words[0]),mod:null}:"mod"===mode?{div:null,mod:new BN(this.modrn(num.words[0]))}:{div:this.divn(num.words[0]),mod:new BN(this.modrn(num.words[0]))}:this._wordDiv(num,mode);var div,mod,res},BN.prototype.div=function(num){return this.divmod(num,"div",!1).div},BN.prototype.mod=function(num){return this.divmod(num,"mod",!1).mod},BN.prototype.umod=function(num){return this.divmod(num,"mod",!0).mod},BN.prototype.divRound=function(num){var dm=this.divmod(num);if(dm.mod.isZero())return dm.div;var mod=0!==dm.div.negative?dm.mod.isub(num):dm.mod,half=num.ushrn(1),r2=num.andln(1),cmp=mod.cmp(half);return cmp<0||1===r2&&0===cmp?dm.div:0!==dm.div.negative?dm.div.isubn(1):dm.div.iaddn(1)},BN.prototype.modrn=function(num){var isNegNum=num<0;isNegNum&&(num=-num),assert(num<=67108863);for(var p=(1<<26)%num,acc=0,i=this.length-1;i>=0;i--)acc=(p*acc+(0|this.words[i]))%num;return isNegNum?-acc:acc},BN.prototype.modn=function(num){return this.modrn(num)},BN.prototype.idivn=function(num){var isNegNum=num<0;isNegNum&&(num=-num),assert(num<=67108863);for(var carry=0,i=this.length-1;i>=0;i--){var w=(0|this.words[i])+67108864*carry;this.words[i]=w/num|0,carry=w%num}return this._strip(),isNegNum?this.ineg():this},BN.prototype.divn=function(num){return this.clone().idivn(num)},BN.prototype.egcd=function(p){assert(0===p.negative),assert(!p.isZero());var x=this,y=p.clone();x=0!==x.negative?x.umod(p):x.clone();for(var A=new BN(1),B=new BN(0),C=new BN(0),D=new BN(1),g=0;x.isEven()&&y.isEven();)x.iushrn(1),y.iushrn(1),++g;for(var yp=y.clone(),xp=x.clone();!x.isZero();){for(var i=0,im=1;0==(x.words[0]&im)&&i<26;++i,im<<=1);if(i>0)for(x.iushrn(i);i-- >0;)(A.isOdd()||B.isOdd())&&(A.iadd(yp),B.isub(xp)),A.iushrn(1),B.iushrn(1);for(var j=0,jm=1;0==(y.words[0]&jm)&&j<26;++j,jm<<=1);if(j>0)for(y.iushrn(j);j-- >0;)(C.isOdd()||D.isOdd())&&(C.iadd(yp),D.isub(xp)),C.iushrn(1),D.iushrn(1);x.cmp(y)>=0?(x.isub(y),A.isub(C),B.isub(D)):(y.isub(x),C.isub(A),D.isub(B))}return{a:C,b:D,gcd:y.iushln(g)}},BN.prototype._invmp=function(p){assert(0===p.negative),assert(!p.isZero());var a=this,b=p.clone();a=0!==a.negative?a.umod(p):a.clone();for(var res,x1=new BN(1),x2=new BN(0),delta=b.clone();a.cmpn(1)>0&&b.cmpn(1)>0;){for(var i=0,im=1;0==(a.words[0]&im)&&i<26;++i,im<<=1);if(i>0)for(a.iushrn(i);i-- >0;)x1.isOdd()&&x1.iadd(delta),x1.iushrn(1);for(var j=0,jm=1;0==(b.words[0]&jm)&&j<26;++j,jm<<=1);if(j>0)for(b.iushrn(j);j-- >0;)x2.isOdd()&&x2.iadd(delta),x2.iushrn(1);a.cmp(b)>=0?(a.isub(b),x1.isub(x2)):(b.isub(a),x2.isub(x1))}return(res=0===a.cmpn(1)?x1:x2).cmpn(0)<0&&res.iadd(p),res},BN.prototype.gcd=function(num){if(this.isZero())return num.abs();if(num.isZero())return this.abs();var a=this.clone(),b=num.clone();a.negative=0,b.negative=0;for(var shift=0;a.isEven()&&b.isEven();shift++)a.iushrn(1),b.iushrn(1);for(;;){for(;a.isEven();)a.iushrn(1);for(;b.isEven();)b.iushrn(1);var r=a.cmp(b);if(r<0){var t=a;a=b,b=t}else if(0===r||0===b.cmpn(1))break;a.isub(b)}return b.iushln(shift)},BN.prototype.invm=function(num){return this.egcd(num).a.umod(num)},BN.prototype.isEven=function(){return 0==(1&this.words[0])},BN.prototype.isOdd=function(){return 1==(1&this.words[0])},BN.prototype.andln=function(num){return this.words[0]&num},BN.prototype.bincn=function(bit){assert("number"==typeof bit);var r=bit%26,s=(bit-r)/26,q=1<>>26,w&=67108863,this.words[i]=w}return 0!==carry&&(this.words[i]=carry,this.length++),this},BN.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},BN.prototype.cmpn=function(num){var res,negative=num<0;if(0!==this.negative&&!negative)return-1;if(0===this.negative&&negative)return 1;if(this._strip(),this.length>1)res=1;else{negative&&(num=-num),assert(num<=67108863,"Number is too big");var w=0|this.words[0];res=w===num?0:wnum.length)return 1;if(this.length=0;i--){var a=0|this.words[i],b=0|num.words[i];if(a!==b){ab&&(res=1);break}}return res},BN.prototype.gtn=function(num){return 1===this.cmpn(num)},BN.prototype.gt=function(num){return 1===this.cmp(num)},BN.prototype.gten=function(num){return this.cmpn(num)>=0},BN.prototype.gte=function(num){return this.cmp(num)>=0},BN.prototype.ltn=function(num){return-1===this.cmpn(num)},BN.prototype.lt=function(num){return-1===this.cmp(num)},BN.prototype.lten=function(num){return this.cmpn(num)<=0},BN.prototype.lte=function(num){return this.cmp(num)<=0},BN.prototype.eqn=function(num){return 0===this.cmpn(num)},BN.prototype.eq=function(num){return 0===this.cmp(num)},BN.red=function(num){return new Red(num)},BN.prototype.toRed=function(ctx){return assert(!this.red,"Already a number in reduction context"),assert(0===this.negative,"red works only with positives"),ctx.convertTo(this)._forceRed(ctx)},BN.prototype.fromRed=function(){return assert(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},BN.prototype._forceRed=function(ctx){return this.red=ctx,this},BN.prototype.forceRed=function(ctx){return assert(!this.red,"Already a number in reduction context"),this._forceRed(ctx)},BN.prototype.redAdd=function(num){return assert(this.red,"redAdd works only with red numbers"),this.red.add(this,num)},BN.prototype.redIAdd=function(num){return assert(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,num)},BN.prototype.redSub=function(num){return assert(this.red,"redSub works only with red numbers"),this.red.sub(this,num)},BN.prototype.redISub=function(num){return assert(this.red,"redISub works only with red numbers"),this.red.isub(this,num)},BN.prototype.redShl=function(num){return assert(this.red,"redShl works only with red numbers"),this.red.shl(this,num)},BN.prototype.redMul=function(num){return assert(this.red,"redMul works only with red numbers"),this.red._verify2(this,num),this.red.mul(this,num)},BN.prototype.redIMul=function(num){return assert(this.red,"redMul works only with red numbers"),this.red._verify2(this,num),this.red.imul(this,num)},BN.prototype.redSqr=function(){return assert(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},BN.prototype.redISqr=function(){return assert(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},BN.prototype.redSqrt=function(){return assert(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},BN.prototype.redInvm=function(){return assert(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},BN.prototype.redNeg=function(){return assert(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},BN.prototype.redPow=function(num){return assert(this.red&&!num.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,num)};var primes={k256:null,p224:null,p192:null,p25519:null};function MPrime(name,p){this.name=name,this.p=new BN(p,16),this.n=this.p.bitLength(),this.k=new BN(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function K256(){MPrime.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function P224(){MPrime.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function P192(){MPrime.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function P25519(){MPrime.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Red(m){if("string"==typeof m){var prime=BN._prime(m);this.m=prime.p,this.prime=prime}else assert(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function Mont(m){Red.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new BN(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}MPrime.prototype._tmp=function(){var tmp=new BN(null);return tmp.words=new Array(Math.ceil(this.n/13)),tmp},MPrime.prototype.ireduce=function(num){var rlen,r=num;do{this.split(r,this.tmp),rlen=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(rlen>this.n);var cmp=rlen0?r.isub(this.p):void 0!==r.strip?r.strip():r._strip(),r},MPrime.prototype.split=function(input,out){input.iushrn(this.n,0,out)},MPrime.prototype.imulK=function(num){return num.imul(this.k)},inherits(K256,MPrime),K256.prototype.split=function(input,output){for(var outLen=Math.min(input.length,9),i=0;i>>22,prev=next}prev>>>=22,input.words[i-10]=prev,0===prev&&input.length>10?input.length-=10:input.length-=9},K256.prototype.imulK=function(num){num.words[num.length]=0,num.words[num.length+1]=0,num.length+=2;for(var lo=0,i=0;i>>=26,num.words[i]=lo,carry=hi}return 0!==carry&&(num.words[num.length++]=carry),num},BN._prime=function(name){if(primes[name])return primes[name];var prime;if("k256"===name)prime=new K256;else if("p224"===name)prime=new P224;else if("p192"===name)prime=new P192;else{if("p25519"!==name)throw new Error("Unknown prime "+name);prime=new P25519}return primes[name]=prime,prime},Red.prototype._verify1=function(a){assert(0===a.negative,"red works only with positives"),assert(a.red,"red works only with red numbers")},Red.prototype._verify2=function(a,b){assert(0==(a.negative|b.negative),"red works only with positives"),assert(a.red&&a.red===b.red,"red works only with red numbers")},Red.prototype.imod=function(a){return this.prime?this.prime.ireduce(a)._forceRed(this):(move(a,a.umod(this.m)._forceRed(this)),a)},Red.prototype.neg=function(a){return a.isZero()?a.clone():this.m.sub(a)._forceRed(this)},Red.prototype.add=function(a,b){this._verify2(a,b);var res=a.add(b);return res.cmp(this.m)>=0&&res.isub(this.m),res._forceRed(this)},Red.prototype.iadd=function(a,b){this._verify2(a,b);var res=a.iadd(b);return res.cmp(this.m)>=0&&res.isub(this.m),res},Red.prototype.sub=function(a,b){this._verify2(a,b);var res=a.sub(b);return res.cmpn(0)<0&&res.iadd(this.m),res._forceRed(this)},Red.prototype.isub=function(a,b){this._verify2(a,b);var res=a.isub(b);return res.cmpn(0)<0&&res.iadd(this.m),res},Red.prototype.shl=function(a,num){return this._verify1(a),this.imod(a.ushln(num))},Red.prototype.imul=function(a,b){return this._verify2(a,b),this.imod(a.imul(b))},Red.prototype.mul=function(a,b){return this._verify2(a,b),this.imod(a.mul(b))},Red.prototype.isqr=function(a){return this.imul(a,a.clone())},Red.prototype.sqr=function(a){return this.mul(a,a)},Red.prototype.sqrt=function(a){if(a.isZero())return a.clone();var mod3=this.m.andln(3);if(assert(mod3%2==1),3===mod3){var pow=this.m.add(new BN(1)).iushrn(2);return this.pow(a,pow)}for(var q=this.m.subn(1),s=0;!q.isZero()&&0===q.andln(1);)s++,q.iushrn(1);assert(!q.isZero());var one=new BN(1).toRed(this),nOne=one.redNeg(),lpow=this.m.subn(1).iushrn(1),z=this.m.bitLength();for(z=new BN(2*z*z).toRed(this);0!==this.pow(z,lpow).cmp(nOne);)z.redIAdd(nOne);for(var c=this.pow(z,q),r=this.pow(a,q.addn(1).iushrn(1)),t=this.pow(a,q),m=s;0!==t.cmp(one);){for(var tmp=t,i=0;0!==tmp.cmp(one);i++)tmp=tmp.redSqr();assert(i=0;i--){for(var word=num.words[i],j=start-1;j>=0;j--){var bit=word>>j&1;res!==wnd[0]&&(res=this.sqr(res)),0!==bit||0!==current?(current<<=1,current|=bit,(4===++currentLen||0===i&&0===j)&&(res=this.mul(res,wnd[current]),currentLen=0,current=0)):currentLen=0}start=26}return res},Red.prototype.convertTo=function(num){var r=num.umod(this.m);return r===num?r.clone():r},Red.prototype.convertFrom=function(num){var res=num.clone();return res.red=null,res},BN.mont=function(num){return new Mont(num)},inherits(Mont,Red),Mont.prototype.convertTo=function(num){return this.imod(num.ushln(this.shift))},Mont.prototype.convertFrom=function(num){var r=this.imod(num.mul(this.rinv));return r.red=null,r},Mont.prototype.imul=function(a,b){if(a.isZero()||b.isZero())return a.words[0]=0,a.length=1,a;var t=a.imul(b),c=t.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),u=t.isub(c).iushrn(this.shift),res=u;return u.cmp(this.m)>=0?res=u.isub(this.m):u.cmpn(0)<0&&(res=u.iadd(this.m)),res._forceRed(this)},Mont.prototype.mul=function(a,b){if(a.isZero()||b.isZero())return new BN(0)._forceRed(this);var t=a.mul(b),c=t.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),u=t.isub(c).iushrn(this.shift),res=u;return u.cmp(this.m)>=0?res=u.isub(this.m):u.cmpn(0)<0&&(res=u.iadd(this.m)),res._forceRed(this)},Mont.prototype.invm=function(a){return this.imod(a._invmp(this.m).mul(this.r2))._forceRed(this)}}(void 0===module||module,this)},{buffer:20}],19:[function(require,module,exports){var r;function Rand(rand){this.rand=rand}if(module.exports=function(len){return r||(r=new Rand(null)),r.generate(len)},module.exports.Rand=Rand,Rand.prototype.generate=function(len){return this._rand(len)},Rand.prototype._rand=function(n){if(this.rand.getBytes)return this.rand.getBytes(n);for(var res=new Uint8Array(n),i=0;i>>24]^SUB_MIX1[s1>>>16&255]^SUB_MIX2[s2>>>8&255]^SUB_MIX3[255&s3]^keySchedule[ksRow++],t1=SUB_MIX0[s1>>>24]^SUB_MIX1[s2>>>16&255]^SUB_MIX2[s3>>>8&255]^SUB_MIX3[255&s0]^keySchedule[ksRow++],t2=SUB_MIX0[s2>>>24]^SUB_MIX1[s3>>>16&255]^SUB_MIX2[s0>>>8&255]^SUB_MIX3[255&s1]^keySchedule[ksRow++],t3=SUB_MIX0[s3>>>24]^SUB_MIX1[s0>>>16&255]^SUB_MIX2[s1>>>8&255]^SUB_MIX3[255&s2]^keySchedule[ksRow++],s0=t0,s1=t1,s2=t2,s3=t3;return t0=(SBOX[s0>>>24]<<24|SBOX[s1>>>16&255]<<16|SBOX[s2>>>8&255]<<8|SBOX[255&s3])^keySchedule[ksRow++],t1=(SBOX[s1>>>24]<<24|SBOX[s2>>>16&255]<<16|SBOX[s3>>>8&255]<<8|SBOX[255&s0])^keySchedule[ksRow++],t2=(SBOX[s2>>>24]<<24|SBOX[s3>>>16&255]<<16|SBOX[s0>>>8&255]<<8|SBOX[255&s1])^keySchedule[ksRow++],t3=(SBOX[s3>>>24]<<24|SBOX[s0>>>16&255]<<16|SBOX[s1>>>8&255]<<8|SBOX[255&s2])^keySchedule[ksRow++],[t0>>>=0,t1>>>=0,t2>>>=0,t3>>>=0]}var RCON=[0,1,2,4,8,16,32,64,128,27,54],G=function(){for(var d=new Array(256),j=0;j<256;j++)d[j]=j<128?j<<1:j<<1^283;for(var SBOX=[],INV_SBOX=[],SUB_MIX=[[],[],[],[]],INV_SUB_MIX=[[],[],[],[]],x=0,xi=0,i=0;i<256;++i){var sx=xi^xi<<1^xi<<2^xi<<3^xi<<4;sx=sx>>>8^255&sx^99,SBOX[x]=sx,INV_SBOX[sx]=x;var x2=d[x],x4=d[x2],x8=d[x4],t=257*d[sx]^16843008*sx;SUB_MIX[0][x]=t<<24|t>>>8,SUB_MIX[1][x]=t<<16|t>>>16,SUB_MIX[2][x]=t<<8|t>>>24,SUB_MIX[3][x]=t,t=16843009*x8^65537*x4^257*x2^16843008*x,INV_SUB_MIX[0][sx]=t<<24|t>>>8,INV_SUB_MIX[1][sx]=t<<16|t>>>16,INV_SUB_MIX[2][sx]=t<<8|t>>>24,INV_SUB_MIX[3][sx]=t,0===x?x=xi=1:(x=x2^d[d[d[x8^x2]]],xi^=d[d[xi]])}return{SBOX:SBOX,INV_SBOX:INV_SBOX,SUB_MIX:SUB_MIX,INV_SUB_MIX:INV_SUB_MIX}}();function AES(key){this._key=asUInt32Array(key),this._reset()}AES.blockSize=16,AES.keySize=32,AES.prototype.blockSize=AES.blockSize,AES.prototype.keySize=AES.keySize,AES.prototype._reset=function(){for(var keyWords=this._key,keySize=keyWords.length,nRounds=keySize+6,ksRows=4*(nRounds+1),keySchedule=[],k=0;k>>24,t=G.SBOX[t>>>24]<<24|G.SBOX[t>>>16&255]<<16|G.SBOX[t>>>8&255]<<8|G.SBOX[255&t],t^=RCON[k/keySize|0]<<24):keySize>6&&k%keySize==4&&(t=G.SBOX[t>>>24]<<24|G.SBOX[t>>>16&255]<<16|G.SBOX[t>>>8&255]<<8|G.SBOX[255&t]),keySchedule[k]=keySchedule[k-keySize]^t}for(var invKeySchedule=[],ik=0;ik>>24]]^G.INV_SUB_MIX[1][G.SBOX[tt>>>16&255]]^G.INV_SUB_MIX[2][G.SBOX[tt>>>8&255]]^G.INV_SUB_MIX[3][G.SBOX[255&tt]]}this._nRounds=nRounds,this._keySchedule=keySchedule,this._invKeySchedule=invKeySchedule},AES.prototype.encryptBlockRaw=function(M){return cryptBlock(M=asUInt32Array(M),this._keySchedule,G.SUB_MIX,G.SBOX,this._nRounds)},AES.prototype.encryptBlock=function(M){var out=this.encryptBlockRaw(M),buf=Buffer.allocUnsafe(16);return buf.writeUInt32BE(out[0],0),buf.writeUInt32BE(out[1],4),buf.writeUInt32BE(out[2],8),buf.writeUInt32BE(out[3],12),buf},AES.prototype.decryptBlock=function(M){var m1=(M=asUInt32Array(M))[1];M[1]=M[3],M[3]=m1;var out=cryptBlock(M,this._invKeySchedule,G.INV_SUB_MIX,G.INV_SBOX,this._nRounds),buf=Buffer.allocUnsafe(16);return buf.writeUInt32BE(out[0],0),buf.writeUInt32BE(out[3],4),buf.writeUInt32BE(out[2],8),buf.writeUInt32BE(out[1],12),buf},AES.prototype.scrub=function(){scrubVec(this._keySchedule),scrubVec(this._invKeySchedule),scrubVec(this._key)},module.exports.AES=AES},{"safe-buffer":162}],22:[function(require,module,exports){var aes=require("./aes"),Buffer=require("safe-buffer").Buffer,Transform=require("cipher-base"),inherits=require("inherits"),GHASH=require("./ghash"),xor=require("buffer-xor"),incr32=require("./incr32");function StreamCipher(mode,key,iv,decrypt){Transform.call(this);var h=Buffer.alloc(4,0);this._cipher=new aes.AES(key);var ck=this._cipher.encryptBlock(h);this._ghash=new GHASH(ck),iv=function(self,iv,ck){if(12===iv.length)return self._finID=Buffer.concat([iv,Buffer.from([0,0,0,1])]),Buffer.concat([iv,Buffer.from([0,0,0,2])]);var ghash=new GHASH(ck),len=iv.length,toPad=len%16;ghash.update(iv),toPad&&(toPad=16-toPad,ghash.update(Buffer.alloc(toPad,0))),ghash.update(Buffer.alloc(8,0));var ivBits=8*len,tail=Buffer.alloc(8);tail.writeUIntBE(ivBits,0,8),ghash.update(tail),self._finID=ghash.state;var out=Buffer.from(self._finID);return incr32(out),out}(this,iv,ck),this._prev=Buffer.from(iv),this._cache=Buffer.allocUnsafe(0),this._secCache=Buffer.allocUnsafe(0),this._decrypt=decrypt,this._alen=0,this._len=0,this._mode=mode,this._authTag=null,this._called=!1}inherits(StreamCipher,Transform),StreamCipher.prototype._update=function(chunk){if(!this._called&&this._alen){var rump=16-this._alen%16;rump<16&&(rump=Buffer.alloc(rump,0),this._ghash.update(rump))}this._called=!0;var out=this._mode.encrypt(this,chunk);return this._decrypt?this._ghash.update(chunk):this._ghash.update(out),this._len+=chunk.length,out},StreamCipher.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var tag=xor(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function(a,b){var out=0;a.length!==b.length&&out++;for(var len=Math.min(a.length,b.length),i=0;i16)throw new Error("unable to decrypt data");var i=-1;for(;++i16)return out=this.cache.slice(0,16),this.cache=this.cache.slice(16),out}else if(this.cache.length>=16)return out=this.cache.slice(0,16),this.cache=this.cache.slice(16),out;return null},Splitter.prototype.flush=function(){if(this.cache.length)return this.cache},exports.createDecipher=function(suite,password){var config=MODES[suite.toLowerCase()];if(!config)throw new TypeError("invalid suite type");var keys=ebtk(password,!1,config.key,config.iv);return createDecipheriv(suite,keys.key,keys.iv)},exports.createDecipheriv=createDecipheriv},{"./aes":21,"./authCipher":22,"./modes":34,"./streamCipher":37,"cipher-base":65,evp_bytestokey:102,inherits:133,"safe-buffer":162}],25:[function(require,module,exports){var MODES=require("./modes"),AuthCipher=require("./authCipher"),Buffer=require("safe-buffer").Buffer,StreamCipher=require("./streamCipher"),Transform=require("cipher-base"),aes=require("./aes"),ebtk=require("evp_bytestokey");function Cipher(mode,key,iv){Transform.call(this),this._cache=new Splitter,this._cipher=new aes.AES(key),this._prev=Buffer.from(iv),this._mode=mode,this._autopadding=!0}require("inherits")(Cipher,Transform),Cipher.prototype._update=function(data){var chunk,thing;this._cache.add(data);for(var out=[];chunk=this._cache.get();)thing=this._mode.encrypt(this,chunk),out.push(thing);return Buffer.concat(out)};var PADDING=Buffer.alloc(16,16);function Splitter(){this.cache=Buffer.allocUnsafe(0)}function createCipheriv(suite,password,iv){var config=MODES[suite.toLowerCase()];if(!config)throw new TypeError("invalid suite type");if("string"==typeof password&&(password=Buffer.from(password)),password.length!==config.key/8)throw new TypeError("invalid key length "+password.length);if("string"==typeof iv&&(iv=Buffer.from(iv)),"GCM"!==config.mode&&iv.length!==config.iv)throw new TypeError("invalid iv length "+iv.length);return"stream"===config.type?new StreamCipher(config.module,password,iv):"auth"===config.type?new AuthCipher(config.module,password,iv):new Cipher(config.module,password,iv)}Cipher.prototype._final=function(){var chunk=this._cache.flush();if(this._autopadding)return chunk=this._mode.encrypt(this,chunk),this._cipher.scrub(),chunk;if(!chunk.equals(PADDING))throw this._cipher.scrub(),new Error("data not multiple of block length")},Cipher.prototype.setAutoPadding=function(setTo){return this._autopadding=!!setTo,this},Splitter.prototype.add=function(data){this.cache=Buffer.concat([this.cache,data])},Splitter.prototype.get=function(){if(this.cache.length>15){var out=this.cache.slice(0,16);return this.cache=this.cache.slice(16),out}return null},Splitter.prototype.flush=function(){for(var len=16-this.cache.length,padBuff=Buffer.allocUnsafe(len),i=-1;++i>>0,0),buf.writeUInt32BE(out[1]>>>0,4),buf.writeUInt32BE(out[2]>>>0,8),buf.writeUInt32BE(out[3]>>>0,12),buf}function GHASH(key){this.h=key,this.state=Buffer.alloc(16,0),this.cache=Buffer.allocUnsafe(0)}GHASH.prototype.ghash=function(block){for(var i=-1;++i0;j--)Vi[j]=Vi[j]>>>1|(1&Vi[j-1])<<31;Vi[0]=Vi[0]>>>1,lsbVi&&(Vi[0]=Vi[0]^225<<24)}this.state=fromArray(Zi)},GHASH.prototype.update=function(buf){var chunk;for(this.cache=Buffer.concat([this.cache,buf]);this.cache.length>=16;)chunk=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(chunk)},GHASH.prototype.final=function(abl,bl){return this.cache.length&&this.ghash(Buffer.concat([this.cache,ZEROES],16)),this.ghash(fromArray([0,abl,0,bl])),this.state},module.exports=GHASH},{"safe-buffer":162}],27:[function(require,module,exports){module.exports=function(iv){for(var item,len=iv.length;len--;){if(255!==(item=iv.readUInt8(len))){item++,iv.writeUInt8(item,len);break}iv.writeUInt8(0,len)}}},{}],28:[function(require,module,exports){var xor=require("buffer-xor");exports.encrypt=function(self,block){var data=xor(block,self._prev);return self._prev=self._cipher.encryptBlock(data),self._prev},exports.decrypt=function(self,block){var pad=self._prev;self._prev=block;var out=self._cipher.decryptBlock(block);return xor(out,pad)}},{"buffer-xor":63}],29:[function(require,module,exports){var Buffer=require("safe-buffer").Buffer,xor=require("buffer-xor");function encryptStart(self,data,decrypt){var len=data.length,out=xor(data,self._cache);return self._cache=self._cache.slice(len),self._prev=Buffer.concat([self._prev,decrypt?data:out]),out}exports.encrypt=function(self,data,decrypt){for(var len,out=Buffer.allocUnsafe(0);data.length;){if(0===self._cache.length&&(self._cache=self._cipher.encryptBlock(self._prev),self._prev=Buffer.allocUnsafe(0)),!(self._cache.length<=data.length)){out=Buffer.concat([out,encryptStart(self,data,decrypt)]);break}len=self._cache.length,out=Buffer.concat([out,encryptStart(self,data.slice(0,len),decrypt)]),data=data.slice(len)}return out}},{"buffer-xor":63,"safe-buffer":162}],30:[function(require,module,exports){var Buffer=require("safe-buffer").Buffer;function encryptByte(self,byteParam,decrypt){for(var bit,value,i=-1,out=0;++i<8;)bit=byteParam&1<<7-i?128:0,out+=(128&(value=self._cipher.encryptBlock(self._prev)[0]^bit))>>i%8,self._prev=shiftIn(self._prev,decrypt?bit:value);return out}function shiftIn(buffer,value){var len=buffer.length,i=-1,out=Buffer.allocUnsafe(buffer.length);for(buffer=Buffer.concat([buffer,Buffer.from([value])]);++i>7;return out}exports.encrypt=function(self,chunk,decrypt){for(var len=chunk.length,out=Buffer.allocUnsafe(len),i=-1;++i=0||!r.umod(priv.prime1)||!r.umod(priv.prime2));return r}function crt(msg,priv){var blinds=function(priv){var r=getr(priv);return{blinder:r.toRed(BN.mont(priv.modulus)).redPow(new BN(priv.publicExponent)).fromRed(),unblinder:r.invm(priv.modulus)}}(priv),len=priv.modulus.byteLength(),blinded=new BN(msg).mul(blinds.blinder).umod(priv.modulus),c1=blinded.toRed(BN.mont(priv.prime1)),c2=blinded.toRed(BN.mont(priv.prime2)),qinv=priv.coefficient,p=priv.prime1,q=priv.prime2,m1=c1.redPow(priv.exponent1).fromRed(),m2=c2.redPow(priv.exponent2).fromRed(),h=m1.isub(m2).imul(qinv).umod(p).imul(q);return m2.iadd(h).imul(blinds.unblinder).umod(priv.modulus).toArrayLike(Buffer,"be",len)}crt.getr=getr,module.exports=crt}).call(this)}).call(this,require("buffer").Buffer)},{"bn.js":18,buffer:64,randombytes:159}],42:[function(require,module,exports){"use strict";module.exports=require("./browser/algorithms.json")},{"./browser/algorithms.json":43}],43:[function(require,module,exports){module.exports={sha224WithRSAEncryption:{sign:"rsa",hash:"sha224",id:"302d300d06096086480165030402040500041c"},"RSA-SHA224":{sign:"ecdsa/rsa",hash:"sha224",id:"302d300d06096086480165030402040500041c"},sha256WithRSAEncryption:{sign:"rsa",hash:"sha256",id:"3031300d060960864801650304020105000420"},"RSA-SHA256":{sign:"ecdsa/rsa",hash:"sha256",id:"3031300d060960864801650304020105000420"},sha384WithRSAEncryption:{sign:"rsa",hash:"sha384",id:"3041300d060960864801650304020205000430"},"RSA-SHA384":{sign:"ecdsa/rsa",hash:"sha384",id:"3041300d060960864801650304020205000430"},sha512WithRSAEncryption:{sign:"rsa",hash:"sha512",id:"3051300d060960864801650304020305000440"},"RSA-SHA512":{sign:"ecdsa/rsa",hash:"sha512",id:"3051300d060960864801650304020305000440"},"RSA-SHA1":{sign:"rsa",hash:"sha1",id:"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{sign:"ecdsa",hash:"sha1",id:""},sha256:{sign:"ecdsa",hash:"sha256",id:""},sha224:{sign:"ecdsa",hash:"sha224",id:""},sha384:{sign:"ecdsa",hash:"sha384",id:""},sha512:{sign:"ecdsa",hash:"sha512",id:""},"DSA-SHA":{sign:"dsa",hash:"sha1",id:""},"DSA-SHA1":{sign:"dsa",hash:"sha1",id:""},DSA:{sign:"dsa",hash:"sha1",id:""},"DSA-WITH-SHA224":{sign:"dsa",hash:"sha224",id:""},"DSA-SHA224":{sign:"dsa",hash:"sha224",id:""},"DSA-WITH-SHA256":{sign:"dsa",hash:"sha256",id:""},"DSA-SHA256":{sign:"dsa",hash:"sha256",id:""},"DSA-WITH-SHA384":{sign:"dsa",hash:"sha384",id:""},"DSA-SHA384":{sign:"dsa",hash:"sha384",id:""},"DSA-WITH-SHA512":{sign:"dsa",hash:"sha512",id:""},"DSA-SHA512":{sign:"dsa",hash:"sha512",id:""},"DSA-RIPEMD160":{sign:"dsa",hash:"rmd160",id:""},ripemd160WithRSA:{sign:"rsa",hash:"rmd160",id:"3021300906052b2403020105000414"},"RSA-RIPEMD160":{sign:"rsa",hash:"rmd160",id:"3021300906052b2403020105000414"},md5WithRSAEncryption:{sign:"rsa",hash:"md5",id:"3020300c06082a864886f70d020505000410"},"RSA-MD5":{sign:"rsa",hash:"md5",id:"3020300c06082a864886f70d020505000410"}}},{}],44:[function(require,module,exports){module.exports={"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}},{}],45:[function(require,module,exports){"use strict";var Buffer=require("safe-buffer").Buffer,createHash=require("create-hash"),stream=require("readable-stream"),inherits=require("inherits"),sign=require("./sign"),verify=require("./verify"),algorithms=require("./algorithms.json");function Sign(algorithm){stream.Writable.call(this);var data=algorithms[algorithm];if(!data)throw new Error("Unknown message digest");this._hashType=data.hash,this._hash=createHash(data.hash),this._tag=data.id,this._signType=data.sign}function Verify(algorithm){stream.Writable.call(this);var data=algorithms[algorithm];if(!data)throw new Error("Unknown message digest");this._hash=createHash(data.hash),this._tag=data.id,this._signType=data.sign}function createSign(algorithm){return new Sign(algorithm)}function createVerify(algorithm){return new Verify(algorithm)}Object.keys(algorithms).forEach((function(key){algorithms[key].id=Buffer.from(algorithms[key].id,"hex"),algorithms[key.toLowerCase()]=algorithms[key]})),inherits(Sign,stream.Writable),Sign.prototype._write=function(data,_,done){this._hash.update(data),done()},Sign.prototype.update=function(data,enc){return this._hash.update("string"==typeof data?Buffer.from(data,enc):data),this},Sign.prototype.sign=function(key,enc){this.end();var hash=this._hash.digest(),sig=sign(hash,key,this._hashType,this._signType,this._tag);return enc?sig.toString(enc):sig},inherits(Verify,stream.Writable),Verify.prototype._write=function(data,_,done){this._hash.update(data),done()},Verify.prototype.update=function(data,enc){return this._hash.update("string"==typeof data?Buffer.from(data,enc):data),this},Verify.prototype.verify=function(key,sig,enc){var sigBuffer="string"==typeof sig?Buffer.from(sig,enc):sig;this.end();var hash=this._hash.digest();return verify(sigBuffer,hash,key,this._signType,this._tag)},module.exports={Sign:createSign,Verify:createVerify,createSign:createSign,createVerify:createVerify}},{"./algorithms.json":43,"./sign":46,"./verify":47,"create-hash":68,inherits:133,"readable-stream":62,"safe-buffer":162}],46:[function(require,module,exports){"use strict";var Buffer=require("safe-buffer").Buffer,createHmac=require("create-hmac"),crt=require("browserify-rsa"),EC=require("elliptic").ec,BN=require("bn.js"),parseKeys=require("parse-asn1"),curves=require("./curves.json");function getKey(x,q,hash,algo){if((x=Buffer.from(x.toArray())).length0&&bits.ishrn(shift),bits}function makeKey(q,kv,algo){var t,k;do{for(t=Buffer.alloc(0);8*t.length=0)throw new Error("invalid sig")}module.exports=function(sig,hash,key,signType,tag){var pub=parseKeys(key);if("ec"===pub.type){if("ecdsa"!==signType&&"ecdsa/rsa"!==signType)throw new Error("wrong public key type");return function(sig,hash,pub){var curveId=curves[pub.data.algorithm.curve.join(".")];if(!curveId)throw new Error("unknown curve "+pub.data.algorithm.curve.join("."));var curve=new EC(curveId),pubkey=pub.data.subjectPrivateKey.data;return curve.verify(hash,sig,pubkey)}(sig,hash,pub)}if("dsa"===pub.type){if("dsa"!==signType)throw new Error("wrong public key type");return function(sig,hash,pub){var p=pub.data.p,q=pub.data.q,g=pub.data.g,y=pub.data.pub_key,unpacked=parseKeys.signature.decode(sig,"der"),s=unpacked.s,r=unpacked.r;checkValue(s,q),checkValue(r,q);var montp=BN.mont(p),w=s.invm(q),v=g.toRed(montp).redPow(new BN(hash).mul(w).mod(q)).fromRed().mul(y.toRed(montp).redPow(r.mul(w).mod(q)).fromRed()).mod(p).mod(q);return 0===v.cmp(r)}(sig,hash,pub)}if("rsa"!==signType&&"ecdsa/rsa"!==signType)throw new Error("wrong public key type");hash=Buffer.concat([tag,hash]);for(var len=pub.modulus.byteLength(),pad=[1],padNum=0;hash.length+pad.length+22?"one of ".concat(thing," ").concat(expected.slice(0,len-1).join(", "),", or ")+expected[len-1]:2===len?"one of ".concat(thing," ").concat(expected[0]," or ").concat(expected[1]):"of ".concat(thing," ").concat(expected[0])}return"of ".concat(thing," ").concat(String(expected))}createErrorType("ERR_INVALID_OPT_VALUE",(function(name,value){return'The value "'+value+'" is invalid for option "'+name+'"'}),TypeError),createErrorType("ERR_INVALID_ARG_TYPE",(function(name,expected,actual){var determiner,search,pos,msg;if("string"==typeof expected&&(search="not ",expected.substr(!pos||pos<0?0:+pos,search.length)===search)?(determiner="must not be",expected=expected.replace(/^not /,"")):determiner="must be",function(str,search,this_len){return(void 0===this_len||this_len>str.length)&&(this_len=str.length),str.substring(this_len-search.length,this_len)===search}(name," argument"))msg="The ".concat(name," ").concat(determiner," ").concat(oneOf(expected,"type"));else{var type=function(str,search,start){return"number"!=typeof start&&(start=0),!(start+search.length>str.length)&&-1!==str.indexOf(search,start)}(name,".")?"property":"argument";msg='The "'.concat(name,'" ').concat(type," ").concat(determiner," ").concat(oneOf(expected,"type"))}return msg+=". Received type ".concat(typeof actual)}),TypeError),createErrorType("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),createErrorType("ERR_METHOD_NOT_IMPLEMENTED",(function(name){return"The "+name+" method is not implemented"})),createErrorType("ERR_STREAM_PREMATURE_CLOSE","Premature close"),createErrorType("ERR_STREAM_DESTROYED",(function(name){return"Cannot call "+name+" after a stream was destroyed"})),createErrorType("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),createErrorType("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),createErrorType("ERR_STREAM_WRITE_AFTER_END","write after end"),createErrorType("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),createErrorType("ERR_UNKNOWN_ENCODING",(function(arg){return"Unknown encoding: "+arg}),TypeError),createErrorType("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),module.exports.codes=codes},{}],49:[function(require,module,exports){(function(process){(function(){"use strict";var objectKeys=Object.keys||function(obj){var keys=[];for(var key in obj)keys.push(key);return keys};module.exports=Duplex;var Readable=require("./_stream_readable"),Writable=require("./_stream_writable");require("inherits")(Duplex,Readable);for(var keys=objectKeys(Writable.prototype),v=0;v0)if("string"==typeof chunk||state.objectMode||Object.getPrototypeOf(chunk)===Buffer.prototype||(chunk=function(chunk){return Buffer.from(chunk)}(chunk)),addToFront)state.endEmitted?errorOrDestroy(stream,new ERR_STREAM_UNSHIFT_AFTER_END_EVENT):addChunk(stream,state,chunk,!0);else if(state.ended)errorOrDestroy(stream,new ERR_STREAM_PUSH_AFTER_EOF);else{if(state.destroyed)return!1;state.reading=!1,state.decoder&&!encoding?(chunk=state.decoder.write(chunk),state.objectMode||0!==chunk.length?addChunk(stream,state,chunk,!1):maybeReadMore(stream,state)):addChunk(stream,state,chunk,!1)}else addToFront||(state.reading=!1,maybeReadMore(stream,state));return!state.ended&&(state.lengthstate.highWaterMark&&(state.highWaterMark=function(n){return n>=MAX_HWM?n=MAX_HWM:(n--,n|=n>>>1,n|=n>>>2,n|=n>>>4,n|=n>>>8,n|=n>>>16,n++),n}(n)),n<=state.length?n:state.ended?state.length:(state.needReadable=!0,0))}function emitReadable(stream){var state=stream._readableState;debug("emitReadable",state.needReadable,state.emittedReadable),state.needReadable=!1,state.emittedReadable||(debug("emitReadable",state.flowing),state.emittedReadable=!0,process.nextTick(emitReadable_,stream))}function emitReadable_(stream){var state=stream._readableState;debug("emitReadable_",state.destroyed,state.length,state.ended),state.destroyed||!state.length&&!state.ended||(stream.emit("readable"),state.emittedReadable=!1),state.needReadable=!state.flowing&&!state.ended&&state.length<=state.highWaterMark,flow(stream)}function maybeReadMore(stream,state){state.readingMore||(state.readingMore=!0,process.nextTick(maybeReadMore_,stream,state))}function maybeReadMore_(stream,state){for(;!state.reading&&!state.ended&&(state.length0,state.resumeScheduled&&!state.paused?state.flowing=!0:self.listenerCount("data")>0&&self.resume()}function nReadingNextTick(self){debug("readable nexttick read 0"),self.read(0)}function resume_(stream,state){debug("resume",state.reading),state.reading||stream.read(0),state.resumeScheduled=!1,stream.emit("resume"),flow(stream),state.flowing&&!state.reading&&stream.read(0)}function flow(stream){var state=stream._readableState;for(debug("flow",state.flowing);state.flowing&&null!==stream.read(););}function fromList(n,state){return 0===state.length?null:(state.objectMode?ret=state.buffer.shift():!n||n>=state.length?(ret=state.decoder?state.buffer.join(""):1===state.buffer.length?state.buffer.first():state.buffer.concat(state.length),state.buffer.clear()):ret=state.buffer.consume(n,state.decoder),ret);var ret}function endReadable(stream){var state=stream._readableState;debug("endReadable",state.endEmitted),state.endEmitted||(state.ended=!0,process.nextTick(endReadableNT,state,stream))}function endReadableNT(state,stream){if(debug("endReadableNT",state.endEmitted,state.length),!state.endEmitted&&0===state.length&&(state.endEmitted=!0,stream.readable=!1,stream.emit("end"),state.autoDestroy)){var wState=stream._writableState;(!wState||wState.autoDestroy&&wState.finished)&&stream.destroy()}}function indexOf(xs,x){for(var i=0,l=xs.length;i=state.highWaterMark:state.length>0)||state.ended))return debug("read: emitReadable",state.length,state.ended),0===state.length&&state.ended?endReadable(this):emitReadable(this),null;if(0===(n=howMuchToRead(n,state))&&state.ended)return 0===state.length&&endReadable(this),null;var ret,doRead=state.needReadable;return debug("need readable",doRead),(0===state.length||state.length-n0?fromList(n,state):null)?(state.needReadable=state.length<=state.highWaterMark,n=0):(state.length-=n,state.awaitDrain=0),0===state.length&&(state.ended||(state.needReadable=!0),nOrig!==n&&state.ended&&endReadable(this)),null!==ret&&this.emit("data",ret),ret},Readable.prototype._read=function(n){errorOrDestroy(this,new ERR_METHOD_NOT_IMPLEMENTED("_read()"))},Readable.prototype.pipe=function(dest,pipeOpts){var src=this,state=this._readableState;switch(state.pipesCount){case 0:state.pipes=dest;break;case 1:state.pipes=[state.pipes,dest];break;default:state.pipes.push(dest)}state.pipesCount+=1,debug("pipe count=%d opts=%j",state.pipesCount,pipeOpts);var endFn=(!pipeOpts||!1!==pipeOpts.end)&&dest!==process.stdout&&dest!==process.stderr?onend:unpipe;function onunpipe(readable,unpipeInfo){debug("onunpipe"),readable===src&&unpipeInfo&&!1===unpipeInfo.hasUnpiped&&(unpipeInfo.hasUnpiped=!0,debug("cleanup"),dest.removeListener("close",onclose),dest.removeListener("finish",onfinish),dest.removeListener("drain",ondrain),dest.removeListener("error",onerror),dest.removeListener("unpipe",onunpipe),src.removeListener("end",onend),src.removeListener("end",unpipe),src.removeListener("data",ondata),cleanedUp=!0,!state.awaitDrain||dest._writableState&&!dest._writableState.needDrain||ondrain())}function onend(){debug("onend"),dest.end()}state.endEmitted?process.nextTick(endFn):src.once("end",endFn),dest.on("unpipe",onunpipe);var ondrain=function(src){return function(){var state=src._readableState;debug("pipeOnDrain",state.awaitDrain),state.awaitDrain&&state.awaitDrain--,0===state.awaitDrain&&EElistenerCount(src,"data")&&(state.flowing=!0,flow(src))}}(src);dest.on("drain",ondrain);var cleanedUp=!1;function ondata(chunk){debug("ondata");var ret=dest.write(chunk);debug("dest.write",ret),!1===ret&&((1===state.pipesCount&&state.pipes===dest||state.pipesCount>1&&-1!==indexOf(state.pipes,dest))&&!cleanedUp&&(debug("false write response, pause",state.awaitDrain),state.awaitDrain++),src.pause())}function onerror(er){debug("onerror",er),unpipe(),dest.removeListener("error",onerror),0===EElistenerCount(dest,"error")&&errorOrDestroy(dest,er)}function onclose(){dest.removeListener("finish",onfinish),unpipe()}function onfinish(){debug("onfinish"),dest.removeListener("close",onclose),unpipe()}function unpipe(){debug("unpipe"),src.unpipe(dest)}return src.on("data",ondata),function(emitter,event,fn){if("function"==typeof emitter.prependListener)return emitter.prependListener(event,fn);emitter._events&&emitter._events[event]?Array.isArray(emitter._events[event])?emitter._events[event].unshift(fn):emitter._events[event]=[fn,emitter._events[event]]:emitter.on(event,fn)}(dest,"error",onerror),dest.once("close",onclose),dest.once("finish",onfinish),dest.emit("pipe",src),state.flowing||(debug("pipe resume"),src.resume()),dest},Readable.prototype.unpipe=function(dest){var state=this._readableState,unpipeInfo={hasUnpiped:!1};if(0===state.pipesCount)return this;if(1===state.pipesCount)return dest&&dest!==state.pipes||(dest||(dest=state.pipes),state.pipes=null,state.pipesCount=0,state.flowing=!1,dest&&dest.emit("unpipe",this,unpipeInfo)),this;if(!dest){var dests=state.pipes,len=state.pipesCount;state.pipes=null,state.pipesCount=0,state.flowing=!1;for(var i=0;i0,!1!==state.flowing&&this.resume()):"readable"===ev&&(state.endEmitted||state.readableListening||(state.readableListening=state.needReadable=!0,state.flowing=!1,state.emittedReadable=!1,debug("on readable",state.length,state.reading),state.length?emitReadable(this):state.reading||process.nextTick(nReadingNextTick,this))),res},Readable.prototype.addListener=Readable.prototype.on,Readable.prototype.removeListener=function(ev,fn){var res=Stream.prototype.removeListener.call(this,ev,fn);return"readable"===ev&&process.nextTick(updateReadableListening,this),res},Readable.prototype.removeAllListeners=function(ev){var res=Stream.prototype.removeAllListeners.apply(this,arguments);return"readable"!==ev&&void 0!==ev||process.nextTick(updateReadableListening,this),res},Readable.prototype.resume=function(){var state=this._readableState;return state.flowing||(debug("resume"),state.flowing=!state.readableListening,function(stream,state){state.resumeScheduled||(state.resumeScheduled=!0,process.nextTick(resume_,stream,state))}(this,state)),state.paused=!1,this},Readable.prototype.pause=function(){return debug("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(debug("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},Readable.prototype.wrap=function(stream){var _this=this,state=this._readableState,paused=!1;for(var i in stream.on("end",(function(){if(debug("wrapped end"),state.decoder&&!state.ended){var chunk=state.decoder.end();chunk&&chunk.length&&_this.push(chunk)}_this.push(null)})),stream.on("data",(function(chunk){(debug("wrapped data"),state.decoder&&(chunk=state.decoder.write(chunk)),state.objectMode&&null==chunk)||(state.objectMode||chunk&&chunk.length)&&(_this.push(chunk)||(paused=!0,stream.pause()))})),stream)void 0===this[i]&&"function"==typeof stream[i]&&(this[i]=function(method){return function(){return stream[method].apply(stream,arguments)}}(i));for(var n=0;n-1))throw new ERR_UNKNOWN_ENCODING(encoding);return this._writableState.defaultEncoding=encoding,this},Object.defineProperty(Writable.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(Writable.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Writable.prototype._write=function(chunk,encoding,cb){cb(new ERR_METHOD_NOT_IMPLEMENTED("_write()"))},Writable.prototype._writev=null,Writable.prototype.end=function(chunk,encoding,cb){var state=this._writableState;return"function"==typeof chunk?(cb=chunk,chunk=null,encoding=null):"function"==typeof encoding&&(cb=encoding,encoding=null),null!=chunk&&this.write(chunk,encoding),state.corked&&(state.corked=1,this.uncork()),state.ending||function(stream,state,cb){state.ending=!0,finishMaybe(stream,state),cb&&(state.finished?process.nextTick(cb):stream.once("finish",cb));state.ended=!0,stream.writable=!1}(this,state,cb),this},Object.defineProperty(Writable.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(Writable.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(value){this._writableState&&(this._writableState.destroyed=value)}}),Writable.prototype.destroy=destroyImpl.destroy,Writable.prototype._undestroy=destroyImpl.undestroy,Writable.prototype._destroy=function(err,cb){cb(err)}}).call(this)}).call(this,require("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"../errors":48,"./_stream_duplex":49,"./internal/streams/destroy":56,"./internal/streams/state":60,"./internal/streams/stream":61,_process:151,buffer:64,inherits:133,"util-deprecate":188}],54:[function(require,module,exports){(function(process){(function(){"use strict";var _Object$setPrototypeO;function _defineProperty(obj,key,value){return(key=function(arg){var key=function(input,hint){if("object"!=typeof input||null===input)return input;var prim=input[Symbol.toPrimitive];if(void 0!==prim){var res=prim.call(input,hint||"default");if("object"!=typeof res)return res;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===hint?String:Number)(input)}(arg,"string");return"symbol"==typeof key?key:String(key)}(key))in obj?Object.defineProperty(obj,key,{value:value,enumerable:!0,configurable:!0,writable:!0}):obj[key]=value,obj}var finished=require("./end-of-stream"),kLastResolve=Symbol("lastResolve"),kLastReject=Symbol("lastReject"),kError=Symbol("error"),kEnded=Symbol("ended"),kLastPromise=Symbol("lastPromise"),kHandlePromise=Symbol("handlePromise"),kStream=Symbol("stream");function createIterResult(value,done){return{value:value,done:done}}function readAndResolve(iter){var resolve=iter[kLastResolve];if(null!==resolve){var data=iter[kStream].read();null!==data&&(iter[kLastPromise]=null,iter[kLastResolve]=null,iter[kLastReject]=null,resolve(createIterResult(data,!1)))}}function onReadable(iter){process.nextTick(readAndResolve,iter)}var AsyncIteratorPrototype=Object.getPrototypeOf((function(){})),ReadableStreamAsyncIteratorPrototype=Object.setPrototypeOf((_defineProperty(_Object$setPrototypeO={get stream(){return this[kStream]},next:function(){var _this=this,error=this[kError];if(null!==error)return Promise.reject(error);if(this[kEnded])return Promise.resolve(createIterResult(void 0,!0));if(this[kStream].destroyed)return new Promise((function(resolve,reject){process.nextTick((function(){_this[kError]?reject(_this[kError]):resolve(createIterResult(void 0,!0))}))}));var promise,lastPromise=this[kLastPromise];if(lastPromise)promise=new Promise(function(lastPromise,iter){return function(resolve,reject){lastPromise.then((function(){iter[kEnded]?resolve(createIterResult(void 0,!0)):iter[kHandlePromise](resolve,reject)}),reject)}}(lastPromise,this));else{var data=this[kStream].read();if(null!==data)return Promise.resolve(createIterResult(data,!1));promise=new Promise(this[kHandlePromise])}return this[kLastPromise]=promise,promise}},Symbol.asyncIterator,(function(){return this})),_defineProperty(_Object$setPrototypeO,"return",(function(){var _this2=this;return new Promise((function(resolve,reject){_this2[kStream].destroy(null,(function(err){err?reject(err):resolve(createIterResult(void 0,!0))}))}))})),_Object$setPrototypeO),AsyncIteratorPrototype);module.exports=function(stream){var _Object$create,iterator=Object.create(ReadableStreamAsyncIteratorPrototype,(_defineProperty(_Object$create={},kStream,{value:stream,writable:!0}),_defineProperty(_Object$create,kLastResolve,{value:null,writable:!0}),_defineProperty(_Object$create,kLastReject,{value:null,writable:!0}),_defineProperty(_Object$create,kError,{value:null,writable:!0}),_defineProperty(_Object$create,kEnded,{value:stream._readableState.endEmitted,writable:!0}),_defineProperty(_Object$create,kHandlePromise,{value:function(resolve,reject){var data=iterator[kStream].read();data?(iterator[kLastPromise]=null,iterator[kLastResolve]=null,iterator[kLastReject]=null,resolve(createIterResult(data,!1))):(iterator[kLastResolve]=resolve,iterator[kLastReject]=reject)},writable:!0}),_Object$create));return iterator[kLastPromise]=null,finished(stream,(function(err){if(err&&"ERR_STREAM_PREMATURE_CLOSE"!==err.code){var reject=iterator[kLastReject];return null!==reject&&(iterator[kLastPromise]=null,iterator[kLastResolve]=null,iterator[kLastReject]=null,reject(err)),void(iterator[kError]=err)}var resolve=iterator[kLastResolve];null!==resolve&&(iterator[kLastPromise]=null,iterator[kLastResolve]=null,iterator[kLastReject]=null,resolve(createIterResult(void 0,!0))),iterator[kEnded]=!0})),stream.on("readable",onReadable.bind(null,iterator)),iterator}}).call(this)}).call(this,require("_process"))},{"./end-of-stream":57,_process:151}],55:[function(require,module,exports){"use strict";function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter((function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable}))),keys.push.apply(keys,symbols)}return keys}function _objectSpread(target){for(var i=1;i0?this.tail.next=entry:this.head=entry,this.tail=entry,++this.length}},{key:"unshift",value:function(v){var entry={data:v,next:this.head};0===this.length&&(this.tail=entry),this.head=entry,++this.length}},{key:"shift",value:function(){if(0!==this.length){var ret=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,ret}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(s){if(0===this.length)return"";for(var p=this.head,ret=""+p.data;p=p.next;)ret+=s+p.data;return ret}},{key:"concat",value:function(n){if(0===this.length)return Buffer.alloc(0);for(var src,target,offset,ret=Buffer.allocUnsafe(n>>>0),p=this.head,i=0;p;)src=p.data,target=ret,offset=i,Buffer.prototype.copy.call(src,target,offset),i+=p.data.length,p=p.next;return ret}},{key:"consume",value:function(n,hasStrings){var ret;return nstr.length?str.length:n;if(nb===str.length?ret+=str:ret+=str.slice(0,n),0==(n-=nb)){nb===str.length?(++c,p.next?this.head=p.next:this.head=this.tail=null):(this.head=p,p.data=str.slice(nb));break}++c}return this.length-=c,ret}},{key:"_getBuffer",value:function(n){var ret=Buffer.allocUnsafe(n),p=this.head,c=1;for(p.data.copy(ret),n-=p.data.length;p=p.next;){var buf=p.data,nb=n>buf.length?buf.length:n;if(buf.copy(ret,ret.length-n,0,nb),0==(n-=nb)){nb===buf.length?(++c,p.next?this.head=p.next:this.head=this.tail=null):(this.head=p,p.data=buf.slice(nb));break}++c}return this.length-=c,ret}},{key:custom,value:function(_,options){return inspect(this,_objectSpread(_objectSpread({},options),{},{depth:0,customInspect:!1}))}}])&&_defineProperties(Constructor.prototype,protoProps),staticProps&&_defineProperties(Constructor,staticProps),Object.defineProperty(Constructor,"prototype",{writable:!1}),BufferList}()},{buffer:64,util:20}],56:[function(require,module,exports){(function(process){(function(){"use strict";function emitErrorAndCloseNT(self,err){emitErrorNT(self,err),emitCloseNT(self)}function emitCloseNT(self){self._writableState&&!self._writableState.emitClose||self._readableState&&!self._readableState.emitClose||self.emit("close")}function emitErrorNT(self,err){self.emit("error",err)}module.exports={destroy:function(err,cb){var _this=this,readableDestroyed=this._readableState&&this._readableState.destroyed,writableDestroyed=this._writableState&&this._writableState.destroyed;return readableDestroyed||writableDestroyed?(cb?cb(err):err&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(emitErrorNT,this,err)):process.nextTick(emitErrorNT,this,err)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(err||null,(function(err){!cb&&err?_this._writableState?_this._writableState.errorEmitted?process.nextTick(emitCloseNT,_this):(_this._writableState.errorEmitted=!0,process.nextTick(emitErrorAndCloseNT,_this,err)):process.nextTick(emitErrorAndCloseNT,_this,err):cb?(process.nextTick(emitCloseNT,_this),cb(err)):process.nextTick(emitCloseNT,_this)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(stream,err){var rState=stream._readableState,wState=stream._writableState;rState&&rState.autoDestroy||wState&&wState.autoDestroy?stream.destroy(err):stream.emit("error",err)}}}).call(this)}).call(this,require("_process"))},{_process:151}],57:[function(require,module,exports){"use strict";var ERR_STREAM_PREMATURE_CLOSE=require("../../../errors").codes.ERR_STREAM_PREMATURE_CLOSE;function noop(){}module.exports=function eos(stream,opts,callback){if("function"==typeof opts)return eos(stream,null,opts);opts||(opts={}),callback=function(callback){var called=!1;return function(){if(!called){called=!0;for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++)args[_key]=arguments[_key];callback.apply(this,args)}}}(callback||noop);var readable=opts.readable||!1!==opts.readable&&stream.readable,writable=opts.writable||!1!==opts.writable&&stream.writable,onlegacyfinish=function(){stream.writable||onfinish()},writableEnded=stream._writableState&&stream._writableState.finished,onfinish=function(){writable=!1,writableEnded=!0,readable||callback.call(stream)},readableEnded=stream._readableState&&stream._readableState.endEmitted,onend=function(){readable=!1,readableEnded=!0,writable||callback.call(stream)},onerror=function(err){callback.call(stream,err)},onclose=function(){var err;return readable&&!readableEnded?(stream._readableState&&stream._readableState.ended||(err=new ERR_STREAM_PREMATURE_CLOSE),callback.call(stream,err)):writable&&!writableEnded?(stream._writableState&&stream._writableState.ended||(err=new ERR_STREAM_PREMATURE_CLOSE),callback.call(stream,err)):void 0},onrequest=function(){stream.req.on("finish",onfinish)};return!function(stream){return stream.setHeader&&"function"==typeof stream.abort}(stream)?writable&&!stream._writableState&&(stream.on("end",onlegacyfinish),stream.on("close",onlegacyfinish)):(stream.on("complete",onfinish),stream.on("abort",onclose),stream.req?onrequest():stream.on("request",onrequest)),stream.on("end",onend),stream.on("finish",onfinish),!1!==opts.error&&stream.on("error",onerror),stream.on("close",onclose),function(){stream.removeListener("complete",onfinish),stream.removeListener("abort",onclose),stream.removeListener("request",onrequest),stream.req&&stream.req.removeListener("finish",onfinish),stream.removeListener("end",onlegacyfinish),stream.removeListener("close",onlegacyfinish),stream.removeListener("finish",onfinish),stream.removeListener("end",onend),stream.removeListener("error",onerror),stream.removeListener("close",onclose)}}},{"../../../errors":48}],58:[function(require,module,exports){module.exports=function(){throw new Error("Readable.from is not available in the browser")}},{}],59:[function(require,module,exports){"use strict";var eos;var _require$codes=require("../../../errors").codes,ERR_MISSING_ARGS=_require$codes.ERR_MISSING_ARGS,ERR_STREAM_DESTROYED=_require$codes.ERR_STREAM_DESTROYED;function noop(err){if(err)throw err}function call(fn){fn()}function pipe(from,to){return from.pipe(to)}module.exports=function(){for(var _len=arguments.length,streams=new Array(_len),_key=0;_key<_len;_key++)streams[_key]=arguments[_key];var error,callback=function(streams){return streams.length?"function"!=typeof streams[streams.length-1]?noop:streams.pop():noop}(streams);if(Array.isArray(streams[0])&&(streams=streams[0]),streams.length<2)throw new ERR_MISSING_ARGS("streams");var destroys=streams.map((function(stream,i){var reading=i0,(function(err){error||(error=err),err&&destroys.forEach(call),reading||(destroys.forEach(call),callback(error))}))}));return streams.reduce(pipe)}},{"../../../errors":48,"./end-of-stream":57}],60:[function(require,module,exports){"use strict";var ERR_INVALID_OPT_VALUE=require("../../../errors").codes.ERR_INVALID_OPT_VALUE;module.exports={getHighWaterMark:function(state,options,duplexKey,isDuplex){var hwm=function(options,isDuplex,duplexKey){return null!=options.highWaterMark?options.highWaterMark:isDuplex?options[duplexKey]:null}(options,isDuplex,duplexKey);if(null!=hwm){if(!isFinite(hwm)||Math.floor(hwm)!==hwm||hwm<0)throw new ERR_INVALID_OPT_VALUE(isDuplex?duplexKey:"highWaterMark",hwm);return Math.floor(hwm)}return state.objectMode?16:16384}}},{"../../../errors":48}],61:[function(require,module,exports){module.exports=require("events").EventEmitter},{events:101}],62:[function(require,module,exports){(exports=module.exports=require("./lib/_stream_readable.js")).Stream=exports,exports.Readable=exports,exports.Writable=require("./lib/_stream_writable.js"),exports.Duplex=require("./lib/_stream_duplex.js"),exports.Transform=require("./lib/_stream_transform.js"),exports.PassThrough=require("./lib/_stream_passthrough.js"),exports.finished=require("./lib/internal/streams/end-of-stream.js"),exports.pipeline=require("./lib/internal/streams/pipeline.js")},{"./lib/_stream_duplex.js":49,"./lib/_stream_passthrough.js":50,"./lib/_stream_readable.js":51,"./lib/_stream_transform.js":52,"./lib/_stream_writable.js":53,"./lib/internal/streams/end-of-stream.js":57,"./lib/internal/streams/pipeline.js":59}],63:[function(require,module,exports){(function(Buffer){(function(){module.exports=function(a,b){for(var length=Math.min(a.length,b.length),buffer=new Buffer(length),i=0;i - * @license MIT - */ -"use strict";var base64=require("base64-js"),ieee754=require("ieee754");exports.Buffer=Buffer,exports.SlowBuffer=function(length){+length!=length&&(length=0);return Buffer.alloc(+length)},exports.INSPECT_MAX_BYTES=50;var K_MAX_LENGTH=2147483647;function createBuffer(length){if(length>K_MAX_LENGTH)throw new RangeError('The value "'+length+'" is invalid for option "size"');var buf=new Uint8Array(length);return buf.__proto__=Buffer.prototype,buf}function Buffer(arg,encodingOrOffset,length){if("number"==typeof arg){if("string"==typeof encodingOrOffset)throw new TypeError('The "string" argument must be of type string. Received type number');return allocUnsafe(arg)}return from(arg,encodingOrOffset,length)}function from(value,encodingOrOffset,length){if("string"==typeof value)return function(string,encoding){"string"==typeof encoding&&""!==encoding||(encoding="utf8");if(!Buffer.isEncoding(encoding))throw new TypeError("Unknown encoding: "+encoding);var length=0|byteLength(string,encoding),buf=createBuffer(length),actual=buf.write(string,encoding);actual!==length&&(buf=buf.slice(0,actual));return buf}(value,encodingOrOffset);if(ArrayBuffer.isView(value))return fromArrayLike(value);if(null==value)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof value);if(isInstance(value,ArrayBuffer)||value&&isInstance(value.buffer,ArrayBuffer))return function(array,byteOffset,length){if(byteOffset<0||array.byteLength=K_MAX_LENGTH)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+K_MAX_LENGTH.toString(16)+" bytes");return 0|length}function byteLength(string,encoding){if(Buffer.isBuffer(string))return string.length;if(ArrayBuffer.isView(string)||isInstance(string,ArrayBuffer))return string.byteLength;if("string"!=typeof string)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof string);var len=string.length,mustMatch=arguments.length>2&&!0===arguments[2];if(!mustMatch&&0===len)return 0;for(var loweredCase=!1;;)switch(encoding){case"ascii":case"latin1":case"binary":return len;case"utf8":case"utf-8":return utf8ToBytes(string).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*len;case"hex":return len>>>1;case"base64":return base64ToBytes(string).length;default:if(loweredCase)return mustMatch?-1:utf8ToBytes(string).length;encoding=(""+encoding).toLowerCase(),loweredCase=!0}}function slowToString(encoding,start,end){var loweredCase=!1;if((void 0===start||start<0)&&(start=0),start>this.length)return"";if((void 0===end||end>this.length)&&(end=this.length),end<=0)return"";if((end>>>=0)<=(start>>>=0))return"";for(encoding||(encoding="utf8");;)switch(encoding){case"hex":return hexSlice(this,start,end);case"utf8":case"utf-8":return utf8Slice(this,start,end);case"ascii":return asciiSlice(this,start,end);case"latin1":case"binary":return latin1Slice(this,start,end);case"base64":return base64Slice(this,start,end);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return utf16leSlice(this,start,end);default:if(loweredCase)throw new TypeError("Unknown encoding: "+encoding);encoding=(encoding+"").toLowerCase(),loweredCase=!0}}function swap(b,n,m){var i=b[n];b[n]=b[m],b[m]=i}function bidirectionalIndexOf(buffer,val,byteOffset,encoding,dir){if(0===buffer.length)return-1;if("string"==typeof byteOffset?(encoding=byteOffset,byteOffset=0):byteOffset>2147483647?byteOffset=2147483647:byteOffset<-2147483648&&(byteOffset=-2147483648),numberIsNaN(byteOffset=+byteOffset)&&(byteOffset=dir?0:buffer.length-1),byteOffset<0&&(byteOffset=buffer.length+byteOffset),byteOffset>=buffer.length){if(dir)return-1;byteOffset=buffer.length-1}else if(byteOffset<0){if(!dir)return-1;byteOffset=0}if("string"==typeof val&&(val=Buffer.from(val,encoding)),Buffer.isBuffer(val))return 0===val.length?-1:arrayIndexOf(buffer,val,byteOffset,encoding,dir);if("number"==typeof val)return val&=255,"function"==typeof Uint8Array.prototype.indexOf?dir?Uint8Array.prototype.indexOf.call(buffer,val,byteOffset):Uint8Array.prototype.lastIndexOf.call(buffer,val,byteOffset):arrayIndexOf(buffer,[val],byteOffset,encoding,dir);throw new TypeError("val must be string, number or Buffer")}function arrayIndexOf(arr,val,byteOffset,encoding,dir){var i,indexSize=1,arrLength=arr.length,valLength=val.length;if(void 0!==encoding&&("ucs2"===(encoding=String(encoding).toLowerCase())||"ucs-2"===encoding||"utf16le"===encoding||"utf-16le"===encoding)){if(arr.length<2||val.length<2)return-1;indexSize=2,arrLength/=2,valLength/=2,byteOffset/=2}function read(buf,i){return 1===indexSize?buf[i]:buf.readUInt16BE(i*indexSize)}if(dir){var foundIndex=-1;for(i=byteOffset;iarrLength&&(byteOffset=arrLength-valLength),i=byteOffset;i>=0;i--){for(var found=!0,j=0;jremaining&&(length=remaining):length=remaining;var strLen=string.length;length>strLen/2&&(length=strLen/2);for(var i=0;i>8,lo=c%256,byteArray.push(lo),byteArray.push(hi);return byteArray}(string,buf.length-offset),buf,offset,length)}function base64Slice(buf,start,end){return 0===start&&end===buf.length?base64.fromByteArray(buf):base64.fromByteArray(buf.slice(start,end))}function utf8Slice(buf,start,end){end=Math.min(buf.length,end);for(var res=[],i=start;i239?4:firstByte>223?3:firstByte>191?2:1;if(i+bytesPerSequence<=end)switch(bytesPerSequence){case 1:firstByte<128&&(codePoint=firstByte);break;case 2:128==(192&(secondByte=buf[i+1]))&&(tempCodePoint=(31&firstByte)<<6|63&secondByte)>127&&(codePoint=tempCodePoint);break;case 3:secondByte=buf[i+1],thirdByte=buf[i+2],128==(192&secondByte)&&128==(192&thirdByte)&&(tempCodePoint=(15&firstByte)<<12|(63&secondByte)<<6|63&thirdByte)>2047&&(tempCodePoint<55296||tempCodePoint>57343)&&(codePoint=tempCodePoint);break;case 4:secondByte=buf[i+1],thirdByte=buf[i+2],fourthByte=buf[i+3],128==(192&secondByte)&&128==(192&thirdByte)&&128==(192&fourthByte)&&(tempCodePoint=(15&firstByte)<<18|(63&secondByte)<<12|(63&thirdByte)<<6|63&fourthByte)>65535&&tempCodePoint<1114112&&(codePoint=tempCodePoint)}null===codePoint?(codePoint=65533,bytesPerSequence=1):codePoint>65535&&(codePoint-=65536,res.push(codePoint>>>10&1023|55296),codePoint=56320|1023&codePoint),res.push(codePoint),i+=bytesPerSequence}return function(codePoints){var len=codePoints.length;if(len<=MAX_ARGUMENTS_LENGTH)return String.fromCharCode.apply(String,codePoints);var res="",i=0;for(;imax&&(str+=" ... "),""},Buffer.prototype.compare=function(target,start,end,thisStart,thisEnd){if(isInstance(target,Uint8Array)&&(target=Buffer.from(target,target.offset,target.byteLength)),!Buffer.isBuffer(target))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof target);if(void 0===start&&(start=0),void 0===end&&(end=target?target.length:0),void 0===thisStart&&(thisStart=0),void 0===thisEnd&&(thisEnd=this.length),start<0||end>target.length||thisStart<0||thisEnd>this.length)throw new RangeError("out of range index");if(thisStart>=thisEnd&&start>=end)return 0;if(thisStart>=thisEnd)return-1;if(start>=end)return 1;if(this===target)return 0;for(var x=(thisEnd>>>=0)-(thisStart>>>=0),y=(end>>>=0)-(start>>>=0),len=Math.min(x,y),thisCopy=this.slice(thisStart,thisEnd),targetCopy=target.slice(start,end),i=0;i>>=0,isFinite(length)?(length>>>=0,void 0===encoding&&(encoding="utf8")):(encoding=length,length=void 0)}var remaining=this.length-offset;if((void 0===length||length>remaining)&&(length=remaining),string.length>0&&(length<0||offset<0)||offset>this.length)throw new RangeError("Attempt to write outside buffer bounds");encoding||(encoding="utf8");for(var loweredCase=!1;;)switch(encoding){case"hex":return hexWrite(this,string,offset,length);case"utf8":case"utf-8":return utf8Write(this,string,offset,length);case"ascii":return asciiWrite(this,string,offset,length);case"latin1":case"binary":return latin1Write(this,string,offset,length);case"base64":return base64Write(this,string,offset,length);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ucs2Write(this,string,offset,length);default:if(loweredCase)throw new TypeError("Unknown encoding: "+encoding);encoding=(""+encoding).toLowerCase(),loweredCase=!0}},Buffer.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var MAX_ARGUMENTS_LENGTH=4096;function asciiSlice(buf,start,end){var ret="";end=Math.min(buf.length,end);for(var i=start;ilen)&&(end=len);for(var out="",i=start;ilength)throw new RangeError("Trying to access beyond buffer length")}function checkInt(buf,value,offset,ext,max,min){if(!Buffer.isBuffer(buf))throw new TypeError('"buffer" argument must be a Buffer instance');if(value>max||valuebuf.length)throw new RangeError("Index out of range")}function checkIEEE754(buf,value,offset,ext,max,min){if(offset+ext>buf.length)throw new RangeError("Index out of range");if(offset<0)throw new RangeError("Index out of range")}function writeFloat(buf,value,offset,littleEndian,noAssert){return value=+value,offset>>>=0,noAssert||checkIEEE754(buf,0,offset,4),ieee754.write(buf,value,offset,littleEndian,23,4),offset+4}function writeDouble(buf,value,offset,littleEndian,noAssert){return value=+value,offset>>>=0,noAssert||checkIEEE754(buf,0,offset,8),ieee754.write(buf,value,offset,littleEndian,52,8),offset+8}Buffer.prototype.slice=function(start,end){var len=this.length;(start=~~start)<0?(start+=len)<0&&(start=0):start>len&&(start=len),(end=void 0===end?len:~~end)<0?(end+=len)<0&&(end=0):end>len&&(end=len),end>>=0,byteLength>>>=0,noAssert||checkOffset(offset,byteLength,this.length);for(var val=this[offset],mul=1,i=0;++i>>=0,byteLength>>>=0,noAssert||checkOffset(offset,byteLength,this.length);for(var val=this[offset+--byteLength],mul=1;byteLength>0&&(mul*=256);)val+=this[offset+--byteLength]*mul;return val},Buffer.prototype.readUInt8=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,1,this.length),this[offset]},Buffer.prototype.readUInt16LE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,2,this.length),this[offset]|this[offset+1]<<8},Buffer.prototype.readUInt16BE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,2,this.length),this[offset]<<8|this[offset+1]},Buffer.prototype.readUInt32LE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),(this[offset]|this[offset+1]<<8|this[offset+2]<<16)+16777216*this[offset+3]},Buffer.prototype.readUInt32BE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),16777216*this[offset]+(this[offset+1]<<16|this[offset+2]<<8|this[offset+3])},Buffer.prototype.readIntLE=function(offset,byteLength,noAssert){offset>>>=0,byteLength>>>=0,noAssert||checkOffset(offset,byteLength,this.length);for(var val=this[offset],mul=1,i=0;++i=(mul*=128)&&(val-=Math.pow(2,8*byteLength)),val},Buffer.prototype.readIntBE=function(offset,byteLength,noAssert){offset>>>=0,byteLength>>>=0,noAssert||checkOffset(offset,byteLength,this.length);for(var i=byteLength,mul=1,val=this[offset+--i];i>0&&(mul*=256);)val+=this[offset+--i]*mul;return val>=(mul*=128)&&(val-=Math.pow(2,8*byteLength)),val},Buffer.prototype.readInt8=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,1,this.length),128&this[offset]?-1*(255-this[offset]+1):this[offset]},Buffer.prototype.readInt16LE=function(offset,noAssert){offset>>>=0,noAssert||checkOffset(offset,2,this.length);var val=this[offset]|this[offset+1]<<8;return 32768&val?4294901760|val:val},Buffer.prototype.readInt16BE=function(offset,noAssert){offset>>>=0,noAssert||checkOffset(offset,2,this.length);var val=this[offset+1]|this[offset]<<8;return 32768&val?4294901760|val:val},Buffer.prototype.readInt32LE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),this[offset]|this[offset+1]<<8|this[offset+2]<<16|this[offset+3]<<24},Buffer.prototype.readInt32BE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),this[offset]<<24|this[offset+1]<<16|this[offset+2]<<8|this[offset+3]},Buffer.prototype.readFloatLE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),ieee754.read(this,offset,!0,23,4)},Buffer.prototype.readFloatBE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,4,this.length),ieee754.read(this,offset,!1,23,4)},Buffer.prototype.readDoubleLE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,8,this.length),ieee754.read(this,offset,!0,52,8)},Buffer.prototype.readDoubleBE=function(offset,noAssert){return offset>>>=0,noAssert||checkOffset(offset,8,this.length),ieee754.read(this,offset,!1,52,8)},Buffer.prototype.writeUIntLE=function(value,offset,byteLength,noAssert){(value=+value,offset>>>=0,byteLength>>>=0,noAssert)||checkInt(this,value,offset,byteLength,Math.pow(2,8*byteLength)-1,0);var mul=1,i=0;for(this[offset]=255&value;++i>>=0,byteLength>>>=0,noAssert)||checkInt(this,value,offset,byteLength,Math.pow(2,8*byteLength)-1,0);var i=byteLength-1,mul=1;for(this[offset+i]=255&value;--i>=0&&(mul*=256);)this[offset+i]=value/mul&255;return offset+byteLength},Buffer.prototype.writeUInt8=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,1,255,0),this[offset]=255&value,offset+1},Buffer.prototype.writeUInt16LE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,2,65535,0),this[offset]=255&value,this[offset+1]=value>>>8,offset+2},Buffer.prototype.writeUInt16BE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,2,65535,0),this[offset]=value>>>8,this[offset+1]=255&value,offset+2},Buffer.prototype.writeUInt32LE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,4,4294967295,0),this[offset+3]=value>>>24,this[offset+2]=value>>>16,this[offset+1]=value>>>8,this[offset]=255&value,offset+4},Buffer.prototype.writeUInt32BE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,4,4294967295,0),this[offset]=value>>>24,this[offset+1]=value>>>16,this[offset+2]=value>>>8,this[offset+3]=255&value,offset+4},Buffer.prototype.writeIntLE=function(value,offset,byteLength,noAssert){if(value=+value,offset>>>=0,!noAssert){var limit=Math.pow(2,8*byteLength-1);checkInt(this,value,offset,byteLength,limit-1,-limit)}var i=0,mul=1,sub=0;for(this[offset]=255&value;++i>0)-sub&255;return offset+byteLength},Buffer.prototype.writeIntBE=function(value,offset,byteLength,noAssert){if(value=+value,offset>>>=0,!noAssert){var limit=Math.pow(2,8*byteLength-1);checkInt(this,value,offset,byteLength,limit-1,-limit)}var i=byteLength-1,mul=1,sub=0;for(this[offset+i]=255&value;--i>=0&&(mul*=256);)value<0&&0===sub&&0!==this[offset+i+1]&&(sub=1),this[offset+i]=(value/mul>>0)-sub&255;return offset+byteLength},Buffer.prototype.writeInt8=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,1,127,-128),value<0&&(value=255+value+1),this[offset]=255&value,offset+1},Buffer.prototype.writeInt16LE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,2,32767,-32768),this[offset]=255&value,this[offset+1]=value>>>8,offset+2},Buffer.prototype.writeInt16BE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,2,32767,-32768),this[offset]=value>>>8,this[offset+1]=255&value,offset+2},Buffer.prototype.writeInt32LE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,4,2147483647,-2147483648),this[offset]=255&value,this[offset+1]=value>>>8,this[offset+2]=value>>>16,this[offset+3]=value>>>24,offset+4},Buffer.prototype.writeInt32BE=function(value,offset,noAssert){return value=+value,offset>>>=0,noAssert||checkInt(this,value,offset,4,2147483647,-2147483648),value<0&&(value=4294967295+value+1),this[offset]=value>>>24,this[offset+1]=value>>>16,this[offset+2]=value>>>8,this[offset+3]=255&value,offset+4},Buffer.prototype.writeFloatLE=function(value,offset,noAssert){return writeFloat(this,value,offset,!0,noAssert)},Buffer.prototype.writeFloatBE=function(value,offset,noAssert){return writeFloat(this,value,offset,!1,noAssert)},Buffer.prototype.writeDoubleLE=function(value,offset,noAssert){return writeDouble(this,value,offset,!0,noAssert)},Buffer.prototype.writeDoubleBE=function(value,offset,noAssert){return writeDouble(this,value,offset,!1,noAssert)},Buffer.prototype.copy=function(target,targetStart,start,end){if(!Buffer.isBuffer(target))throw new TypeError("argument should be a Buffer");if(start||(start=0),end||0===end||(end=this.length),targetStart>=target.length&&(targetStart=target.length),targetStart||(targetStart=0),end>0&&end=this.length)throw new RangeError("Index out of range");if(end<0)throw new RangeError("sourceEnd out of bounds");end>this.length&&(end=this.length),target.length-targetStart=0;--i)target[i+targetStart]=this[i+start];else Uint8Array.prototype.set.call(target,this.subarray(start,end),targetStart);return len},Buffer.prototype.fill=function(val,start,end,encoding){if("string"==typeof val){if("string"==typeof start?(encoding=start,start=0,end=this.length):"string"==typeof end&&(encoding=end,end=this.length),void 0!==encoding&&"string"!=typeof encoding)throw new TypeError("encoding must be a string");if("string"==typeof encoding&&!Buffer.isEncoding(encoding))throw new TypeError("Unknown encoding: "+encoding);if(1===val.length){var code=val.charCodeAt(0);("utf8"===encoding&&code<128||"latin1"===encoding)&&(val=code)}}else"number"==typeof val&&(val&=255);if(start<0||this.length>>=0,end=void 0===end?this.length:end>>>0,val||(val=0),"number"==typeof val)for(i=start;i55295&&codePoint<57344){if(!leadSurrogate){if(codePoint>56319){(units-=3)>-1&&bytes.push(239,191,189);continue}if(i+1===length){(units-=3)>-1&&bytes.push(239,191,189);continue}leadSurrogate=codePoint;continue}if(codePoint<56320){(units-=3)>-1&&bytes.push(239,191,189),leadSurrogate=codePoint;continue}codePoint=65536+(leadSurrogate-55296<<10|codePoint-56320)}else leadSurrogate&&(units-=3)>-1&&bytes.push(239,191,189);if(leadSurrogate=null,codePoint<128){if((units-=1)<0)break;bytes.push(codePoint)}else if(codePoint<2048){if((units-=2)<0)break;bytes.push(codePoint>>6|192,63&codePoint|128)}else if(codePoint<65536){if((units-=3)<0)break;bytes.push(codePoint>>12|224,codePoint>>6&63|128,63&codePoint|128)}else{if(!(codePoint<1114112))throw new Error("Invalid code point");if((units-=4)<0)break;bytes.push(codePoint>>18|240,codePoint>>12&63|128,codePoint>>6&63|128,63&codePoint|128)}}return bytes}function base64ToBytes(str){return base64.toByteArray(function(str){if((str=(str=str.split("=")[0]).trim().replace(INVALID_BASE64_RE,"")).length<2)return"";for(;str.length%4!=0;)str+="=";return str}(str))}function blitBuffer(src,dst,offset,length){for(var i=0;i=dst.length||i>=src.length);++i)dst[i+offset]=src[i];return i}function isInstance(obj,type){return obj instanceof type||null!=obj&&null!=obj.constructor&&null!=obj.constructor.name&&obj.constructor.name===type.name}function numberIsNaN(obj){return obj!=obj}}).call(this)}).call(this,require("buffer").Buffer)},{"base64-js":17,buffer:64,ieee754:132}],65:[function(require,module,exports){var Buffer=require("safe-buffer").Buffer,Transform=require("stream").Transform,StringDecoder=require("string_decoder").StringDecoder;function CipherBase(hashMode){Transform.call(this),this.hashMode="string"==typeof hashMode,this.hashMode?this[hashMode]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}require("inherits")(CipherBase,Transform),CipherBase.prototype.update=function(data,inputEnc,outputEnc){"string"==typeof data&&(data=Buffer.from(data,inputEnc));var outData=this._update(data);return this.hashMode?this:(outputEnc&&(outData=this._toString(outData,outputEnc)),outData)},CipherBase.prototype.setAutoPadding=function(){},CipherBase.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},CipherBase.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},CipherBase.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},CipherBase.prototype._transform=function(data,_,next){var err;try{this.hashMode?this._update(data):this.push(this._update(data))}catch(e){err=e}finally{next(err)}},CipherBase.prototype._flush=function(done){var err;try{this.push(this.__final())}catch(e){err=e}done(err)},CipherBase.prototype._finalOrDigest=function(outputEnc){var outData=this.__final()||Buffer.alloc(0);return outputEnc&&(outData=this._toString(outData,outputEnc,!0)),outData},CipherBase.prototype._toString=function(value,enc,fin){if(this._decoder||(this._decoder=new StringDecoder(enc),this._encoding=enc),this._encoding!==enc)throw new Error("can't switch encodings");var out=this._decoder.write(value);return fin&&(out+=this._decoder.end()),out},module.exports=CipherBase},{inherits:133,"safe-buffer":162,stream:172,string_decoder:187}],66:[function(require,module,exports){(function(Buffer){(function(){var elliptic=require("elliptic"),BN=require("bn.js");module.exports=function(curve){return new ECDH(curve)};var aliases={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function ECDH(curve){this.curveType=aliases[curve],this.curveType||(this.curveType={name:curve}),this.curve=new elliptic.ec(this.curveType.name),this.keys=void 0}function formatReturnValue(bn,enc,len){Array.isArray(bn)||(bn=bn.toArray());var buf=new Buffer(bn);if(len&&buf.lengthblocksize)?key=("rmd160"===alg?new RIPEMD160:sha(alg)).update(key).digest():key.length64?key=alg(key):key.length<64&&(key=Buffer.concat([key,ZEROS],64));for(var ipad=this._ipad=Buffer.allocUnsafe(64),opad=this._opad=Buffer.allocUnsafe(64),i=0;i<64;i++)ipad[i]=54^key[i],opad[i]=92^key[i];this._hash=[ipad]}inherits(Hmac,Base),Hmac.prototype._update=function(data){this._hash.push(data)},Hmac.prototype._final=function(){var h=this._alg(Buffer.concat(this._hash));return this._alg(Buffer.concat([this._opad,h]))},module.exports=Hmac},{"cipher-base":65,inherits:133,"safe-buffer":162}],72:[function(require,module,exports){"use strict";exports.randomBytes=exports.rng=exports.pseudoRandomBytes=exports.prng=require("randombytes"),exports.createHash=exports.Hash=require("create-hash"),exports.createHmac=exports.Hmac=require("create-hmac");var algos=require("browserify-sign/algos"),algoKeys=Object.keys(algos),hashes=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(algoKeys);exports.getHashes=function(){return hashes};var p=require("pbkdf2");exports.pbkdf2=p.pbkdf2,exports.pbkdf2Sync=p.pbkdf2Sync;var aes=require("browserify-cipher");exports.Cipher=aes.Cipher,exports.createCipher=aes.createCipher,exports.Cipheriv=aes.Cipheriv,exports.createCipheriv=aes.createCipheriv,exports.Decipher=aes.Decipher,exports.createDecipher=aes.createDecipher,exports.Decipheriv=aes.Decipheriv,exports.createDecipheriv=aes.createDecipheriv,exports.getCiphers=aes.getCiphers,exports.listCiphers=aes.listCiphers;var dh=require("diffie-hellman");exports.DiffieHellmanGroup=dh.DiffieHellmanGroup,exports.createDiffieHellmanGroup=dh.createDiffieHellmanGroup,exports.getDiffieHellman=dh.getDiffieHellman,exports.createDiffieHellman=dh.createDiffieHellman,exports.DiffieHellman=dh.DiffieHellman;var sign=require("browserify-sign");exports.createSign=sign.createSign,exports.Sign=sign.Sign,exports.createVerify=sign.createVerify,exports.Verify=sign.Verify,exports.createECDH=require("create-ecdh");var publicEncrypt=require("public-encrypt");exports.publicEncrypt=publicEncrypt.publicEncrypt,exports.privateEncrypt=publicEncrypt.privateEncrypt,exports.publicDecrypt=publicEncrypt.publicDecrypt,exports.privateDecrypt=publicEncrypt.privateDecrypt;var rf=require("randomfill");exports.randomFill=rf.randomFill,exports.randomFillSync=rf.randomFillSync,exports.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},exports.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},{"browserify-cipher":38,"browserify-sign":45,"browserify-sign/algos":42,"create-ecdh":66,"create-hash":68,"create-hmac":70,"diffie-hellman":79,pbkdf2:145,"public-encrypt":152,randombytes:159,randomfill:160}],73:[function(require,module,exports){"use strict";exports.utils=require("./des/utils"),exports.Cipher=require("./des/cipher"),exports.DES=require("./des/des"),exports.CBC=require("./des/cbc"),exports.EDE=require("./des/ede")},{"./des/cbc":74,"./des/cipher":75,"./des/des":76,"./des/ede":77,"./des/utils":78}],74:[function(require,module,exports){"use strict";var assert=require("minimalistic-assert"),inherits=require("inherits"),proto={};function CBCState(iv){assert.equal(iv.length,8,"Invalid IV length"),this.iv=new Array(8);for(var i=0;i0;count--)inputOff+=this._buffer(data,inputOff),outputOff+=this._flushBuffer(out,outputOff);return inputOff+=this._buffer(data,inputOff),out},Cipher.prototype.final=function(buffer){var first,last;return buffer&&(first=this.update(buffer)),last="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),first?first.concat(last):last},Cipher.prototype._pad=function(buffer,off){if(0===off)return!1;for(;off>>1];kL=utils.r28shl(kL,shift),kR=utils.r28shl(kR,shift),utils.pc2(kL,kR,state.keys,i)}},DES.prototype._update=function(inp,inOff,out,outOff){var state=this._desState,l=utils.readUInt32BE(inp,inOff),r=utils.readUInt32BE(inp,inOff+4);utils.ip(l,r,state.tmp,0),l=state.tmp[0],r=state.tmp[1],"encrypt"===this.type?this._encrypt(state,l,r,state.tmp,0):this._decrypt(state,l,r,state.tmp,0),l=state.tmp[0],r=state.tmp[1],utils.writeUInt32BE(out,l,outOff),utils.writeUInt32BE(out,r,outOff+4)},DES.prototype._pad=function(buffer,off){if(!1===this.padding)return!1;for(var value=buffer.length-off,i=off;i>>0,l=t}utils.rip(r,l,out,off)},DES.prototype._decrypt=function(state,lStart,rStart,out,off){for(var l=rStart,r=lStart,i=state.keys.length-2;i>=0;i-=2){var keyL=state.keys[i],keyR=state.keys[i+1];utils.expand(l,state.tmp,0),keyL^=state.tmp[0],keyR^=state.tmp[1];var s=utils.substitute(keyL,keyR),t=l;l=(r^utils.permute(s))>>>0,r=t}utils.rip(l,r,out,off)}},{"./cipher":75,"./utils":78,inherits:133,"minimalistic-assert":137}],77:[function(require,module,exports){"use strict";var assert=require("minimalistic-assert"),inherits=require("inherits"),Cipher=require("./cipher"),DES=require("./des");function EDEState(type,key){assert.equal(key.length,24,"Invalid key length");var k1=key.slice(0,8),k2=key.slice(8,16),k3=key.slice(16,24);this.ciphers="encrypt"===type?[DES.create({type:"encrypt",key:k1}),DES.create({type:"decrypt",key:k2}),DES.create({type:"encrypt",key:k3})]:[DES.create({type:"decrypt",key:k3}),DES.create({type:"encrypt",key:k2}),DES.create({type:"decrypt",key:k1})]}function EDE(options){Cipher.call(this,options);var state=new EDEState(this.type,this.options.key);this._edeState=state}inherits(EDE,Cipher),module.exports=EDE,EDE.create=function(options){return new EDE(options)},EDE.prototype._update=function(inp,inOff,out,outOff){var state=this._edeState;state.ciphers[0]._update(inp,inOff,out,outOff),state.ciphers[1]._update(out,outOff,out,outOff),state.ciphers[2]._update(out,outOff,out,outOff)},EDE.prototype._pad=DES.prototype._pad,EDE.prototype._unpad=DES.prototype._unpad},{"./cipher":75,"./des":76,inherits:133,"minimalistic-assert":137}],78:[function(require,module,exports){"use strict";exports.readUInt32BE=function(bytes,off){return(bytes[0+off]<<24|bytes[1+off]<<16|bytes[2+off]<<8|bytes[3+off])>>>0},exports.writeUInt32BE=function(bytes,value,off){bytes[0+off]=value>>>24,bytes[1+off]=value>>>16&255,bytes[2+off]=value>>>8&255,bytes[3+off]=255&value},exports.ip=function(inL,inR,out,off){for(var outL=0,outR=0,i=6;i>=0;i-=2){for(var j=0;j<=24;j+=8)outL<<=1,outL|=inR>>>j+i&1;for(j=0;j<=24;j+=8)outL<<=1,outL|=inL>>>j+i&1}for(i=6;i>=0;i-=2){for(j=1;j<=25;j+=8)outR<<=1,outR|=inR>>>j+i&1;for(j=1;j<=25;j+=8)outR<<=1,outR|=inL>>>j+i&1}out[off+0]=outL>>>0,out[off+1]=outR>>>0},exports.rip=function(inL,inR,out,off){for(var outL=0,outR=0,i=0;i<4;i++)for(var j=24;j>=0;j-=8)outL<<=1,outL|=inR>>>j+i&1,outL<<=1,outL|=inL>>>j+i&1;for(i=4;i<8;i++)for(j=24;j>=0;j-=8)outR<<=1,outR|=inR>>>j+i&1,outR<<=1,outR|=inL>>>j+i&1;out[off+0]=outL>>>0,out[off+1]=outR>>>0},exports.pc1=function(inL,inR,out,off){for(var outL=0,outR=0,i=7;i>=5;i--){for(var j=0;j<=24;j+=8)outL<<=1,outL|=inR>>j+i&1;for(j=0;j<=24;j+=8)outL<<=1,outL|=inL>>j+i&1}for(j=0;j<=24;j+=8)outL<<=1,outL|=inR>>j+i&1;for(i=1;i<=3;i++){for(j=0;j<=24;j+=8)outR<<=1,outR|=inR>>j+i&1;for(j=0;j<=24;j+=8)outR<<=1,outR|=inL>>j+i&1}for(j=0;j<=24;j+=8)outR<<=1,outR|=inL>>j+i&1;out[off+0]=outL>>>0,out[off+1]=outR>>>0},exports.r28shl=function(num,shift){return num<>>28-shift};var pc2table=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];exports.pc2=function(inL,inR,out,off){for(var outL=0,outR=0,len=pc2table.length>>>1,i=0;i>>pc2table[i]&1;for(i=len;i>>pc2table[i]&1;out[off+0]=outL>>>0,out[off+1]=outR>>>0},exports.expand=function(r,out,off){var outL=0,outR=0;outL=(1&r)<<5|r>>>27;for(var i=23;i>=15;i-=4)outL<<=6,outL|=r>>>i&63;for(i=11;i>=3;i-=4)outR|=r>>>i&63,outR<<=6;outR|=(31&r)<<1|r>>>31,out[off+0]=outL>>>0,out[off+1]=outR>>>0};var sTable=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];exports.substitute=function(inL,inR){for(var out=0,i=0;i<4;i++){out<<=4,out|=sTable[64*i+(inL>>>18-6*i&63)]}for(i=0;i<4;i++){out<<=4,out|=sTable[256+64*i+(inR>>>18-6*i&63)]}return out>>>0};var permuteTable=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];exports.permute=function(num){for(var out=0,i=0;i>>permuteTable[i]&1;return out>>>0},exports.padSplit=function(num,size,group){for(var str=num.toString(2);str.lengthbits;)num.ishrn(1);if(num.isEven()&&num.iadd(ONE),num.testn(1)||num.iadd(TWO),gen.cmp(TWO)){if(!gen.cmp(FIVE))for(;num.mod(TEN).cmp(THREE);)num.iadd(FOUR)}else for(;num.mod(TWENTYFOUR).cmp(ELEVEN);)num.iadd(FOUR);if(simpleSieve(n2=num.shrn(1))&&simpleSieve(num)&&fermatTest(n2)&&fermatTest(num)&&millerRabin.test(n2)&&millerRabin.test(num))return num}}},{"bn.js":83,"miller-rabin":135,randombytes:159}],82:[function(require,module,exports){module.exports={modp1:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},modp2:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},modp5:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},modp14:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},modp15:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},modp16:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},modp17:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},modp18:{gen:"02",prime:"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}},{}],83:[function(require,module,exports){arguments[4][16][0].apply(exports,arguments)},{buffer:20,dup:16}],84:[function(require,module,exports){"use strict";var elliptic=exports;elliptic.version=require("../package.json").version,elliptic.utils=require("./elliptic/utils"),elliptic.rand=require("brorand"),elliptic.curve=require("./elliptic/curve"),elliptic.curves=require("./elliptic/curves"),elliptic.ec=require("./elliptic/ec"),elliptic.eddsa=require("./elliptic/eddsa")},{"../package.json":100,"./elliptic/curve":87,"./elliptic/curves":90,"./elliptic/ec":91,"./elliptic/eddsa":94,"./elliptic/utils":98,brorand:19}],85:[function(require,module,exports){"use strict";var BN=require("bn.js"),utils=require("../utils"),getNAF=utils.getNAF,getJSF=utils.getJSF,assert=utils.assert;function BaseCurve(type,conf){this.type=type,this.p=new BN(conf.p,16),this.red=conf.prime?BN.red(conf.prime):BN.mont(this.p),this.zero=new BN(0).toRed(this.red),this.one=new BN(1).toRed(this.red),this.two=new BN(2).toRed(this.red),this.n=conf.n&&new BN(conf.n,16),this.g=conf.g&&this.pointFromJSON(conf.g,conf.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var adjustCount=this.n&&this.p.div(this.n);!adjustCount||adjustCount.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function BasePoint(curve,type){this.curve=curve,this.type=type,this.precomputed=null}module.exports=BaseCurve,BaseCurve.prototype.point=function(){throw new Error("Not implemented")},BaseCurve.prototype.validate=function(){throw new Error("Not implemented")},BaseCurve.prototype._fixedNafMul=function(p,k){assert(p.precomputed);var doubles=p._getDoubles(),naf=getNAF(k,1,this._bitLength),I=(1<=j;l--)nafW=(nafW<<1)+naf[l];repr.push(nafW)}for(var a=this.jpoint(null,null,null),b=this.jpoint(null,null,null),i=I;i>0;i--){for(j=0;j=0;i--){for(var l=0;i>=0&&0===naf[i];i--)l++;if(i>=0&&l++,acc=acc.dblp(l),i<0)break;var z=naf[i];assert(0!==z),acc="affine"===p.type?z>0?acc.mixedAdd(wnd[z-1>>1]):acc.mixedAdd(wnd[-z-1>>1].neg()):z>0?acc.add(wnd[z-1>>1]):acc.add(wnd[-z-1>>1].neg())}return"affine"===p.type?acc.toP():acc},BaseCurve.prototype._wnafMulAdd=function(defW,points,coeffs,len,jacobianResult){var i,j,p,wndWidth=this._wnafT1,wnd=this._wnafT2,naf=this._wnafT3,max=0;for(i=0;i=1;i-=2){var a=i-1,b=i;if(1===wndWidth[a]&&1===wndWidth[b]){var comb=[points[a],null,null,points[b]];0===points[a].y.cmp(points[b].y)?(comb[1]=points[a].add(points[b]),comb[2]=points[a].toJ().mixedAdd(points[b].neg())):0===points[a].y.cmp(points[b].y.redNeg())?(comb[1]=points[a].toJ().mixedAdd(points[b]),comb[2]=points[a].add(points[b].neg())):(comb[1]=points[a].toJ().mixedAdd(points[b]),comb[2]=points[a].toJ().mixedAdd(points[b].neg()));var index=[-3,-1,-5,-7,0,7,5,1,3],jsf=getJSF(coeffs[a],coeffs[b]);for(max=Math.max(jsf[0].length,max),naf[a]=new Array(max),naf[b]=new Array(max),j=0;j=0;i--){for(var k=0;i>=0;){var zero=!0;for(j=0;j=0&&k++,acc=acc.dblp(k),i<0)break;for(j=0;j0?p=wnd[j][z-1>>1]:z<0&&(p=wnd[j][-z-1>>1].neg()),acc="affine"===p.type?acc.mixedAdd(p):acc.add(p))}}for(i=0;i=Math.ceil((k.bitLength()+1)/doubles.step)},BasePoint.prototype._getDoubles=function(step,power){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var doubles=[this],acc=this,i=0;i":""},Point.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},Point.prototype._extDbl=function(){var a=this.x.redSqr(),b=this.y.redSqr(),c=this.z.redSqr();c=c.redIAdd(c);var d=this.curve._mulA(a),e=this.x.redAdd(this.y).redSqr().redISub(a).redISub(b),g=d.redAdd(b),f=g.redSub(c),h=d.redSub(b),nx=e.redMul(f),ny=g.redMul(h),nt=e.redMul(h),nz=f.redMul(g);return this.curve.point(nx,ny,nz,nt)},Point.prototype._projDbl=function(){var nx,ny,nz,e,h,j,b=this.x.redAdd(this.y).redSqr(),c=this.x.redSqr(),d=this.y.redSqr();if(this.curve.twisted){var f=(e=this.curve._mulA(c)).redAdd(d);this.zOne?(nx=b.redSub(c).redSub(d).redMul(f.redSub(this.curve.two)),ny=f.redMul(e.redSub(d)),nz=f.redSqr().redSub(f).redSub(f)):(h=this.z.redSqr(),j=f.redSub(h).redISub(h),nx=b.redSub(c).redISub(d).redMul(j),ny=f.redMul(e.redSub(d)),nz=f.redMul(j))}else e=c.redAdd(d),h=this.curve._mulC(this.z).redSqr(),j=e.redSub(h).redSub(h),nx=this.curve._mulC(b.redISub(e)).redMul(j),ny=this.curve._mulC(e).redMul(c.redISub(d)),nz=e.redMul(j);return this.curve.point(nx,ny,nz)},Point.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},Point.prototype._extAdd=function(p){var a=this.y.redSub(this.x).redMul(p.y.redSub(p.x)),b=this.y.redAdd(this.x).redMul(p.y.redAdd(p.x)),c=this.t.redMul(this.curve.dd).redMul(p.t),d=this.z.redMul(p.z.redAdd(p.z)),e=b.redSub(a),f=d.redSub(c),g=d.redAdd(c),h=b.redAdd(a),nx=e.redMul(f),ny=g.redMul(h),nt=e.redMul(h),nz=f.redMul(g);return this.curve.point(nx,ny,nz,nt)},Point.prototype._projAdd=function(p){var ny,nz,a=this.z.redMul(p.z),b=a.redSqr(),c=this.x.redMul(p.x),d=this.y.redMul(p.y),e=this.curve.d.redMul(c).redMul(d),f=b.redSub(e),g=b.redAdd(e),tmp=this.x.redAdd(this.y).redMul(p.x.redAdd(p.y)).redISub(c).redISub(d),nx=a.redMul(f).redMul(tmp);return this.curve.twisted?(ny=a.redMul(g).redMul(d.redSub(this.curve._mulA(c))),nz=f.redMul(g)):(ny=a.redMul(g).redMul(d.redSub(c)),nz=this.curve._mulC(f).redMul(g)),this.curve.point(nx,ny,nz)},Point.prototype.add=function(p){return this.isInfinity()?p:p.isInfinity()?this:this.curve.extended?this._extAdd(p):this._projAdd(p)},Point.prototype.mul=function(k){return this._hasDoubles(k)?this.curve._fixedNafMul(this,k):this.curve._wnafMul(this,k)},Point.prototype.mulAdd=function(k1,p,k2){return this.curve._wnafMulAdd(1,[this,p],[k1,k2],2,!1)},Point.prototype.jmulAdd=function(k1,p,k2){return this.curve._wnafMulAdd(1,[this,p],[k1,k2],2,!0)},Point.prototype.normalize=function(){if(this.zOne)return this;var zi=this.z.redInvm();return this.x=this.x.redMul(zi),this.y=this.y.redMul(zi),this.t&&(this.t=this.t.redMul(zi)),this.z=this.curve.one,this.zOne=!0,this},Point.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},Point.prototype.getX=function(){return this.normalize(),this.x.fromRed()},Point.prototype.getY=function(){return this.normalize(),this.y.fromRed()},Point.prototype.eq=function(other){return this===other||0===this.getX().cmp(other.getX())&&0===this.getY().cmp(other.getY())},Point.prototype.eqXToP=function(x){var rx=x.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(rx))return!0;for(var xc=x.clone(),t=this.curve.redN.redMul(this.z);;){if(xc.iadd(this.curve.n),xc.cmp(this.curve.p)>=0)return!1;if(rx.redIAdd(t),0===this.x.cmp(rx))return!0}},Point.prototype.toP=Point.prototype.normalize,Point.prototype.mixedAdd=Point.prototype.add},{"../utils":98,"./base":85,"bn.js":99,inherits:133}],87:[function(require,module,exports){"use strict";var curve=exports;curve.base=require("./base"),curve.short=require("./short"),curve.mont=require("./mont"),curve.edwards=require("./edwards")},{"./base":85,"./edwards":86,"./mont":88,"./short":89}],88:[function(require,module,exports){"use strict";var BN=require("bn.js"),inherits=require("inherits"),Base=require("./base"),utils=require("../utils");function MontCurve(conf){Base.call(this,"mont",conf),this.a=new BN(conf.a,16).toRed(this.red),this.b=new BN(conf.b,16).toRed(this.red),this.i4=new BN(4).toRed(this.red).redInvm(),this.two=new BN(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function Point(curve,x,z){Base.BasePoint.call(this,curve,"projective"),null===x&&null===z?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new BN(x,16),this.z=new BN(z,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}inherits(MontCurve,Base),module.exports=MontCurve,MontCurve.prototype.validate=function(point){var x=point.normalize().x,x2=x.redSqr(),rhs=x2.redMul(x).redAdd(x2.redMul(this.a)).redAdd(x);return 0===rhs.redSqrt().redSqr().cmp(rhs)},inherits(Point,Base.BasePoint),MontCurve.prototype.decodePoint=function(bytes,enc){return this.point(utils.toArray(bytes,enc),1)},MontCurve.prototype.point=function(x,z){return new Point(this,x,z)},MontCurve.prototype.pointFromJSON=function(obj){return Point.fromJSON(this,obj)},Point.prototype.precompute=function(){},Point.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},Point.fromJSON=function(curve,obj){return new Point(curve,obj[0],obj[1]||curve.one)},Point.prototype.inspect=function(){return this.isInfinity()?"":""},Point.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},Point.prototype.dbl=function(){var aa=this.x.redAdd(this.z).redSqr(),bb=this.x.redSub(this.z).redSqr(),c=aa.redSub(bb),nx=aa.redMul(bb),nz=c.redMul(bb.redAdd(this.curve.a24.redMul(c)));return this.curve.point(nx,nz)},Point.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},Point.prototype.diffAdd=function(p,diff){var a=this.x.redAdd(this.z),b=this.x.redSub(this.z),c=p.x.redAdd(p.z),da=p.x.redSub(p.z).redMul(a),cb=c.redMul(b),nx=diff.z.redMul(da.redAdd(cb).redSqr()),nz=diff.x.redMul(da.redISub(cb).redSqr());return this.curve.point(nx,nz)},Point.prototype.mul=function(k){for(var t=k.clone(),a=this,b=this.curve.point(null,null),bits=[];0!==t.cmpn(0);t.iushrn(1))bits.push(t.andln(1));for(var i=bits.length-1;i>=0;i--)0===bits[i]?(a=a.diffAdd(b,this),b=b.dbl()):(b=a.diffAdd(b,this),a=a.dbl());return b},Point.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},Point.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},Point.prototype.eq=function(other){return 0===this.getX().cmp(other.getX())},Point.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},Point.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},{"../utils":98,"./base":85,"bn.js":99,inherits:133}],89:[function(require,module,exports){"use strict";var utils=require("../utils"),BN=require("bn.js"),inherits=require("inherits"),Base=require("./base"),assert=utils.assert;function ShortCurve(conf){Base.call(this,"short",conf),this.a=new BN(conf.a,16).toRed(this.red),this.b=new BN(conf.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(conf),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function Point(curve,x,y,isRed){Base.BasePoint.call(this,curve,"affine"),null===x&&null===y?(this.x=null,this.y=null,this.inf=!0):(this.x=new BN(x,16),this.y=new BN(y,16),isRed&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function JPoint(curve,x,y,z){Base.BasePoint.call(this,curve,"jacobian"),null===x&&null===y&&null===z?(this.x=this.curve.one,this.y=this.curve.one,this.z=new BN(0)):(this.x=new BN(x,16),this.y=new BN(y,16),this.z=new BN(z,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}inherits(ShortCurve,Base),module.exports=ShortCurve,ShortCurve.prototype._getEndomorphism=function(conf){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var beta,lambda;if(conf.beta)beta=new BN(conf.beta,16).toRed(this.red);else{var betas=this._getEndoRoots(this.p);beta=(beta=betas[0].cmp(betas[1])<0?betas[0]:betas[1]).toRed(this.red)}if(conf.lambda)lambda=new BN(conf.lambda,16);else{var lambdas=this._getEndoRoots(this.n);0===this.g.mul(lambdas[0]).x.cmp(this.g.x.redMul(beta))?lambda=lambdas[0]:(lambda=lambdas[1],assert(0===this.g.mul(lambda).x.cmp(this.g.x.redMul(beta))))}return{beta:beta,lambda:lambda,basis:conf.basis?conf.basis.map((function(vec){return{a:new BN(vec.a,16),b:new BN(vec.b,16)}})):this._getEndoBasis(lambda)}}},ShortCurve.prototype._getEndoRoots=function(num){var red=num===this.p?this.red:BN.mont(num),tinv=new BN(2).toRed(red).redInvm(),ntinv=tinv.redNeg(),s=new BN(3).toRed(red).redNeg().redSqrt().redMul(tinv);return[ntinv.redAdd(s).fromRed(),ntinv.redSub(s).fromRed()]},ShortCurve.prototype._getEndoBasis=function(lambda){for(var a0,b0,a1,b1,a2,b2,prevR,r,x,aprxSqrt=this.n.ushrn(Math.floor(this.n.bitLength()/2)),u=lambda,v=this.n.clone(),x1=new BN(1),y1=new BN(0),x2=new BN(0),y2=new BN(1),i=0;0!==u.cmpn(0);){var q=v.div(u);r=v.sub(q.mul(u)),x=x2.sub(q.mul(x1));var y=y2.sub(q.mul(y1));if(!a1&&r.cmp(aprxSqrt)<0)a0=prevR.neg(),b0=x1,a1=r.neg(),b1=x;else if(a1&&2==++i)break;prevR=r,v=u,u=r,x2=x1,x1=x,y2=y1,y1=y}a2=r.neg(),b2=x;var len1=a1.sqr().add(b1.sqr());return a2.sqr().add(b2.sqr()).cmp(len1)>=0&&(a2=a0,b2=b0),a1.negative&&(a1=a1.neg(),b1=b1.neg()),a2.negative&&(a2=a2.neg(),b2=b2.neg()),[{a:a1,b:b1},{a:a2,b:b2}]},ShortCurve.prototype._endoSplit=function(k){var basis=this.endo.basis,v1=basis[0],v2=basis[1],c1=v2.b.mul(k).divRound(this.n),c2=v1.b.neg().mul(k).divRound(this.n),p1=c1.mul(v1.a),p2=c2.mul(v2.a),q1=c1.mul(v1.b),q2=c2.mul(v2.b);return{k1:k.sub(p1).sub(p2),k2:q1.add(q2).neg()}},ShortCurve.prototype.pointFromX=function(x,odd){(x=new BN(x,16)).red||(x=x.toRed(this.red));var y2=x.redSqr().redMul(x).redIAdd(x.redMul(this.a)).redIAdd(this.b),y=y2.redSqrt();if(0!==y.redSqr().redSub(y2).cmp(this.zero))throw new Error("invalid point");var isOdd=y.fromRed().isOdd();return(odd&&!isOdd||!odd&&isOdd)&&(y=y.redNeg()),this.point(x,y)},ShortCurve.prototype.validate=function(point){if(point.inf)return!0;var x=point.x,y=point.y,ax=this.a.redMul(x),rhs=x.redSqr().redMul(x).redIAdd(ax).redIAdd(this.b);return 0===y.redSqr().redISub(rhs).cmpn(0)},ShortCurve.prototype._endoWnafMulAdd=function(points,coeffs,jacobianResult){for(var npoints=this._endoWnafT1,ncoeffs=this._endoWnafT2,i=0;i":""},Point.prototype.isInfinity=function(){return this.inf},Point.prototype.add=function(p){if(this.inf)return p;if(p.inf)return this;if(this.eq(p))return this.dbl();if(this.neg().eq(p))return this.curve.point(null,null);if(0===this.x.cmp(p.x))return this.curve.point(null,null);var c=this.y.redSub(p.y);0!==c.cmpn(0)&&(c=c.redMul(this.x.redSub(p.x).redInvm()));var nx=c.redSqr().redISub(this.x).redISub(p.x),ny=c.redMul(this.x.redSub(nx)).redISub(this.y);return this.curve.point(nx,ny)},Point.prototype.dbl=function(){if(this.inf)return this;var ys1=this.y.redAdd(this.y);if(0===ys1.cmpn(0))return this.curve.point(null,null);var a=this.curve.a,x2=this.x.redSqr(),dyinv=ys1.redInvm(),c=x2.redAdd(x2).redIAdd(x2).redIAdd(a).redMul(dyinv),nx=c.redSqr().redISub(this.x.redAdd(this.x)),ny=c.redMul(this.x.redSub(nx)).redISub(this.y);return this.curve.point(nx,ny)},Point.prototype.getX=function(){return this.x.fromRed()},Point.prototype.getY=function(){return this.y.fromRed()},Point.prototype.mul=function(k){return k=new BN(k,16),this.isInfinity()?this:this._hasDoubles(k)?this.curve._fixedNafMul(this,k):this.curve.endo?this.curve._endoWnafMulAdd([this],[k]):this.curve._wnafMul(this,k)},Point.prototype.mulAdd=function(k1,p2,k2){var points=[this,p2],coeffs=[k1,k2];return this.curve.endo?this.curve._endoWnafMulAdd(points,coeffs):this.curve._wnafMulAdd(1,points,coeffs,2)},Point.prototype.jmulAdd=function(k1,p2,k2){var points=[this,p2],coeffs=[k1,k2];return this.curve.endo?this.curve._endoWnafMulAdd(points,coeffs,!0):this.curve._wnafMulAdd(1,points,coeffs,2,!0)},Point.prototype.eq=function(p){return this===p||this.inf===p.inf&&(this.inf||0===this.x.cmp(p.x)&&0===this.y.cmp(p.y))},Point.prototype.neg=function(_precompute){if(this.inf)return this;var res=this.curve.point(this.x,this.y.redNeg());if(_precompute&&this.precomputed){var pre=this.precomputed,negate=function(p){return p.neg()};res.precomputed={naf:pre.naf&&{wnd:pre.naf.wnd,points:pre.naf.points.map(negate)},doubles:pre.doubles&&{step:pre.doubles.step,points:pre.doubles.points.map(negate)}}}return res},Point.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},inherits(JPoint,Base.BasePoint),ShortCurve.prototype.jpoint=function(x,y,z){return new JPoint(this,x,y,z)},JPoint.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var zinv=this.z.redInvm(),zinv2=zinv.redSqr(),ax=this.x.redMul(zinv2),ay=this.y.redMul(zinv2).redMul(zinv);return this.curve.point(ax,ay)},JPoint.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},JPoint.prototype.add=function(p){if(this.isInfinity())return p;if(p.isInfinity())return this;var pz2=p.z.redSqr(),z2=this.z.redSqr(),u1=this.x.redMul(pz2),u2=p.x.redMul(z2),s1=this.y.redMul(pz2.redMul(p.z)),s2=p.y.redMul(z2.redMul(this.z)),h=u1.redSub(u2),r=s1.redSub(s2);if(0===h.cmpn(0))return 0!==r.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var h2=h.redSqr(),h3=h2.redMul(h),v=u1.redMul(h2),nx=r.redSqr().redIAdd(h3).redISub(v).redISub(v),ny=r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)),nz=this.z.redMul(p.z).redMul(h);return this.curve.jpoint(nx,ny,nz)},JPoint.prototype.mixedAdd=function(p){if(this.isInfinity())return p.toJ();if(p.isInfinity())return this;var z2=this.z.redSqr(),u1=this.x,u2=p.x.redMul(z2),s1=this.y,s2=p.y.redMul(z2).redMul(this.z),h=u1.redSub(u2),r=s1.redSub(s2);if(0===h.cmpn(0))return 0!==r.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var h2=h.redSqr(),h3=h2.redMul(h),v=u1.redMul(h2),nx=r.redSqr().redIAdd(h3).redISub(v).redISub(v),ny=r.redMul(v.redISub(nx)).redISub(s1.redMul(h3)),nz=this.z.redMul(h);return this.curve.jpoint(nx,ny,nz)},JPoint.prototype.dblp=function(pow){if(0===pow)return this;if(this.isInfinity())return this;if(!pow)return this.dbl();var i;if(this.curve.zeroA||this.curve.threeA){var r=this;for(i=0;i=0)return!1;if(rx.redIAdd(t),0===this.x.cmp(rx))return!0}},JPoint.prototype.inspect=function(){return this.isInfinity()?"":""},JPoint.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},{"../utils":98,"./base":85,"bn.js":99,inherits:133}],90:[function(require,module,exports){"use strict";var pre,curves=exports,hash=require("hash.js"),curve=require("./curve"),assert=require("./utils").assert;function PresetCurve(options){"short"===options.type?this.curve=new curve.short(options):"edwards"===options.type?this.curve=new curve.edwards(options):this.curve=new curve.mont(options),this.g=this.curve.g,this.n=this.curve.n,this.hash=options.hash,assert(this.g.validate(),"Invalid curve"),assert(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function defineCurve(name,options){Object.defineProperty(curves,name,{configurable:!0,enumerable:!0,get:function(){var curve=new PresetCurve(options);return Object.defineProperty(curves,name,{configurable:!0,enumerable:!0,value:curve}),curve}})}curves.PresetCurve=PresetCurve,defineCurve("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:hash.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),defineCurve("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:hash.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),defineCurve("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:hash.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),defineCurve("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:hash.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),defineCurve("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:hash.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),defineCurve("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:hash.sha256,gRed:!1,g:["9"]}),defineCurve("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:hash.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{pre=require("./precomputed/secp256k1")}catch(e){pre=void 0}defineCurve("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:hash.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",pre]})},{"./curve":87,"./precomputed/secp256k1":97,"./utils":98,"hash.js":119}],91:[function(require,module,exports){"use strict";var BN=require("bn.js"),HmacDRBG=require("hmac-drbg"),utils=require("../utils"),curves=require("../curves"),rand=require("brorand"),assert=utils.assert,KeyPair=require("./key"),Signature=require("./signature");function EC(options){if(!(this instanceof EC))return new EC(options);"string"==typeof options&&(assert(Object.prototype.hasOwnProperty.call(curves,options),"Unknown curve "+options),options=curves[options]),options instanceof curves.PresetCurve&&(options={curve:options}),this.curve=options.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=options.curve.g,this.g.precompute(options.curve.n.bitLength()+1),this.hash=options.hash||options.curve.hash}module.exports=EC,EC.prototype.keyPair=function(options){return new KeyPair(this,options)},EC.prototype.keyFromPrivate=function(priv,enc){return KeyPair.fromPrivate(this,priv,enc)},EC.prototype.keyFromPublic=function(pub,enc){return KeyPair.fromPublic(this,pub,enc)},EC.prototype.genKeyPair=function(options){options||(options={});for(var drbg=new HmacDRBG({hash:this.hash,pers:options.pers,persEnc:options.persEnc||"utf8",entropy:options.entropy||rand(this.hash.hmacStrength),entropyEnc:options.entropy&&options.entropyEnc||"utf8",nonce:this.n.toArray()}),bytes=this.n.byteLength(),ns2=this.n.sub(new BN(2));;){var priv=new BN(drbg.generate(bytes));if(!(priv.cmp(ns2)>0))return priv.iaddn(1),this.keyFromPrivate(priv)}},EC.prototype._truncateToN=function(msg,truncOnly){var delta=8*msg.byteLength()-this.n.bitLength();return delta>0&&(msg=msg.ushrn(delta)),!truncOnly&&msg.cmp(this.n)>=0?msg.sub(this.n):msg},EC.prototype.sign=function(msg,key,enc,options){"object"==typeof enc&&(options=enc,enc=null),options||(options={}),key=this.keyFromPrivate(key,enc),msg=this._truncateToN(new BN(msg,16));for(var bytes=this.n.byteLength(),bkey=key.getPrivate().toArray("be",bytes),nonce=msg.toArray("be",bytes),drbg=new HmacDRBG({hash:this.hash,entropy:bkey,nonce:nonce,pers:options.pers,persEnc:options.persEnc||"utf8"}),ns1=this.n.sub(new BN(1)),iter=0;;iter++){var k=options.k?options.k(iter):new BN(drbg.generate(this.n.byteLength()));if(!((k=this._truncateToN(k,!0)).cmpn(1)<=0||k.cmp(ns1)>=0)){var kp=this.g.mul(k);if(!kp.isInfinity()){var kpX=kp.getX(),r=kpX.umod(this.n);if(0!==r.cmpn(0)){var s=k.invm(this.n).mul(r.mul(key.getPrivate()).iadd(msg));if(0!==(s=s.umod(this.n)).cmpn(0)){var recoveryParam=(kp.getY().isOdd()?1:0)|(0!==kpX.cmp(r)?2:0);return options.canonical&&s.cmp(this.nh)>0&&(s=this.n.sub(s),recoveryParam^=1),new Signature({r:r,s:s,recoveryParam:recoveryParam})}}}}}},EC.prototype.verify=function(msg,signature,key,enc){msg=this._truncateToN(new BN(msg,16)),key=this.keyFromPublic(key,enc);var r=(signature=new Signature(signature,"hex")).r,s=signature.s;if(r.cmpn(1)<0||r.cmp(this.n)>=0)return!1;if(s.cmpn(1)<0||s.cmp(this.n)>=0)return!1;var p,sinv=s.invm(this.n),u1=sinv.mul(msg).umod(this.n),u2=sinv.mul(r).umod(this.n);return this.curve._maxwellTrick?!(p=this.g.jmulAdd(u1,key.getPublic(),u2)).isInfinity()&&p.eqXToP(r):!(p=this.g.mulAdd(u1,key.getPublic(),u2)).isInfinity()&&0===p.getX().umod(this.n).cmp(r)},EC.prototype.recoverPubKey=function(msg,signature,j,enc){assert((3&j)===j,"The recovery param is more than two bits"),signature=new Signature(signature,enc);var n=this.n,e=new BN(msg),r=signature.r,s=signature.s,isYOdd=1&j,isSecondKey=j>>1;if(r.cmp(this.curve.p.umod(this.curve.n))>=0&&isSecondKey)throw new Error("Unable to find sencond key candinate");r=isSecondKey?this.curve.pointFromX(r.add(this.curve.n),isYOdd):this.curve.pointFromX(r,isYOdd);var rInv=signature.r.invm(n),s1=n.sub(e).mul(rInv).umod(n),s2=s.mul(rInv).umod(n);return this.g.mulAdd(s1,r,s2)},EC.prototype.getKeyRecoveryParam=function(e,signature,Q,enc){if(null!==(signature=new Signature(signature,enc)).recoveryParam)return signature.recoveryParam;for(var i=0;i<4;i++){var Qprime;try{Qprime=this.recoverPubKey(e,signature,i)}catch(e){continue}if(Qprime.eq(Q))return i}throw new Error("Unable to find valid recovery factor")}},{"../curves":90,"../utils":98,"./key":92,"./signature":93,"bn.js":99,brorand:19,"hmac-drbg":131}],92:[function(require,module,exports){"use strict";var BN=require("bn.js"),assert=require("../utils").assert;function KeyPair(ec,options){this.ec=ec,this.priv=null,this.pub=null,options.priv&&this._importPrivate(options.priv,options.privEnc),options.pub&&this._importPublic(options.pub,options.pubEnc)}module.exports=KeyPair,KeyPair.fromPublic=function(ec,pub,enc){return pub instanceof KeyPair?pub:new KeyPair(ec,{pub:pub,pubEnc:enc})},KeyPair.fromPrivate=function(ec,priv,enc){return priv instanceof KeyPair?priv:new KeyPair(ec,{priv:priv,privEnc:enc})},KeyPair.prototype.validate=function(){var pub=this.getPublic();return pub.isInfinity()?{result:!1,reason:"Invalid public key"}:pub.validate()?pub.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},KeyPair.prototype.getPublic=function(compact,enc){return"string"==typeof compact&&(enc=compact,compact=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),enc?this.pub.encode(enc,compact):this.pub},KeyPair.prototype.getPrivate=function(enc){return"hex"===enc?this.priv.toString(16,2):this.priv},KeyPair.prototype._importPrivate=function(key,enc){this.priv=new BN(key,enc||16),this.priv=this.priv.umod(this.ec.curve.n)},KeyPair.prototype._importPublic=function(key,enc){if(key.x||key.y)return"mont"===this.ec.curve.type?assert(key.x,"Need x coordinate"):"short"!==this.ec.curve.type&&"edwards"!==this.ec.curve.type||assert(key.x&&key.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(key.x,key.y));this.pub=this.ec.curve.decodePoint(key,enc)},KeyPair.prototype.derive=function(pub){return pub.validate()||assert(pub.validate(),"public point not validated"),pub.mul(this.priv).getX()},KeyPair.prototype.sign=function(msg,enc,options){return this.ec.sign(msg,this,enc,options)},KeyPair.prototype.verify=function(msg,signature){return this.ec.verify(msg,signature,this)},KeyPair.prototype.inspect=function(){return""}},{"../utils":98,"bn.js":99}],93:[function(require,module,exports){"use strict";var BN=require("bn.js"),utils=require("../utils"),assert=utils.assert;function Signature(options,enc){if(options instanceof Signature)return options;this._importDER(options,enc)||(assert(options.r&&options.s,"Signature without r or s"),this.r=new BN(options.r,16),this.s=new BN(options.s,16),void 0===options.recoveryParam?this.recoveryParam=null:this.recoveryParam=options.recoveryParam)}function Position(){this.place=0}function getLength(buf,p){var initial=buf[p.place++];if(!(128&initial))return initial;var octetLen=15&initial;if(0===octetLen||octetLen>4)return!1;for(var val=0,i=0,off=p.place;i>>=0;return!(val<=127)&&(p.place=off,val)}function rmPadding(buf){for(var i=0,len=buf.length-1;!buf[i]&&!(128&buf[i+1])&&i>>3);for(arr.push(128|octets);--octets;)arr.push(len>>>(octets<<3)&255);arr.push(len)}}module.exports=Signature,Signature.prototype._importDER=function(data,enc){data=utils.toArray(data,enc);var p=new Position;if(48!==data[p.place++])return!1;var len=getLength(data,p);if(!1===len)return!1;if(len+p.place!==data.length)return!1;if(2!==data[p.place++])return!1;var rlen=getLength(data,p);if(!1===rlen)return!1;var r=data.slice(p.place,rlen+p.place);if(p.place+=rlen,2!==data[p.place++])return!1;var slen=getLength(data,p);if(!1===slen)return!1;if(data.length!==slen+p.place)return!1;var s=data.slice(p.place,slen+p.place);if(0===r[0]){if(!(128&r[1]))return!1;r=r.slice(1)}if(0===s[0]){if(!(128&s[1]))return!1;s=s.slice(1)}return this.r=new BN(r),this.s=new BN(s),this.recoveryParam=null,!0},Signature.prototype.toDER=function(enc){var r=this.r.toArray(),s=this.s.toArray();for(128&r[0]&&(r=[0].concat(r)),128&s[0]&&(s=[0].concat(s)),r=rmPadding(r),s=rmPadding(s);!(s[0]||128&s[1]);)s=s.slice(1);var arr=[2];constructLength(arr,r.length),(arr=arr.concat(r)).push(2),constructLength(arr,s.length);var backHalf=arr.concat(s),res=[48];return constructLength(res,backHalf.length),res=res.concat(backHalf),utils.encode(res,enc)}},{"../utils":98,"bn.js":99}],94:[function(require,module,exports){"use strict";var hash=require("hash.js"),curves=require("../curves"),utils=require("../utils"),assert=utils.assert,parseBytes=utils.parseBytes,KeyPair=require("./key"),Signature=require("./signature");function EDDSA(curve){if(assert("ed25519"===curve,"only tested with ed25519 so far"),!(this instanceof EDDSA))return new EDDSA(curve);curve=curves[curve].curve,this.curve=curve,this.g=curve.g,this.g.precompute(curve.n.bitLength()+1),this.pointClass=curve.point().constructor,this.encodingLength=Math.ceil(curve.n.bitLength()/8),this.hash=hash.sha512}module.exports=EDDSA,EDDSA.prototype.sign=function(message,secret){message=parseBytes(message);var key=this.keyFromSecret(secret),r=this.hashInt(key.messagePrefix(),message),R=this.g.mul(r),Rencoded=this.encodePoint(R),s_=this.hashInt(Rencoded,key.pubBytes(),message).mul(key.priv()),S=r.add(s_).umod(this.curve.n);return this.makeSignature({R:R,S:S,Rencoded:Rencoded})},EDDSA.prototype.verify=function(message,sig,pub){message=parseBytes(message),sig=this.makeSignature(sig);var key=this.keyFromPublic(pub),h=this.hashInt(sig.Rencoded(),key.pubBytes(),message),SG=this.g.mul(sig.S());return sig.R().add(key.pub().mul(h)).eq(SG)},EDDSA.prototype.hashInt=function(){for(var hash=this.hash(),i=0;i(ws>>1)-1?(ws>>1)-mod:mod,k.isubn(z)):z=0,naf[i]=z,k.iushrn(1)}return naf},utils.getJSF=function(k1,k2){var jsf=[[],[]];k1=k1.clone(),k2=k2.clone();for(var m8,d1=0,d2=0;k1.cmpn(-d1)>0||k2.cmpn(-d2)>0;){var u1,u2,m14=k1.andln(3)+d1&3,m24=k2.andln(3)+d2&3;3===m14&&(m14=-1),3===m24&&(m24=-1),u1=0==(1&m14)?0:3!==(m8=k1.andln(7)+d1&7)&&5!==m8||2!==m24?m14:-m14,jsf[0].push(u1),u2=0==(1&m24)?0:3!==(m8=k2.andln(7)+d2&7)&&5!==m8||2!==m14?m24:-m24,jsf[1].push(u2),2*d1===u1+1&&(d1=1-d1),2*d2===u2+1&&(d2=1-d2),k1.iushrn(1),k2.iushrn(1)}return jsf},utils.cachedProperty=function(obj,name,computer){var key="_"+name;obj.prototype[name]=function(){return void 0!==this[key]?this[key]:this[key]=computer.call(this)}},utils.parseBytes=function(bytes){return"string"==typeof bytes?utils.toArray(bytes,"hex"):bytes},utils.intFromLE=function(bytes){return new BN(bytes,"hex","le")}},{"bn.js":99,"minimalistic-assert":137,"minimalistic-crypto-utils":138}],99:[function(require,module,exports){arguments[4][16][0].apply(exports,arguments)},{buffer:20,dup:16}],100:[function(require,module,exports){module.exports={name:"elliptic",version:"6.5.4",description:"EC cryptography",main:"lib/elliptic.js",files:["lib"],scripts:{lint:"eslint lib test","lint:fix":"npm run lint -- --fix",unit:"istanbul test _mocha --reporter=spec test/index.js",test:"npm run lint && npm run unit",version:"grunt dist && git add dist/"},repository:{type:"git",url:"git@github.com:indutny/elliptic"},keywords:["EC","Elliptic","curve","Cryptography"],author:"Fedor Indutny ",license:"MIT",bugs:{url:"https://github.com/indutny/elliptic/issues"},homepage:"https://github.com/indutny/elliptic",devDependencies:{brfs:"^2.0.2",coveralls:"^3.1.0",eslint:"^7.6.0",grunt:"^1.2.1","grunt-browserify":"^5.3.0","grunt-cli":"^1.3.2","grunt-contrib-connect":"^3.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-saucelabs":"^9.0.1",istanbul:"^0.4.5",mocha:"^8.0.1"},dependencies:{"bn.js":"^4.11.9",brorand:"^1.1.0","hash.js":"^1.0.0","hmac-drbg":"^1.0.1",inherits:"^2.0.4","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"}}},{}],101:[function(require,module,exports){"use strict";var ReflectOwnKeys,R="object"==typeof Reflect?Reflect:null,ReflectApply=R&&"function"==typeof R.apply?R.apply:function(target,receiver,args){return Function.prototype.apply.call(target,receiver,args)};ReflectOwnKeys=R&&"function"==typeof R.ownKeys?R.ownKeys:Object.getOwnPropertySymbols?function(target){return Object.getOwnPropertyNames(target).concat(Object.getOwnPropertySymbols(target))}:function(target){return Object.getOwnPropertyNames(target)};var NumberIsNaN=Number.isNaN||function(value){return value!=value};function EventEmitter(){EventEmitter.init.call(this)}module.exports=EventEmitter,module.exports.once=function(emitter,name){return new Promise((function(resolve,reject){function errorListener(err){emitter.removeListener(name,resolver),reject(err)}function resolver(){"function"==typeof emitter.removeListener&&emitter.removeListener("error",errorListener),resolve([].slice.call(arguments))}eventTargetAgnosticAddListener(emitter,name,resolver,{once:!0}),"error"!==name&&function(emitter,handler,flags){"function"==typeof emitter.on&&eventTargetAgnosticAddListener(emitter,"error",handler,flags)}(emitter,errorListener,{once:!0})}))},EventEmitter.EventEmitter=EventEmitter,EventEmitter.prototype._events=void 0,EventEmitter.prototype._eventsCount=0,EventEmitter.prototype._maxListeners=void 0;var defaultMaxListeners=10;function checkListener(listener){if("function"!=typeof listener)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof listener)}function _getMaxListeners(that){return void 0===that._maxListeners?EventEmitter.defaultMaxListeners:that._maxListeners}function _addListener(target,type,listener,prepend){var m,events,existing,warning;if(checkListener(listener),void 0===(events=target._events)?(events=target._events=Object.create(null),target._eventsCount=0):(void 0!==events.newListener&&(target.emit("newListener",type,listener.listener?listener.listener:listener),events=target._events),existing=events[type]),void 0===existing)existing=events[type]=listener,++target._eventsCount;else if("function"==typeof existing?existing=events[type]=prepend?[listener,existing]:[existing,listener]:prepend?existing.unshift(listener):existing.push(listener),(m=_getMaxListeners(target))>0&&existing.length>m&&!existing.warned){existing.warned=!0;var w=new Error("Possible EventEmitter memory leak detected. "+existing.length+" "+String(type)+" listeners added. Use emitter.setMaxListeners() to increase limit");w.name="MaxListenersExceededWarning",w.emitter=target,w.type=type,w.count=existing.length,warning=w,console&&console.warn&&console.warn(warning)}return target}function onceWrapper(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function _onceWrap(target,type,listener){var state={fired:!1,wrapFn:void 0,target:target,type:type,listener:listener},wrapped=onceWrapper.bind(state);return wrapped.listener=listener,state.wrapFn=wrapped,wrapped}function _listeners(target,type,unwrap){var events=target._events;if(void 0===events)return[];var evlistener=events[type];return void 0===evlistener?[]:"function"==typeof evlistener?unwrap?[evlistener.listener||evlistener]:[evlistener]:unwrap?function(arr){for(var ret=new Array(arr.length),i=0;i0&&(er=args[0]),er instanceof Error)throw er;var err=new Error("Unhandled error."+(er?" ("+er.message+")":""));throw err.context=er,err}var handler=events[type];if(void 0===handler)return!1;if("function"==typeof handler)ReflectApply(handler,this,args);else{var len=handler.length,listeners=arrayClone(handler,len);for(i=0;i=0;i--)if(list[i]===listener||list[i].listener===listener){originalListener=list[i].listener,position=i;break}if(position<0)return this;0===position?list.shift():function(list,index){for(;index+1=0;i--)this.removeListener(type,listeners[i]);return this},EventEmitter.prototype.listeners=function(type){return _listeners(this,type,!0)},EventEmitter.prototype.rawListeners=function(type){return _listeners(this,type,!1)},EventEmitter.listenerCount=function(emitter,type){return"function"==typeof emitter.listenerCount?emitter.listenerCount(type):listenerCount.call(emitter,type)},EventEmitter.prototype.listenerCount=listenerCount,EventEmitter.prototype.eventNames=function(){return this._eventsCount>0?ReflectOwnKeys(this._events):[]}},{}],102:[function(require,module,exports){var Buffer=require("safe-buffer").Buffer,MD5=require("md5.js");module.exports=function(password,salt,keyBits,ivLen){if(Buffer.isBuffer(password)||(password=Buffer.from(password,"binary")),salt&&(Buffer.isBuffer(salt)||(salt=Buffer.from(salt,"binary")),8!==salt.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var keyLen=keyBits/8,key=Buffer.alloc(keyLen),iv=Buffer.alloc(ivLen||0),tmp=Buffer.alloc(0);keyLen>0||ivLen>0;){var hash=new MD5;hash.update(tmp),hash.update(password),salt&&hash.update(salt),tmp=hash.digest();var used=0;if(keyLen>0){var keyStart=key.length-keyLen;used=Math.min(keyLen,tmp.length),tmp.copy(key,keyStart,0,used),keyLen-=used}if(used0){var ivStart=iv.length-ivLen,length=Math.min(ivLen,tmp.length-used);tmp.copy(iv,ivStart,used,used+length),ivLen-=length}}return tmp.fill(0),{key:key,iv:iv}}},{"md5.js":134,"safe-buffer":162}],103:[function(require,module,exports){"use strict";var Buffer=require("safe-buffer").Buffer,Transform=require("readable-stream").Transform;function HashBase(blockSize){Transform.call(this),this._block=Buffer.allocUnsafe(blockSize),this._blockSize=blockSize,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}require("inherits")(HashBase,Transform),HashBase.prototype._transform=function(chunk,encoding,callback){var error=null;try{this.update(chunk,encoding)}catch(err){error=err}callback(error)},HashBase.prototype._flush=function(callback){var error=null;try{this.push(this.digest())}catch(err){error=err}callback(error)},HashBase.prototype.update=function(data,encoding){if(function(val,prefix){if(!Buffer.isBuffer(val)&&"string"!=typeof val)throw new TypeError(prefix+" must be a string or a buffer")}(data,"Data"),this._finalized)throw new Error("Digest already called");Buffer.isBuffer(data)||(data=Buffer.from(data,encoding));for(var block=this._block,offset=0;this._blockOffset+data.length-offset>=this._blockSize;){for(var i=this._blockOffset;i0;++j)this._length[j]+=carry,(carry=this._length[j]/4294967296|0)>0&&(this._length[j]-=4294967296*carry);return this},HashBase.prototype._update=function(){throw new Error("_update is not implemented")},HashBase.prototype.digest=function(encoding){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var digest=this._digest();void 0!==encoding&&(digest=digest.toString(encoding)),this._block.fill(0),this._blockOffset=0;for(var i=0;i<4;++i)this._length[i]=0;return digest},HashBase.prototype._digest=function(){throw new Error("_digest is not implemented")},module.exports=HashBase},{inherits:133,"readable-stream":118,"safe-buffer":162}],104:[function(require,module,exports){arguments[4][48][0].apply(exports,arguments)},{dup:48}],105:[function(require,module,exports){arguments[4][49][0].apply(exports,arguments)},{"./_stream_readable":107,"./_stream_writable":109,_process:151,dup:49,inherits:133}],106:[function(require,module,exports){arguments[4][50][0].apply(exports,arguments)},{"./_stream_transform":108,dup:50,inherits:133}],107:[function(require,module,exports){arguments[4][51][0].apply(exports,arguments)},{"../errors":104,"./_stream_duplex":105,"./internal/streams/async_iterator":110,"./internal/streams/buffer_list":111,"./internal/streams/destroy":112,"./internal/streams/from":114,"./internal/streams/state":116,"./internal/streams/stream":117,_process:151,buffer:64,dup:51,events:101,inherits:133,"string_decoder/":187,util:20}],108:[function(require,module,exports){arguments[4][52][0].apply(exports,arguments)},{"../errors":104,"./_stream_duplex":105,dup:52,inherits:133}],109:[function(require,module,exports){arguments[4][53][0].apply(exports,arguments)},{"../errors":104,"./_stream_duplex":105,"./internal/streams/destroy":112,"./internal/streams/state":116,"./internal/streams/stream":117,_process:151,buffer:64,dup:53,inherits:133,"util-deprecate":188}],110:[function(require,module,exports){arguments[4][54][0].apply(exports,arguments)},{"./end-of-stream":113,_process:151,dup:54}],111:[function(require,module,exports){arguments[4][55][0].apply(exports,arguments)},{buffer:64,dup:55,util:20}],112:[function(require,module,exports){arguments[4][56][0].apply(exports,arguments)},{_process:151,dup:56}],113:[function(require,module,exports){arguments[4][57][0].apply(exports,arguments)},{"../../../errors":104,dup:57}],114:[function(require,module,exports){arguments[4][58][0].apply(exports,arguments)},{dup:58}],115:[function(require,module,exports){arguments[4][59][0].apply(exports,arguments)},{"../../../errors":104,"./end-of-stream":113,dup:59}],116:[function(require,module,exports){arguments[4][60][0].apply(exports,arguments)},{"../../../errors":104,dup:60}],117:[function(require,module,exports){arguments[4][61][0].apply(exports,arguments)},{dup:61,events:101}],118:[function(require,module,exports){arguments[4][62][0].apply(exports,arguments)},{"./lib/_stream_duplex.js":105,"./lib/_stream_passthrough.js":106,"./lib/_stream_readable.js":107,"./lib/_stream_transform.js":108,"./lib/_stream_writable.js":109,"./lib/internal/streams/end-of-stream.js":113,"./lib/internal/streams/pipeline.js":115,dup:62}],119:[function(require,module,exports){var hash=exports;hash.utils=require("./hash/utils"),hash.common=require("./hash/common"),hash.sha=require("./hash/sha"),hash.ripemd=require("./hash/ripemd"),hash.hmac=require("./hash/hmac"),hash.sha1=hash.sha.sha1,hash.sha256=hash.sha.sha256,hash.sha224=hash.sha.sha224,hash.sha384=hash.sha.sha384,hash.sha512=hash.sha.sha512,hash.ripemd160=hash.ripemd.ripemd160},{"./hash/common":120,"./hash/hmac":121,"./hash/ripemd":122,"./hash/sha":123,"./hash/utils":130}],120:[function(require,module,exports){"use strict";var utils=require("./utils"),assert=require("minimalistic-assert");function BlockHash(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}exports.BlockHash=BlockHash,BlockHash.prototype.update=function(msg,enc){if(msg=utils.toArray(msg,enc),this.pending?this.pending=this.pending.concat(msg):this.pending=msg,this.pendingTotal+=msg.length,this.pending.length>=this._delta8){var r=(msg=this.pending).length%this._delta8;this.pending=msg.slice(msg.length-r,msg.length),0===this.pending.length&&(this.pending=null),msg=utils.join32(msg,0,msg.length-r,this.endian);for(var i=0;i>>24&255,res[i++]=len>>>16&255,res[i++]=len>>>8&255,res[i++]=255&len}else for(res[i++]=255&len,res[i++]=len>>>8&255,res[i++]=len>>>16&255,res[i++]=len>>>24&255,res[i++]=0,res[i++]=0,res[i++]=0,res[i++]=0,t=8;tthis.blockSize&&(key=(new this.Hash).update(key).digest()),assert(key.length<=this.blockSize);for(var i=key.length;i>>3},exports.g1_256=function(x){return rotr32(x,17)^rotr32(x,19)^x>>>10}},{"../utils":130}],130:[function(require,module,exports){"use strict";var assert=require("minimalistic-assert"),inherits=require("inherits");function isSurrogatePair(msg,i){return 55296==(64512&msg.charCodeAt(i))&&(!(i<0||i+1>=msg.length)&&56320==(64512&msg.charCodeAt(i+1)))}function htonl(w){return(w>>>24|w>>>8&65280|w<<8&16711680|(255&w)<<24)>>>0}function zero2(word){return 1===word.length?"0"+word:word}function zero8(word){return 7===word.length?"0"+word:6===word.length?"00"+word:5===word.length?"000"+word:4===word.length?"0000"+word:3===word.length?"00000"+word:2===word.length?"000000"+word:1===word.length?"0000000"+word:word}exports.inherits=inherits,exports.toArray=function(msg,enc){if(Array.isArray(msg))return msg.slice();if(!msg)return[];var res=[];if("string"==typeof msg)if(enc){if("hex"===enc)for((msg=msg.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(msg="0"+msg),i=0;i>6|192,res[p++]=63&c|128):isSurrogatePair(msg,i)?(c=65536+((1023&c)<<10)+(1023&msg.charCodeAt(++i)),res[p++]=c>>18|240,res[p++]=c>>12&63|128,res[p++]=c>>6&63|128,res[p++]=63&c|128):(res[p++]=c>>12|224,res[p++]=c>>6&63|128,res[p++]=63&c|128)}else for(i=0;i>>0}return res},exports.split32=function(msg,endian){for(var res=new Array(4*msg.length),i=0,k=0;i>>24,res[k+1]=m>>>16&255,res[k+2]=m>>>8&255,res[k+3]=255&m):(res[k+3]=m>>>24,res[k+2]=m>>>16&255,res[k+1]=m>>>8&255,res[k]=255&m)}return res},exports.rotr32=function(w,b){return w>>>b|w<<32-b},exports.rotl32=function(w,b){return w<>>32-b},exports.sum32=function(a,b){return a+b>>>0},exports.sum32_3=function(a,b,c){return a+b+c>>>0},exports.sum32_4=function(a,b,c,d){return a+b+c+d>>>0},exports.sum32_5=function(a,b,c,d,e){return a+b+c+d+e>>>0},exports.sum64=function(buf,pos,ah,al){var bh=buf[pos],lo=al+buf[pos+1]>>>0,hi=(lo>>0,buf[pos+1]=lo},exports.sum64_hi=function(ah,al,bh,bl){return(al+bl>>>0>>0},exports.sum64_lo=function(ah,al,bh,bl){return al+bl>>>0},exports.sum64_4_hi=function(ah,al,bh,bl,ch,cl,dh,dl){var carry=0,lo=al;return carry+=(lo=lo+bl>>>0)>>0)>>0)>>0},exports.sum64_4_lo=function(ah,al,bh,bl,ch,cl,dh,dl){return al+bl+cl+dl>>>0},exports.sum64_5_hi=function(ah,al,bh,bl,ch,cl,dh,dl,eh,el){var carry=0,lo=al;return carry+=(lo=lo+bl>>>0)>>0)>>0)>>0)>>0},exports.sum64_5_lo=function(ah,al,bh,bl,ch,cl,dh,dl,eh,el){return al+bl+cl+dl+el>>>0},exports.rotr64_hi=function(ah,al,num){return(al<<32-num|ah>>>num)>>>0},exports.rotr64_lo=function(ah,al,num){return(ah<<32-num|al>>>num)>>>0},exports.shr64_hi=function(ah,al,num){return ah>>>num},exports.shr64_lo=function(ah,al,num){return(ah<<32-num|al>>>num)>>>0}},{inherits:133,"minimalistic-assert":137}],131:[function(require,module,exports){"use strict";var hash=require("hash.js"),utils=require("minimalistic-crypto-utils"),assert=require("minimalistic-assert");function HmacDRBG(options){if(!(this instanceof HmacDRBG))return new HmacDRBG(options);this.hash=options.hash,this.predResist=!!options.predResist,this.outLen=this.hash.outSize,this.minEntropy=options.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var entropy=utils.toArray(options.entropy,options.entropyEnc||"hex"),nonce=utils.toArray(options.nonce,options.nonceEnc||"hex"),pers=utils.toArray(options.pers,options.persEnc||"hex");assert(entropy.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(entropy,nonce,pers)}module.exports=HmacDRBG,HmacDRBG.prototype._init=function(entropy,nonce,pers){var seed=entropy.concat(nonce).concat(pers);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var i=0;i=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(entropy.concat(add||[])),this._reseed=1},HmacDRBG.prototype.generate=function(len,enc,add,addEnc){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof enc&&(addEnc=add,add=enc,enc=null),add&&(add=utils.toArray(add,addEnc||"hex"),this._update(add));for(var temp=[];temp.length */ -exports.read=function(buffer,offset,isLE,mLen,nBytes){var e,m,eLen=8*nBytes-mLen-1,eMax=(1<>1,nBits=-7,i=isLE?nBytes-1:0,d=isLE?-1:1,s=buffer[offset+i];for(i+=d,e=s&(1<<-nBits)-1,s>>=-nBits,nBits+=eLen;nBits>0;e=256*e+buffer[offset+i],i+=d,nBits-=8);for(m=e&(1<<-nBits)-1,e>>=-nBits,nBits+=mLen;nBits>0;m=256*m+buffer[offset+i],i+=d,nBits-=8);if(0===e)e=1-eBias;else{if(e===eMax)return m?NaN:1/0*(s?-1:1);m+=Math.pow(2,mLen),e-=eBias}return(s?-1:1)*m*Math.pow(2,e-mLen)},exports.write=function(buffer,value,offset,isLE,mLen,nBytes){var e,m,c,eLen=8*nBytes-mLen-1,eMax=(1<>1,rt=23===mLen?Math.pow(2,-24)-Math.pow(2,-77):0,i=isLE?0:nBytes-1,d=isLE?1:-1,s=value<0||0===value&&1/value<0?1:0;for(value=Math.abs(value),isNaN(value)||value===1/0?(m=isNaN(value)?1:0,e=eMax):(e=Math.floor(Math.log(value)/Math.LN2),value*(c=Math.pow(2,-e))<1&&(e--,c*=2),(value+=e+eBias>=1?rt/c:rt*Math.pow(2,1-eBias))*c>=2&&(e++,c/=2),e+eBias>=eMax?(m=0,e=eMax):e+eBias>=1?(m=(value*c-1)*Math.pow(2,mLen),e+=eBias):(m=value*Math.pow(2,eBias-1)*Math.pow(2,mLen),e=0));mLen>=8;buffer[offset+i]=255&m,i+=d,m/=256,mLen-=8);for(e=e<0;buffer[offset+i]=255&e,i+=d,e/=256,eLen-=8);buffer[offset+i-d]|=128*s}},{}],133:[function(require,module,exports){"function"==typeof Object.create?module.exports=function(ctor,superCtor){superCtor&&(ctor.super_=superCtor,ctor.prototype=Object.create(superCtor.prototype,{constructor:{value:ctor,enumerable:!1,writable:!0,configurable:!0}}))}:module.exports=function(ctor,superCtor){if(superCtor){ctor.super_=superCtor;var TempCtor=function(){};TempCtor.prototype=superCtor.prototype,ctor.prototype=new TempCtor,ctor.prototype.constructor=ctor}}},{}],134:[function(require,module,exports){"use strict";var inherits=require("inherits"),HashBase=require("hash-base"),Buffer=require("safe-buffer").Buffer,ARRAY16=new Array(16);function MD5(){HashBase.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function rotl(x,n){return x<>>32-n}function fnF(a,b,c,d,m,k,s){return rotl(a+(b&c|~b&d)+m+k|0,s)+b|0}function fnG(a,b,c,d,m,k,s){return rotl(a+(b&d|c&~d)+m+k|0,s)+b|0}function fnH(a,b,c,d,m,k,s){return rotl(a+(b^c^d)+m+k|0,s)+b|0}function fnI(a,b,c,d,m,k,s){return rotl(a+(c^(b|~d))+m+k|0,s)+b|0}inherits(MD5,HashBase),MD5.prototype._update=function(){for(var M=ARRAY16,i=0;i<16;++i)M[i]=this._block.readInt32LE(4*i);var a=this._a,b=this._b,c=this._c,d=this._d;a=fnF(a,b,c,d,M[0],3614090360,7),d=fnF(d,a,b,c,M[1],3905402710,12),c=fnF(c,d,a,b,M[2],606105819,17),b=fnF(b,c,d,a,M[3],3250441966,22),a=fnF(a,b,c,d,M[4],4118548399,7),d=fnF(d,a,b,c,M[5],1200080426,12),c=fnF(c,d,a,b,M[6],2821735955,17),b=fnF(b,c,d,a,M[7],4249261313,22),a=fnF(a,b,c,d,M[8],1770035416,7),d=fnF(d,a,b,c,M[9],2336552879,12),c=fnF(c,d,a,b,M[10],4294925233,17),b=fnF(b,c,d,a,M[11],2304563134,22),a=fnF(a,b,c,d,M[12],1804603682,7),d=fnF(d,a,b,c,M[13],4254626195,12),c=fnF(c,d,a,b,M[14],2792965006,17),a=fnG(a,b=fnF(b,c,d,a,M[15],1236535329,22),c,d,M[1],4129170786,5),d=fnG(d,a,b,c,M[6],3225465664,9),c=fnG(c,d,a,b,M[11],643717713,14),b=fnG(b,c,d,a,M[0],3921069994,20),a=fnG(a,b,c,d,M[5],3593408605,5),d=fnG(d,a,b,c,M[10],38016083,9),c=fnG(c,d,a,b,M[15],3634488961,14),b=fnG(b,c,d,a,M[4],3889429448,20),a=fnG(a,b,c,d,M[9],568446438,5),d=fnG(d,a,b,c,M[14],3275163606,9),c=fnG(c,d,a,b,M[3],4107603335,14),b=fnG(b,c,d,a,M[8],1163531501,20),a=fnG(a,b,c,d,M[13],2850285829,5),d=fnG(d,a,b,c,M[2],4243563512,9),c=fnG(c,d,a,b,M[7],1735328473,14),a=fnH(a,b=fnG(b,c,d,a,M[12],2368359562,20),c,d,M[5],4294588738,4),d=fnH(d,a,b,c,M[8],2272392833,11),c=fnH(c,d,a,b,M[11],1839030562,16),b=fnH(b,c,d,a,M[14],4259657740,23),a=fnH(a,b,c,d,M[1],2763975236,4),d=fnH(d,a,b,c,M[4],1272893353,11),c=fnH(c,d,a,b,M[7],4139469664,16),b=fnH(b,c,d,a,M[10],3200236656,23),a=fnH(a,b,c,d,M[13],681279174,4),d=fnH(d,a,b,c,M[0],3936430074,11),c=fnH(c,d,a,b,M[3],3572445317,16),b=fnH(b,c,d,a,M[6],76029189,23),a=fnH(a,b,c,d,M[9],3654602809,4),d=fnH(d,a,b,c,M[12],3873151461,11),c=fnH(c,d,a,b,M[15],530742520,16),a=fnI(a,b=fnH(b,c,d,a,M[2],3299628645,23),c,d,M[0],4096336452,6),d=fnI(d,a,b,c,M[7],1126891415,10),c=fnI(c,d,a,b,M[14],2878612391,15),b=fnI(b,c,d,a,M[5],4237533241,21),a=fnI(a,b,c,d,M[12],1700485571,6),d=fnI(d,a,b,c,M[3],2399980690,10),c=fnI(c,d,a,b,M[10],4293915773,15),b=fnI(b,c,d,a,M[1],2240044497,21),a=fnI(a,b,c,d,M[8],1873313359,6),d=fnI(d,a,b,c,M[15],4264355552,10),c=fnI(c,d,a,b,M[6],2734768916,15),b=fnI(b,c,d,a,M[13],1309151649,21),a=fnI(a,b,c,d,M[4],4149444226,6),d=fnI(d,a,b,c,M[11],3174756917,10),c=fnI(c,d,a,b,M[2],718787259,15),b=fnI(b,c,d,a,M[9],3951481745,21),this._a=this._a+a|0,this._b=this._b+b|0,this._c=this._c+c|0,this._d=this._d+d|0},MD5.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var buffer=Buffer.allocUnsafe(16);return buffer.writeInt32LE(this._a,0),buffer.writeInt32LE(this._b,4),buffer.writeInt32LE(this._c,8),buffer.writeInt32LE(this._d,12),buffer},module.exports=MD5},{"hash-base":103,inherits:133,"safe-buffer":162}],135:[function(require,module,exports){var bn=require("bn.js"),brorand=require("brorand");function MillerRabin(rand){this.rand=rand||new brorand.Rand}module.exports=MillerRabin,MillerRabin.create=function(rand){return new MillerRabin(rand)},MillerRabin.prototype._randbelow=function(n){var len=n.bitLength(),min_bytes=Math.ceil(len/8);do{var a=new bn(this.rand.generate(min_bytes))}while(a.cmp(n)>=0);return a},MillerRabin.prototype._randrange=function(start,stop){var size=stop.sub(start);return start.add(this._randbelow(size))},MillerRabin.prototype.test=function(n,k,cb){var len=n.bitLength(),red=bn.mont(n),rone=new bn(1).toRed(red);k||(k=Math.max(1,len/48|0));for(var n1=n.subn(1),s=0;!n1.testn(s);s++);for(var d=n.shrn(s),rn1=n1.toRed(red);k>0;k--){var a=this._randrange(new bn(2),n1);cb&&cb(a);var x=a.toRed(red).redPow(d);if(0!==x.cmp(rone)&&0!==x.cmp(rn1)){for(var i=1;i0;k--){var a=this._randrange(new bn(2),n1),g=n.gcd(a);if(0!==g.cmpn(1))return g;var x=a.toRed(red).redPow(d);if(0!==x.cmp(rone)&&0!==x.cmp(rn1)){for(var i=1;i>8,lo=255&c;hi?res.push(hi,lo):res.push(lo)}return res},utils.zero2=zero2,utils.toHex=toHex,utils.encode=function(arr,enc){return"hex"===enc?toHex(arr):arr}},{}],139:[function(require,module,exports){module.exports={"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}},{}],140:[function(require,module,exports){"use strict";var asn1=require("asn1.js");exports.certificate=require("./certificate");var RSAPrivateKey=asn1.define("RSAPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())}));exports.RSAPrivateKey=RSAPrivateKey;var RSAPublicKey=asn1.define("RSAPublicKey",(function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())}));exports.RSAPublicKey=RSAPublicKey;var PublicKey=asn1.define("SubjectPublicKeyInfo",(function(){this.seq().obj(this.key("algorithm").use(AlgorithmIdentifier),this.key("subjectPublicKey").bitstr())}));exports.PublicKey=PublicKey;var AlgorithmIdentifier=asn1.define("AlgorithmIdentifier",(function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())})),PrivateKeyInfo=asn1.define("PrivateKeyInfo",(function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(AlgorithmIdentifier),this.key("subjectPrivateKey").octstr())}));exports.PrivateKey=PrivateKeyInfo;var EncryptedPrivateKeyInfo=asn1.define("EncryptedPrivateKeyInfo",(function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())}));exports.EncryptedPrivateKey=EncryptedPrivateKeyInfo;var DSAPrivateKey=asn1.define("DSAPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())}));exports.DSAPrivateKey=DSAPrivateKey,exports.DSAparam=asn1.define("DSAparam",(function(){this.int()}));var ECPrivateKey=asn1.define("ECPrivateKey",(function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(ECParameters),this.key("publicKey").optional().explicit(1).bitstr())}));exports.ECPrivateKey=ECPrivateKey;var ECParameters=asn1.define("ECParameters",(function(){this.choice({namedCurve:this.objid()})}));exports.signature=asn1.define("signature",(function(){this.seq().obj(this.key("r").int(),this.key("s").int())}))},{"./certificate":141,"asn1.js":2}],141:[function(require,module,exports){"use strict";var asn=require("asn1.js"),Time=asn.define("Time",(function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})})),AttributeTypeValue=asn.define("AttributeTypeValue",(function(){this.seq().obj(this.key("type").objid(),this.key("value").any())})),AlgorithmIdentifier=asn.define("AlgorithmIdentifier",(function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())})),SubjectPublicKeyInfo=asn.define("SubjectPublicKeyInfo",(function(){this.seq().obj(this.key("algorithm").use(AlgorithmIdentifier),this.key("subjectPublicKey").bitstr())})),RelativeDistinguishedName=asn.define("RelativeDistinguishedName",(function(){this.setof(AttributeTypeValue)})),RDNSequence=asn.define("RDNSequence",(function(){this.seqof(RelativeDistinguishedName)})),Name=asn.define("Name",(function(){this.choice({rdnSequence:this.use(RDNSequence)})})),Validity=asn.define("Validity",(function(){this.seq().obj(this.key("notBefore").use(Time),this.key("notAfter").use(Time))})),Extension=asn.define("Extension",(function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())})),TBSCertificate=asn.define("TBSCertificate",(function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(AlgorithmIdentifier),this.key("issuer").use(Name),this.key("validity").use(Validity),this.key("subject").use(Name),this.key("subjectPublicKeyInfo").use(SubjectPublicKeyInfo),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(Extension).optional())})),X509Certificate=asn.define("X509Certificate",(function(){this.seq().obj(this.key("tbsCertificate").use(TBSCertificate),this.key("signatureAlgorithm").use(AlgorithmIdentifier),this.key("signatureValue").bitstr())}));module.exports=X509Certificate},{"asn1.js":2}],142:[function(require,module,exports){var findProc=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,startRegex=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,fullRegex=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,evp=require("evp_bytestokey"),ciphers=require("browserify-aes"),Buffer=require("safe-buffer").Buffer;module.exports=function(okey,password){var decrypted,key=okey.toString(),match=key.match(findProc);if(match){var suite="aes"+match[1],iv=Buffer.from(match[2],"hex"),cipherText=Buffer.from(match[3].replace(/[\r\n]/g,""),"base64"),cipherKey=evp(password,iv.slice(0,8),parseInt(match[1],10)).key,out=[],cipher=ciphers.createDecipheriv(suite,cipherKey,iv);out.push(cipher.update(cipherText)),out.push(cipher.final()),decrypted=Buffer.concat(out)}else{var match2=key.match(fullRegex);decrypted=Buffer.from(match2[2].replace(/[\r\n]/g,""),"base64")}return{tag:key.match(startRegex)[1],data:decrypted}}},{"browserify-aes":23,evp_bytestokey:102,"safe-buffer":162}],143:[function(require,module,exports){var asn1=require("./asn1"),aesid=require("./aesid.json"),fixProc=require("./fixProc"),ciphers=require("browserify-aes"),compat=require("pbkdf2"),Buffer=require("safe-buffer").Buffer;function parseKeys(buffer){var password;"object"!=typeof buffer||Buffer.isBuffer(buffer)||(password=buffer.passphrase,buffer=buffer.key),"string"==typeof buffer&&(buffer=Buffer.from(buffer));var subtype,ndata,stripped=fixProc(buffer,password),type=stripped.tag,data=stripped.data;switch(type){case"CERTIFICATE":ndata=asn1.certificate.decode(data,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(ndata||(ndata=asn1.PublicKey.decode(data,"der")),subtype=ndata.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return asn1.RSAPublicKey.decode(ndata.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return ndata.subjectPrivateKey=ndata.subjectPublicKey,{type:"ec",data:ndata};case"1.2.840.10040.4.1":return ndata.algorithm.params.pub_key=asn1.DSAparam.decode(ndata.subjectPublicKey.data,"der"),{type:"dsa",data:ndata.algorithm.params};default:throw new Error("unknown key id "+subtype)}case"ENCRYPTED PRIVATE KEY":data=function(data,password){var salt=data.algorithm.decrypt.kde.kdeparams.salt,iters=parseInt(data.algorithm.decrypt.kde.kdeparams.iters.toString(),10),algo=aesid[data.algorithm.decrypt.cipher.algo.join(".")],iv=data.algorithm.decrypt.cipher.iv,cipherText=data.subjectPrivateKey,keylen=parseInt(algo.split("-")[1],10)/8,key=compat.pbkdf2Sync(password,salt,iters,keylen,"sha1"),cipher=ciphers.createDecipheriv(algo,key,iv),out=[];return out.push(cipher.update(cipherText)),out.push(cipher.final()),Buffer.concat(out)}(data=asn1.EncryptedPrivateKey.decode(data,"der"),password);case"PRIVATE KEY":switch(subtype=(ndata=asn1.PrivateKey.decode(data,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return asn1.RSAPrivateKey.decode(ndata.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:ndata.algorithm.curve,privateKey:asn1.ECPrivateKey.decode(ndata.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return ndata.algorithm.params.priv_key=asn1.DSAparam.decode(ndata.subjectPrivateKey,"der"),{type:"dsa",params:ndata.algorithm.params};default:throw new Error("unknown key id "+subtype)}case"RSA PUBLIC KEY":return asn1.RSAPublicKey.decode(data,"der");case"RSA PRIVATE KEY":return asn1.RSAPrivateKey.decode(data,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:asn1.DSAPrivateKey.decode(data,"der")};case"EC PRIVATE KEY":return{curve:(data=asn1.ECPrivateKey.decode(data,"der")).parameters.value,privateKey:data.privateKey};default:throw new Error("unknown key type "+type)}}module.exports=parseKeys,parseKeys.signature=asn1.signature},{"./aesid.json":139,"./asn1":140,"./fixProc":142,"browserify-aes":23,pbkdf2:145,"safe-buffer":162}],144:[function(require,module,exports){(function(process){(function(){"use strict";function assertPath(path){if("string"!=typeof path)throw new TypeError("Path must be a string. Received "+JSON.stringify(path))}function normalizeStringPosix(path,allowAboveRoot){for(var code,res="",lastSegmentLength=0,lastSlash=-1,dots=0,i=0;i<=path.length;++i){if(i2){var lastSlashIndex=res.lastIndexOf("/");if(lastSlashIndex!==res.length-1){-1===lastSlashIndex?(res="",lastSegmentLength=0):lastSegmentLength=(res=res.slice(0,lastSlashIndex)).length-1-res.lastIndexOf("/"),lastSlash=i,dots=0;continue}}else if(2===res.length||1===res.length){res="",lastSegmentLength=0,lastSlash=i,dots=0;continue}allowAboveRoot&&(res.length>0?res+="/..":res="..",lastSegmentLength=2)}else res.length>0?res+="/"+path.slice(lastSlash+1,i):res=path.slice(lastSlash+1,i),lastSegmentLength=i-lastSlash-1;lastSlash=i,dots=0}else 46===code&&-1!==dots?++dots:dots=-1}return res}var posix={resolve:function(){for(var cwd,resolvedPath="",resolvedAbsolute=!1,i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path;i>=0?path=arguments[i]:(void 0===cwd&&(cwd=process.cwd()),path=cwd),assertPath(path),0!==path.length&&(resolvedPath=path+"/"+resolvedPath,resolvedAbsolute=47===path.charCodeAt(0))}return resolvedPath=normalizeStringPosix(resolvedPath,!resolvedAbsolute),resolvedAbsolute?resolvedPath.length>0?"/"+resolvedPath:"/":resolvedPath.length>0?resolvedPath:"."},normalize:function(path){if(assertPath(path),0===path.length)return".";var isAbsolute=47===path.charCodeAt(0),trailingSeparator=47===path.charCodeAt(path.length-1);return 0!==(path=normalizeStringPosix(path,!isAbsolute)).length||isAbsolute||(path="."),path.length>0&&trailingSeparator&&(path+="/"),isAbsolute?"/"+path:path},isAbsolute:function(path){return assertPath(path),path.length>0&&47===path.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var joined,i=0;i0&&(void 0===joined?joined=arg:joined+="/"+arg)}return void 0===joined?".":posix.normalize(joined)},relative:function(from,to){if(assertPath(from),assertPath(to),from===to)return"";if((from=posix.resolve(from))===(to=posix.resolve(to)))return"";for(var fromStart=1;fromStartlength){if(47===to.charCodeAt(toStart+i))return to.slice(toStart+i+1);if(0===i)return to.slice(toStart+i)}else fromLen>length&&(47===from.charCodeAt(fromStart+i)?lastCommonSep=i:0===i&&(lastCommonSep=0));break}var fromCode=from.charCodeAt(fromStart+i);if(fromCode!==to.charCodeAt(toStart+i))break;47===fromCode&&(lastCommonSep=i)}var out="";for(i=fromStart+lastCommonSep+1;i<=fromEnd;++i)i!==fromEnd&&47!==from.charCodeAt(i)||(0===out.length?out+="..":out+="/..");return out.length>0?out+to.slice(toStart+lastCommonSep):(toStart+=lastCommonSep,47===to.charCodeAt(toStart)&&++toStart,to.slice(toStart))},_makeLong:function(path){return path},dirname:function(path){if(assertPath(path),0===path.length)return".";for(var code=path.charCodeAt(0),hasRoot=47===code,end=-1,matchedSlash=!0,i=path.length-1;i>=1;--i)if(47===(code=path.charCodeAt(i))){if(!matchedSlash){end=i;break}}else matchedSlash=!1;return-1===end?hasRoot?"/":".":hasRoot&&1===end?"//":path.slice(0,end)},basename:function(path,ext){if(void 0!==ext&&"string"!=typeof ext)throw new TypeError('"ext" argument must be a string');assertPath(path);var i,start=0,end=-1,matchedSlash=!0;if(void 0!==ext&&ext.length>0&&ext.length<=path.length){if(ext.length===path.length&&ext===path)return"";var extIdx=ext.length-1,firstNonSlashEnd=-1;for(i=path.length-1;i>=0;--i){var code=path.charCodeAt(i);if(47===code){if(!matchedSlash){start=i+1;break}}else-1===firstNonSlashEnd&&(matchedSlash=!1,firstNonSlashEnd=i+1),extIdx>=0&&(code===ext.charCodeAt(extIdx)?-1==--extIdx&&(end=i):(extIdx=-1,end=firstNonSlashEnd))}return start===end?end=firstNonSlashEnd:-1===end&&(end=path.length),path.slice(start,end)}for(i=path.length-1;i>=0;--i)if(47===path.charCodeAt(i)){if(!matchedSlash){start=i+1;break}}else-1===end&&(matchedSlash=!1,end=i+1);return-1===end?"":path.slice(start,end)},extname:function(path){assertPath(path);for(var startDot=-1,startPart=0,end=-1,matchedSlash=!0,preDotState=0,i=path.length-1;i>=0;--i){var code=path.charCodeAt(i);if(47!==code)-1===end&&(matchedSlash=!1,end=i+1),46===code?-1===startDot?startDot=i:1!==preDotState&&(preDotState=1):-1!==startDot&&(preDotState=-1);else if(!matchedSlash){startPart=i+1;break}}return-1===startDot||-1===end||0===preDotState||1===preDotState&&startDot===end-1&&startDot===startPart+1?"":path.slice(startDot,end)},format:function(pathObject){if(null===pathObject||"object"!=typeof pathObject)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof pathObject);return function(sep,pathObject){var dir=pathObject.dir||pathObject.root,base=pathObject.base||(pathObject.name||"")+(pathObject.ext||"");return dir?dir===pathObject.root?dir+base:dir+sep+base:base}("/",pathObject)},parse:function(path){assertPath(path);var ret={root:"",dir:"",base:"",ext:"",name:""};if(0===path.length)return ret;var start,code=path.charCodeAt(0),isAbsolute=47===code;isAbsolute?(ret.root="/",start=1):start=0;for(var startDot=-1,startPart=0,end=-1,matchedSlash=!0,i=path.length-1,preDotState=0;i>=start;--i)if(47!==(code=path.charCodeAt(i)))-1===end&&(matchedSlash=!1,end=i+1),46===code?-1===startDot?startDot=i:1!==preDotState&&(preDotState=1):-1!==startDot&&(preDotState=-1);else if(!matchedSlash){startPart=i+1;break}return-1===startDot||-1===end||0===preDotState||1===preDotState&&startDot===end-1&&startDot===startPart+1?-1!==end&&(ret.base=ret.name=0===startPart&&isAbsolute?path.slice(1,end):path.slice(startPart,end)):(0===startPart&&isAbsolute?(ret.name=path.slice(1,startDot),ret.base=path.slice(1,end)):(ret.name=path.slice(startPart,startDot),ret.base=path.slice(startPart,end)),ret.ext=path.slice(startDot,end)),startPart>0?ret.dir=path.slice(0,startPart-1):isAbsolute&&(ret.dir="/"),ret},sep:"/",delimiter:":",win32:null,posix:null};posix.posix=posix,module.exports=posix}).call(this)}).call(this,require("_process"))},{_process:151}],145:[function(require,module,exports){exports.pbkdf2=require("./lib/async"),exports.pbkdf2Sync=require("./lib/sync")},{"./lib/async":146,"./lib/sync":149}],146:[function(require,module,exports){(function(global){(function(){var ZERO_BUF,nextTick,Buffer=require("safe-buffer").Buffer,checkParameters=require("./precondition"),defaultEncoding=require("./default-encoding"),sync=require("./sync"),toBuffer=require("./to-buffer"),subtle=global.crypto&&global.crypto.subtle,toBrowser={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},checks=[];function getNextTick(){return nextTick||(nextTick=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function browserPbkdf2(password,salt,iterations,length,algo){return subtle.importKey("raw",password,{name:"PBKDF2"},!1,["deriveBits"]).then((function(key){return subtle.deriveBits({name:"PBKDF2",salt:salt,iterations:iterations,hash:{name:algo}},key,length<<3)})).then((function(res){return Buffer.from(res)}))}module.exports=function(password,salt,iterations,keylen,digest,callback){"function"==typeof digest&&(callback=digest,digest=void 0);var algo=toBrowser[(digest=digest||"sha1").toLowerCase()];if(algo&&"function"==typeof global.Promise){if(checkParameters(iterations,keylen),password=toBuffer(password,defaultEncoding,"Password"),salt=toBuffer(salt,defaultEncoding,"Salt"),"function"!=typeof callback)throw new Error("No callback provided to pbkdf2");!function(promise,callback){promise.then((function(out){getNextTick()((function(){callback(null,out)}))}),(function(e){getNextTick()((function(){callback(e)}))}))}(function(algo){if(global.process&&!global.process.browser)return Promise.resolve(!1);if(!subtle||!subtle.importKey||!subtle.deriveBits)return Promise.resolve(!1);if(void 0!==checks[algo])return checks[algo];var prom=browserPbkdf2(ZERO_BUF=ZERO_BUF||Buffer.alloc(8),ZERO_BUF,10,128,algo).then((function(){return!0})).catch((function(){return!1}));return checks[algo]=prom,prom}(algo).then((function(resp){return resp?browserPbkdf2(password,salt,iterations,keylen,algo):sync(password,salt,iterations,keylen,digest)})),callback)}else getNextTick()((function(){var out;try{out=sync(password,salt,iterations,keylen,digest)}catch(e){return callback(e)}callback(null,out)}))}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./default-encoding":147,"./precondition":148,"./sync":149,"./to-buffer":150,"safe-buffer":162}],147:[function(require,module,exports){(function(process,global){(function(){var defaultEncoding;if(global.process&&global.process.browser)defaultEncoding="utf-8";else if(global.process&&global.process.version){defaultEncoding=parseInt(process.version.split(".")[0].slice(1),10)>=6?"utf-8":"binary"}else defaultEncoding="utf-8";module.exports=defaultEncoding}).call(this)}).call(this,require("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:151}],148:[function(require,module,exports){var MAX_ALLOC=Math.pow(2,30)-1;module.exports=function(iterations,keylen){if("number"!=typeof iterations)throw new TypeError("Iterations not a number");if(iterations<0)throw new TypeError("Bad iterations");if("number"!=typeof keylen)throw new TypeError("Key length not a number");if(keylen<0||keylen>MAX_ALLOC||keylen!=keylen)throw new TypeError("Bad key length")}},{}],149:[function(require,module,exports){var md5=require("create-hash/md5"),RIPEMD160=require("ripemd160"),sha=require("sha.js"),Buffer=require("safe-buffer").Buffer,checkParameters=require("./precondition"),defaultEncoding=require("./default-encoding"),toBuffer=require("./to-buffer"),ZEROS=Buffer.alloc(128),sizes={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function Hmac(alg,key,saltLen){var hash=function(alg){function shaFunc(data){return sha(alg).update(data).digest()}function rmd160Func(data){return(new RIPEMD160).update(data).digest()}return"rmd160"===alg||"ripemd160"===alg?rmd160Func:"md5"===alg?md5:shaFunc}(alg),blocksize="sha512"===alg||"sha384"===alg?128:64;key.length>blocksize?key=hash(key):key.length1)for(var i=1;ik||new BN(enc).cmp(key.modulus)>=0)throw new Error("decryption error");msg=reverse?withPublic(new BN(enc),key):crt(enc,key);var zBuffer=Buffer.alloc(k-msg.length);if(msg=Buffer.concat([zBuffer,msg],k),4===padding)return function(key,msg){var k=key.modulus.byteLength(),iHash=createHash("sha1").update(Buffer.alloc(0)).digest(),hLen=iHash.length;if(0!==msg[0])throw new Error("decryption error");var maskedSeed=msg.slice(1,hLen+1),maskedDb=msg.slice(hLen+1),seed=xor(maskedSeed,mgf(maskedDb,hLen)),db=xor(maskedDb,mgf(seed,k-hLen-1));if(function(a,b){a=Buffer.from(a),b=Buffer.from(b);var dif=0,len=a.length;a.length!==b.length&&(dif++,len=Math.min(a.length,b.length));var i=-1;for(;++i=msg.length){status++;break}var ps=msg.slice(2,i-1);("0002"!==p1.toString("hex")&&!reverse||"0001"!==p1.toString("hex")&&reverse)&&status++;ps.length<8&&status++;if(status)throw new Error("decryption error");return msg.slice(i)}(0,msg,reverse);if(3===padding)return msg;throw new Error("unknown padding")}},{"./mgf":153,"./withPublic":157,"./xor":158,"bn.js":154,"browserify-rsa":41,"create-hash":68,"parse-asn1":143,"safe-buffer":162}],156:[function(require,module,exports){var parseKeys=require("parse-asn1"),randomBytes=require("randombytes"),createHash=require("create-hash"),mgf=require("./mgf"),xor=require("./xor"),BN=require("bn.js"),withPublic=require("./withPublic"),crt=require("browserify-rsa"),Buffer=require("safe-buffer").Buffer;module.exports=function(publicKey,msg,reverse){var padding;padding=publicKey.padding?publicKey.padding:reverse?1:4;var paddedMsg,key=parseKeys(publicKey);if(4===padding)paddedMsg=function(key,msg){var k=key.modulus.byteLength(),mLen=msg.length,iHash=createHash("sha1").update(Buffer.alloc(0)).digest(),hLen=iHash.length,hLen2=2*hLen;if(mLen>k-hLen2-2)throw new Error("message too long");var ps=Buffer.alloc(k-mLen-hLen2-2),dblen=k-hLen-1,seed=randomBytes(hLen),maskedDb=xor(Buffer.concat([iHash,ps,Buffer.alloc(1,1),msg],dblen),mgf(seed,dblen)),maskedSeed=xor(seed,mgf(maskedDb,hLen));return new BN(Buffer.concat([Buffer.alloc(1),maskedSeed,maskedDb],k))}(key,msg);else if(1===padding)paddedMsg=function(key,msg,reverse){var ps,mLen=msg.length,k=key.modulus.byteLength();if(mLen>k-11)throw new Error("message too long");ps=reverse?Buffer.alloc(k-mLen-3,255):function(len){var num,out=Buffer.allocUnsafe(len),i=0,cache=randomBytes(2*len),cur=0;for(;i=0)throw new Error("data too long for modulus")}return reverse?crt(paddedMsg,key):withPublic(paddedMsg,key)}},{"./mgf":153,"./withPublic":157,"./xor":158,"bn.js":154,"browserify-rsa":41,"create-hash":68,"parse-asn1":143,randombytes:159,"safe-buffer":162}],157:[function(require,module,exports){var BN=require("bn.js"),Buffer=require("safe-buffer").Buffer;module.exports=function(paddedMsg,key){return Buffer.from(paddedMsg.toRed(BN.mont(key.modulus)).redPow(new BN(key.publicExponent)).fromRed().toArray())}},{"bn.js":154,"safe-buffer":162}],158:[function(require,module,exports){module.exports=function(a,b){for(var len=a.length,i=-1;++i4294967295)throw new RangeError("requested too many random bytes");var bytes=Buffer.allocUnsafe(size);if(size>0)if(size>65536)for(var generated=0;generatedkMaxUint32||offset<0)throw new TypeError("offset must be a uint32");if(offset>kBufferMaxLength||offset>length)throw new RangeError("offset out of range")}function assertSize(size,offset,length){if("number"!=typeof size||size!=size)throw new TypeError("size must be a number");if(size>kMaxUint32||size<0)throw new TypeError("size must be a uint32");if(size+offset>length||size>kBufferMaxLength)throw new RangeError("buffer too small")}function actualFill(buf,offset,size,cb){if(process.browser){var ourBuf=buf.buffer,uint=new Uint8Array(ourBuf,offset,size);return crypto.getRandomValues(uint),cb?void process.nextTick((function(){cb(null,buf)})):buf}if(!cb)return randombytes(size).copy(buf,offset),buf;randombytes(size,(function(err,bytes){if(err)return cb(err);bytes.copy(buf,offset),cb(null,buf)}))}crypto&&crypto.getRandomValues||!process.browser?(exports.randomFill=function(buf,offset,size,cb){if(!(Buffer.isBuffer(buf)||buf instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof offset)cb=offset,offset=0,size=buf.length;else if("function"==typeof size)cb=size,size=buf.length-offset;else if("function"!=typeof cb)throw new TypeError('"cb" argument must be a function');return assertOffset(offset,buf.length),assertSize(size,offset,buf.length),actualFill(buf,offset,size,cb)},exports.randomFillSync=function(buf,offset,size){void 0===offset&&(offset=0);if(!(Buffer.isBuffer(buf)||buf instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');assertOffset(offset,buf.length),void 0===size&&(size=buf.length-offset);return assertSize(size,offset,buf.length),actualFill(buf,offset,size)}):(exports.randomFill=oldBrowser,exports.randomFillSync=oldBrowser)}).call(this)}).call(this,require("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:151,randombytes:159,"safe-buffer":162}],161:[function(require,module,exports){"use strict";var Buffer=require("buffer").Buffer,inherits=require("inherits"),HashBase=require("hash-base"),ARRAY16=new Array(16),zl=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],zr=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],sl=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],sr=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11],hl=[0,1518500249,1859775393,2400959708,2840853838],hr=[1352829926,1548603684,1836072691,2053994217,0];function RIPEMD160(){HashBase.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function rotl(x,n){return x<>>32-n}function fn1(a,b,c,d,e,m,k,s){return rotl(a+(b^c^d)+m+k|0,s)+e|0}function fn2(a,b,c,d,e,m,k,s){return rotl(a+(b&c|~b&d)+m+k|0,s)+e|0}function fn3(a,b,c,d,e,m,k,s){return rotl(a+((b|~c)^d)+m+k|0,s)+e|0}function fn4(a,b,c,d,e,m,k,s){return rotl(a+(b&d|c&~d)+m+k|0,s)+e|0}function fn5(a,b,c,d,e,m,k,s){return rotl(a+(b^(c|~d))+m+k|0,s)+e|0}inherits(RIPEMD160,HashBase),RIPEMD160.prototype._update=function(){for(var words=ARRAY16,j=0;j<16;++j)words[j]=this._block.readInt32LE(4*j);for(var al=0|this._a,bl=0|this._b,cl=0|this._c,dl=0|this._d,el=0|this._e,ar=0|this._a,br=0|this._b,cr=0|this._c,dr=0|this._d,er=0|this._e,i=0;i<80;i+=1){var tl,tr;i<16?(tl=fn1(al,bl,cl,dl,el,words[zl[i]],hl[0],sl[i]),tr=fn5(ar,br,cr,dr,er,words[zr[i]],hr[0],sr[i])):i<32?(tl=fn2(al,bl,cl,dl,el,words[zl[i]],hl[1],sl[i]),tr=fn4(ar,br,cr,dr,er,words[zr[i]],hr[1],sr[i])):i<48?(tl=fn3(al,bl,cl,dl,el,words[zl[i]],hl[2],sl[i]),tr=fn3(ar,br,cr,dr,er,words[zr[i]],hr[2],sr[i])):i<64?(tl=fn4(al,bl,cl,dl,el,words[zl[i]],hl[3],sl[i]),tr=fn2(ar,br,cr,dr,er,words[zr[i]],hr[3],sr[i])):(tl=fn5(al,bl,cl,dl,el,words[zl[i]],hl[4],sl[i]),tr=fn1(ar,br,cr,dr,er,words[zr[i]],hr[4],sr[i])),al=el,el=dl,dl=rotl(cl,10),cl=bl,bl=tl,ar=er,er=dr,dr=rotl(cr,10),cr=br,br=tr}var t=this._b+cl+dr|0;this._b=this._c+dl+er|0,this._c=this._d+el+ar|0,this._d=this._e+al+br|0,this._e=this._a+bl+cr|0,this._a=t},RIPEMD160.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var buffer=Buffer.alloc?Buffer.alloc(20):new Buffer(20);return buffer.writeInt32LE(this._a,0),buffer.writeInt32LE(this._b,4),buffer.writeInt32LE(this._c,8),buffer.writeInt32LE(this._d,12),buffer.writeInt32LE(this._e,16),buffer},module.exports=RIPEMD160},{buffer:64,"hash-base":103,inherits:133}],162:[function(require,module,exports){ -/*! safe-buffer. MIT License. Feross Aboukhadijeh */ -var buffer=require("buffer"),Buffer=buffer.Buffer;function copyProps(src,dst){for(var key in src)dst[key]=src[key]}function SafeBuffer(arg,encodingOrOffset,length){return Buffer(arg,encodingOrOffset,length)}Buffer.from&&Buffer.alloc&&Buffer.allocUnsafe&&Buffer.allocUnsafeSlow?module.exports=buffer:(copyProps(buffer,exports),exports.Buffer=SafeBuffer),SafeBuffer.prototype=Object.create(Buffer.prototype),copyProps(Buffer,SafeBuffer),SafeBuffer.from=function(arg,encodingOrOffset,length){if("number"==typeof arg)throw new TypeError("Argument must not be a number");return Buffer(arg,encodingOrOffset,length)},SafeBuffer.alloc=function(size,fill,encoding){if("number"!=typeof size)throw new TypeError("Argument must be a number");var buf=Buffer(size);return void 0!==fill?"string"==typeof encoding?buf.fill(fill,encoding):buf.fill(fill):buf.fill(0),buf},SafeBuffer.allocUnsafe=function(size){if("number"!=typeof size)throw new TypeError("Argument must be a number");return Buffer(size)},SafeBuffer.allocUnsafeSlow=function(size){if("number"!=typeof size)throw new TypeError("Argument must be a number");return buffer.SlowBuffer(size)}},{buffer:64}],163:[function(require,module,exports){(function(process){(function(){"use strict";var key,buffer=require("buffer"),Buffer=buffer.Buffer,safer={};for(key in buffer)buffer.hasOwnProperty(key)&&"SlowBuffer"!==key&&"Buffer"!==key&&(safer[key]=buffer[key]);var Safer=safer.Buffer={};for(key in Buffer)Buffer.hasOwnProperty(key)&&"allocUnsafe"!==key&&"allocUnsafeSlow"!==key&&(Safer[key]=Buffer[key]);if(safer.Buffer.prototype=Buffer.prototype,Safer.from&&Safer.from!==Uint8Array.from||(Safer.from=function(value,encodingOrOffset,length){if("number"==typeof value)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof value);if(value&&void 0===value.length)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof value);return Buffer(value,encodingOrOffset,length)}),Safer.alloc||(Safer.alloc=function(size,fill,encoding){if("number"!=typeof size)throw new TypeError('The "size" argument must be of type number. Received type '+typeof size);if(size<0||size>=2*(1<<30))throw new RangeError('The value "'+size+'" is invalid for option "size"');var buf=Buffer(size);return fill&&0!==fill.length?"string"==typeof encoding?buf.fill(fill,encoding):buf.fill(fill):buf.fill(0),buf}),!safer.kStringMaxLength)try{safer.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(e){}safer.constants||(safer.constants={MAX_LENGTH:safer.kMaxLength},safer.kStringMaxLength&&(safer.constants.MAX_STRING_LENGTH=safer.kStringMaxLength)),module.exports=safer}).call(this)}).call(this,require("_process"))},{_process:151,buffer:64}],164:[function(require,module,exports){var Buffer=require("safe-buffer").Buffer;function Hash(blockSize,finalSize){this._block=Buffer.alloc(blockSize),this._finalSize=finalSize,this._blockSize=blockSize,this._len=0}Hash.prototype.update=function(data,enc){"string"==typeof data&&(enc=enc||"utf8",data=Buffer.from(data,enc));for(var block=this._block,blockSize=this._blockSize,length=data.length,accum=this._len,offset=0;offset=this._finalSize&&(this._update(this._block),this._block.fill(0));var bits=8*this._len;if(bits<=4294967295)this._block.writeUInt32BE(bits,this._blockSize-4);else{var lowBits=(4294967295&bits)>>>0,highBits=(bits-lowBits)/4294967296;this._block.writeUInt32BE(highBits,this._blockSize-8),this._block.writeUInt32BE(lowBits,this._blockSize-4)}this._update(this._block);var hash=this._hash();return enc?hash.toString(enc):hash},Hash.prototype._update=function(){throw new Error("_update must be implemented by subclass")},module.exports=Hash},{"safe-buffer":162}],165:[function(require,module,exports){(exports=module.exports=function(algorithm){algorithm=algorithm.toLowerCase();var Algorithm=exports[algorithm];if(!Algorithm)throw new Error(algorithm+" is not supported (we accept pull requests)");return new Algorithm}).sha=require("./sha"),exports.sha1=require("./sha1"),exports.sha224=require("./sha224"),exports.sha256=require("./sha256"),exports.sha384=require("./sha384"),exports.sha512=require("./sha512")},{"./sha":166,"./sha1":167,"./sha224":168,"./sha256":169,"./sha384":170,"./sha512":171}],166:[function(require,module,exports){var inherits=require("inherits"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,K=[1518500249,1859775393,-1894007588,-899497514],W=new Array(80);function Sha(){this.init(),this._w=W,Hash.call(this,64,56)}function rotl30(num){return num<<30|num>>>2}function ft(s,b,c,d){return 0===s?b&c|~b&d:2===s?b&c|b&d|c&d:b^c^d}inherits(Sha,Hash),Sha.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},Sha.prototype._update=function(M){for(var num,W=this._w,a=0|this._a,b=0|this._b,c=0|this._c,d=0|this._d,e=0|this._e,i=0;i<16;++i)W[i]=M.readInt32BE(4*i);for(;i<80;++i)W[i]=W[i-3]^W[i-8]^W[i-14]^W[i-16];for(var j=0;j<80;++j){var s=~~(j/20),t=0|((num=a)<<5|num>>>27)+ft(s,b,c,d)+e+W[j]+K[s];e=d,d=c,c=rotl30(b),b=a,a=t}this._a=a+this._a|0,this._b=b+this._b|0,this._c=c+this._c|0,this._d=d+this._d|0,this._e=e+this._e|0},Sha.prototype._hash=function(){var H=Buffer.allocUnsafe(20);return H.writeInt32BE(0|this._a,0),H.writeInt32BE(0|this._b,4),H.writeInt32BE(0|this._c,8),H.writeInt32BE(0|this._d,12),H.writeInt32BE(0|this._e,16),H},module.exports=Sha},{"./hash":164,inherits:133,"safe-buffer":162}],167:[function(require,module,exports){var inherits=require("inherits"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,K=[1518500249,1859775393,-1894007588,-899497514],W=new Array(80);function Sha1(){this.init(),this._w=W,Hash.call(this,64,56)}function rotl5(num){return num<<5|num>>>27}function rotl30(num){return num<<30|num>>>2}function ft(s,b,c,d){return 0===s?b&c|~b&d:2===s?b&c|b&d|c&d:b^c^d}inherits(Sha1,Hash),Sha1.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},Sha1.prototype._update=function(M){for(var num,W=this._w,a=0|this._a,b=0|this._b,c=0|this._c,d=0|this._d,e=0|this._e,i=0;i<16;++i)W[i]=M.readInt32BE(4*i);for(;i<80;++i)W[i]=(num=W[i-3]^W[i-8]^W[i-14]^W[i-16])<<1|num>>>31;for(var j=0;j<80;++j){var s=~~(j/20),t=rotl5(a)+ft(s,b,c,d)+e+W[j]+K[s]|0;e=d,d=c,c=rotl30(b),b=a,a=t}this._a=a+this._a|0,this._b=b+this._b|0,this._c=c+this._c|0,this._d=d+this._d|0,this._e=e+this._e|0},Sha1.prototype._hash=function(){var H=Buffer.allocUnsafe(20);return H.writeInt32BE(0|this._a,0),H.writeInt32BE(0|this._b,4),H.writeInt32BE(0|this._c,8),H.writeInt32BE(0|this._d,12),H.writeInt32BE(0|this._e,16),H},module.exports=Sha1},{"./hash":164,inherits:133,"safe-buffer":162}],168:[function(require,module,exports){var inherits=require("inherits"),Sha256=require("./sha256"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,W=new Array(64);function Sha224(){this.init(),this._w=W,Hash.call(this,64,56)}inherits(Sha224,Sha256),Sha224.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},Sha224.prototype._hash=function(){var H=Buffer.allocUnsafe(28);return H.writeInt32BE(this._a,0),H.writeInt32BE(this._b,4),H.writeInt32BE(this._c,8),H.writeInt32BE(this._d,12),H.writeInt32BE(this._e,16),H.writeInt32BE(this._f,20),H.writeInt32BE(this._g,24),H},module.exports=Sha224},{"./hash":164,"./sha256":169,inherits:133,"safe-buffer":162}],169:[function(require,module,exports){var inherits=require("inherits"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,K=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],W=new Array(64);function Sha256(){this.init(),this._w=W,Hash.call(this,64,56)}function ch(x,y,z){return z^x&(y^z)}function maj(x,y,z){return x&y|z&(x|y)}function sigma0(x){return(x>>>2|x<<30)^(x>>>13|x<<19)^(x>>>22|x<<10)}function sigma1(x){return(x>>>6|x<<26)^(x>>>11|x<<21)^(x>>>25|x<<7)}function gamma0(x){return(x>>>7|x<<25)^(x>>>18|x<<14)^x>>>3}inherits(Sha256,Hash),Sha256.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},Sha256.prototype._update=function(M){for(var x,W=this._w,a=0|this._a,b=0|this._b,c=0|this._c,d=0|this._d,e=0|this._e,f=0|this._f,g=0|this._g,h=0|this._h,i=0;i<16;++i)W[i]=M.readInt32BE(4*i);for(;i<64;++i)W[i]=0|(((x=W[i-2])>>>17|x<<15)^(x>>>19|x<<13)^x>>>10)+W[i-7]+gamma0(W[i-15])+W[i-16];for(var j=0;j<64;++j){var T1=h+sigma1(e)+ch(e,f,g)+K[j]+W[j]|0,T2=sigma0(a)+maj(a,b,c)|0;h=g,g=f,f=e,e=d+T1|0,d=c,c=b,b=a,a=T1+T2|0}this._a=a+this._a|0,this._b=b+this._b|0,this._c=c+this._c|0,this._d=d+this._d|0,this._e=e+this._e|0,this._f=f+this._f|0,this._g=g+this._g|0,this._h=h+this._h|0},Sha256.prototype._hash=function(){var H=Buffer.allocUnsafe(32);return H.writeInt32BE(this._a,0),H.writeInt32BE(this._b,4),H.writeInt32BE(this._c,8),H.writeInt32BE(this._d,12),H.writeInt32BE(this._e,16),H.writeInt32BE(this._f,20),H.writeInt32BE(this._g,24),H.writeInt32BE(this._h,28),H},module.exports=Sha256},{"./hash":164,inherits:133,"safe-buffer":162}],170:[function(require,module,exports){var inherits=require("inherits"),SHA512=require("./sha512"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,W=new Array(160);function Sha384(){this.init(),this._w=W,Hash.call(this,128,112)}inherits(Sha384,SHA512),Sha384.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},Sha384.prototype._hash=function(){var H=Buffer.allocUnsafe(48);function writeInt64BE(h,l,offset){H.writeInt32BE(h,offset),H.writeInt32BE(l,offset+4)}return writeInt64BE(this._ah,this._al,0),writeInt64BE(this._bh,this._bl,8),writeInt64BE(this._ch,this._cl,16),writeInt64BE(this._dh,this._dl,24),writeInt64BE(this._eh,this._el,32),writeInt64BE(this._fh,this._fl,40),H},module.exports=Sha384},{"./hash":164,"./sha512":171,inherits:133,"safe-buffer":162}],171:[function(require,module,exports){var inherits=require("inherits"),Hash=require("./hash"),Buffer=require("safe-buffer").Buffer,K=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],W=new Array(160);function Sha512(){this.init(),this._w=W,Hash.call(this,128,112)}function Ch(x,y,z){return z^x&(y^z)}function maj(x,y,z){return x&y|z&(x|y)}function sigma0(x,xl){return(x>>>28|xl<<4)^(xl>>>2|x<<30)^(xl>>>7|x<<25)}function sigma1(x,xl){return(x>>>14|xl<<18)^(x>>>18|xl<<14)^(xl>>>9|x<<23)}function Gamma0(x,xl){return(x>>>1|xl<<31)^(x>>>8|xl<<24)^x>>>7}function Gamma0l(x,xl){return(x>>>1|xl<<31)^(x>>>8|xl<<24)^(x>>>7|xl<<25)}function Gamma1(x,xl){return(x>>>19|xl<<13)^(xl>>>29|x<<3)^x>>>6}function Gamma1l(x,xl){return(x>>>19|xl<<13)^(xl>>>29|x<<3)^(x>>>6|xl<<26)}function getCarry(a,b){return a>>>0>>0?1:0}inherits(Sha512,Hash),Sha512.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},Sha512.prototype._update=function(M){for(var W=this._w,ah=0|this._ah,bh=0|this._bh,ch=0|this._ch,dh=0|this._dh,eh=0|this._eh,fh=0|this._fh,gh=0|this._gh,hh=0|this._hh,al=0|this._al,bl=0|this._bl,cl=0|this._cl,dl=0|this._dl,el=0|this._el,fl=0|this._fl,gl=0|this._gl,hl=0|this._hl,i=0;i<32;i+=2)W[i]=M.readInt32BE(4*i),W[i+1]=M.readInt32BE(4*i+4);for(;i<160;i+=2){var xh=W[i-30],xl=W[i-30+1],gamma0=Gamma0(xh,xl),gamma0l=Gamma0l(xl,xh),gamma1=Gamma1(xh=W[i-4],xl=W[i-4+1]),gamma1l=Gamma1l(xl,xh),Wi7h=W[i-14],Wi7l=W[i-14+1],Wi16h=W[i-32],Wi16l=W[i-32+1],Wil=gamma0l+Wi7l|0,Wih=gamma0+Wi7h+getCarry(Wil,gamma0l)|0;Wih=(Wih=Wih+gamma1+getCarry(Wil=Wil+gamma1l|0,gamma1l)|0)+Wi16h+getCarry(Wil=Wil+Wi16l|0,Wi16l)|0,W[i]=Wih,W[i+1]=Wil}for(var j=0;j<160;j+=2){Wih=W[j],Wil=W[j+1];var majh=maj(ah,bh,ch),majl=maj(al,bl,cl),sigma0h=sigma0(ah,al),sigma0l=sigma0(al,ah),sigma1h=sigma1(eh,el),sigma1l=sigma1(el,eh),Kih=K[j],Kil=K[j+1],chh=Ch(eh,fh,gh),chl=Ch(el,fl,gl),t1l=hl+sigma1l|0,t1h=hh+sigma1h+getCarry(t1l,hl)|0;t1h=(t1h=(t1h=t1h+chh+getCarry(t1l=t1l+chl|0,chl)|0)+Kih+getCarry(t1l=t1l+Kil|0,Kil)|0)+Wih+getCarry(t1l=t1l+Wil|0,Wil)|0;var t2l=sigma0l+majl|0,t2h=sigma0h+majh+getCarry(t2l,sigma0l)|0;hh=gh,hl=gl,gh=fh,gl=fl,fh=eh,fl=el,eh=dh+t1h+getCarry(el=dl+t1l|0,dl)|0,dh=ch,dl=cl,ch=bh,cl=bl,bh=ah,bl=al,ah=t1h+t2h+getCarry(al=t1l+t2l|0,t1l)|0}this._al=this._al+al|0,this._bl=this._bl+bl|0,this._cl=this._cl+cl|0,this._dl=this._dl+dl|0,this._el=this._el+el|0,this._fl=this._fl+fl|0,this._gl=this._gl+gl|0,this._hl=this._hl+hl|0,this._ah=this._ah+ah+getCarry(this._al,al)|0,this._bh=this._bh+bh+getCarry(this._bl,bl)|0,this._ch=this._ch+ch+getCarry(this._cl,cl)|0,this._dh=this._dh+dh+getCarry(this._dl,dl)|0,this._eh=this._eh+eh+getCarry(this._el,el)|0,this._fh=this._fh+fh+getCarry(this._fl,fl)|0,this._gh=this._gh+gh+getCarry(this._gl,gl)|0,this._hh=this._hh+hh+getCarry(this._hl,hl)|0},Sha512.prototype._hash=function(){var H=Buffer.allocUnsafe(64);function writeInt64BE(h,l,offset){H.writeInt32BE(h,offset),H.writeInt32BE(l,offset+4)}return writeInt64BE(this._ah,this._al,0),writeInt64BE(this._bh,this._bl,8),writeInt64BE(this._ch,this._cl,16),writeInt64BE(this._dh,this._dl,24),writeInt64BE(this._eh,this._el,32),writeInt64BE(this._fh,this._fl,40),writeInt64BE(this._gh,this._gl,48),writeInt64BE(this._hh,this._hl,56),H},module.exports=Sha512},{"./hash":164,inherits:133,"safe-buffer":162}],172:[function(require,module,exports){module.exports=Stream;var EE=require("events").EventEmitter;function Stream(){EE.call(this)}require("inherits")(Stream,EE),Stream.Readable=require("readable-stream/lib/_stream_readable.js"),Stream.Writable=require("readable-stream/lib/_stream_writable.js"),Stream.Duplex=require("readable-stream/lib/_stream_duplex.js"),Stream.Transform=require("readable-stream/lib/_stream_transform.js"),Stream.PassThrough=require("readable-stream/lib/_stream_passthrough.js"),Stream.finished=require("readable-stream/lib/internal/streams/end-of-stream.js"),Stream.pipeline=require("readable-stream/lib/internal/streams/pipeline.js"),Stream.Stream=Stream,Stream.prototype.pipe=function(dest,options){var source=this;function ondata(chunk){dest.writable&&!1===dest.write(chunk)&&source.pause&&source.pause()}function ondrain(){source.readable&&source.resume&&source.resume()}source.on("data",ondata),dest.on("drain",ondrain),dest._isStdio||options&&!1===options.end||(source.on("end",onend),source.on("close",onclose));var didOnEnd=!1;function onend(){didOnEnd||(didOnEnd=!0,dest.end())}function onclose(){didOnEnd||(didOnEnd=!0,"function"==typeof dest.destroy&&dest.destroy())}function onerror(er){if(cleanup(),0===EE.listenerCount(this,"error"))throw er}function cleanup(){source.removeListener("data",ondata),dest.removeListener("drain",ondrain),source.removeListener("end",onend),source.removeListener("close",onclose),source.removeListener("error",onerror),dest.removeListener("error",onerror),source.removeListener("end",cleanup),source.removeListener("close",cleanup),dest.removeListener("close",cleanup)}return source.on("error",onerror),dest.on("error",onerror),source.on("end",cleanup),source.on("close",cleanup),dest.on("close",cleanup),dest.emit("pipe",source),dest}},{events:101,inherits:133,"readable-stream/lib/_stream_duplex.js":174,"readable-stream/lib/_stream_passthrough.js":175,"readable-stream/lib/_stream_readable.js":176,"readable-stream/lib/_stream_transform.js":177,"readable-stream/lib/_stream_writable.js":178,"readable-stream/lib/internal/streams/end-of-stream.js":182,"readable-stream/lib/internal/streams/pipeline.js":184}],173:[function(require,module,exports){arguments[4][48][0].apply(exports,arguments)},{dup:48}],174:[function(require,module,exports){arguments[4][49][0].apply(exports,arguments)},{"./_stream_readable":176,"./_stream_writable":178,_process:151,dup:49,inherits:133}],175:[function(require,module,exports){arguments[4][50][0].apply(exports,arguments)},{"./_stream_transform":177,dup:50,inherits:133}],176:[function(require,module,exports){arguments[4][51][0].apply(exports,arguments)},{"../errors":173,"./_stream_duplex":174,"./internal/streams/async_iterator":179,"./internal/streams/buffer_list":180,"./internal/streams/destroy":181,"./internal/streams/from":183,"./internal/streams/state":185,"./internal/streams/stream":186,_process:151,buffer:64,dup:51,events:101,inherits:133,"string_decoder/":187,util:20}],177:[function(require,module,exports){arguments[4][52][0].apply(exports,arguments)},{"../errors":173,"./_stream_duplex":174,dup:52,inherits:133}],178:[function(require,module,exports){arguments[4][53][0].apply(exports,arguments)},{"../errors":173,"./_stream_duplex":174,"./internal/streams/destroy":181,"./internal/streams/state":185,"./internal/streams/stream":186,_process:151,buffer:64,dup:53,inherits:133,"util-deprecate":188}],179:[function(require,module,exports){arguments[4][54][0].apply(exports,arguments)},{"./end-of-stream":182,_process:151,dup:54}],180:[function(require,module,exports){arguments[4][55][0].apply(exports,arguments)},{buffer:64,dup:55,util:20}],181:[function(require,module,exports){arguments[4][56][0].apply(exports,arguments)},{_process:151,dup:56}],182:[function(require,module,exports){arguments[4][57][0].apply(exports,arguments)},{"../../../errors":173,dup:57}],183:[function(require,module,exports){arguments[4][58][0].apply(exports,arguments)},{dup:58}],184:[function(require,module,exports){arguments[4][59][0].apply(exports,arguments)},{"../../../errors":173,"./end-of-stream":182,dup:59}],185:[function(require,module,exports){arguments[4][60][0].apply(exports,arguments)},{"../../../errors":173,dup:60}],186:[function(require,module,exports){arguments[4][61][0].apply(exports,arguments)},{dup:61,events:101}],187:[function(require,module,exports){"use strict";var Buffer=require("safe-buffer").Buffer,isEncoding=Buffer.isEncoding||function(encoding){switch((encoding=""+encoding)&&encoding.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function StringDecoder(encoding){var nb;switch(this.encoding=function(enc){var nenc=function(enc){if(!enc)return"utf8";for(var retried;;)switch(enc){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return enc;default:if(retried)return;enc=(""+enc).toLowerCase(),retried=!0}}(enc);if("string"!=typeof nenc&&(Buffer.isEncoding===isEncoding||!isEncoding(enc)))throw new Error("Unknown encoding: "+enc);return nenc||enc}(encoding),this.encoding){case"utf16le":this.text=utf16Text,this.end=utf16End,nb=4;break;case"utf8":this.fillLast=utf8FillLast,nb=4;break;case"base64":this.text=base64Text,this.end=base64End,nb=3;break;default:return this.write=simpleWrite,void(this.end=simpleEnd)}this.lastNeed=0,this.lastTotal=0,this.lastChar=Buffer.allocUnsafe(nb)}function utf8CheckByte(byte){return byte<=127?0:byte>>5==6?2:byte>>4==14?3:byte>>3==30?4:byte>>6==2?-1:-2}function utf8FillLast(buf){var p=this.lastTotal-this.lastNeed,r=function(self,buf,p){if(128!=(192&buf[0]))return self.lastNeed=0,"�";if(self.lastNeed>1&&buf.length>1){if(128!=(192&buf[1]))return self.lastNeed=1,"�";if(self.lastNeed>2&&buf.length>2&&128!=(192&buf[2]))return self.lastNeed=2,"�"}}(this,buf);return void 0!==r?r:this.lastNeed<=buf.length?(buf.copy(this.lastChar,p,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(buf.copy(this.lastChar,p,0,buf.length),void(this.lastNeed-=buf.length))}function utf16Text(buf,i){if((buf.length-i)%2==0){var r=buf.toString("utf16le",i);if(r){var c=r.charCodeAt(r.length-1);if(c>=55296&&c<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=buf[buf.length-2],this.lastChar[1]=buf[buf.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=buf[buf.length-1],buf.toString("utf16le",i,buf.length-1)}function utf16End(buf){var r=buf&&buf.length?this.write(buf):"";if(this.lastNeed){var end=this.lastTotal-this.lastNeed;return r+this.lastChar.toString("utf16le",0,end)}return r}function base64Text(buf,i){var n=(buf.length-i)%3;return 0===n?buf.toString("base64",i):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=buf[buf.length-1]:(this.lastChar[0]=buf[buf.length-2],this.lastChar[1]=buf[buf.length-1]),buf.toString("base64",i,buf.length-n))}function base64End(buf){var r=buf&&buf.length?this.write(buf):"";return this.lastNeed?r+this.lastChar.toString("base64",0,3-this.lastNeed):r}function simpleWrite(buf){return buf.toString(this.encoding)}function simpleEnd(buf){return buf&&buf.length?this.write(buf):""}exports.StringDecoder=StringDecoder,StringDecoder.prototype.write=function(buf){if(0===buf.length)return"";var r,i;if(this.lastNeed){if(void 0===(r=this.fillLast(buf)))return"";i=this.lastNeed,this.lastNeed=0}else i=0;return i=0)return nb>0&&(self.lastNeed=nb-1),nb;if(--j=0)return nb>0&&(self.lastNeed=nb-2),nb;if(--j=0)return nb>0&&(2===nb?nb=0:self.lastNeed=nb-3),nb;return 0}(this,buf,i);if(!this.lastNeed)return buf.toString("utf8",i);this.lastTotal=total;var end=buf.length-(total-this.lastNeed);return buf.copy(this.lastChar,0,end),buf.toString("utf8",i,end)},StringDecoder.prototype.fillLast=function(buf){if(this.lastNeed<=buf.length)return buf.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);buf.copy(this.lastChar,this.lastTotal-this.lastNeed,0,buf.length),this.lastNeed-=buf.length}},{"safe-buffer":162}],188:[function(require,module,exports){(function(global){(function(){function config(name){try{if(!global.localStorage)return!1}catch(_){return!1}var val=global.localStorage[name];return null!=val&&"true"===String(val).toLowerCase()}module.exports=function(fn,msg){if(config("noDeprecation"))return fn;var warned=!1;return function(){if(!warned){if(config("throwDeprecation"))throw new Error(msg);config("traceDeprecation")?console.trace(msg):console.warn(msg),warned=!0}return fn.apply(this,arguments)}}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],189:[function(require,module,exports){"use strict";const createVCD=require("../out/vcd.js"),webVcdParser=require("../lib/web-vcd-parser.js");window.getVcdStream=async function(){const wasm=await createVCD();return await webVcdParser(wasm)}},{"../lib/web-vcd-parser.js":191,"../out/vcd.js":192}],190:[function(require,module,exports){"use strict";module.exports=(info,cmd,str)=>{switch(str=str.trim(),cmd){case 1:info.comment=str;break;case 2:info.date=str;break;case 3:((info,str)=>{const[type,name]=str.split(/\s+/),ero={kind:"scope",type:type,name:name,body:[]};info.stack[info.stack.length-1].body.push(ero),info.stack.push(ero)})(info,str);break;case 4:info.timescale=str;break;case 5:(info=>{info.stack.pop()})(info);break;case 6:((info,str)=>{const eroj=str.split(/\s+/),ero={kind:"var",type:eroj[0],size:parseInt(eroj[1]),link:eroj[2],name:eroj.slice(3).join("")};{const m=ero.name.match("^(?\\w+)\\["+(ero.size-1)+":0]$");m&&(ero.name=m.groups.name)}info.stack[info.stack.length-1].body.push(ero)})(info,str);break;case 7:info.version=str;break;default:console.log([cmd,str])}}},{}],191:[function(require,module,exports){"use strict";const stream=require("stream"),EventEmitter=require("events").EventEmitter,commandHandler=require("./command-handler.js");function h8ToBn(HEAPU8,start,len){if(0===len)return 0n;let str="";const fin=start+8*len;for(let i=start;i{const lib=(wasm=>{const c={};let bindCallback;const getString=(name,len)=>{let string="";const end=name+len;for(let i=name;i{const name=getString(eventName,eventNameLength);if(cmd>=14&&cmd<=28)ee[1](name,time,cmd);else{const bigValue=h8ToBn(wasm.HEAPU8,value,valueWords),bigMask=h8ToBn(wasm.HEAPU8,mask,maskWords);ee[1](name,time,cmd,bigValue,bigMask)}};return bindCallback=()=>{boundSet=wasm.addFunction((function(name,len,type,v0,v1){let prop=getString(name,len);switch(type){case 0:boundInfo[prop]=v0;break;case 1:boundInfo[prop]=getString(v0,v1);break;case 2:case 3:case 4:break;case 5:commandHandler(boundInfo,v0,prop);break;default:throw new Error}}),"viiiii"),boundGet=wasm.addFunction((function(name,len){return getString(name,len)}),"iii"),boundEE0=wasm.addFunction((function(name,len){ee[0](getString(name,len))}),"vii"),boundEE1=wasm.addFunction(onEE1,"viijiiiii")},{start:async()=>{((c,wasm)=>{const w=wasm.cwrap;c.execute=w("execute","number",["number","number","number","number","number","array","number"]),c.init=w("init","number",["number","number","number","number"]),c.getTime=w("getTime","number",["number"]),c.setTrigger=w("setTrigger","number",["number","string"])})(c,wasm),bindCallback()},c:c,init:(cb0,cb1,info)=>(boundInfo=info,ee[0]=cb0,ee[1]=cb1,context=c.init(boundEE0,boundEE1,boundSet,boundGet),context),execute:(ctx,cb0,cb1,info,chunk)=>(boundInfo=info,ee[0]=cb0,ee[1]=cb1,c.execute(ctx,boundEE0,boundEE1,boundSet,boundGet,chunk,chunk.length)),setTrigger:(ctx,triggerString)=>c.setTrigger(ctx,triggerString),getTime:ctx=>BigInt(c.getTime(ctx))}})(wasm);await lib.start();const wires={kind:"scope",type:".",name:".",body:[]},info={stack:[wires],wires:wires},s=new stream.Writable,lifemit=s.emit.bind(s),triee=new EventEmitter,triemit=triee.emit.bind(triee);let triemit2=triemit;const cxt=lib.init(lifemit,triemit,info);return s._write=function(chunk,encoding,callback){const err=lib.execute(cxt,lifemit,triemit2,info,chunk);err&&console.log(err),callback()},s.change={on:(id,fn)=>{triemit2=triemit,triee.on(id,fn);const triggerString=triee.eventNames().join(" ")+" ";lib.setTrigger(cxt,triggerString)},any:fn=>{triemit2=fn,lib.setTrigger(cxt,"\0")}},s.info=info,s.getTime=()=>lib.getTime(cxt),s.start=lib.start,s}},{"./command-handler.js":190,events:101,stream:172}],192:[function(require,module,exports){(function(process,Buffer,__filename,__argument0,__argument1,__argument2,__argument3,__dirname){(function(){var _scriptDir,Module=(_scriptDir="undefined"!=typeof document&&document.currentScript?document.currentScript.src:void 0,void 0!==__filename&&(_scriptDir=_scriptDir||__filename),function(Module={}){var readyPromiseResolve,readyPromiseReject;(Module=void 0!==Module?Module:{}).ready=new Promise((function(resolve,reject){readyPromiseResolve=resolve,readyPromiseReject=reject}));var read_,readAsync,readBinary,moduleOverrides=Object.assign({},Module),thisProgram="./this.program",quit_=(status,toThrow)=>{throw toThrow},ENVIRONMENT_IS_WEB="object"==typeof window,ENVIRONMENT_IS_WORKER="function"==typeof importScripts,ENVIRONMENT_IS_NODE="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,scriptDirectory="";if(ENVIRONMENT_IS_NODE){var fs=require("fs"),nodePath=require("path");scriptDirectory=ENVIRONMENT_IS_WORKER?nodePath.dirname(scriptDirectory)+"/":__dirname+"/",read_=(filename,binary)=>(filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename),fs.readFileSync(filename,binary?void 0:"utf8")),readBinary=filename=>{var ret=read_(filename,!0);return ret.buffer||(ret=new Uint8Array(ret)),ret},readAsync=(filename,onload,onerror)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename),fs.readFile(filename,(function(err,data){err?onerror(err):onload(data.buffer)}))},process.argv.length>1&&(thisProgram=process.argv[1].replace(/\\/g,"/")),process.argv.slice(2),process.on("uncaughtException",(function(ex){if(!(ex instanceof ExitStatus))throw ex})),process.version.match(/^v(\d+)\./)[1]<15&&process.on("unhandledRejection",(function(reason){throw reason})),quit_=(status,toThrow)=>{if(keepRuntimeAlive())throw process.exitCode=status,toThrow;var e;(e=toThrow)instanceof ExitStatus||err("exiting due to exception: "+e),process.exit(status)},Module.inspect=function(){return"[Emscripten Module object]"}}else(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)&&(ENVIRONMENT_IS_WORKER?scriptDirectory=self.location.href:"undefined"!=typeof document&&document.currentScript&&(scriptDirectory=document.currentScript.src),_scriptDir&&(scriptDirectory=_scriptDir),scriptDirectory=0!==scriptDirectory.indexOf("blob:")?scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1):"",read_=url=>{var xhr=new XMLHttpRequest;return xhr.open("GET",url,!1),xhr.send(null),xhr.responseText},ENVIRONMENT_IS_WORKER&&(readBinary=url=>{var xhr=new XMLHttpRequest;return xhr.open("GET",url,!1),xhr.responseType="arraybuffer",xhr.send(null),new Uint8Array(xhr.response)}),readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,!0),xhr.responseType="arraybuffer",xhr.onload=()=>{200==xhr.status||0==xhr.status&&xhr.response?onload(xhr.response):onerror()},xhr.onerror=onerror,xhr.send(null)});var wasmBinary,out=Module.print||console.log.bind(console),err=Module.printErr||console.warn.bind(console);Object.assign(Module,moduleOverrides),moduleOverrides=null,Module.arguments&&Module.arguments,Module.thisProgram&&(thisProgram=Module.thisProgram),Module.quit&&(quit_=Module.quit),Module.wasmBinary&&(wasmBinary=Module.wasmBinary);var wasmMemory,noExitRuntime=Module.noExitRuntime||!0;"object"!=typeof WebAssembly&&abort("no native wasm support detected");var EXITSTATUS,HEAP8,HEAPU8,HEAP16,HEAP32,HEAPU32,HEAPF32,HEAP64,HEAPF64,wasmTable,ABORT=!1,UTF8Decoder="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0;function UTF8ArrayToString(heapOrArray,idx,maxBytesToRead){for(var endIdx=idx+maxBytesToRead,endPtr=idx;heapOrArray[endPtr]&&!(endPtr>=endIdx);)++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder)return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr));for(var str="";idx>10,56320|1023&ch)}}else str+=String.fromCharCode((31&u0)<<6|u1)}else str+=String.fromCharCode(u0)}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;for(var startIdx=outIdx,endIdx=outIdx+maxBytesToWrite-1,i=0;i=55296&&u<=57343&&(u=65536+((1023&u)<<10)|1023&str.charCodeAt(++i)),u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6,heap[outIdx++]=128|63&u}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12,heap[outIdx++]=128|u>>6&63,heap[outIdx++]=128|63&u}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18,heap[outIdx++]=128|u>>12&63,heap[outIdx++]=128|u>>6&63,heap[outIdx++]=128|63&u}}return heap[outIdx]=0,outIdx-startIdx}function lengthBytesUTF8(str){for(var len=0,i=0;i=55296&&c<=57343?(len+=4,++i):len+=3}return len}function updateMemoryViews(){var b=wasmMemory.buffer;Module.HEAP8=HEAP8=new Int8Array(b),Module.HEAP16=HEAP16=new Int16Array(b),Module.HEAP32=HEAP32=new Int32Array(b),Module.HEAPU8=HEAPU8=new Uint8Array(b),Module.HEAPU16=new Uint16Array(b),Module.HEAPU32=HEAPU32=new Uint32Array(b),Module.HEAPF32=HEAPF32=new Float32Array(b),Module.HEAPF64=HEAPF64=new Float64Array(b),Module.HEAP64=HEAP64=new BigInt64Array(b),Module.HEAPU64=new BigUint64Array(b)}var __ATPRERUN__=[],__ATINIT__=[],__ATMAIN__=[],__ATPOSTRUN__=[];function keepRuntimeAlive(){return noExitRuntime}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0,runDependencyWatcher=null,dependenciesFulfilled=null;function addRunDependency(id){runDependencies++,Module.monitorRunDependencies&&Module.monitorRunDependencies(runDependencies)}function removeRunDependency(id){if(runDependencies--,Module.monitorRunDependencies&&Module.monitorRunDependencies(runDependencies),0==runDependencies&&(null!==runDependencyWatcher&&(clearInterval(runDependencyWatcher),runDependencyWatcher=null),dependenciesFulfilled)){var callback=dependenciesFulfilled;dependenciesFulfilled=null,callback()}}function abort(what){Module.onAbort&&Module.onAbort(what),err(what="Aborted("+what+")"),ABORT=!0,EXITSTATUS=1,what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);throw readyPromiseReject(e),e}var wasmBinaryFile,path,tempDouble,tempI64,dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary)return new Uint8Array(wasmBinary);if(readBinary)return readBinary(file);throw"both async and sync fetching of the wasm failed"}catch(err){abort(err)}}function ExitStatus(status){this.name="ExitStatus",this.message="Program terminated with exit("+status+")",this.status=status}function callRuntimeCallbacks(callbacks){for(;callbacks.length>0;)callbacks.shift()(Module)}function emscripten_realloc_buffer(size){var b=wasmMemory.buffer;try{return wasmMemory.grow(size-b.byteLength+65535>>>16),updateMemoryViews(),1}catch(e){}}isDataURI(wasmBinaryFile="vcd.wasm")||(path=wasmBinaryFile,wasmBinaryFile=Module.locateFile?Module.locateFile(path,scriptDirectory):scriptDirectory+path);var ENV={};function getEnvStrings(){if(!getEnvStrings.strings){var env={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:thisProgram||"./this.program"};for(var x in ENV)void 0===ENV[x]?delete env[x]:env[x]=ENV[x];var strings=[];for(var x in env)strings.push(x+"="+env[x]);getEnvStrings.strings=strings}return getEnvStrings.strings}var PATH={isAbs:path=>"/"===path.charAt(0),splitPath:filename=>/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/.exec(filename).slice(1),normalizeArray:(parts,allowAboveRoot)=>{for(var up=0,i=parts.length-1;i>=0;i--){var last=parts[i];"."===last?parts.splice(i,1):".."===last?(parts.splice(i,1),up++):up&&(parts.splice(i,1),up--)}if(allowAboveRoot)for(;up;up--)parts.unshift("..");return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash="/"===path.substr(-1);return(path=PATH.normalizeArray(path.split("/").filter((p=>!!p)),!isAbsolute).join("/"))||isAbsolute||(path="."),path&&trailingSlash&&(path+="/"),(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];return root||dir?(dir&&(dir=dir.substr(0,dir.length-1)),root+dir):"."},basename:path=>{if("/"===path)return"/";var lastSlash=(path=(path=PATH.normalize(path)).replace(/\/$/,"")).lastIndexOf("/");return-1===lastSlash?path:path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments);return PATH.normalize(paths.join("/"))},join2:(l,r)=>PATH.normalize(l+"/"+r)},PATH_FS={resolve:function(){for(var resolvedPath="",resolvedAbsolute=!1,i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if("string"!=typeof path)throw new TypeError("Arguments to path.resolve must be strings");if(!path)return"";resolvedPath=path+"/"+resolvedPath,resolvedAbsolute=PATH.isAbs(path)}return(resolvedAbsolute?"/":"")+(resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter((p=>!!p)),!resolvedAbsolute).join("/"))||"."},relative:(from,to)=>{function trim(arr){for(var start=0;start=0&&""===arr[end];end--);return start>end?[]:arr.slice(start,end-start+1)}from=PATH_FS.resolve(from).substr(1),to=PATH_FS.resolve(to).substr(1);for(var fromParts=trim(from.split("/")),toParts=trim(to.split("/")),length=Math.min(fromParts.length,toParts.length),samePartsLength=length,i=0;i0?length:lengthBytesUTF8(stringy)+1,u8array=new Array(len),numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);return dontAddNull&&(u8array.length=numBytesWritten),u8array}var TTY={ttys:[],init:function(){},shutdown:function(){},register:function(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops},FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open:function(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty)throw new FS.ErrnoError(43);stream.tty=tty,stream.seekable=!1},close:function(stream){stream.tty.ops.fsync(stream.tty)},fsync:function(stream){stream.tty.ops.fsync(stream.tty)},read:function(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char)throw new FS.ErrnoError(60);for(var bytesRead=0,i=0;i0?buf.slice(0,bytesRead).toString("utf-8"):null}else"undefined"!=typeof window&&"function"==typeof window.prompt?null!==(result=window.prompt("Input: "))&&(result+="\n"):"function"==typeof readline&&null!==(result=readline())&&(result+="\n");if(!result)return null;tty.input=intArrayFromString(result,!0)}return tty.input.shift()},put_char:function(tty,val){null===val||10===val?(out(UTF8ArrayToString(tty.output,0)),tty.output=[]):0!=val&&tty.output.push(val)},fsync:function(tty){tty.output&&tty.output.length>0&&(out(UTF8ArrayToString(tty.output,0)),tty.output=[])}},default_tty1_ops:{put_char:function(tty,val){null===val||10===val?(err(UTF8ArrayToString(tty.output,0)),tty.output=[]):0!=val&&tty.output.push(val)},fsync:function(tty){tty.output&&tty.output.length>0&&(err(UTF8ArrayToString(tty.output,0)),tty.output=[])}}};function mmapAlloc(size){abort()}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16895,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode))throw new FS.ErrnoError(63);MEMFS.ops_table||(MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}});var node=FS.createNode(parent,name,mode,dev);return FS.isDir(node.mode)?(node.node_ops=MEMFS.ops_table.dir.node,node.stream_ops=MEMFS.ops_table.dir.stream,node.contents={}):FS.isFile(node.mode)?(node.node_ops=MEMFS.ops_table.file.node,node.stream_ops=MEMFS.ops_table.file.stream,node.usedBytes=0,node.contents=null):FS.isLink(node.mode)?(node.node_ops=MEMFS.ops_table.link.node,node.stream_ops=MEMFS.ops_table.link.stream):FS.isChrdev(node.mode)&&(node.node_ops=MEMFS.ops_table.chrdev.node,node.stream_ops=MEMFS.ops_table.chrdev.stream),node.timestamp=Date.now(),parent&&(parent.contents[name]=node,parent.timestamp=node.timestamp),node},getFileDataAsTypedArray:function(node){return node.contents?node.contents.subarray?node.contents.subarray(0,node.usedBytes):new Uint8Array(node.contents):new Uint8Array(0)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(!(prevCapacity>=newCapacity)){newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity<1048576?2:1.125)>>>0),0!=prevCapacity&&(newCapacity=Math.max(newCapacity,256));var oldContents=node.contents;node.contents=new Uint8Array(newCapacity),node.usedBytes>0&&node.contents.set(oldContents.subarray(0,node.usedBytes),0)}},resizeFileStorage:function(node,newSize){if(node.usedBytes!=newSize)if(0==newSize)node.contents=null,node.usedBytes=0;else{var oldContents=node.contents;node.contents=new Uint8Array(newSize),oldContents&&node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes))),node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};return attr.dev=FS.isChrdev(node.mode)?node.id:1,attr.ino=node.id,attr.mode=node.mode,attr.nlink=1,attr.uid=0,attr.gid=0,attr.rdev=node.rdev,FS.isDir(node.mode)?attr.size=4096:FS.isFile(node.mode)?attr.size=node.usedBytes:FS.isLink(node.mode)?attr.size=node.link.length:attr.size=0,attr.atime=new Date(node.timestamp),attr.mtime=new Date(node.timestamp),attr.ctime=new Date(node.timestamp),attr.blksize=4096,attr.blocks=Math.ceil(attr.size/attr.blksize),attr},setattr:function(node,attr){void 0!==attr.mode&&(node.mode=attr.mode),void 0!==attr.timestamp&&(node.timestamp=attr.timestamp),void 0!==attr.size&&MEMFS.resizeFileStorage(node,attr.size)},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node)for(var i in new_node.contents)throw new FS.ErrnoError(55)}delete old_node.parent.contents[old_node.name],old_node.parent.timestamp=Date.now(),old_node.name=new_name,new_dir.contents[new_name]=old_node,new_dir.timestamp=old_node.parent.timestamp,old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name],parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents)throw new FS.ErrnoError(55);delete parent.contents[name],parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents)node.contents.hasOwnProperty(key)&&entries.push(key);return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,41471,0);return node.link=oldpath,node},readlink:function(node){if(!FS.isLink(node.mode))throw new FS.ErrnoError(28);return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray)buffer.set(contents.subarray(position,position+size),offset);else for(var i=0;i0||position+length{var text;text='Loading data file "'+url+'" failed (no arrayBuffer).',arrayBuffer||abort(text),onload(new Uint8Array(arrayBuffer)),dep&&removeRunDependency()}),(event=>{if(!onerror)throw'Loading data file "'+url+'" failed.';onerror()})),dep&&addRunDependency()}var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:!1,ignorePermissions:!0,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path,opts={})=>{if(!(path=PATH_FS.resolve(path)))return{path:"",node:null};if((opts=Object.assign({follow_mount:!0,recurse_count:0},opts)).recurse_count>8)throw new FS.ErrnoError(32);for(var parts=path.split("/").filter((p=>!!p)),current=FS.root,current_path="/",i=0;i40)throw new FS.ErrnoError(32)}}return{path:current_path,node:current}},getPath:node=>{for(var path;;){if(FS.isRoot(node)){var mount=node.mount.mountpoint;return path?"/"!==mount[mount.length-1]?mount+"/"+path:mount+path:mount}path=path?node.name+"/"+path:node.name,node=node.parent}},hashName:(parentid,name)=>{for(var hash=0,i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash],FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node)FS.nameTable[hash]=node.name_next;else for(var current=FS.nameTable[hash];current;){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode)throw new FS.ErrnoError(errCode,parent);for(var hash=FS.hashName(parent.id,name),node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name)return node}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);return FS.hashAddNode(node),node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>node===node.parent,isMountpoint:node=>!!node.mounted,isFile:mode=>32768==(61440&mode),isDir:mode=>16384==(61440&mode),isLink:mode=>40960==(61440&mode),isChrdev:mode=>8192==(61440&mode),isBlkdev:mode=>24576==(61440&mode),isFIFO:mode=>4096==(61440&mode),isSocket:mode=>49152==(49152&mode),flagModes:{r:0,"r+":2,w:577,"w+":578,a:1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(void 0===flags)throw new Error("Unknown file open mode: "+str);return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][3&flag];return 512&flag&&(perms+="w"),perms},nodePermissions:(node,perms)=>FS.ignorePermissions||(!perms.includes("r")||292&node.mode)&&(!perms.includes("w")||146&node.mode)&&(!perms.includes("x")||73&node.mode)?0:2,mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");return errCode||(dir.node_ops.lookup?0:2)},mayCreate:(dir,name)=>{try{return FS.lookupNode(dir,name),20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode)return errCode;if(isdir){if(!FS.isDir(node.mode))return 54;if(FS.isRoot(node)||FS.getPath(node)===FS.cwd())return 10}else if(FS.isDir(node.mode))return 31;return 0},mayOpen:(node,flags)=>node?FS.isLink(node.mode)?32:FS.isDir(node.mode)&&("r"!==FS.flagsToPermissionString(flags)||512&flags)?31:FS.nodePermissions(node,FS.flagsToPermissionString(flags)):44,MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++)if(!FS.streams[fd])return fd;throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{FS.FSStream||(FS.FSStream=function(){this.shared={}},FS.FSStream.prototype={},Object.defineProperties(FS.FSStream.prototype,{object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return 1!=(2097155&this.flags)}},isWrite:{get:function(){return 0!=(2097155&this.flags)}},isAppend:{get:function(){return 1024&this.flags}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get:function(){return this.shared.position},set:function(val){this.shared.position=val}}})),stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);return stream.fd=fd,FS.streams[fd]=stream,stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops,stream.stream_ops.open&&stream.stream_ops.open(stream)},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>255&dev,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{for(var mounts=[],check=[mount];check.length;){var m=check.pop();mounts.push(m),check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{"function"==typeof populate&&(callback=populate,populate=!1),FS.syncFSRequests++,FS.syncFSRequests>1&&err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work");var mounts=FS.getMounts(FS.root.mount),completed=0;function doCallback(errCode){return FS.syncFSRequests--,callback(errCode)}function done(errCode){if(errCode)return done.errored?void 0:(done.errored=!0,doCallback(errCode));++completed>=mounts.length&&doCallback(null)}mounts.forEach((mount=>{if(!mount.type.syncfs)return done(null);mount.type.syncfs(mount,populate,done)}))},mount:(type,opts,mountpoint)=>{var node,root="/"===mountpoint,pseudo=!mountpoint;if(root&&FS.root)throw new FS.ErrnoError(10);if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:!1});if(mountpoint=lookup.path,node=lookup.node,FS.isMountpoint(node))throw new FS.ErrnoError(10);if(!FS.isDir(node.mode))throw new FS.ErrnoError(54)}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]},mountRoot=type.mount(mount);return mountRoot.mount=mount,mount.root=mountRoot,root?FS.root=mountRoot:node&&(node.mounted=mount,node.mount&&node.mount.mounts.push(mount)),mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:!1});if(!FS.isMountpoint(lookup.node))throw new FS.ErrnoError(28);var node=lookup.node,mount=node.mounted,mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach((hash=>{for(var current=FS.nameTable[hash];current;){var next=current.name_next;mounts.includes(current.mount)&&FS.destroyNode(current),current=next}})),node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>parent.node_ops.lookup(parent,name),mknod:(path,mode,dev)=>{var parent=FS.lookupPath(path,{parent:!0}).node,name=PATH.basename(path);if(!name||"."===name||".."===name)throw new FS.ErrnoError(28);var errCode=FS.mayCreate(parent,name);if(errCode)throw new FS.ErrnoError(errCode);if(!parent.node_ops.mknod)throw new FS.ErrnoError(63);return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>(mode=void 0!==mode?mode:438,mode&=4095,mode|=32768,FS.mknod(path,mode,0)),mkdir:(path,mode)=>(mode=void 0!==mode?mode:511,mode&=1023,mode|=16384,FS.mknod(path,mode,0)),mkdirTree:(path,mode)=>{for(var dirs=path.split("/"),d="",i=0;i(void 0===dev&&(dev=mode,mode=438),mode|=8192,FS.mknod(path,mode,dev)),symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath))throw new FS.ErrnoError(44);var parent=FS.lookupPath(newpath,{parent:!0}).node;if(!parent)throw new FS.ErrnoError(44);var newname=PATH.basename(newpath),errCode=FS.mayCreate(parent,newname);if(errCode)throw new FS.ErrnoError(errCode);if(!parent.node_ops.symlink)throw new FS.ErrnoError(63);return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dir,new_dir,old_dirname=PATH.dirname(old_path),new_dirname=PATH.dirname(new_path),old_name=PATH.basename(old_path),new_name=PATH.basename(new_path);if(old_dir=FS.lookupPath(old_path,{parent:!0}).node,new_dir=FS.lookupPath(new_path,{parent:!0}).node,!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount)throw new FS.ErrnoError(75);var new_node,old_node=FS.lookupNode(old_dir,old_name),relative=PATH_FS.relative(old_path,new_dirname);if("."!==relative.charAt(0))throw new FS.ErrnoError(28);if("."!==(relative=PATH_FS.relative(new_path,old_dirname)).charAt(0))throw new FS.ErrnoError(55);try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node!==new_node){var isdir=FS.isDir(old_node.mode),errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode)throw new FS.ErrnoError(errCode);if(errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name))throw new FS.ErrnoError(errCode);if(!old_dir.node_ops.rename)throw new FS.ErrnoError(63);if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node))throw new FS.ErrnoError(10);if(new_dir!==old_dir&&(errCode=FS.nodePermissions(old_dir,"w")))throw new FS.ErrnoError(errCode);FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}}},rmdir:path=>{var parent=FS.lookupPath(path,{parent:!0}).node,name=PATH.basename(path),node=FS.lookupNode(parent,name),errCode=FS.mayDelete(parent,name,!0);if(errCode)throw new FS.ErrnoError(errCode);if(!parent.node_ops.rmdir)throw new FS.ErrnoError(63);if(FS.isMountpoint(node))throw new FS.ErrnoError(10);parent.node_ops.rmdir(parent,name),FS.destroyNode(node)},readdir:path=>{var node=FS.lookupPath(path,{follow:!0}).node;if(!node.node_ops.readdir)throw new FS.ErrnoError(54);return node.node_ops.readdir(node)},unlink:path=>{var parent=FS.lookupPath(path,{parent:!0}).node;if(!parent)throw new FS.ErrnoError(44);var name=PATH.basename(path),node=FS.lookupNode(parent,name),errCode=FS.mayDelete(parent,name,!1);if(errCode)throw new FS.ErrnoError(errCode);if(!parent.node_ops.unlink)throw new FS.ErrnoError(63);if(FS.isMountpoint(node))throw new FS.ErrnoError(10);parent.node_ops.unlink(parent,name),FS.destroyNode(node)},readlink:path=>{var link=FS.lookupPath(path).node;if(!link)throw new FS.ErrnoError(44);if(!link.node_ops.readlink)throw new FS.ErrnoError(28);return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var node=FS.lookupPath(path,{follow:!dontFollow}).node;if(!node)throw new FS.ErrnoError(44);if(!node.node_ops.getattr)throw new FS.ErrnoError(63);return node.node_ops.getattr(node)},lstat:path=>FS.stat(path,!0),chmod:(path,mode,dontFollow)=>{var node;if(!(node="string"==typeof path?FS.lookupPath(path,{follow:!dontFollow}).node:path).node_ops.setattr)throw new FS.ErrnoError(63);node.node_ops.setattr(node,{mode:4095&mode|-4096&node.mode,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,!0)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(!(node="string"==typeof path?FS.lookupPath(path,{follow:!dontFollow}).node:path).node_ops.setattr)throw new FS.ErrnoError(63);node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,!0)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0)throw new FS.ErrnoError(28);var node;if(!(node="string"==typeof path?FS.lookupPath(path,{follow:!0}).node:path).node_ops.setattr)throw new FS.ErrnoError(63);if(FS.isDir(node.mode))throw new FS.ErrnoError(31);if(!FS.isFile(node.mode))throw new FS.ErrnoError(28);var errCode=FS.nodePermissions(node,"w");if(errCode)throw new FS.ErrnoError(errCode);node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);if(0==(2097155&stream.flags))throw new FS.ErrnoError(28);FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var node=FS.lookupPath(path,{follow:!0}).node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(""===path)throw new FS.ErrnoError(44);var node;if(mode=void 0===mode?438:mode,mode=64&(flags="string"==typeof flags?FS.modeStringToFlags(flags):flags)?4095&mode|32768:0,"object"==typeof path)node=path;else{path=PATH.normalize(path);try{node=FS.lookupPath(path,{follow:!(131072&flags)}).node}catch(e){}}var created=!1;if(64&flags)if(node){if(128&flags)throw new FS.ErrnoError(20)}else node=FS.mknod(path,mode,0),created=!0;if(!node)throw new FS.ErrnoError(44);if(FS.isChrdev(node.mode)&&(flags&=-513),65536&flags&&!FS.isDir(node.mode))throw new FS.ErrnoError(54);if(!created){var errCode=FS.mayOpen(node,flags);if(errCode)throw new FS.ErrnoError(errCode)}512&flags&&!created&&FS.truncate(node,0),flags&=-131713;var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:!0,position:0,stream_ops:node.stream_ops,ungotten:[],error:!1});return stream.stream_ops.open&&stream.stream_ops.open(stream),!Module.logReadFiles||1&flags||(FS.readFiles||(FS.readFiles={}),path in FS.readFiles||(FS.readFiles[path]=1)),stream},close:stream=>{if(FS.isClosed(stream))throw new FS.ErrnoError(8);stream.getdents&&(stream.getdents=null);try{stream.stream_ops.close&&stream.stream_ops.close(stream)}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>null===stream.fd,llseek:(stream,offset,whence)=>{if(FS.isClosed(stream))throw new FS.ErrnoError(8);if(!stream.seekable||!stream.stream_ops.llseek)throw new FS.ErrnoError(70);if(0!=whence&&1!=whence&&2!=whence)throw new FS.ErrnoError(28);return stream.position=stream.stream_ops.llseek(stream,offset,whence),stream.ungotten=[],stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0)throw new FS.ErrnoError(28);if(FS.isClosed(stream))throw new FS.ErrnoError(8);if(1==(2097155&stream.flags))throw new FS.ErrnoError(8);if(FS.isDir(stream.node.mode))throw new FS.ErrnoError(31);if(!stream.stream_ops.read)throw new FS.ErrnoError(28);var seeking=void 0!==position;if(seeking){if(!stream.seekable)throw new FS.ErrnoError(70)}else position=stream.position;var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);return seeking||(stream.position+=bytesRead),bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0)throw new FS.ErrnoError(28);if(FS.isClosed(stream))throw new FS.ErrnoError(8);if(0==(2097155&stream.flags))throw new FS.ErrnoError(8);if(FS.isDir(stream.node.mode))throw new FS.ErrnoError(31);if(!stream.stream_ops.write)throw new FS.ErrnoError(28);stream.seekable&&1024&stream.flags&&FS.llseek(stream,0,2);var seeking=void 0!==position;if(seeking){if(!stream.seekable)throw new FS.ErrnoError(70)}else position=stream.position;var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);return seeking||(stream.position+=bytesWritten),bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream))throw new FS.ErrnoError(8);if(offset<0||length<=0)throw new FS.ErrnoError(28);if(0==(2097155&stream.flags))throw new FS.ErrnoError(8);if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode))throw new FS.ErrnoError(43);if(!stream.stream_ops.allocate)throw new FS.ErrnoError(138);stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if(0!=(2&prot)&&0==(2&flags)&&2!=(2097155&stream.flags))throw new FS.ErrnoError(2);if(1==(2097155&stream.flags))throw new FS.ErrnoError(2);if(!stream.stream_ops.mmap)throw new FS.ErrnoError(43);return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>stream.stream_ops.msync?stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags):0,munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl)throw new FS.ErrnoError(59);return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{if(opts.flags=opts.flags||0,opts.encoding=opts.encoding||"binary","utf8"!==opts.encoding&&"binary"!==opts.encoding)throw new Error('Invalid encoding type "'+opts.encoding+'"');var ret,stream=FS.open(path,opts.flags),length=FS.stat(path).size,buf=new Uint8Array(length);return FS.read(stream,buf,0,length,0),"utf8"===opts.encoding?ret=UTF8ArrayToString(buf,0):"binary"===opts.encoding&&(ret=buf),FS.close(stream),ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if("string"==typeof data){var buf=new Uint8Array(lengthBytesUTF8(data)+1),actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,void 0,opts.canOwn)}else{if(!ArrayBuffer.isView(data))throw new Error("Unsupported data type");FS.write(stream,data,0,data.byteLength,void 0,opts.canOwn)}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:!0});if(null===lookup.node)throw new FS.ErrnoError(44);if(!FS.isDir(lookup.node.mode))throw new FS.ErrnoError(54);var errCode=FS.nodePermissions(lookup.node,"x");if(errCode)throw new FS.ErrnoError(errCode);FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp"),FS.mkdir("/home"),FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev"),FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length}),FS.mkdev("/dev/null",FS.makedev(1,3)),TTY.register(FS.makedev(5,0),TTY.default_tty_ops),TTY.register(FS.makedev(6,0),TTY.default_tty1_ops),FS.mkdev("/dev/tty",FS.makedev(5,0)),FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=function(){if("object"==typeof crypto&&"function"==typeof crypto.getRandomValues){var randomBuffer=new Uint8Array(1);return()=>(crypto.getRandomValues(randomBuffer),randomBuffer[0])}if(ENVIRONMENT_IS_NODE)try{var crypto_module=require("crypto");return()=>crypto_module.randomBytes(1)[0]}catch(e){}return()=>abort("randomDevice")}();FS.createDevice("/dev","random",random_device),FS.createDevice("/dev","urandom",random_device),FS.mkdir("/dev/shm"),FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd"),FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16895,73);return node.node_ops={lookup:(parent,name)=>{var fd=+name,stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};return ret.parent=ret,ret}},node}},{},"/proc/self/fd")},createStandardStreams:()=>{Module.stdin?FS.createDevice("/dev","stdin",Module.stdin):FS.symlink("/dev/tty","/dev/stdin"),Module.stdout?FS.createDevice("/dev","stdout",null,Module.stdout):FS.symlink("/dev/tty","/dev/stdout"),Module.stderr?FS.createDevice("/dev","stderr",null,Module.stderr):FS.symlink("/dev/tty1","/dev/stderr"),FS.open("/dev/stdin",0),FS.open("/dev/stdout",1),FS.open("/dev/stderr",1)},ensureErrnoError:()=>{FS.ErrnoError||(FS.ErrnoError=function(errno,node){this.node=node,this.setErrno=function(errno){this.errno=errno},this.setErrno(errno),this.message="FS error"},FS.ErrnoError.prototype=new Error,FS.ErrnoError.prototype.constructor=FS.ErrnoError,[44].forEach((code=>{FS.genericErrors[code]=new FS.ErrnoError(code),FS.genericErrors[code].stack=""})))},staticInit:()=>{FS.ensureErrnoError(),FS.nameTable=new Array(4096),FS.mount(MEMFS,{},"/"),FS.createDefaultDirectories(),FS.createDefaultDevices(),FS.createSpecialDirectories(),FS.filesystems={MEMFS:MEMFS}},init:(input,output,error)=>{FS.init.initialized=!0,FS.ensureErrnoError(),Module.stdin=input||Module.stdin,Module.stdout=output||Module.stdout,Module.stderr=error||Module.stderr,FS.createStandardStreams()},quit:()=>{FS.init.initialized=!1;for(var i=0;i{var mode=0;return canRead&&(mode|=365),canWrite&&(mode|=146),mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);return ret.exists?ret.object:null},analyzePath:(path,dontResolveLastLink)=>{try{path=(lookup=FS.lookupPath(path,{follow:!dontResolveLastLink})).path}catch(e){}var ret={isRoot:!1,exists:!1,error:0,name:null,path:null,object:null,parentExists:!1,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:!0});ret.parentExists=!0,ret.parentPath=lookup.path,ret.parentObject=lookup.node,ret.name=PATH.basename(path),lookup=FS.lookupPath(path,{follow:!dontResolveLastLink}),ret.exists=!0,ret.path=lookup.path,ret.object=lookup.node,ret.name=lookup.node.name,ret.isRoot="/"===lookup.path}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent="string"==typeof parent?parent:FS.getPath(parent);for(var parts=path.split("/").reverse();parts.length;){var part=parts.pop();if(part){var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2("string"==typeof parent?parent:FS.getPath(parent),name),mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;parent&&(parent="string"==typeof parent?parent:FS.getPath(parent),path=name?PATH.join2(parent,name):parent);var mode=FS.getMode(canRead,canWrite),node=FS.create(path,mode);if(data){if("string"==typeof data){for(var arr=new Array(data.length),i=0,len=data.length;i{var path=PATH.join2("string"==typeof parent?parent:FS.getPath(parent),name),mode=FS.getMode(!!input,!!output);FS.createDevice.major||(FS.createDevice.major=64);var dev=FS.makedev(FS.createDevice.major++,0);return FS.registerDevice(dev,{open:stream=>{stream.seekable=!1},close:stream=>{output&&output.buffer&&output.buffer.length&&output(10)},read:(stream,buffer,offset,length,pos)=>{for(var bytesRead=0,i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return!0;if("undefined"!=typeof XMLHttpRequest)throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.");if(!read_)throw new Error("Cannot load without read() or XMLHttpRequest.");try{obj.contents=intArrayFromString(read_(obj.url),!0),obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=!1,this.chunks=[]}if(LazyUint8Array.prototype.get=function(idx){if(!(idx>this.length-1||idx<0)){var chunkOffset=idx%this.chunkSize,chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]}},LazyUint8Array.prototype.setDataGetter=function(getter){this.getter=getter},LazyUint8Array.prototype.cacheLength=function(){var xhr=new XMLHttpRequest;if(xhr.open("HEAD",url,!1),xhr.send(null),!(xhr.status>=200&&xhr.status<300||304===xhr.status))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var header,datalength=Number(xhr.getResponseHeader("Content-length")),hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&"bytes"===header,usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&"gzip"===header,chunkSize=1048576;hasByteServing||(chunkSize=datalength);var lazyArray=this;lazyArray.setDataGetter((chunkNum=>{var start=chunkNum*chunkSize,end=(chunkNum+1)*chunkSize-1;if(end=Math.min(end,datalength-1),void 0===lazyArray.chunks[chunkNum]&&(lazyArray.chunks[chunkNum]=((from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;if(xhr.open("GET",url,!1),datalength!==chunkSize&&xhr.setRequestHeader("Range","bytes="+from+"-"+to),xhr.responseType="arraybuffer",xhr.overrideMimeType&&xhr.overrideMimeType("text/plain; charset=x-user-defined"),xhr.send(null),!(xhr.status>=200&&xhr.status<300||304===xhr.status))throw new Error("Couldn't load "+url+". Status: "+xhr.status);return void 0!==xhr.response?new Uint8Array(xhr.response||[]):intArrayFromString(xhr.responseText||"",!0)})(start,end)),void 0===lazyArray.chunks[chunkNum])throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]})),!usesGzip&&datalength||(chunkSize=datalength=1,datalength=this.getter(0).length,chunkSize=datalength,out("LazyFiles on gzip forces download of the whole file when length is accessed")),this._length=datalength,this._chunkSize=chunkSize,this.lengthKnown=!0},"undefined"!=typeof XMLHttpRequest){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){return this.lengthKnown||this.cacheLength(),this._length}},chunkSize:{get:function(){return this.lengthKnown||this.cacheLength(),this._chunkSize}}});var properties={isDevice:!1,contents:lazyArray}}else properties={isDevice:!1,url:url};var node=FS.createFile(parent,name,properties,canRead,canWrite);properties.contents?node.contents=properties.contents:properties.url&&(node.contents=null,node.url=properties.url),Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice)for(var i=0;i{var fn=node.stream_ops[key];stream_ops[key]=function(){return FS.forceLoadFile(node),fn.apply(null,arguments)}})),stream_ops.read=(stream,buffer,offset,length,position)=>(FS.forceLoadFile(node),writeChunks(stream,buffer,offset,length,position)),stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc();if(!ptr)throw new FS.ErrnoError(48);return writeChunks(stream,HEAP8,ptr,length,position),{ptr:ptr,allocated:!0}},node.stream_ops=stream_ops,node},createPreloadedFile:(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;function processData(byteArray){function finish(byteArray){preFinish&&preFinish(),dontCreateFile||FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn),onload&&onload(),removeRunDependency()}Browser.handledByPreloadPlugin(byteArray,fullname,finish,(()=>{onerror&&onerror(),removeRunDependency()}))||finish(byteArray)}addRunDependency(),"string"==typeof url?asyncLoad(url,(byteArray=>processData(byteArray)),onerror):processData(url)},indexedDB:()=>window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB,DB_NAME:()=>"EM_FS_"+window.location.pathname,DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload=(()=>{}),onerror=(()=>{}))=>{var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db"),openRequest.result.createObjectStore(FS.DB_STORE_NAME)},openRequest.onsuccess=()=>{var transaction=openRequest.result.transaction([FS.DB_STORE_NAME],"readwrite"),files=transaction.objectStore(FS.DB_STORE_NAME),ok=0,fail=0,total=paths.length;function finish(){0==fail?onload():onerror()}paths.forEach((path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{++ok+fail==total&&finish()},putRequest.onerror=()=>{fail++,ok+fail==total&&finish()}})),transaction.onerror=onerror},openRequest.onerror=onerror},loadFilesFromDB:(paths,onload=(()=>{}),onerror=(()=>{}))=>{var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror,openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){return void onerror(e)}var files=transaction.objectStore(FS.DB_STORE_NAME),ok=0,fail=0,total=paths.length;function finish(){0==fail?onload():onerror()}paths.forEach((path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{FS.analyzePath(path).exists&&FS.unlink(path),FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,!0,!0,!0),++ok+fail==total&&finish()},getRequest.onerror=()=>{fail++,ok+fail==total&&finish()}})),transaction.onerror=onerror},openRequest.onerror=onerror}},SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path))return path;var dir;if(dir=-100===dirfd?FS.cwd():SYSCALLS.getStreamFromFD(dirfd).path,0==path.length){if(!allowEmpty)throw new FS.ErrnoError(44);return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node)))return-54;throw e}HEAP32[buf>>2]=stat.dev,HEAP32[buf+8>>2]=stat.ino,HEAP32[buf+12>>2]=stat.mode,HEAPU32[buf+16>>2]=stat.nlink,HEAP32[buf+20>>2]=stat.uid,HEAP32[buf+24>>2]=stat.gid,HEAP32[buf+28>>2]=stat.rdev,tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1],HEAP32[buf+48>>2]=4096,HEAP32[buf+52>>2]=stat.blocks;var atime=stat.atime.getTime(),mtime=stat.mtime.getTime(),ctime=stat.ctime.getTime();return tempI64=[Math.floor(atime/1e3)>>>0,(tempDouble=Math.floor(atime/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+56>>2]=tempI64[0],HEAP32[buf+60>>2]=tempI64[1],HEAPU32[buf+64>>2]=atime%1e3*1e3,tempI64=[Math.floor(mtime/1e3)>>>0,(tempDouble=Math.floor(mtime/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+72>>2]=tempI64[0],HEAP32[buf+76>>2]=tempI64[1],HEAPU32[buf+80>>2]=mtime%1e3*1e3,tempI64=[Math.floor(ctime/1e3)>>>0,(tempDouble=Math.floor(ctime/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+88>>2]=tempI64[0],HEAP32[buf+92>>2]=tempI64[1],HEAPU32[buf+96>>2]=ctime%1e3*1e3,tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+104>>2]=tempI64[0],HEAP32[buf+108>>2]=tempI64[1],0},doMsync:function(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode))throw new FS.ErrnoError(43);if(2&flags)return 0;var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:void 0,get:function(){return SYSCALLS.varargs+=4,HEAP32[SYSCALLS.varargs-4>>2]},getStr:function(ptr){return UTF8ToString(ptr)},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}},MAX_INT53=9007199254740992,MIN_INT53=-9007199254740992;function __isLeapYear(year){return year%4==0&&(year%100!=0||year%400==0)}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31],__MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2],date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""},pattern=UTF8ToString(format),EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1)pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule]);var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){for(var str="number"==typeof value?value.toString():value||"";str.length0?1:0}var compare;return 0===(compare=sgn(date1.getFullYear()-date2.getFullYear()))&&0===(compare=sgn(date1.getMonth()-date2.getMonth()))&&(compare=sgn(date1.getDate()-date2.getDate())),compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=function(date,days){for(var newDate=new Date(date.getTime());days>0;){var leap=__isLeapYear(newDate.getFullYear()),currentMonth=newDate.getMonth(),daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(!(days>daysInCurrentMonth-newDate.getDate()))return newDate.setDate(newDate.getDate()+days),newDate;days-=daysInCurrentMonth-newDate.getDate()+1,newDate.setDate(1),currentMonth<11?newDate.setMonth(currentMonth+1):(newDate.setMonth(0),newDate.setFullYear(newDate.getFullYear()+1))}return newDate}(new Date(date.tm_year+1900,0,1),date.tm_yday),janFourthThisYear=new Date(thisDate.getFullYear(),0,4),janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4),firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear),firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);return compareByDay(firstWeekStartThisYear,thisDate)<=0?compareByDay(firstWeekStartNextYear,thisDate)<=0?thisDate.getFullYear()+1:thisDate.getFullYear():thisDate.getFullYear()-1}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){return leadingNulls((date.tm_year+1900)/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;return 0==twelveHour?twelveHour=12:twelveHour>12&&(twelveHour-=12),leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+function(array,index){for(var sum=0,i=0;i<=index;sum+=array[i++]);return sum}(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){return date.tm_hour>=0&&date.tm_hour<12?"AM":"PM"},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2&&val++,val){if(53==val){var jan1=(date.tm_wday+371-date.tm_yday)%7;4==jan1||3==jan1&&__isLeapYear(date.tm_year)||(val=1)}}else{val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;(4==dec31||5==dec31&&__isLeapYear(date.tm_year%400-1))&&val++}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff,ahead=off>=0;return off=(off=Math.abs(off)/60)/60*100+off%60,(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};for(var rule in pattern=pattern.replace(/%%/g,"\0\0"),EXPANSION_RULES_2)pattern.includes(rule)&&(pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date)));var bytes=intArrayFromString(pattern=pattern.replace(/\0\0/g,"%"),!1);return bytes.length>maxsize?0:(writeArrayToMemory(bytes,s),bytes.length-1)}function exitJS(status,implicit){var code;EXITSTATUS=status,EXITSTATUS=code=status,keepRuntimeAlive()||(Module.onExit&&Module.onExit(code),ABORT=!0),quit_(code,new ExitStatus(code))}function getCFunc(ident){return Module["_"+ident]}function ccall(ident,returnType,argTypes,args,opts){var toC={string:str=>{var ret=0;if(null!=str&&0!==str){var len=1+(str.length<<2);!function(str,outPtr,maxBytesToWrite){stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}(str,ret=stackAlloc(len),len)}return ret},array:arr=>{var ret=stackAlloc(arr.length);return writeArrayToMemory(arr,ret),ret}},func=getCFunc(ident),cArgs=[],stack=0;if(args)for(var i=0;i>7)}function convertJsFunctionToWasm(func,sig){if("function"==typeof WebAssembly.Function)return new WebAssembly.Function(function(sig){for(var typeNames={i:"i32",j:"i32",f:"f32",d:"f64",p:"i32"},type={parameters:[],results:"v"==sig[0]?[]:[typeNames[sig[0]]]},i=1;i>>=0)>2147483648)return!1;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);if(overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296),emscripten_realloc_buffer(Math.min(2147483648,(x=Math.max(requestedSize,overGrownHeapSize))+((multiple=65536)-x%multiple)%multiple)))return!0}return!1},d:function(__environ,environ_buf){var bufSize=0;return getEnvStrings().forEach((function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+4*i>>2]=ptr,function(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i);dontAddNull||(HEAP8[buffer>>0]=0)}(string,ptr),bufSize+=string.length+1})),0},e:function(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;return strings.forEach((function(string){bufSize+=string.length+1})),HEAPU32[penviron_buf_size>>2]=bufSize,0},f:function(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);return FS.close(stream),0}catch(e){if(void 0===FS||!(e instanceof FS.ErrnoError))throw e;return e.errno}},g:function(fd,iov,iovcnt,pnum){try{var num=function(stream,iov,iovcnt,offset){for(var ret=0,i=0;i>2],len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;if(ret+=curr,curr>2]=num,0}catch(e){if(void 0===FS||!(e instanceof FS.ErrnoError))throw e;return e.errno}},h:function(fd,offset,whence,newOffset){try{if(offset=(num=offset)MAX_INT53?NaN:Number(num),isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);return FS.llseek(stream,offset,whence),tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1],stream.getdents&&0===offset&&0===whence&&(stream.getdents=null),0}catch(e){if(void 0===FS||!(e instanceof FS.ErrnoError))throw e;return e.errno}var num},b:function(fd,iov,iovcnt,pnum){try{var num=function(stream,iov,iovcnt,offset){for(var ret=0,i=0;i>2],len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr,void 0!==offset&&(offset+=curr)}return ret}(SYSCALLS.getStreamFromFD(fd),iov,iovcnt);return HEAPU32[pnum>>2]=num,0}catch(e){if(void 0===FS||!(e instanceof FS.ErrnoError))throw e;return e.errno}},c:function(s,maxsize,format,tm,loc){return _strftime(s,maxsize,format,tm)}},_main=(function(){var info={a:wasmImports};function receiveInstance(instance,module){var cb,exports=instance.exports;Module.asm=exports,wasmMemory=Module.asm.k,updateMemoryViews(),wasmTable=Module.asm.r,cb=Module.asm.l,__ATINIT__.unshift(cb),removeRunDependency()}function receiveInstantiationResult(result){receiveInstance(result.instance)}function instantiateArrayBuffer(receiver){return function(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if("function"==typeof fetch&&!isFileURI(wasmBinaryFile))return fetch(wasmBinaryFile,{credentials:"same-origin"}).then((function(response){if(!response.ok)throw"failed to load wasm binary file at '"+wasmBinaryFile+"'";return response.arrayBuffer()})).catch((function(){return getBinary(wasmBinaryFile)}));if(readAsync)return new Promise((function(resolve,reject){readAsync(wasmBinaryFile,(function(response){resolve(new Uint8Array(response))}),reject)}))}return Promise.resolve().then((function(){return getBinary(wasmBinaryFile)}))}().then((function(binary){return WebAssembly.instantiate(binary,info)})).then((function(instance){return instance})).then(receiver,(function(reason){err("failed to asynchronously prepare wasm: "+reason),abort(reason)}))}if(addRunDependency(),Module.instantiateWasm)try{return Module.instantiateWasm(info,receiveInstance)}catch(e){err("Module.instantiateWasm callback failed with error: "+e),readyPromiseReject(e)}(wasmBinary||"function"!=typeof WebAssembly.instantiateStreaming||isDataURI(wasmBinaryFile)||isFileURI(wasmBinaryFile)||ENVIRONMENT_IS_NODE||"function"!=typeof fetch?instantiateArrayBuffer(receiveInstantiationResult):fetch(wasmBinaryFile,{credentials:"same-origin"}).then((function(response){return WebAssembly.instantiateStreaming(response,info).then(receiveInstantiationResult,(function(reason){return err("wasm streaming compile failed: "+reason),err("falling back to ArrayBuffer instantiation"),instantiateArrayBuffer(receiveInstantiationResult)}))}))).catch(readyPromiseReject)}(),Module._init=function(){return(Module._init=Module.asm.m).apply(null,arguments)},Module._execute=function(){return(Module._execute=Module.asm.n).apply(null,arguments)},Module._setTrigger=function(){return(Module._setTrigger=Module.asm.o).apply(null,arguments)},Module._getTime=function(){return(Module._getTime=Module.asm.p).apply(null,arguments)},Module._main=function(){return(_main=Module._main=Module.asm.q).apply(null,arguments)}),stackSave=function(){return(stackSave=Module.asm.s).apply(null,arguments)},stackRestore=function(){return(stackRestore=Module.asm.t).apply(null,arguments)},stackAlloc=function(){return(stackAlloc=Module.asm.u).apply(null,arguments)};function callMain(){var entryFunction=_main;try{var ret=entryFunction(0,0);return exitJS(ret),ret}catch(e){return function(e){if(e instanceof ExitStatus||"unwind"==e)return EXITSTATUS;quit_(1,e)}(e)}}function run(){function doRun(){calledRun||(calledRun=!0,Module.calledRun=!0,ABORT||(Module.noFSInit||FS.init.initialized||FS.init(),FS.ignorePermissions=!1,TTY.init(),callRuntimeCallbacks(__ATINIT__),callRuntimeCallbacks(__ATMAIN__),readyPromiseResolve(Module),Module.onRuntimeInitialized&&Module.onRuntimeInitialized(),shouldRunNow&&callMain(),function(){if(Module.postRun)for("function"==typeof Module.postRun&&(Module.postRun=[Module.postRun]);Module.postRun.length;)addOnPostRun(Module.postRun.shift());callRuntimeCallbacks(__ATPOSTRUN__)}()))}runDependencies>0||(function(){if(Module.preRun)for("function"==typeof Module.preRun&&(Module.preRun=[Module.preRun]);Module.preRun.length;)cb=Module.preRun.shift(),__ATPRERUN__.unshift(cb);var cb;callRuntimeCallbacks(__ATPRERUN__)}(),runDependencies>0||(Module.setStatus?(Module.setStatus("Running..."),setTimeout((function(){setTimeout((function(){Module.setStatus("")}),1),doRun()}),1)):doRun()))}if(Module.addOnPostRun=addOnPostRun,Module.ccall=ccall,Module.cwrap=function(ident,returnType,argTypes,opts){var numericArgs=!argTypes||argTypes.every((type=>"number"===type||"boolean"===type));return"string"!==returnType&&numericArgs&&!opts?getCFunc(ident):function(){return ccall(ident,returnType,argTypes,arguments)}},Module.addFunction=function(func,sig){var rtn=getFunctionAddress(func);if(rtn)return rtn;var ret=function(){if(freeTableIndexes.length)return freeTableIndexes.pop();try{wasmTable.grow(1)}catch(err){if(!(err instanceof RangeError))throw err;throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH."}return wasmTable.length-1}();try{setWasmTableEntry(ret,func)}catch(err){if(!(err instanceof TypeError))throw err;setWasmTableEntry(ret,convertJsFunctionToWasm(func,sig))}return functionsInTableMap.set(func,ret),ret},Module.setValue=function(ptr,value,type="i8"){switch(type.endsWith("*")&&(type="*"),type){case"i1":case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(0|Math.min(+Math.floor(tempDouble/4294967296),4294967295))>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;case"*":HEAPU32[ptr>>2]=value;break;default:abort("invalid type for setValue: "+type)}},Module.getValue=function(ptr,type="i8"){switch(type.endsWith("*")&&(type="*"),type){case"i1":case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP64[ptr>>3];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];case"*":return HEAPU32[ptr>>2];default:abort("invalid type for getValue: "+type)}return null},dependenciesFulfilled=function runCaller(){calledRun||run(),calledRun||(dependenciesFulfilled=runCaller)},Module.preInit)for("function"==typeof Module.preInit&&(Module.preInit=[Module.preInit]);Module.preInit.length>0;)Module.preInit.pop()();var shouldRunNow=!0;return Module.noInitialRun&&(shouldRunNow=!1),run(),Module.ready});"object"==typeof exports&&"object"==typeof module?module.exports=Module:"function"==typeof define&&define.amd?define([],(function(){return Module})):"object"==typeof exports&&(exports.Module=Module)}).call(this)}).call(this,require("_process"),require("buffer").Buffer,"/out/vcd.js",arguments[3],arguments[4],arguments[5],arguments[6],"/out")},{_process:151,buffer:64,crypto:72,fs:1,path:144}]},{},[189]); \ No newline at end of file diff --git a/resources/dide-viewer/view/vcd.wasm b/resources/dide-viewer/view/vcd.wasm deleted file mode 100644 index 941033bf56e66ade5f5d811db0318ea9bf44d059..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 126822 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 diff --git a/resources/dide-viewer/view/vscode.css b/resources/dide-viewer/view/vscode.css deleted file mode 100644 index 1ea0bed..0000000 --- a/resources/dide-viewer/view/vscode.css +++ /dev/null @@ -1,149 +0,0 @@ -:root { - --font-monospace-family: var(--vscode-editor-font-family); - --font-monospace-weight: var(--vscode-editor-font-weight); - --font-monospace-size: var(--vscode-editor-font-size); - - --link-foreground: var(--vscode-textLink-foreground); - --link-active: var(--vscode-textLink-activeForeground); - - /* UI & Control */ - --input-active-background: var(--vscode-input-background); - --input-active-border: var(--vscode-focusBorder); - --input-active-foreground: var(--vscode-input-foreground); - - --input-error-background: var(--vscode-inputValidation-errorBackground); - --input-error-border: var(--vscode-inputValidation-errorBorder); - --input-error-foreground: var(--vscode-inputValidation-errorForeground); - - --input-foreground: var(--vscode-input-foreground); - --input-background: var(--vscode-input-background); - --input-border: var(--vscode-input-border); - --input-hover: var(--vscode-input-background); - --input-placeholder: var(--vscode-input-placeholderForeground); - --input-radius: 0px; - - --scrollbar-background: var(--vscode-scrollbarSlider-background); - --scrollbar-hover: var(--vscode-scrollbarSlider-hoverBackground); - --scrollbar-active: var(--vscode-scrollbarSlider-activeBackground); - - /* Window */ - --title-bar: #1f1f1f; - --title-color: #fff; - --foreground: var(--vscode-editor-foreground); - --background: var(--vscode-editor-background); - --label: rgb(189, 189, 189); - --shadow: #000; - --border: var(--vscode-input-border); - --window-button-hover: rgba(255,255,255,0.1); - --window-button-active: rgba(255,255,255,0.2); - --window-blur-background: rgba(0,0,0,0.25); - - --window-title-foreground: var(--foreground); - --window-background: var(--sidebar); - --window-border: transparent; - --window-radius: 0px; - - /* Sidebar */ - --sidebar: var(--vscode-sideBar-background); - --sidebar-border: var(--vscode-sideBar-border); - --sidebar-min-width: 280px; - - --sidebar-item-text: var(--vscode-list-inactiveSelectionForeground); - --sidebar-item-border: var(--vscode-input-border); - --sidebar-item-background: var(--sidebar); - --sidebar-item-selected: var(--vscode-list-inactiveSelectionBackground); - --sidebar-item-hover: var(--vscode-list-hoverBackground); - --sidebar-item-max-height: 40px; - --sidebar-item-radix-background: var(--vscode-breadcrumb-background); - - --sidebar-group-text: var(--vscode-sideBarSectionHeader-foreground); - --sidebar-group-border: var(--vscode-sideBarSectionHeader-border); - --sidebar-group-background: var(--vscode-sideBarSectionHeader-background); - - /* Labels */ - --signalSize-background: rgba(0,0,0,0.5); - --signalSize-border: rgba(255,255,255,0.2); - --signalSize-color: var(--foreground); - - /* Color Picker */ - --picker-swatch-size: 15px; - --picker-swatch-cols: 8; - --picker-background: var(--vscode-breadcrumbPicker-background); - --picker-border: var(--vscode-dropdown-border); - - /* Search */ - --search-background: var(--vscode-quickInput-background); - --search-border: var(--border); - --search-panel-background: transparent; - --search-panel-border: var(--vscode-pickerGroup-border); - --search-panel-text: var(--vscode-quickInput-foreground); - --search-label: var(--foreground); - --search-selected-background: var(--vscode-list-inactiveSelectionBackground); - - /* Properties */ - --properties-background: var(--vscode-breadcrumb-background); - --properties-border: var(--border); - - /* Navbar */ - --navBar-background: var(--sidebar); - --navBar-height: 32px; - --navBar-button: transparent; - --navBar-button-text: var(--foreground); - --navBar-group-background: var(--background); - --navBar-preview-background: var(--vscode-scrollbarSlider-background); - --navBar-slider-border: var(--foreground); - - /* Buttons */ - --button: var(--vscode-button-background); - --button-text: var(--vscode-button-foreground); - --button-hover: var(--vscode-button-hoverBackground); - --button-active: var(--vscode-button-hoverBackground); - --button-disabled: var(--vscode-activityBar-background); - --button-disabled-text: var(--vscode-activityBar-inactiveForeground); - - /* Grid Lines */ - --grid-dash: 2; - --grid-space: 4; - --grid-line: var(--vscode-editorIndentGuide-background); - --grid-tick: var(--vscode-editorIndentGuide-activeBackground); - - /* Cursor */ - --cursor: var(--vscode-editorCursor-foreground); - --cursor-ghost: rgba(255, 255, 255, 0.2); - --cursor-width: 2; - - /* X-Axis */ - --axis-height: 38px; - --axis-line: var(--border); - --axis-background: var(--vscode-sideBar-background); - --axis-foreground: var(--foreground); - - /* Signals */ - --signal-highlight: var(--vscode-list-inactiveSelectionBackground); - - /* Colors */ - --accent: var(--vscode-button-background); - --accent-dim: #234175; - --accent-bright: #24c5f7; - --accent-hover: var(--vscode-button-hoverBackground); - - --color-red: #ff5252; - --color-pink: #ff4081; - --color-purple: #e040fb; - --color-deepPurple: #7c4dff; - --color-indigo: #536dfe; - --color-blue: #448aff; - --color-lightBlue: #40c4ff; - --color-cyan: #18ffff; - --color-teal: #64ffda; - --color-green: #69f0ae; - --color-lightGreen: #b2ff59; - --color-lime: #eeff41; - --color-yellow: #ffff00; - --color-amber: #ffd740; - --color-orange: #ffab40; - --color-deepOrange: #ff6e40; - - /* Settings */ - --settings-action-background: var(--background); -} \ No newline at end of file diff --git a/resources/hdlParser/parser.wasm b/resources/hdlParser/parser.wasm index 54c92eb7e1b5e5bd6e81c5fed62e504456d1abeb..111acc41e0abe2c6cc3234e221cca3d8603406dd 100644 GIT binary patch delta 159532 zcmbTe2UuLkx%kb@Ia|+`v%T-0ZP->~m226KNiq?39NWQm{=P|^oA}0->{MB?tt2kF zwzD8akthN!Fi3O+La0!Lq*X%#1nP()B%y*NBqRYUfEoxDzIQ=Me7}3Y=l?w4!tTtO z@}8M@X5M*!a~6`iHlkE`*F3{8X^|I0#2YQz`H%3SWg^5R1T=kB~-4BBWTQ!cr+C5rIfChKN)aj!7gEMjZTD z@nnD#h2@JxT=$?TiM}H9LP^NN`xUNY# z6N=T{(JIhuEQ}%y7yLq_B9I7v!@~!^7|Ks(K^$Iiw|~4Qqm!xsh#@v2_+z~@_(#3K zM2JvbiarTpRuR-2XEB$axfFcWINeg{#~;j#pa%S#c@aSa{_VVo!*Wf?Ri|EtfkLE>O)W|l!gCe34*Y`{nUyQcPH1AgtI{gY1NWlZlMm^P~pqtETeH9+(_h@o7RhkM-nxP8a*56T|!Z+9= zehvRfJ*>W>&eYc8E2tm8pWujkE~>)%T~$<6RE0XKP~C3bhO*Sl91qmT)T{Y*e2Oo@ ze_ZoGm7?C@U+jpAS8vuA>YH?Hb%(UY+AM9H_Mz&IDiCK*^H-{qA~Vqi6!Onqsmet6 zoSEpGKOL&Qs$|s2#MDP_i%do_n8s{o!zBApKIRa!+8X zC)P9W9(DJ*&$&;yJKUA-E1q+nO`c+QrDw!_)!pjOa+in}#0&~Gs6gF_&av0@JGuL= zF5v#l1-%yril*J(wE z>xAo+>yRrMbh6jg6;QV0c6<(3p{PPvF1yqf>-yD#m;_giwNO?n>Of1amt?PhU1H5w z_d6#Xo1L{z&}1imWZ!2`Vt2^uWeu_sJY;W?9hUW=0`~nh`*yS)y&wK~9Bh=0sV~`D zm{D~PXkvn0!z8e6_?m4y>a<0z57CDekJGa+j{yW6@4*P~nN5%qQT0n;`0RrR2HK%I^H)tA*H>?QSb z%X-U3%YY?L+Gg2rX|n9FY_^nJ&Pw7eyXvCk<_e?S?{JZRkN|hI~V=A;*wq$TY+(HpGhJ42zhH`XT**XoOi%ChpO9 z>)Z7)`}Mo^JM=LNVrulO^+o#oI3{1eOrN69(O=S?(LK_Q==ybcbuqhiTXnU%`?ypW zlcO8KquLY9f|%pXHEm3qyHgto55_5Ni#BGbb_8#POvtOy#>5nAS88*$_wjOVOa|nn zPUS3toClh_nj4z?_=2W{%@m!{oY$Pw^lHv(dNeJ}NliYRz{V^Sb!%c`lFFbZF{Pn`XZzY7su7Y1IS{YYu68&_PWZa{(RD+*CDcc5CABUQLUp zS^@GecgW~XL{X1ivqCZq{3muk%h%|=a)W;+V3*R0d*VPe*3R%^;N zu}mf|(nPHm9ae8sSF5AaH5H<2{75KdsjEyAUNWVcB(zFXqFE3Vo|{RiSkr*&(HOr( zldQ?mEEN@M3N-neJk3hY3QewtYO*z1nxJO6CR4Lalcq`4q-c^fiJAn>VokgzP7|vM zJmQl@5BUfDeLhKak8fl~`Mdlb{x)3Q;&1XJ{4hVn-{2Q%uJhM;Xy;K~t!skc;2Pl9 zxRUtYXfHE?uJD)n3w$rXgSp4X^JDBib`!q=XY=E13Lmvey-l-1S|mEgck!!WI_^?8 zGox%!mTO%iYT_FMd@{Pq5AsL(cK#55kUzlp^OyKO{vv;#KgXZtd-yZ_Y5o*{lJDkE z@W=U1zJqV$kMOPhVSYcqkKfC;@Xh=lzJcEzZeFi(qbX6eg^!ahM~m%uZD(*jzm4C{ zZ{>IJJNeCg9lw#U<)aeaH9R?sTGhJ(Og$4eC~NsjzJhQWvoe-h0(*dz0;j_j&fFdL3Tj9#Y>>*P>ze zuKKom7YuL`dqI6deO!G~y@r{47Qt`$XYSl?^?Gz&pDms=ie2iX>K1jZs9C*7y%sNG z>eYMI+tpjub?P1JT6LBBD%+v1QMaqx)JGtGNPSR!Kpohx-lra92iOMnZuK>`QN2@r zoef`aQE!Ipka{CrZ&0sS_p>qU)N8{*y66g9!cS>wmAX`2rY=?&sY}$AI9t73{ST|0 zss4veE=9}K>FP9fvN}n_zrhi`22|IQ4|;kt*iCYFss- z8dR0A?W!ZH+p1%#qpFjt6RHu_J=K`%mTFivq#9M-Rb5rpF*j7#Ro7Jgs&%3(sz!WT z)rOkXr&N97`{=tm>lbjH*Y~t2(c`tm;$6wBvEqtr|zi;oSxAPSyBps0|{m zs>7;7s)MQns{N{csuoqVYLBW()u?Jv?N(K(HmKICYMIUcwW=EC47)ROyFO}18_5@q0+7aw=Spwye$Jt|S7rQF5G;$qkMX$bDf`XB&RV9%}*`mn8$WFE( zvIK>H@+0s1yKyJGEHXVZEix)Ka(QHCWIGd1S{b<_^1l9_{-OS;zDpmK6}c(0E^=dJ zZDdVkb!1iKhRF4i>mn;7*F;uCmaA4V<*NJsasNI4n13|jFI7#64}YdaE{$9gnH-rI znGm@+GCp!qWL#uy#d%ulfi5 z1O9&h75`=b2By#7{T==hcFslroH=LxLCp+T;21>V)#z{V@AmKV*ZX(+ zclfva*Quhm`M3Iyu&r!?s>+|Qs`l6VYd}>cXq6~eMOE3VELEHTh`-f;*nh}>(0{M{{x$vz|7w4^zsz6iFYy=qi~Or2Q~fFarT!%W zf3iQxpXkqvY(* z-(BAwU(9XaE#HEeA>S%|%@-K(UG`n_4f-zl`h5MqE57T#tG@HTvp8LK+}Fe$^QEbd z`chTxzBbw45l{b|m%3GG{bq{COqke$AzDpKVu#iY`=mnCJs7M2wInpslh z+Y?|(fv<@r`MyS$h4whv4wzFiJZyQU}eOp7N8kWTQs#y~2t76H7cLPfvde^h$ zfp;BC?t9m=Byi7L$&xYe8kUTDD_C;JyP738z2z(!@s_b<$h(RqH@v0nRquH;;JxDQ z^Ir7!Dld31doOthz5U*E-t)>X?>XgBZ>P7zTPi>3%@Njl_qh*w4|~rl4|w-`sUlO} zpon!(2tCR($|i54cfazOXP0-Ucdz%fGO)vYhRYLH3M+(M;iPhlw_CZ{dqa`vsrA-) ztGy?b$CXvyW6GoQ6^d>0LeCoSQDp`f@hq6&w>@D&ZdJDYy-aPM0 z?+WimZ?2bmbG+H!EN{@8>CNyi^QL>#ys6$4?-6B^H_@BmUF?nbF7gKAys_R1&m&LN zR!_*Y#k1K{=h^6~_0)K(Jyo6~p2MCEo)*t~&pOXq&l*pKXSJu?Q|4(`KJeW4jC<~R z#yq2*yPi9q+n!sV5znw^$aBMU-E+-z)idZB@br5wd+L?h+!e6jM3=d|arGDV)K zJfu9RJfQ6IY*cJ?N9|MYRkkP(c@BDxD01A*%4W|V=qLOR$Gwde1Ip zk~~$pS-xH#bS-y<}CkK=#?6pK7N zl{=I<@|E&z&vxZjMJ`j^)<52jm4@ zjK(W(3 zu4r-ZaE~drx;2=lqinL15r`gigd+6;efDT*eC225*01N z7#U1C0%5k=iM8FRZm!% zJFX?cLr>TOH-%dHYI&V}t$d9b!ecvcU^>ZM_%l+FCEzwF)oTwGuDbwIyD#YnMD= z*ZMqQ*UoytuATC1V*})*2MpVB4;Z#i4;Z!%4;Z#K4;Z#q4;Z!s9x!ZsJz&`Oc)+l2 z^MGMnH))6=K;G$Jz&?eJYd&?9y3MIMYE?1Ia_bMg1<}Oi^L3fdo47dxFq~D#V zBp2K(l%&^9mE^2DTS-p4gGzGJov9>8-OH4u)19Uy?d}vMX>%`8k|XXUB{}R)P?AIL zcqKXDj#HAo?g<5Haz9j%-R}Devdeuhpdj1aqYARceMdp++_w~@);*#i)$Sn$+2Fpe zAnV;%6=bb@KtU?pR}^Hm`;vl`yDut8nY&j(O5Nuaq{MwjK~}m?DoC#Tgo04_F$D>_ zI}~KOyG=nd-K`3e;Xb4w%iISPB;CDFK~mi<3bNF_M?nI~?nVWPbMID=heExA+!J;v z$f&SQLGB761-T<^R*+jloq`MrwF+`Ws8*2c!UhGoDy&nG0bz}TTozU<$VH({K`scT z3UXd3R*@^}<7r>=f>EWV>*WBU^=0j)a6e9N8k=;>adp zgd-b;A&%4v*Ev!xT;<4mVSpoRgex4W5H4|Km2iaG&+Q^YnR}DvQxi)a*rfV%nhFxnoGUQs# zksAS58AqsrZ?9#<|$PP=kAa?+K>k#1KeM~=IeapagQ zjUz{0DI95cE#b%!R}x1Kx)M0D-xbf1eXcl;w74eZq}laQPMTcz<)qOyCMON9yK=JI zbz4q$xo*nIPS0|fy5(f8>$sd$y1L|~!qq7!t6lAKQtmn;CuOd~a#G?tC@00P{c=*^+AAmd zu4XyOb2Z7yN>_uNtZ?m;lU&zMISJ&rw#!MjYpa}OxwgnjhHI0YEOTv?lXO>&oTRxn z$VsYeot&h&D&=H}t3pnaUFC9;tccSZ{`+%#>b;eoBoODL@qT|kGo+X|Mcb9Wqmh4%{ZgL%SUXXV> zH@iBVkKFCfHfL1S384rda8|iaDUUc?opt`h&Zrgae&-_hV)s7hUT1lUJRI(IlXIq#rSXFij`u60&A zE1avH<<2s=)rdC3*(bXwJB%;LmO0bdcY0+9QJOQ=c@t4>I$J4P#-=zQIUYJ5IPN=^ zqkE1qN3U$uk;YzgUJW=0odeD*&dbhA&OYZw=LKi4^Stw%b3x2jXUGYsNn4yTan2oR zM79HtTy~&3h;MY(IIEpi&JE7>&UJ8|qb+e3JByr!&H`s1T(5MlaOOIxGsl_j%!2En z^RjHYGZSJ<;l0GU*qO&9I}_nECgDx^jCU?_#)NMW3kr`#xskDGHB-u*kd4U>vrYbu z{+*sv&h4IV=MK*a=UvAg$1TTA$B1LtG32=6xbC>-xat^mTyb1-^f`iYGoChFaP&GR z0qYwdCxg*54Co?!I)XFZ9Dn|CiPMg=jx&xq=fWB2#ALQGLxWCD#@eSV1Kr_*U5+K} zQO9XGjc7$Zib};5;jgi%2v>3IxF%tT@Yf(e*!SD_+FR_+_C5A(vJzRL zy}+Jt&$9FQ*()8j-nHJb-nQPdwn%SUo254*`lJ7B#R}TmUE^K(|%L4>5lZ4w7_;- zns3Xq-ISh?jGB*2q6VZ_rOTeQ4NA{RA6Xw-FG|l#FH6THm!ub@z0yAES!s{-wDgp; zTRLRjFTD}`_h-EN^VWOfQ{t$4=@DzIb*ps0b)R)_aLF@I23DGKP1KZQI&8WoUM($` zmP*T{#nM*sQE{Pkr8Lu;VO?e|k`_qwrFqg^X___Fnj=lJCR!7$i>*|;#F{G2lx9nV z(g{ntG)uZ%`p}Xl&5({;mP(gNmq?SOLzYBogLtttDqea|(qd`0?6EXj4qJ{{x-17Q z4Hn&Q%Y@{prNh#0854Jl8%=j4+k!96jtb;k@+>PYD=fJdYRR!=Te2)cOQt2mvdofh zNwcI{&P&codL+q~BukR`7BpW5Qk{U_5q*PKZsgkUf=|%2DDdcf=c4J4mr(F3EBLD=cyVD~#HK z74F)B6>i&s6-Mm93fJtw3WIiFg?>A*!Ua39!YMnjLbn}Qp~w!bkZOlBkR^6Ng(N$m z!h{V_;gJnc;eicM;l2$}Vax`oFdDD{E8MXGE8MmLE8MaHD~#BH6^3oV3PUzvh3ht8 zg{wATg+Uvz!hj7}q2C6qaM1>=&}#!$IAsG?=(YhX9Jc{09J2u{blCtEj@kefI&6Rn z2W)@}`)q&;du@OUEjB=fW?Ml(N%q))6?WTz6?WNx6}H=e6+$*(g)KHYz1K0WCdWTvjQ-zvjQ-zu>vrxwgNDe zTLBo#tN;wFtN;w9Rse<-RsaTS1z^ar0x)D-0T{BZr#TX|0xvAL0xzUnffrJ&zzfM% z;DvZA@IqX`3cwI+1z>n&0bqDw0bsaq0bm%j+_R8T3sA#d3sA!y3sA#t3sA!?3sA#N z3sA$b1*qYM1*qY=1*qYw1*oCl0@QHD0@ToL0ctpI0ctp60cdEo05lx305lx505t5g z05t5itPF5umj$Sy-U8IH(*o46-2&9G)dJKIvH&$~u>dt}vH&&IS%4a9EkF%57NCX= z7NCZ;7NCYT7NCX-3sA#q3s6Iu1*l<_1*oCW0@RRV8J3f!7J!B&7J!CD7J!C_W`KqV zW`KskeKSzQJu^_lm>Hfi$_&)d zZ3b#MVFqeAZU$;NW(I2LG6OYqnt>WR%s>t8W}t>PGeE-;GeE;3GeE;ZGeE-uGeEn1LF0n1LF$n}HfC%|HzmW}t@EW}t>uW}t>rGf+c` z8K|My4Af9$25KlU12yEEff`ntff`nrff{nn01Y{2fQIE}fQC#nK*KUKKtsCufh<5$ z&1q(`)SO}_N#9UDjH1(OtdD8_G=`o!(k<+F#Cem#>Wg^E+$4#Wubks!J zOzkGpYC2*f2Lq-n(9qtyJ?4sgiKpaWV30DiBy|vOk{(p z%0$+h)|p6!X^n}LnaWM1)U?V(icG~OQeY}HkvvnriDa3wO(fH_+(ed|QcPsADZxY* znc__())Z$VkBk#W^1%4eNXCu#14c4xyk{hLjCYOXmhrZcj2Lek$qnO>kz6xgH^G7=<0T`xV7zD~XN~8K&sqo-mRw<1r)YFdj9MHeJ~X$syxmBiU~}U?h8u`;4U7*kUA&#wH`#ZEP@-K)rF7k!&~aG?J~xZAP-i7&4Mg z#?3}jYusog)y5hl*xWVmKnroC!7ZQqBN zF%@Wn*(uIo9x@%c%5nqk#n(~4;fmq1;gVs8_=Y5otw4Q-SoWe}AG%?6e^&nLT3|G@LVZ z8=CPc!y;pxG1fR?cw~5Jcwo417&nX=Mh$ljcML1=E^)m$ByL65qy^{-ybI7S!x)4I zP&QL6TP!O;MY2R$1^Rmyvv@Y!WY}s5NjF3O3S5A?3`Y%}h7Lo!;fSHtaM*CjaL{nT zu-~xH&|+vdOcC0i;4EU&Z!zo$U+*^58+Jlu8@xl1;TAWBlN-WOKsOQEJQ>R%ZGlaO zIzzUj6?Mv5W$}(;Lx=2uY^Us`eTTJ1y3tT;s4-L-HW=0$)*03sDh+E46^7M@aziS! z%1~-3F%*K>qOj=jtH6+FSSzj+XB*~jMHz;ebVI742B#R78kQK64F%%cOb=QqPR9@Q zg?L;)rXSVE8UnZUH}xa>MDeixhW@HPOWdbFs}C321wW_skMOXzQ$NP+zzcTj=O-GH z&@NmgE)>t5n_xJL;th+LMevSi?lSq}JaHUzi=pBi@dO@b2KD{=0sR$yJ-!TIYWqj6 zOZv0uf_^d63-8HVfp1hx6}RY*>6`T@^(XYl^*eEgey{$J{-FMVexJTg->N^XFBXq7 z;rCyzGkf$+`bK?&zMM%B@6y-nlhG#q7X2W6Ic2LpMY~j+tPSb6;tS|^qs-h|$c+=n zi7zqB#nt*)ag~09e!YGj#MTD%k3^OFHTs953Vpf0Ouq_ZrI1#lFV+|6&oWmoRmV9Ir6x>dRo zU9ql6SEwt{p!mM*AUuFKSA=$7fyb!oa(U5ak0Ziy~W^I$ULAxL(=Bjp3JD}~?UeR9GUefk~ zpbOew?RjlXi>O7k8Lvfa(Q)ls6thRv1ebH?Hi}B|f4^uD?Vilp70&tQ#e$fiez`tV zzaS<0?s$OZCb6MEzoYync~BR{v0UUw2Ozb4PbucT0CuH>?}d-OydvUDI9F z4eDa9=q~Fn>MrPdb?0?Gy3@LtQ@WG76T0KNW4bO~hpt_>Af}RO(;d;Z>JIA;=??04 zYqx8+Xe+g4+FI=f=v*apK(}AFPq$asq6;+Z>a|<7o3yL7rP^xkI&BxTL$pU1{%q96 z?8o~tMd6<_qPd-@6a6nKxAE=AWlldX^FLD>blY_?Azhs=rbf3x7qecsMivqPDp~+v)=EYXH8J-!!R`v((kSJ`JN4 zbXK*(LFc|NQU;|z`5Nu6OZ-WYMN5O$pLx*Iy6^u?g>?%BQFI1B-xs0g_y~7|Am$g= zz58}9LLb+S{^AJ{YN~Vn`d2I-MD%(R^TXiod1|QHHgAgveHl#r{g2U?bsfL|7LNQ9 z#0c{REU+LUe8JBbH~|R~{wfkglj#tx^US}CQF_qwr=Ov$;75N-5HFi0LT3o)nyca!Jt3a$;w>F z@|nOy$Knq?O!NebQAThaG)5#a{Aa=F^0eT;7d;pJxY!dsQa&9W4n8dZHhfN7{XOc- zX5R?z&U*)MSA`aCM88CJzgwM*@wMr6))%Z0(fCJnjcL&Y+hS1_H`Zo@>Pc; z=W7P;U->;6>tH3B(TH`ORI zP`FJ`VwTT9!QOgv-R{l5!^&|+0YxKV+!%g5_-|Y1qK9?Ctwng&LLnkL8PDg#;V_yC zcRmhNABVRirqa)Z!@3W4{0If}+di(V+!@WFlu+#){3}F@{;YVe?#o62p@h2prV|ML zrS7lI9pPE{qXW;P_~2IuUV?bTf#)GUc3>-78LU0{zAg=01r$B=LwC5*l4!+zeq}K7 z(3fcC@>WN1_o1hPH3y}^;X@zkmi>={dBKH;(}N|4oIyux4fOp;>)Y}N|BJ$YdgL_} zLA7R*2KEhw`8#M{9KT|Y#F!RTY3z_4#T z_AP|+f@hEaQVuQuSIwt`ADws_EeqEQmUsQ4&e`pkphLkQp6f%0>Yh438^Oi9yE{;~A=DS_zUV}Kb)y&WNuln@HTdFLUDovx7Tpde-h2+-uB*Rk{AaP?=tUu@ zyPXBq^6o&j;PyMu2Or(e|Hd_ZM-C})aKY&G;EB6`hnu}U+7CDT!PpAKEac*Xr|&(D z3hQL!voH$KIWHhj@ZASnxb}ZetoESm;V;k+>9@yNH~Z}m`9NL4!*wFGEA$$JbQs+Y z{aS<;f^tJ`V)Pe`vgk`Pl!IzRr)1~~M%zQP(o~OU4E=W%8b!%db0}2C!v$)g`C9Z8 z+DrEhvQNO(jj1cM4!sRmAL}ObR_M@kaHDn|I*Pe_|7_VkT4h8vXcv9Ygtl4w;bk{pkbp&7N)B3iN1{5^KzBu=9eDLj%Bxv3t$7kUUOkh>)ySQ6?-NLiYUsoOOey6w z^c(u_lju7vOfrVfILa9(3!{y+`AM`NCw)^u_G1Ajp8^3nlLA5@Ko1rqOqXXZ_zBL=|3)hrP)s%cAtL<6z-EbCI`iN-wON?)1xt>GM zg|paj7W!`jA#0j4;-5(o(1eobkPao%&CemPq5ur#)L<9ju-&5%oLHzJR{{z0aXJFm3n`URHw1fhzpxVav&c ztALe&?8&}DG86S?-v=M}i)iG=;X#pteS;4e znJ+?rB2a?=f{TVdEu0hHngv|9F!5`BDD4NxqOuJlK@3*hjl+S|DzK9iRU)u3OB>%n zcC?h9eFNP_O`)T2A{I-Q%m_Cknl{FH3^d~hQVnI_f=QfABi}+VpoGxex6n+4dP151 zjt*hG3k4VEy-C;q9KD0uzOf)fxxYYv6QOG%?XQuYMO}2pJQPG-p*{1^afGhWl^>wb z@wHT1yV7e8ed{;q4UGEf-+qVw{5a7Y;(w1;F_J=+z`#tSv-TrvsB1oYL5%W3s)Yz_ zZh$)e40>+}RsI=8GGHazKSe_b`qA(?xJt^UpnXs*Gv9;wCi?Tgp&2MXl<+t7B!l`w zRbQe1f<1>m6^mZPsWWL~8)uh-0+oV{|CnaRA|F~y&n3d7T}y3A=w-By&P#%Rucv>E zLqA6w=)5;&4jTKSjHTz}P>p!~Oqk9*txrb2(Dp@${$FILP03E1lAS&!d)buijQ=j1 z(&A)fM9V^^dDj0 z^vSL0k|IBBeFRuK{2fI9vqY_89xCfbNcrmJNdpw!u=x86KIB^&&H?hEhZ#pAKJrBHk8|M)a*r^a zZ7R3#o0)y#yvy|ZCG;sw`H>^i=``~)`hu-^Ci(}#kt{oX>I$00md=E2ZPt$%JD;TFhz>!@)UKEgvm$*E&Bue&sd4~)3$#Be zC}~Pi(SH-P_9_U1jqzWC&Opl4?zmL6f6ULX2z_}C0m3Yyt47ct|5zA07d}4Mkj~GBTfc! zeggBespt-J(T<}`h2%D@*=Tk?ZH%?pX@E*Zw783z24i`si?Pb?gu#HF?_uf3rL3LG zk1<+&Z#s1zV_t`q{oyg@ua8$Y^RJCMhCY9sd5NAFg=MjVUL8fRp-lSh81kTW`X6KH zX;^fLV`v=$?qb6xGCFPyFa}tGMvtRdD!GsLfKS#m4%0b62gZ?;t%ARpr5#0DT_|%U zT7hVYhh=!3p5*bf=wwK(!G#Flokpv*_-A-@8XZZMnrXvYv6wc@FtPLr9rnV)jM3qr zKzs6Z_&aEff-_>F8C}rCGvW9Qbdt`}h$=#A`mcS z2@44Qz>5Eb{-*>VePqKNG)Hd7Gyl;XJFU4RR?y!#@JsCIG(ky6`b0+Be$J~69d+Pr z2H%?&n(xN2nKaWcJouM*d>TFK!DIOTG}`LLYd}?>`S8mK?GEkqV=;Q1{u)(2fzu!} z?+N@!bQ8D!L})FcyijnIvZ!>=b-m*%*J!V^L;jc<)0N{jhs|U>F8|e z!K4~}^r>gVN(k%HM}PS&PDKUu^0W9A2&O-WS1Fb;p78z;bBfQPJpa<6rI9Jj)4dz9E1RZ&a@zC=xV4wKXG^m5irQeLU-x- zk8mU%_z~u5(~s~IRConq_kM&G^n0)1JamtCzXE>EiC3_aM!t$WVGiAU6@LWje|Qal zkN*BONSD5b?X>kZoFMKugLM~Ev`TKKpZpkq8yZ^hW4uW|7*1!x=N0s=6o-NG|0R{t zzs2Cw(2SqI4n4X_|Nc5Yh>GcJZ{WY8BD(7hJQw9t*PHOikolpWH}NTqZiTkKg=aA6 zIPL!#E=MP5`p@x~sGF{9VxOS1-iAJ%r1SQ$w$Q=1@yi&U3h}?h?;nijC!GKf5Y7( z@WfgIurSus2Lb%aOP_~Z4=yy!ZGeg}Mu6wXfBx99o=nBz)JgXmKEr>0T#DlnqV)fi!AvL*-6+FCm{rsj_+hwD%1Zn(@_iw2Ph#FJ;qV-RS4IdjI9^(z z0^Np_qs{Z-wktx#Yw@e$ssrmW96x?R_0?doz6h06$hTC$iEZ+L)CLMAC!5l;UVFWHg zu;EQdC>YJK7$wlmwPIap-Al|B7M!=>tIQ&~_M?|UOHi8+vnLN{avz1B_$l){q%KBo z_Fpc39nJq4^9u)pu zrvUYt@I1hRTF}mq#($mf0Wb{j2$Ryl=>4Pk%D0)zV8`Nq!6bs|mi`CxEeK}+2XhEr z-ttQZ{t3h45dIbO({T9qJIn`&jl~fheQT@CM7#cz*$Ss4X}@OPf>V%lzh<(LZV&+g z|Enj}&j=zK_mJqBF- z*JzfG{0>=y^M9fYdH%$RRp7CPPojaK|KYK+{GUVL`;sX`Ah-7``19S=S>O)#J`eUR z)(TG1gRhzC|8jtHX2`hE8-HiuKZAg`H|hDU9}Rnc^lTjSJz5mYyy^KEEN%Ey^*PK= zmB^YbF%{1b$EiAw`56$%oFB+6roA&?fw2nDDmX-#oKzev+!XrB4`ee#&2h{p%+%@9 z%c1{DU>0H+ifc*C?^tCj3eP7ddI&znZLs6JDpw*3SUA$FK1psOG3NLnbinVe^m z69s{H4f75p2G%gMAgEo#yr~(0Ly}j3H-uLgF7&_wa4O|1nVC>Fx^lA0SCz~R*i_e7 zGB2U@&~PR56~mOnP=f%{u<`hFhqS+$GiaTSyRV60jceE%r*p< zOE)tC2;^J9#a=>xu>~gh61r{+GY5ieTbLh0n`eb!qAj7XhZr{mABC9BXdvX<%E&Qf z&e+cEp6vYV;l(e=LA^45AT+U^i2|+CsNJB=FKPU4<|pP)LG2lM{)?dgr?nGCj7iXAsApm zf`dN!)CPu%5wzjf&+*`J@Tx}v4aCjNi%Pg@IP*nO_->)Mnwk473eq%`KJ^4A{Sb2!$N%dhfquJ{c^PKvpIc#C0VWR5r5&o3cYZed0&jOX?`#Bh4r7sp&UGE0R2L_SQg6B=@(!sXVX7iV1Dx4XRzPH zW(fa5=nZ&AC1}I;BYHn9N5p?Nd3x~%oL;~g@9Rp$%n_u|;s`;`XVdE!z=(cEJr|jI zAZhVMn5Li6){BhU1hv9vwn{<#p+^jl>EQjU4I2I6A~WsTaHG_MMo@pqe-=Js;@sl! zk?TyDC9?U^GT6wz3SWo&HQCc{SWtRvj3C)f((fu zdYmBxNQF~g5D3X~IA#A|^!3qYCJ&>}Lh=FT?;_~Nk{ir_f%DA{!9MgAeS3&Wh2Y{4 zn4Hh(6T`6Id=+|im~o*Wgk>58#p7Fv!tHsi+sQ`B1n(~`Y%Qy7G$Imb9Djs2UKrGxjGr^SikY<)P}LEH5%35|Zh%oBGC zkoqKD_>9CB+Vg;UABmH~4@`eHzX~3s`m>-JlIxb_U%i zVy&n-XOMH|h}kgjd&KM$>`{O^dOiV8WBw>+pF_)Nv6y`o#I3Zz;{=I>T?p~U8=R9; z39A9Hq;s<@ZaU+2R!)yeSO?_ZlCV#j_kkC}r!!XY(wndcg&h(GG`uhLjFg4_rJ0_R zv0sW$PlIU`K^M-Jnd!`Uv6!B}>QUh6GxUambOmY z6}{8o)>3#@9NmxTylNP_C@q^XHO#O5bA&}scz(h!W85r;vEcV&a1+6Wz|ot+I|qLq z4scjM5avQ1J3Ficad1|>own%Mr>Ew`doMwIw0hPU&IHfu|1dWCik|%ix<-riYzS2S z3j;fk9SRTBa2q_nnlow?(_uFjQP^Z*8TYq*+l?>Jc<#t)~_PXzWCl1Ctchh1Z#_y1w(y8rRa?9A@W+}&hTcQSW)%@NoeTgl%~1C ziUJWCt4~dpwhPi?x0jjUFIJTD1nCwZRL+yG7;>gbdr-@XH0gdTs^^=ld%P!>+E$hZ zB7SFOse_V-F#~5>DLD~Wwx;P)U698^(xs~6&C%I?m2TXPgk&1}isYh( z8Cc6=%4z9{)rVwADPnL$1({MOK^mHYO*wQccp>$(q)23Jn!=CZ(mJ%NB~pcSf}09QN;!RI|~;l@Qae@R&`9&CCaTK zEw%mv007!6%CIDoy{6PQSpRD^rRv~o7*!P3l%BMn!T2$cNn?~)6F?`|!94e?C8eUs z?mE(gbf%W%HnRy7ekD1c9<3|I&|S5S9O(3D;kVNIa6Rc&N9t;p?R9&xyUcFX(f8Dq zjw#Aa$Oh2OLhAOaCzTE~k}|-HyVXcK2L9f$#!?&HwbPqOuj4wrrHO=#pn*0#l-*8Z zp^)p9qJg8jvzfHq0*2nkd!^Q>gtd@5h{w~pE=Yi+8P!4xwH^h`ViSbLi-7*gK3U(~ zg4fH@v6pV#C)reBP&>z+3gujOr&H~gKzqg>Pu2&tl)m9Kdi&N=XT%xk_&{sPBW$Os zZ6!Cb3XqzI7CfVARJo0GuZ*cx{RaNaZzS1iRvW2-@Dm+rBdx!!NYQdv7-hGS8U>1E zeNIbF!C9hBMP~{F1 zqvS`Vn$m|Hd~pCkO3+7P!biNqB+9%bYqEbsNwxgj<}X|CmJYT%*Sl2O$cqW*)L1&- zL5dJI@xdff@}tsZVUxb*QK_mROxKG#N_HWJMCXSPE|sh^(B@$0Yg9Z|i=~9lQjE!b z@KCGH(h4CE4g zpz0G+Md=R<`qpO{ScK0%Ayo^7(8o}QST{g=Dhz@lLzgChfaK8kj*ym0!u~QbC&o!F zN*JvL7u^l?p%bM0RAF>Uo=~bu(rUBxd;)Dc~1B+Tiss1wQx;VNt#z70- zm9~pN8eH1Rf_`KZLhU%Xc8Z4rKCkR;Wz!rIq9U}nrrb{_(3H|>i>Fc75v*<%P9HJw$@jd zKrfVl#F}3u&{zv--LKO30g#|YzhPs~(J%cb&Ecw3ldl+K`|yg?9rvfWt5Qv{=G$H6 zIPV=j@0zqwkaprsG|9ZK3liiA3DjaK!0d7Z9WUGsbiCjXi3z)D$RAP_5gr_I&Lz^W zKcom6{0E5gTSyg`2BP_gZ5^j2fZvBsz@6sN>mVfd>Z`BgUV+eeQ_AO;gAZ>>-Nk(n z%t$yYye?6iQD1H|BUbj#ST0u=_RTmc*Pwd^*-Hx^ij=92AcynZ;cu&6>M5X4Mp{Ar zREd@gazm*Qv^j;p0^YVJ%0~rZrv6NK&p-hZr7p6333#xbRsK{E$GfMWAB&5KBD*O@ zLG8~dpxB!$ax(Q%R$-wj;xKS_XeGI;L;tjfe3znK$cH9?9aHj_t~QVXA>Y%SyXBv7@{DOH z4-#W<3LFW65#V*!;wbCj-U|4FvcNPwp^<#b;yA!lIaAv&_4IKCQ^IZ$nBeFxnCR^D_o)S>%Ni;|qdc3o|R9K|jyT~61(!x-? zKx^K1x%IER$}22j`|A@PmlvtRQa!7;JS-C7dwKF#68LqKM#{rwFgB%J+AvbShdPgv z8-dZgV3hn(MQqZJE94yrQdi0k;^s4OrTj9!E}38Vtdb{UcOP0MUlY{fh87ig$@<|n zvS1Oe)6w_k+QM}``~&V0`8v7R%R})wYrRY&KC5kzhsInNe7FqN5~DCV3&xn*8EgxE zzCm8ZPim2JCgSora-$p-HN;;9N=IJ#9z#XgSd2etfhHDtUBXoT(tbGw3bcC60U7+W=k@*vt}_{XoX;?NkWPt>i$EckYAunK&BA~srQ z^Z8l1$$BYFD5QmZtj`Klbhg*}l2`)@(76VQaSNg&HhJnSWJ%q5knv zYgZYa@}0ESLtnd`v`*)Jy;Nk)krQqR#s(Uu2-YDf*pULX(m4o1eBlhpmmc`udVmkM z(itlZ050n5&sv8|n4|g^tu7hg4_=0kb>UmR{Z(s4K6it!SqE4U{&L+4dgxo~bJIEo z!IhiVeTdzD%bF!2_Z5q6BvSR)WSd;idR2(!^u&tkR*$|g*ESc58G6G;Hn#=gBTa4j zB82Sc@3E!gGpf05CQn{*ukA^n@SPsn%Qi1g_*8#yv~7&&F}I8wL}Ot4sm7KO^z<>d zU4ouC!B*QLe5gPChOM8-0nSbf-J%Q3O>Ahc#$v4{&IICh4x!&>+x#Gt>&&qwBj`BC z)(=Peo;kJ#P_ANgZJjZuU2|=fXv$pMT^I;{-))V|=j!oR5QibjTo?k~%6y7{3z^63 zue@dZ1scD4pH(&-oB6abOp2v~P@j#)ueS}+Bj2|{S2>@$&&0u!_aoRh^)}dQ>aVV| z{VbHttt0p3KV|HNEc<^1)1YmxU8e0DY{$%qING$)_Hgib)+XCz;Rk)oCffl)_>QJ; zu|0(u{C$hvJmMB6E78=pl}(}{Gpq__AGh6$A~fi@>1Rnsz-wN`89WHUPQ=)V+bl zLl1s!JHksnif1U%5Rr?Yhk; zZUN_h4^%=6uiNrO)YI;kZ5--3e#=&g7nB6$S-$7{Sd=_Y&YYK&K1Scb{cuz6ev72P zDl3gu)Ljs&^u9fPwaT`zXBYv z)bNlH=M1a=@=(!lb&jXbjg;OfysMFN2|8n&8!IVyuIieMqqSR0rL8`;g#vxvIXXTx z9`aOl1mD?Ln~xmbA{c#j$`Q95~sp_FKnF~L$IFExzbUxMc-hU#B0 zQI2y>fsfu%B6zrGnerOf54dlIvRVW%USFjoT5xQ|tyPv|BW_=-JZr^?ne&m-Fvb~@ zg0sD+zi&TZ2p29hEB>TXpO2JN*0UUuTdD5`Xgz(fQArh+QurckEY7qg82T4oV5F+2i_`n=R0I)91^ss`-Gt$EV7Ibc`IvJ} zL!85D$sVOYeYh8(9Z+)h>{S*}(mrJ}9Vvu?@&tNuztW;~VRr803sbOP$)}!QCLI^gtKb*z3gKGN*DBDS1B$o8NYQ_)B=*R) z3b*%s%x3hQZXheD=){9cHtK70P|3pA5PUgN{;iVoGg0g5gGy2uZ|wDw=rOeEpi)Km z98zAe(EKAxywk}$Yx2MQ0{Ub1kB%rG3N=QG1~KaYWR`%pEMiS{gav0((TbVyW4@VS zlK7m=_=P4OQ|_kkjw$EGIXSd{Bbe~38^_CZ|K8@^WV3AE#-)Dw!68k|t_qZKT-^D)rU^CgoM za`yDG{9+tZ*G?$!q8qB&mOa=F4JsWUom5V86{cCmN{!Mij$jssEZ-Ib2hyDHl{)&N zZ*P`5%>Q%E@eh z(TIxvL@KTaE{*fFtda94WfCMc^M6tvQH!(vN02;o8128Lz+LiLr6S0bmS>T4%1l~q zBqh+!vr2Uw^Eb~bRmJbKDd&7dEaje6nEHd6uON_b;Lpf+npXUbDtH(d6fV37X=z)bl0y+A7yBcF{fk5|0}w> z_gCd!WtbT?(~QdgRZ+#^Ii+(bjG#WhVZhsX* zs$fDK`CYl6$F43LtGD_?af>wWhSHjzyrEQ~lQ)#X!XoN&Q)v?wYU0Q#&?|q!`6QDe zIhE<%n@TPTx0C_WxEwGvx^99vsOWuY>5iv`x0IX0h#3piHMqi0nX5v5=^+IK-)WnT z5}!`7Ql6kTvu@7zI{cZOdlyGP2x>JP!?B`z56a6CYC~Emst2Q=^J+k~KG9Le?qmYx zgrUkeE$V9!hbBvEXQ0|4lKKgKBdZTZ4;MHGL-a;+v@AG}SiBDBA-$zljT5ZH1qj^_ z>Ah`gPmvnQ>H_GTUZ|kP(0Nr|E4)Hun3_q2nyQ<>Ux^=|T}#Y{G=7Z4QM?U0DZUWr z)5&4@Ii3>jY7Hy5M@WXeZ5;ruj~$Jyqj7fiZZCQc%?NRT^BJc(2uE3UG#CLHuyisG zOd_8{y&DtN-Jw>+c{9bK_QF)$a2Qk3G*mr|SqQ!JEHuRgycDK(6F<(TRf%c?igBvP z0BjeX>HzDNs-^QgDqO7vG3TamUa5}xbqIeuw_oX-Bh?kXnyCiJl0 zB}Rol!a-W;R$s@|Rg6^|#l3?2b2DyYhRtILK;004;-)1yU!esabz~r4(!a>ZYoNiE zAQD*^3zl$jF^<4?`A>^+GxpAl(IZa1JHc3tzg>wgn7O;-u?X|1cRUv17#)ibEDzj4DI;nTFeo zPzcdjw^u_Y>QrBi#?_)*in@b?h62#oFE}C2`aD(>4`oyKufBLH_#;N5F%8s6adS4! zZJ=h;##GdMgnmj@vxQ}Pd<7M^=~t*zB_v@ZOSG$^I>n55CVm#z5S6_$mcuXg=Qdm+ z$sss~pndWg6;)E7gsh=in)))#(88Ob>!;Gxdctz@R#ww-sok2XCX+V@b@r`{{d158 zS5|BBo?UFBCen9})eN&-4YNp+y^Q*0p!AX^YDD>h?U32o3_x&qhFTdE(bT5u;9!)k z3Xjrrs;IaY4X5Wa(ZV5`ovCuJIeODb=CH0%i{`42(yOXbNNreEjZqGPPv{K=t<|}z zdKXI0tg2Q?IE1{0LNJtVK*}{MD<@q>#Z>_y#!!=}c9!Z!SI}-E^~q9`Q0=5FwK_&8 zx4ih zPB2BUj_qI=3=X|h!L2pa#z-F8M$M(BHC36v z&AD~I>ZJTSYC~a}{$(9?7pIID)hmUDGtj5IGc;_c{`CP3KxE~hfu3%l))22$RMn_nNHDX-`8y_bYTOSM?z9_|*p1SG*c7VAQ1&Cj1pzm8-V-yA07Z zp^|EM-A;}_11!gWPM}$puo*t1ul<0k@EK-I)DP&J7|Rb^_{SiM)+MN=B9d1i7A z2-1;~L{B!s+8QYjQCL&#zDXQTQs}9s0LCdMoETB9zyJ(_$eeosB8O?mJvbVNQ?ur3 zZF~)G4v;t;1c^D#4Ujn893XL+gAa!WJO87U1Br}_7&%P) z??ulhns71c4sgNfi56-XVNVHAB+}&;YWH%GG35@B(Sn+^RGq;YGr+?btd~}_#1I2L zxzZA=Wpp$E9)aEhJTyMFvGiIC@C&IGCfVo$R~I&Bw_0oLKg0HQ=$$I4-$reMWPnMx zAcS0NV?fA~wt$c`6xR+AvYk4#1BA?@UF`x8lKZcLY&*#DpqiqGKdiPA#KqYZ{$7Mh6v~`B|{uQJXlqQwWo-EO4ghELzb~y@g^cI;nmH=R4uR_=NI0 zs|OG~*hL+Mf?st}TdNbnwKPjq>k7hPG0p9&oG!+cxyoj=pw%%Is?zU3@}Kg@7&QNi{Q&8fm7Y!xicAr+{*D9|f2k zeo{Rz%@)9U=++Ua@X}M*1Cwc9M^J0`J*}Qc74@D`Ya;0PjM^8$H_xbr2-ZHUj-q2- z)N0hThnk2I>0Q-Iw5Er8AC~Y&5A_7MLV9Q=OE%W|&}&(ZtOtM?0A$u>ZJ7AUvh z0QHg$goWK}Euh@W)_5BAg4#~uG5&0)Nc|Rp(Y*2{RiXP{RKs0WLSW%hDq%GX-kzUN~?j@}GL0UK+7mlA_Qkk+U+ZzU2$4OhK03>5yRxb*h$v#l+ zBdn!C1J#zCmPwe7J#l6r;OIR{dPRK!&m0K~O@0j8V^2P(E&~5^Yq&j{t5e5OoxW;L z8GV(JeX-?+&>MZ#T+0xjNZC(F@or3l%=aoZS47Tf$B}&(`0e#*+A9Fyfn*(|dinCm z#w1o9q&6@OD-4Unv4eo^*3sL8)OuxNZw*2_>nP&Y(v=D|R!ZS3v=J*sLta&*6)X*! z!_v%owRCByW4>w^o+IaL#+q!%SD(h3?0OAe(Z3|TkCvnj^vXSaHe;V{8I1kCiTpFw z{@7JrhNuIO>G((^6LhU%c!SNDH{ZyVGs?&`JI~1Uw>34P_+hv(y+^MMQy;@Jd_7Ek z4neEo>b=G?%vCc;8?HL2a5%`(gVe5WI8?4SsnCO6#jkQL=%EqnJ`LLey9|c8p|tP- z6q1^ZROz4eu?hJ`t50wTB&+Me=SbdYDAg|;t#)x5w>FDGopM^>5V^OEVnWdn!iH=AIiX9ufs2x*y&kQ#Kthn!|t1n@7y1ZT% zAV9`ker>$BfdYq0eWijznWg<^X?j>j7v+_wZ>Z$}EA)M2g5)s|4|85ICR7 z2XN{-fHRw$zjm8-2e5qK084ee$T^8HO@T)awLV>)iOupQJu+WS1R$4((f7%K(eaeD zKy6Ifv(&8rS>12V2Efka09%!^=cqY+R!J!v!wpxeM=l`?OEa8rT{xu*Urbia4wZ%W+%V8mW za&FbL7OCkL?z@T`+Hni{fIa$qH2Hu!8UhmM+aMU1(Q|JD>klK(AwY)_nM8w^fM{Dz zE0(Aa;KnN~1tGkGsw~CnHjL(eskStEG4OjaAL1(YFzClODfTdknq~CRJ8Cg<^*aj1 z)0da=t1`W_%xGX}fziO$jkpmVU9LKe>z)5PC2z%~y53cvKpU^VtB!{!4`l^<)|cA- zq^6+!_!a7zV3qnxqsr4O|5T-Wb+F2_W|duw)KGe2wfeA?-w6F@Y3RFH*K@1EI#@vW ztiigKwD94Y|HCb)bGg9_Kdk8P@70<#Vh!e~Y;yyt+d8#k@=RbeF0Jsxb)Nb@Ew}HU;Rab zrjL-HX-%W2_Tiu!Miaik)vrJ8{6fvgEu#AYg!g1<@Qf7QO}QGsgHy%M1+YN3ZN)N#WP(A)ay8?@c?!( zuBlmcVJ|2Q`D?YV{?OOp&6)iGr{@IF-$c52qAUg|J_%eliL#2o62?{fl3Ja<{?5R1 zZHr5>+(a7qi`tSxzrj`R?yuDZ-Tw`+>%Ud;T&nf`ohwfMK|L2`Ahl9Fb_J+y+@JB7 zF^X#BEVykR14GHChMU06s(%Rrh%eR~oCu7JBejLsOOcu}sDX6hyqfx-ZT1dG?SHN9 zJ0P`*Iu>(~@Sh!Xd4x7m?{F1I%zw5?y3^`TzM+2hzp%u2z-Zr~j~UhkkhVLWKj{5$LY;?-_JQ$ohUUuJ0BLl2q&KEK(i>|cy>T4rwW3Iy_CrD( z6iNILa0^_E1lYj>o56rEojppS?^t7K%tvY%c@?du-cQl03z6XvEcgZgyGOahM*NRs z{Rwt}sT4mBf4011O_lu?=P*G})3j{CVFr8u?WX6_{V z%&E02SEK{Y4%g}+3gzPU3*p)!!FnOf|Lge*TufS#|K4`V_#ID?QQBiPGfHbfFGOi6 zbSO%D7=&7tXf58#^=h28=$>e;HjRwd9*B(O^TdbkxA(-~9?r!UIvlO}$PuGO#XQdp zom-`+^Jk0UCc=-O&r|Ift)kvDM%&FtSI4b!gZ1`qjK{%UbodM3hZ-<`=wm%vDz|B0 znV^kEP%Dv7fZi=pi;!Wv{(Op-4%ZkoFBMK-hi6TnvdpWus-S(sD-Extc@Sh&(h?)5 zi*Y_~$L)o?G_2)!APxb~ zrq`F{Xt{#@f~90qF3{y_TG78@|9ig{$q_$Og+u5AE~KL z5~*rEEf1i#s-9MbU&+3%r_F)e8!9|tS^96ZfB7E`k}5RR;D1ejuAyd^#EVt+*BWEH z;uJpEL|YouYF>rxGq|yz=FS5vf%zMS~n3arJuWL_fgnnW>>hM zm{hJuU#q*ef^uK*Xc~wN$kLsU*ezsvOzTLiH73zxk7-LNx2G0Pv5#vB;NI+iQ;MYf z9@kXyZIK>&T&qiMv!TE+=t*snnXl?oniu)nJf+PyBW@wW0dJ$YTf#+z&53f2p44iB z%QX3MZSlV-6am3B3i;p3axRApQ|E$EM%hnmabUf-d|LBXStOszMM6-Kni}S<8P-@*%O94-{e@|_`@txGm_-@=w>j;DB`MtEd zDH`{|3+@GQJvS%dl42+K^eS@OZ1BKgkdS{si>9#N+S8tC4+$zie~P$|a${`Jj>!D1|@1upGIcFd3CQWz)I;JttXju&t}v{L2^T5ANazMzdk zs|6Faij?u9rc-7Z=;B*1YDwbT8RUHl7|f=3e@VLu^CWCUDtaa*hAuoAYlHU%Z4@f7 zy;5eB9;!H~q|G}IwSpw@e%60AI9f0L@M=k!;E<2K#)nK8vX?3i)=vH9u(hSUx<((r5!&H!RiV1$wa3uHoblSRvMtc^3D^Q9+oj$_ZG<^n$Nsca zD$>nKIE4cf)p)Y@#hoXr@lwm6R z_vULq2%d{o1&ssiYM5?7+ZKq(8vxd4uf^046LW+A3}ns0H5N9t&YAkKnLxkpnWA$( zd_08$0lp5%L;{a+UZ6K;X^%)tGT>YbrpxgZH(LuY{nT5|)<%lb=JY^vbR-rTmMx|C z(UK(HH&2@_ifc7}%K{B=5bUHAE3^!%^rrRzG~x%nsfi_>fcvpPC-N<3CuS_x9w=>< zl()-uqVC(;;4+<{!%LA|+OYDDHj_6@Xt<)jW4RU`Xnm=$K_9(RyDETvowr(BA$&wt z*JxS72I{g#OSf+1ZhqY4?`=z<u%_VPQ(XWHIF9p0=NlsIH2NKJ zd9y73BYQ)f%^?+({V<@b!MW4WF!LYTQ~}%hU`P+Y#sBNKruQRfYsOEBT*!ogL2-N* z|LBUOwD+}kG=6CcH2%7~Bc+cra9#J`fB`HVTsYuT5z28=lqCBLL=uuAJ?r))oWY!X zU#md9kEf{g+>g*z!MhVxzDjY^-5+QPDHe1k&(Z^K-#9~Cz*`ov_6S(naR*BUVr|f# z5)J-9OOfD2%uD&BTqzN0erOZ;zkrJzUJ`%PDBjCpEDLjBie8%HB*!{nn>P{#hGWZ( zx-mEbuEnVSIxUL|+riYJLnm7(4O^#02^OMtK=KwUSf|yG;5<(0OuO4nj67OzGPxq))QNLM0V*8w6H>ULal zQO0`BNxvLViLt0Ka4TM?#kopa)B-KK8Fcq7G-|z;DZBYl>G%ldDbx70I5^9=wqA>( z*<)NR)aKt2Qf7=5KMamBvo92HpZO4|2>vZTG{(5>!?I&k11-kU)ep65q0ZpEa%c4r zm#&9BKOZgNJ7FvaQhjMkjJK#vTcv=s7Ka>nl!XItKip@BT1Qy&q|HG=(o2 zuUetLaW1bc`a>|bnj5rqdq`k4@uGlCeKu&`N`gTT`NBX8wK06Tb5AYe5CE_>GbF^v z*Ap}WyvKA*ana@zuur<&DJ7ilzQliZObG+!kv!RTH+A~O7f$;oVo$_9sbH7xblV>E zuaqHMzFr5bW;1ZOq28!8_1ZE+y78);^>b8!|48f_5kFJSpBDT~F@Gxf=_?)le$^Yw zFCsB;iKpFb!;QFyuS}KA165WmtujzMuQE_OuQKJ&RmM}(OlKZ;0&4vbv+7@k`Nd!zmG~iPX@=-wcOiOp*=U7F|5_W- zYf7Tajo${lG=Ra>ODu$c!JM9ZJFqD$E7fA2+7Z>MXwDO*=WYfo3Yqa zDEwp1<4h^Te8e&-6#g)r@f1x}G!i?yBP}V|Lj6{yL}sOO!`@(5%{sicrVb-I*i|d< zs>O(=DpaQK1zHT?6wV9Wv>;uQB)&=M zMxw9%MGjkjo>DQ`UtFwJ$;_&Q1)@+|ZdmPbgTn`?jzC3HP$b&AXQk@H^Q zN5jRe0`+|_MWdmg;GURDd5c+eRt4_0A-GT$zSw|bbeu;A7s|pH%8aHp{Zk^T^JetD z!CB2&A*8emP)`P2*g@j)sc~e6xP3rZ91j0guQDsR0=-(g?ceTI{-@AB;QgVhpK3|c zTAbzl6op@>_g%Kga=r!LugWoNeljfiR@aiOF=6~x)E8tUf&o4Yjw+}vNVMTot)bwg zKR(rRt4sV2g)2zP62EH%dp<(3+b z1WT40kI5K{A4z7AXqq7zBME8hNGLmp31*h~@>$}_W{G3=ie@fP6nGAR_2e=hpLTe- z&x<6Q@}r>9Ox#MT;61xkd8KAB5xGlOP5`{lEf_hKxghxCUE>F^_Rl+U<+ISEyR>8k zukONq*g|v6U?T#j#Z*q@r46!?e%htgiY=ic@u~@k8k{>YW;e3X{#h)F+U(Y1V(!!= zo?j5&aMO^LAn#gkbA{97Nz7_~&K~NMiuo)T$Wp*E>Z&RFWdAD4nPy7vo>agV)K4roUy?4VXn<&0=AlpUie z_aIo$U(vLKTC1pUlZ04)FSrokm+*UmaVw}}^G_<|w*m)F>oJ$HMx6D!3EY-ch}<0@ zyN&ySEpR`WR2`|_9{hT6?w}U99zZqn-a}ek3a6amISd}SBN3iP=tMXLVH85}1CqmO z^dYU8%G-iB*ko|o9=CyXzm8kyiw`jug*^oKSr^W@!n7T*v-lXdJTaMj|MpPB>nZ1$1?3=JqAXCQ*(-EERkV^mk^+0wHiHV|{xu zx8SDUCvaqZcoH2N^s^Rn>BUdCRIu+81$zM--EeDT8zX~ zshDH6+?muu6GLIO_>&@Ks+6~lRzby-;&aIi9W}nkS>7~{zj8>h{63nIw1)tUw zWdF+6EFn&7>TunmDIRT(-T0L=C^+`fMOvx|RB7zKT}7C_Fw<+*W%IYKSes%_%gwV| zf+g7-K?^;gH@_;@76}d-{Eb#q4aLP4m=0ao_zf7Tp;YvZmXj1_BEK~8xac#OksJ>c z@fWvha2-_2xrFP|f@bV2jXI^(jar*v;)Ea%m2*{0oS+790>3(6{V9MG76)(wzls|; zK@H%9p?Ib(fD;z>XSrzx%K-F-#lIWd-{jT602vC0*ql5p6n#$M3R+N?<H{i9mxFi7G z=S~AZzD)~XWF1XF1$P;Mx^R~(mC|2gY3AkA;$P1J6^umY_qjP3!m|V*(q;bSz!_uy zZW}mTRkkgiV5KK7-Vn34F zy~;9NMx_M?_<-gP34nJ5fzcoBj=VD%MV5e3BxRr1_&g2i!zz@((5v^eYgYx6`8xP9 z7JDAfh`ex-XY$E{=ir!XNQF$qJO>}7DJfQKswrtg0!puj*Fw(xURs8BTay7|c}+h# zKGNCj4>TAP9X&9N9&gG#$)cUPpolbLl$nmEVe!!ed7F0dHj ziF{Z2k&Td_)e#8Sv5&qL+k954+XYtQOMTrOtk%6DSpaPPU5CS}5a)1UAda3(wkd1}X z#RF1ow1d;f;CBWehWj*~W4f$KVBHl|0$DM5wV+x3pOudVk1m9S%UX~|A zpW*eQDWv2yw#UJh+D3-Q|VkYPlbRry%+Ci%ad2EvAh#zT?kRG1s*PL4aw>gCnjX-xwbHNEo$E=;pu z#RV$oHOUPIEGOcP3T>z`yiA23WO(_EErn-EbQfqerRhJvTJx!$udDqGVIA#1WjyZ%Hb{Z!xH_5U;hV11iv^Y$us>GfJa_ z+zgp>GjKm_of>KJc=536^w=R4_;eZM5)N6;4?ts}mYxYT76&2?>>b<+4ZqxA@q}=~ zPqxQ%@-4tH;~u-gFoRI0Oo|dL1J+y!Zjj$Jwl47r!mk+c+*Bv$U!L&5I`} z3>***6Bt|o9GnH@@H#mQ2uRmB#6emB?SckbfWM#>3|DW0J<{asaKZu)0rIoN9&k!i zCdx0^9Y#LmtO+F8nORif(1&t3)LM&ntu!A$?PbHsnNeRf-%mXdJ z&!NX>xO^4y)rj2<5htuuyC#o`JG^=RLldHsILQbbW5kG8lPahvywzFPS=u* zX%d_T@*Qa6?*Nm?#PIU%?)oN&5af@^V!|cRzldKaU&fE)xSI~Z0wCyXTqh#}*U9(zb@D<;{s>oe z1g|ZimoZ1?cgevt&4!!OJNXKPqO*G0!s(0+w<`WUNLXgX-qp{8yJCSHMcWk?t}F)` zj4QsKs%EQhxP-EoCA^o@g?N?};Vzji|GS*f$%8j?yjY@wh6PJS@I_EpmA!{MOl%^{ zqV=;NJ#M41>Jbr~iYoJD*^0oe^X6~3N$t|uBB2iTVXO;v4TA}Qp+SP$@z`YXVNiAr zyv(O3+8Jz?Yg3Mc4Pf025)fI6un$f{0Bbzau{y$|=wCWmH9@FJY8ZQ%J;L*G8taIW zFOjC;t!tVP#)h)CJjtNZ;pg`cXcg6WvbulS(cdR~`1N>=lXYRuc}Y%$?=UJ&rMtsf zT39ZRHJEt#o7W;jIYiv$Fj|+w{{%M zv_^1L7(qSaSTelg1dtC7lVqzmQlA}%t7sH_jg(vzR+ilt;n)}8ij_$2*^l*Mn;@2HMk^K5&?3qb0w>4ga*gG7DRM}mk z+mpb*rTHmLR)hPajt+%}oq{!+PdzRKjodI+h3_=>Ew zoBYFS(EoYl{|TA^-&JJwOoj^|Y=A-9q7tj(3efmhjT=%4jUPo*zjk@(ZOCXmsoqcs zB5}TQak}x76Y@Tw=pj1pS-(|cHU2KoBWZu1XTv|plUVuh>ls>^Rd1SVaDz-?sUhB$ zy&!QQbF`I+A_MHjV04fmFvQztZn{>PwS;S^TwWO`vsLm}0S@bt4hGLNRhT_2K#Lg% zh6Hx;^mOK@ZB4lZhJLS?mFFM7SMh=bov`lIfi+94}xf+;8r21zH%B zg%&=~W-Km1{RhUKP^KY`&S#^c(^;7Nm>e*?s(fC{%OBz)iS;b_G26ki-10I9@y;gbxhO zfy)v-m&0P*xHJ8!bt83d4r^D!`UbSOR>T3$sVWoYFT4|+FQcxQS@sq_6TItMh%)BtZq~Vg@L@um~=)#;bbZA_!oCU(5rUbi59WwX}w~=~^9Z+i$I`?LTB< zzi}4hG6Y*7H@INy|1Bo=ivRMj|I5GrC;V$|cO6q^lV_oZHdfyWfy$rhZof%)D`n~K z!XE$u&2e5&2Lv=R>F!*E?pA_ycMekVB1&uE5!!lJYGul3&ROQvt~o2REY9#w&)$?k z?e1k8X!XOalTyc|498Hy6{tfR1jqaqY=%j;Fiy5);3ZvFlUk0{GzsNp3I|pu=QB8Y z-loF)SQnFw5jh!?N<)6sY}B8Pz9JyLRYjB4sXNyr1}nuERe7EIGD8q(645}oJ);!EQssZ`@7?HZ)h>0--^nB--NRVG^oK)PN z^$t{!NC6=p-!Xp@;#oVe3PB+r#0#bnFN<%NE%=8u;_yy zrbltHs6_X5WFrt1c4YG{srEFwa2DdFN;I#Nkvg?4i^e-vtS_QAcQ&Hdv_n*AAI|OX z!a5_q?Sp8c)%`52+{74_wX5YuWjX{=H3fKTGp@Q9N~Ez?JP)?D8LLL#$JkvYU-M;K z9QJT(U}fzSRnCk+f6v1G0e{Qfp`o-=3yg7i6R$!0WgNnVGTTds9%pr32yD8|65yIf8oDd`@cE}|4;|vvpCZnssOrprj5=I zim8KODbc%;{hwSg@U`sUX>4jkqtn#83EJxXPz^ecCcZ9bsx!Z>JBh{)WeqtO)Jap` zP6?OZ&cCk29IE!&4bu9=$JZ<-5(Xg$wAz6aR$o);VvU#nBt+QN3s;33p^7;u)sF;mxR<4+BN`(Gl4UJI)*FiT62L-T@B9`2>4b6GHWn`#` zl?rtXb#gPBhKvF=234JjxEisEUtZO%uJBB{z)mQf{^yDwLK zQb0f}8e+8wlnnA5ObY_8^BhT81fB!*Z^ROghoMFf9b=xlW~|Y-qOs^jIISj7nGuvQ zj(OrDcxNEb=j-fpkG`{G_@PU>Xe!0tk{TzVy>YO;c1F&!W z9{~Hp^1#06Z-9Nvf8qSUaQLWMNglhfs|$L^Ra5MA zZ#@;I`2z?TGs}sAC%H zqPeno5WF0IT0q;soMp>I4TsSV(NM9c1y-2v7*Eva_Vc*O+Z^2a!qo{*aSr@#u7$Dh zufKqiAo)(h z!k~T4#8`JToF-O7C|y#}&xc2A=7D3(&48n=+zeR8;Ua+B4vx0S>!a`Hv7CCiRwI_% zE(f~+RnI$g!6cE8%N^8Qi=?TEf+yN+yR?M=0L)xz$b6QX2r>xbc({OU<|rd0hW!Ah z9)8#^MEc?zhoXHq9};4mt)Nt?m=jad9o+g$D=(Rm5@TJQ6y#mN>Zuafo%C-XCeY+D zE>{n$VHRwT*UR%EGd!B#W(F<-Swi&&LxSa8)6kMlCH#6NOd8ANcM4v^Ksehc*4Qkc$T zvX!P#0koJJlh#t3W2nLzlqa5r1eulS<=>#RxT>V_lhfSs=1)#@$5ER%L34YtiR%Q6 zgpnZxcF}L{qAw74ND<{p;?QW+whD{cpgbVEF8 zlrFEX2@69m<}l5^Xb5{ zg>YrP2tFOauGqm`O;9$cBcLW2u#5IktAU0&w1*b7cf07jX55}{pgYM5n_n2PlYgJf zgX@TK`7jmv;2jR<0~gnt_bEe>kJ_cc5SnK&jfoeey5jPuyW|>yj)e#M4#`#Zbg8{Pp`?#ZN^O}^{ zEJw86i%SpJ^uqBNV#<9*(+h?nL^e)LQwYZxMtABI6kSDfW-DE=W&1Wz`6 zbMQJa|o-IvJyUWHPp*py0iej@Y~=D!ScqPBaWMPnF{dbfj2 zD$K)csVlapw5M)!m_xU&Vn-}^gZ1Qlkbc3d%-OZ9xm8)=#$8VUYo?$o>>%5J#HNbx zy6NUq&<g8pM&tUfQK#|wZZ$w$1FMQ4L5H3pgRH?XyFGemOlEJ zMGBMjy&tn8v}h3ctAZF#dv+u1}kyJ9=b6Bg@Lcd({{I5C4Rdyx1$b5b3SKr z3L51)elX5@)ssnQ5hc7q%1&0#J}JWs2?#e3@#6KOczC<*#_W>bXD90<2Z9^X!~v!E}l-O?C)Ih`sLlM7SEWum#r5^WN|!>kdCKg`?vFp@pQV7-7kIa_QFhxQz`{*tTt-v4wtC&evscs^!oz^V0oZySgn=#lQaT5(Ui4ETyPKLEWJBV%8&1A} z0MbP6C934a_n%3poaj(IoxIGdtUJW6%m4D7@DK15HSIjXu3(-u-4jd4PqHWRyHOGQ z0KwHF_Li_spIgkn72s5S=(p^g@TT7P6uZu!Xzu+ZyH`9XP}XI46-qo0^W`%?LK3+x z{|w7T@BL>WD$4sE7OXSQu)EzqW3Q!&2SE&mz?>vVq4@D&#sV0j!CQn%-44i_bSNFm zWcVaV+M2?oFZs&w&xjDts41mW{D;#id?uU_P5lW9K-*}R2g~9-i={nMQbYZ->?yor zg%*?25!oQZzE;e{WH5)Ihu~m0aZE*Z;a8`J_iN2ZM5|qt6;?p3(iS& z_8e=4DY)xA`k z#Itw*&bC#Y35|J9#ybat917<;kRX2z*HmQ|cs;H81A174{$S3E`IdiDKu3X(1Zkny z>zH2LI*y*R!ktjt)gD=Y;|6N0XA|stGx)1Qu%H6$26lHJndi$6hDb4rFZk_B+6T1V<>ggX8%Iir|(zn z-S~E?rrD=iiiKplXvZrv#hSf^P^d%WZiZmQatkE-+HU_=n5J)a*q4gogF%Oe^>9wK zBx@q5E$8R-iqqZ(gWTz~H^rki&T#v?(#L$CTx@HJqZ30wNo}Rm;r1VVgF(0@1&g9E zP=jRLh7j)rzIDD%7bEO-t)HZOVG2uIe}i~_%Cjjpnlb`x`EArK(%wvh4V#5>AHXxm zMMJEb1Y0cQGl_nUv`-4%p6-VYH}<*&qjCpL6+;tfMU=gzG|laGVy$9zSG0YqfYH1Y zW4|KcMe2oadp%xhpub&h(9eqW*x%$O`0B>$2R(LRq1pPl1p7i!m`hc>_D@j31+V=r z{;JswpM4IW$P{~fe2q&nz8=kjK3J1f`v?gW<)HaMJ5-!%ua4qND%$VXAE;n|Krlb1 zqpo_D?2n;Sl)MD$*&EaB4TZsUJ;p=R+eVn*9o%Y`cmF!tLb{op+i>leTRT18$r@Pwg2}AU^ zy4o9CP$axwc)Xrh!x1XraLZX`e-**S&S6dULr>UuS>Xln4qcNLP9h$U-{eEg%9xkU>BM8%1eSq!%k9C8!{s z?>DpeDT(0i`(4-bUf1_M_aBgbrmk7DX3d(l*31&Gkq?1R0tfq=^PP9F!$a(=ZyEZre~i5?|BI|w7V zF8L5P6ZXcN_U;yWJ$7i1;|^A#$UaCyDDs*)O4YJso%$BUXz4uVEmAVs@fld;V0amy z;whgyX4&_e->lkf`{q&|vcYrhXZcgX8=EPAL88>xaTja%j{USGU7(HMfx%65`=aQ{ zckP=H7#nC$qY3k{XS7;izhLy>r-Dw1UitJw`|ek{;s^FT4(Ewil+o`vj0nl zR8qXwewkx=-Us#o+rG|@UCL}M^Ar0G*?{eG5X2^*MHHC)g?)v!)ST?vYHtbZN&Cu< zXqtW4TVLCsj^+gnN*nT9QginC9{Vqr5DH#OPN&@QN-`CE1!UL{0Aev0zz$EyJzyUi zOc237e~w5H_#1yvlyD!izerc39jR=?b$hHigh8z85kANt1P+SuOarYtX5VA}77x6z zCC80v2KolE3*XtZqomW!f71Sn6}%g$>qLK^#+bx+8Wq=cMzN>QfB_i8-o&0eXCEWu zoqiBSI$knxG@=K8gQw_oZ`<#nf<4aPP4uw%KkSJXshDbZOD&-7=}9_``O|(cJ)%0& znct6xaZynE$@x0vK9myACS10c$k;?fbEh0i<=41FQqRF~7VWua-+{MMYW8rzAt%a4@3uGtbUNDMLP*yTD3liC zxK)2_cAVp+L`%=PQp>U!@QMcPS*PR6+hDP9>TzJ%o+kfRm!Ea+ z{xd*Z1CEwp;LHDXWwQENj$D%*1~Jsz9a*JvQ#4w?vy5 zaY2p0&HkYlAIU+g=~QY_?k?9QPH zT7D@sxX_Kp!S3jI3t;?XgK%?)dZSoDOGgtvQvz;RYe#Ho5YyT@=7A}d#gd@gw1*vg z1S8H*9mufrw3MVT@T91&idDlLk2?lNffjBz0lm68YRI&C6+pN)lo4tD6 z-)6U*^tai^r~GYp-)VoF9W(QG*2R^54SjM5Sz^^F@d?S4yTXA0*vr9P+UXrBj6uP^aam!K`T? zI9gJL&x1dsSD<8(QL@hplzd?`L>&K6S6b12A0D|`X|x-lwkv~8rWuQH0}_mO#hR?~ zVX$5Cb2fe&?V80MtB@}mFFt0Eq5=3RO*59TsPHRK088K!mPqKxkbw0cO4xz~vMmGT zBEQ~h{A>lbV*Fgdf37PoD<{0Q#_?5Xjeob^fz7v==4AT{DDbJHGHDX9D&&vnKgHfB z1iAn{`I+N$diyGx_76;P(AY7ahHU)jj*7B83g@+Po~G>TmyUjT!sQPx4sLdQAFN1Q z99tlHb=m5uWfnyk-ZP#Ux;e??BUCC+gTHn}G0RtuN916o!P^{LOgT-o7EQgkJ03S*JOL&?T|AF+wH{1JOr#1N+b9BjP9NzC>>YWsjQ zlYM^DsKU89p-Mjc`jq3S6kKE5P6sQEI|GP9pt5UcLiI+oP3IhG2&K?3h^?64QI=i` z{_KaJSb)4g`iW;Pt>+A|4u3fQB}u>YWZc%(fWTuHB1U=mPe)go(z*s4dGZPx`ORo# z*A>Su>8epvtidm?f}kRsT750t6fJ%sDW6@x;Yf~b?=Hz1Y>&MsIm>`j+u{r(yk?XW zpoE9VqMeb$s}K`viKd3XnKjn=OlW{R@4)~k#yQ7GRN+~i*GmeVR@Tt&94pbwPhyM$ z0jC`iz5e1V-Rtw7QoSCrn7)$7Qlh9*s=B8n#eq^VCuN0T#;w%QH@lQo z7XINC0KfEyF~tIRcU0mj7a~%=tIT1!7?IMmit{OnK6u9IXC+mgLrRabevQy5bIyP( z_OBTnrC8xV)dZ-|_ruiirN}zeDm&0)cZ3IO;4SOUP>Z68C+n3O?JoW^++uG1vMp|H z5N?reYFK)@TQw=w*gF0*)EHICjr_@`=axlag}cKDWI*7=(zqMmtSs)F_XcrCITp}n zQGOUWW4MRzFFjnnRVfHZ@}CBTiOJFIQY&Y-5cLb{9?~Y*f}7;!)@IP>R^wEsufV_8Zh9c66MW)9L-kob3=v z9!w~u)S;K^b;HUy{e*LzOh5O<0u^n{e9}3T+P{dOg6-sWb+)Bf`#Muu?<|KnFXJpS znAPv*+#}QcKEYZ!&tS!!GI|#E_C8a#o>0gXSMlaEUk~SeDa>f;U{B}n@K3h0mop^j z(2?vE4?F$5^O%gYi{PVczsxX?4#jWytW>Fw(}hE=$f~#rSwc%Nv5(U$9X3*rFY-XZ z;j+zOzsFkC7v+x_IX6*WoFX=iMN2(-&QT+$$7Zx7P7xD7i?Y&wo^{N~D(;e=$`212 z%9P|%8y=L`oX<}zMt5iV`KI_q)H-3-dMXuS+NO+DLtl~d60*L-6MarUon7IAN>0O2Tx<22I4z-;;Ayoxt1Hp zK6%5b7Y%hzH9u+DQ0Jp%Tepk|m0cPv_r}Pwn0uo0ye%j@ zUA)t$P*-wlh6*Qu2QM9QTu!Raz9nZZS=vTTW;!c#@hOVco9^5#;ek|0MHL*8zAxJr zppY!BVi0r=Mrf17X};>~g|%A{}z3-9kn5#3#<$e|O@bS07D^WurfHLWEqz2cJo{FTqESv9@E} z6-}ZTO-gr^a&C6MX~D~tpxYniRYDh-&K7*_{ETZO#cBD}4yR(FLyve(RmelToujzU zBET$roMH9HXM3H8OqHQObb_Jl`!NAi>BMdovxjBejl6y`K)ug(N$|si&l2-ED8e4A-y(po_F>NP1)?i=mCvOnzbkPZQ?=jkV$=O>vUJ66(+bd2e00KSuqTt$)AFnxgn4r>u>tVXv zeZwh~&SIJ$kzBt@u=H_qVNY9JkXuZ3tdL~1C>M+~V!Ro~Uc1BQ3fJxs>pCYRcrj|H z88i8`-Sq_(6+_dL{-8IS6*ye8CE9z;3w!><9y{~8T(KdA_e{6z7YQZ{L8=RpRdz&= zCAb_`1epa=8ySqhq((v%ZPr~aY2Sn1^wP?s!X#Ha1M6x0umR!dAPy@675-#bE3R$gA62=`yYsDNF7BaV4m{x>oJR!0~ zbWK-Vj%e(V^RWk>PEA#U6s~mh#j~Glx)M3rfu^gn>^odTWh{Sz`5kp!A)d75P8VVj znk=AoeV5n52}-9|8oI{e8Z^pl%-_f*wir&p>|A3P^zEiK<&``Db)2vAO!iBj3qq|4 zvfu#|?g{3CRx*?*cJm(B+mcZ}je(EnbNIMavS8G`t`LsIGG2PWYYXlH354)Ho=tDz zf|wZDe4AF`BDpUDi+8n-C?eQQNgGi_tWp19)k;SST!&07vDkL5u|Wh85Y&;SJm5NR z0oe!*PWr=q21>C~me$dgeH)I!UnLSY=Bss7XyxHgqky&ib3$CERHk$3|>#A&(Mnu4}p)jQZb$A&|DbzlpeMly+x|Z{I-2wJr z>||ooE?%$XvwnkIFq{lG8WigFCx*JP3;Y}AgP=?*Xv#O-wM*z`f|ftld!#ESWOuqW z*3}dyr$*ykldUj0?V9AO8DTaPTlbo&uI{n{P$s)~nv3|vg5Qm%!^@L|@uNDMJDo4w zksO>%dVeNZifK=zrmns zfw9TKw0su-j%ywl9YotZ{*6)skD09TyDqVJ3Ru!UFkq?AS}b&pkT9lQi(D^Q zV)`WENfUUtQO^FP1lDU>*S(LHXwa2g|q^SPHvRO3sO8MxLbn2(KmC3)&m=S{96GoK}Ic6s0qycRes*y7s3 z4Q^Xqm3UjiAadm^7eujJ8>@w+HGaqK3y29X`Nnk_c06t;g?DeIv?y{Nz}Q4W7K=IP zx`m`gg~gE9Blde?j$>_(x~f{J=TG3ILbeoCzyCy8s-MIv|KLh5LwKuB^4-)hG?Vib z=G}mR2Au+rHKBR=SJ&nc8aJMCosp>Ze6Nen?RNTT*EwWH+K)djaa{-wOfa!;&tp!_ zrgr>hY{p{QbhrS*G;@?CX{C-d=NYUuaD*{A`;^PBE5V|);#wHCCD*|rgQYIsbaj%s zTh=kqQ_syAI1)znHT`EB;zaLyNIG1py7JV-AB}yi?hR1107ule*Pa zcH>*@b&u9V`hMfPMSY~3-%4D1EW5t}0-~5CLMi>g*e5qs!0q-KZ&^U_*fo84o+%{X3O>v=Hq14~3{`qLa+(?Tvy~Ret{n_UeZoQ|2!mqy(jkLG0Bb3OM9Jqu{7vr3&6XJXCNrjah)1>-@U%TvTuq`F)J? zfD~MdJ;y0Um@a5&f(n2J^u%~2xZ_aL1bn}byQFx5WNcSYD$8k_5Emp{Hg=Md5hV>H zcYEJmG_jeIL2;zCk{6=2H=GEzK}xEz<@KJB=HRtBgC*3;X9M0+4p>W7{a|)PRejDa zt8)J(_VZk2wUA<9R~DRzReD!}kFICC5};lSu`2l&>$)g}hCw9sY#%OG=1VwciM8?S z5-bH2bfW0^9>hQ8@DPD{5mk&9*dt0yIvHQJ=8G9tu_QT5xR?BHuKz@FV2W^SzV z*PQ0&7-i~g50#?ebl@CoupT%rPl?MF0kDR`6#uDrVyI?w1Uz!?EH;yR*i0;7+FqzK1 zpX#8;l3WURjX-43`nPodVx0!5h35re>*{Gik|w@y-1ABeZo%f8%x~v024R@nnd`N|g&AyEw4F(g z-<3U~c1m7?+k5_TU&D|Wpy06=FL1KDwICqqYIY6KRnN;x*T37@*~ixvx7FnS^t)!9_98_Lh=hVo2M#+M21kO}&uME7Tqlm@Eq{;(=`8RMzO0-AfW zEMH5byn60R?0AwJ$_&$By*Smq#da(Wmj!UCVop>dO-ysEp`yFe-21o)kL4VouQJ_R zp*f66$c`Uoe#J-hl(AkXcXI77dHmbS}c843GkY|3paTdQ`x;cRN-dTAP8|G z5Mt>}wQwa?zPcN?O-wj4YPq*W36QB^PLyi&;kqMSyl4umCrpx3`f0SWmX9<6r2M)p*?f>+P15Amo^??xXTAX{_)AX@bQ1b#rHjJgqXi zyT^yz#kTi!w~}@mu46eHldaUam-~_-dv$ou{ebk1k){0GV`X1I=dNbTWm<3Ko#&j{ zPvd&KxrtYJpA}RGgAr;zVcn@y=yt)hF0!g0KBp3ree}2C++H-N(cMmCGCWQH#AX$-N|$A~fnhOuapvLMm8ihnZ&It z+`n5uv;vOf3@r$m2R%1|ftv84=plvWG@py9QY7t6#y>#bVDHz`w+v zQ@oiEbd!OJbz9xLabrecWrZu{C6?32<>LZ|fZ}6RVmr3EU$oGl^%4*ntf4E8p5End zMODA_mQmz&-0ikS78|zDC>CJ9?{iBbLE}i@jC{84fcpr){{VeJXxMzcu_i~{>t)_o zd6s$H9X?4^{mwl&Lj58JU-Z*|82s#OfIj{d__DN~k1#;ZPlKI^SqpW`$I0$K>&8vT zu>qW73K)!-k1NTsG`_^WH6m@Mk{rg40CvRhZm7(!b5pM%^NC|2ZwoTNa1ms_iuWnR zJJY<)B`{^YUP>pzsPIpB51J-L9Bz_@bz5kB>tAxaXjfy8J~{Ub8z(eqPX0<)Y|s^V ztjrApe-Vgl-f-hifvEzNB~KAQAO$FQZBk>}`IYZp$U>gI!Tbi6VEzo27R#<#JfXus zyB_7)3(X`q_H-_U!Rgr~PeZB^>j@pgPT^ZL&gRE?@;C_zk*dh8!WG?bQ2z>N=AMNg|> ziI*ydOZ2Yf*+VzlqrJx}d-etK`EYhHwOJLkY=Y9bswaH3Wz~SS+3OUY{#89(u}cl4 zPO@OdDLJ0UY5RI_dZfg{ z_tR{Eys0TbChtN{?A&TOuDNG-#Ls0v;}YM*4A^1UsV_b`eY->mv0;i9bGqn=az+LVwMM7>j8IJA{naE!~kVvOQvNfLzF zcc1c%3J#B9c&8+>r5pHI_e|u-NH0hhyPKPCJc~y7)^C*iqkCjIwycL3A_Fh0WPzXp z#dsDu3q4z;8T{0c!7dj@;9zuLPxuy*x1Xma*Nt>@n4P#*G+u#}LoG!BtG&2VtMM zZ7}VX|(4j@CtbJ_NR^9 zZ-{&BGI*lkXh^JNoM)XxYufvS*4@Q@b?vlog6CV*6sMtG6Fpmaw?e{xjXZJm$s~^x zhkn$oEL?XPTz4rXR zC_?5$jEuFP*Nv^E4R@*%K2ngOrw3Q{ zj(?-X8%7E4b|rQb;dS-tyJ2=cZ~?wY8l{8>mf<(m2YS%n3&X{#ECLW|$AD8fWCd9m z9e58VMjKpV)Z#E39QHoa#~6(YXDruVI9LdA{iP-0Mr$s`_gJI)iKXG{hnAtUxKGg; zgvn56qn0D}Wu7W_*(Tf-QtYw=J_t8icLlyD7(GLw0`2a~AfH=9Th{W*e4pOF1@H*X z#{Lh(l_#&l_awelP%IsurL7qx%Gmkfbp2SE)3JL$@(h(}Sb0o|u+E)X>uHH22seRK zr*-)L!}$Jc9mZsQv(G*@wj?1j#BcE2#3^STcHnBCV&Of0(-UAbKlOyI37tL%(NdG6 zfP`~M_T87^Oq#w2eCgC?&o-H=I-na8DxHI0p`rE9dXp&kYtI<|g#}m$B0l>yGEh#Z z_S-yTMGu*(()&?WDjl^pPdozy-#RJzNqM|n$8-T-|Q{9<{>!d=sE1JY};J5G2OgibP* z9dJgR`=h5`BB|-@%2!flyn2% zCY_AB5vG$NHzVj|i{y1h`eW6J@*4hFbRx>T!%z$g*VR2Xub>?P$dnjwLg*w8G?kj% zZ7y$!RvRk#Heon63Zkxl)01sTz9$v0D~Pltx6wE!UAP>kKkTT<>|XEU&|t+>3{<_P zrs9Ae?kGPg+!5p7=5$m@4!6vHO7VUdY?3w4C=K?hK)AI>vcj!x#y1VPAM;YTJW?+j z)BJAvaJz(gsl}#M^iB^o4*fc`!`zw3*hbe^^X?WuS#fpm_|UpopHmw9*|me%-&fna z%fS9l3DV$Kb-ddnCgbBfBPL^DJ#VVHW`xP~HTQ<(4|+e=m(LF7qXJYA!jost{b-u&BS7+OOA9ZoSSFd*Z0&`E z41Vy7aueEl-?hL?RtW6^+J_&6RXb?fHnrTNAHTky_-ZD+wqXsE(hBX ztn9`krP>f_IUUhP{plDD|HCz9MNR!Nx>Sv=4}$9 zceH^EIlMZQIkMYR6q8{yX3>!ZBuWU^0(31jISJ{#*c*4sg% z_a}JLX#Y5G0v;c6zlF((9`9{!lp5d1X`}w*y>G&eZqoPYGJAse5wpg;iBQ6AeIG=S z{+1UnJx&Z(Dme+sId_t`Ge5%3o9ta_^w4KYxQDl=1PdPv;O!mnRMA7>ubhmhdY|AG z&rk7YQj2NcH;vlkfA!krl34oqeQydwhe;CMxy0*dk4z5%v~xzN19o!;I3s`-BwsQM z0M(im8tb`Puy8EqlpX?~?ZHpcWV(19fJM(Wzz_`xE77R8L$J(4{U&e>F%ia|;ooL& ztmqvtBzE(NELL0Uf?!SmgBZp8abgq#ZS2|t?=z9)Z)i9fG@RFEyc7cT;SS-XBNX<#X!U^vF&nKj})445Uq>n7hZWf#YvObKtjC%| zu0RDx^hc=i*7STf`~&YDGBjNV#<_WLA^c^nd>%qkKH1Z z<$aFr30InT?Q>^Rn=ifRG5>j+ydO#{4GAP^GqCv>)(k(ZQLD|~J>r)kC^p^V4XZxJ ze#Kj2MoZJTfmV_ZV?;t|E!d7$oJa9f988X$P3=E*gD0A9o^nM~><+9Vktw9lS9TbU z3gPwBUETvSyoUugCuXHvY5krc6+X8Y3uS3U*1LPXhm3?wdS{<^HP?BxKTEM^JBt zk;%;qRP(5JZLr(;V_pJE1vndzd41I53MV^W?9wssA^tN!7mq_UaLz)8I60j@5w8E` zcj5X2zDNBd(}KlTe2@C#ry!o?KcJDW7m--;-r`Q+Qyf zuT(y}D*Hk*4B;YhEjBgE_f|-dfdm8%40l#!AI1A14+zIbAzOcM57%TZTs}OsAZ|Hi z(iFE37aZ6Lw=Zly_{{4&8f=wvpYz1iQVze+xOdikaQ3;i0V(XzQz^xFTQgI*)cW*) zQtE-g-02qRA)hp{;>4|#&W)fD+VUhwPv`^QY~<f8s#V z*cW*rMHmR`=lW7j3Viu)pXt2P;~t+le2EfwHuGIF1tBh&vUd5t4iffku`<584}EdB zT7r*J4b#xWq!zv$yov+aiM4Ly!)t@V9UkH)Z7&E`>3kW)wBvq95_SIClg=8n_3h(D z;m)*(mJ~sAyt}0%-P2>(*=n!WL(PH~SJ{W#Ns!ld$ zXhi0o;l92hgo>LoHfOXC?q-HjfOd^RUj9l9fM0JklzQOXA*J4+ zalRtyvhmau*Q^Ppo?zN9j7N^yO0^02zG9RTF1x~9F3z9+iQ!_0@J$0oqqB*Vd|^G? zn<#P3c+;hL3mkxP9nyTcX~5)g<+@W)`P=tUS?Jk>hEJT-vZoq_rux=Ur#kQ=78*Bk zMbgl?6@?p_O!&S@=j(8da(YUdaaU3h&Fj;`#q!=lU-!&IU%2NIP1oPTET4ZHFXa{qVHlyDgzw#e7g*gC`*ep}@G(I~<%R?*e>KyRh(b}Vm+ z?{%5mcp{pS|BRtY>y%qdrcZp}`$eK@7r7_c2e>BQbER*4a8C(plm#a`v&uJBN+|S8 zcr;YOAEl6ok3U=vKNzj{^^>LV4Z*PHS^!7uMORI3fBmlZ}Nro6D(ni z5Be8zn}#6#4jG4zwMhfrrM>_`SXs)HojH1j&UTPPubmm=Mn6+n5$UlkB~3BNpl5{m6s8 zw>14R{gBUXp@zcp!43!1-~{X5@I*~k>e^qW8UUWXs9AhRHk z6AY-z&s^ZxZ(ykJFTTCzH|u%ICj@=LiB_KW4Us9zlMtYX&w<(UFIG?zE@3!KZvE{) z;IQgN-pHf5@IN7$&7Pbd^Wm5TnER`z8784tbR!LD zKAx$>@%y>=!A*h>>6S;VskQ{nSM3U%^5H9~%tj!Ah_}zaHi&6mY(i^lP=(LkK3gnR zjZ0AQmZqSy2jhZSTrozQ;u2gmJ{u*^#U$QP^hYP?yI1?&l7 zD*eroFhA0fVYNF!_&WqxB~JoJJ%eF8=XM@a!ZqPeE#dEJc3N@*?iDruEckHEcc}?2 zsaZ{q5`OAzo0hPI`fcNye14HKke(3Ue0pXibPn=3I-ixW2Pa1G(M&p79&I#goZx2< zR7i-GXi;O12(C#STrq)BLK9%9pi)A}I^CkOsN02~Ht)_(Xo-hH#rN{;gi)e2YhNXy zBj5A{K~}4l@K~tdWjP5&aB#pJo1Ui6)J$;Uz!^@MUNhlMX|<8S^=DL23ne}ZmtaF{ zCBVaWjbWcZaYsUUqwH8mw2o2LM4Mu8&F+k7j$0eA@`SZ!`}~68^12Dlg-bg(_oviP z*dBts`&|jUWgH{LZnJYr5*${!r-q<`>5T!^2fP{KQS*d((sXvLdBVkO(hgc4mzl&$ z?nyi)OS5U#aDRZ^XrB0-B+a8<`H92fI`mt9Vs6|#*&fXw3b(}5u4ah=_QZXO3cs@3 z`~JlJc+2g+7KtO}w1X1AG=?|D5yC|Y{)pr8Tx$1F4zhEt5?`MY>~Z2Ri5@F@e645Z z^UQNLF-yYbh`Q$zKSGb^&n33Quhi!=tFsqM5>HuR1bgg{#7go!JX3t!p9EK@#LsZo zWAPViRrj@R<&^vk{&F|oqL!7x63x4i_#k|T8h@#NhTEy@E+*bb&##EHx%flQSt5W3 z%DpR7{GW++XmDDln;!ZzF^kS^$L=-w&qV+Ih$$c=Sb`A=#ta=GIm+>u?`6af2&Rj` z0X)5!rw?twBVUNXUJ{;3mUv7rna=l%)5)*Me!7u@_%$^yB?hR3Wk#n+;iw1YGUYsp zhbQ1|@xCdqRhBBr)TWL2Q`jmi0l!K&Rdg9G3Hx@tp=yHPc!nP1;_tTe|HS3JP)My) z^yuZp`w{N|59}IIZ}66!nxG?0$6y&iBlgFoh{umFCDX>siLf!Rh;z}^%ZYCJaxyuu zByN|lBvani#5B5gB{5#UYW}ErHBmEjDw~PvY|Pcfi4va3PPv}ACRokk2)`wH&8Qri zblq&Pu!?P^Em7(l2*%ddrrssFXk)u9A02Iy;GO@~-N3x2zLQ;=ROBT($90ar+rTO3q) zAu&z0<{2bvgXEJV;s+^*=59EaU$1PchlXGhfCGJx?n>nG4QkDBEO!t>1mz!L(7 zmXg}ACMQC~JCK#d4#W{aof7`ez4*-o@8A*W{T8=`#wy9Z5s(iK9S_8-wW=Xxjon@v zhFE(XkK-XL@1Z5$`*E|S_vqbtwS_a9FG@dW4SZ7QX1tnUixM%X=(U@PiIihkJ+$na z>Wk+K0WV}L58EyDtX*wrvE^-|jXy?dMR!|cX^UN5V2QCKO!q`YJdUF|4mC-A-+{No z4S4x`_Gn;px$c=!w9}#9FGW$ZQ>{zR=i_4N$9^_16*q&#@RCz~w@f>#2d!|Hg!(x^ z17hSz)VXV10*!R3I@)>LrT$ygxnEJMqwkj$b&mL*>{hF$GtNjfr!6&e~W@u+&# z(yeOrnp=%dSoFgM3_K8p6&3$9MWL}+S&26hl?l6oNI?($DRGpd?>uU4nm7l+4ewrpiN7!y!6*h^OpL25vUwwb z2aPDTF(bJDZ2UjJj^yCWe1o+|rZo%C$>+UqHFuj_pX#&r$ct`88&?469q%GWNjt=j zsEy~w{ZV(yokNhL);9p^sk{TRB8+@6D(N?ec=#odEv_-OeMe5V0oN&+7Mgdj+ef|s z?MPR6C@LQJt0kWXo>g;7w2?*2X2wI~$fK6#tc$lMW$|sKlH4>Sn*Yhg1NR8B^FIDr zNtvQ2veX3CFLx=3fQiG1$MEy^1GJ_984)D&rXl82G-9LRNuqotq54T4i{vB^C04cE z@3N8Avh+Ztyt$|NKtN+ID(oaDv5!>nQ>hLe)YONa^^CAgylHD*J(j1dcvqzkJ)NXJ zjPMpJj4q1;9=e*O_8{q_KqVTVtPYD4aqW3*5kK`#R{eBWirSXPQyrh8K8hf$;owkt z8YOoN_z4WI3W76=2vE~7MOH*cFGy9tw$!%Qq4YGYp4!wpP0h;8@y8=}55n~nI%*i7 zJknEjf27JD_?U zcqD|9Yv!nSix^hH}sDFJ!6#S`$z`F=kAo zs&xK+gt4kh@k_)Xd)GKv5W8zid~Lsj;|(#e9Mm{VP0Ta{8zH1s)my|5;>kRIP$Jq| zygX3V(%ey-C;-f4)3K!iEx8KE48jg^%tRZQv5Ani_9}EX0L)aOm@J4YwP{{=&4*gg zFAF3f@d@;;A;MNvD2%L)OO6&ETdPVqfD-Dh%fjHUFAsPc8pyL}^DYs5E22wtGRzzi zzlsBc7_$Zn?b%eVyqKR*KrcQ&HZeby(O8-J0T75i77p-bw9jD^$z|q;Cx-)k0pt_q z)w;F8hA=u2f6E3~f+QJhuN;9go)Zisg&b-$F`!!b$MQEYV?5jwW=urqMX2C7dUi=5 zxppj%23+|slNC-5f+vXDNalfg@$Oj#K|V*|x@ESAkD^?YN}4RC`4( zV@URzlv+v6_EhH_aGC{jSal=48hfOY+ExlAg1>Nv7S-I5XyKy_#X>?VrX}8FZThe|ZG;4V^o_>?EfRl3&BlIT$;q1v{s#ER9zd$BXFQ zIdP_FjLj{t7(=d&{aPqT_J3U7A7>8k>|Vaz=X6(E$CI*2y*mn`qcvBYU+C%TYARyk z@o<7WvDNc)%;tz#JGiY?Lxqyo9SiyGJ)2_tEg7+~;FNtW76BMzV78g~ixemSo=i7t zs0ZXflF40DO-qUb#qtO-h=>e%CbU=PnfVf~m)2D4;?FZR)out*w!Nl$ARc3=B#%T$ zEqe@oP)n^KUl6T{*c&$5P(yV`pW~nwTS$t|f-ldNM7V0)q26OjsKoaxOWtabh6Q21 zc%)9nK6&sc9}OC&+1Yz{sy8K@*b3ulc_YkIlWPHmcGpuk$`?f^P!Bu}QEpXzwY`~= z#ws^ZACx87t{SS(+C(r;L~xUEU_fOj?R-kbHNQsc8XKZ(LTaVCUm`rurAF${sB*lq zT8uxFny9tn#9rz{5rq)69IDJFYE?DH0C+A)9|v9&;0!x0_rcxs{#;#VrnZD=Aufh zMr*Z;ETywa1uC>A(73fzYg;tDrzN#lYgtr#3je5G)Ly;Al3-5~sR#@HY-d(M6G`*v`2%+V6Smi2)U-5`X)g^R14zqG+ zC$*}G-BrVqci7Th83J;K5Cvjw?LY`8$X1-Q*f?k5T8w%kkef9g%82ou(Ag0Bq?4Ll z899TkrQ>9u%9oRj#WmLwTwIIn#>xsFI{C^Pjg^&UtSr9}Jc9?bDf{@!@{5(V1gA2} zc}%rNM=A(t?qh02X!DmniC}1RpNWg3lZ!#fXE-6BmTBIXae|O-l=-+i36HXfa>o~| zxj|}sBvqio&N!7nnjcLGv`K3rMhpx0gx} zJ*hTMs>C-7ez4#n4I>w22}7Y`NvcSlpHlM;dgY@Q^opQzPpO|p3mVVuLAy4@rqHTx z>T{sL9WJ%MrM$f&&Hb0URD863TCEW$NL%P}40?a>X|<|HgcQZ$P%KcfI%&urOAdA`o3-nsCP>sNHsGfIeIbNbqPP00XQd1p`69N4406AuE~TB%A;9Cg7gZbW zdr3`4c*Bb?sdJ=sD(a`ci9eP5tKC8Y-(zWJf3+eOUlLc9@WrPaABl*JBvKOWDs_8V zeaPard+C#xfriFcGM&`_6*UV=mszi%X@wfSs*cB>uU}QySsVyhGG+keHYcqeVE%q( zAVef5y*p5SI5XDRoUE9PO4zkB%QfT6g|FBWV+*s9|1~TSncBVv9K&VuHFYHA+<|rZ z-8cvh-3F;+Efy@JjHQ{$Jt9)Z*L6pEZ*@mjGIEGi2?EL6B z5gVY5dS6Jy8@fZ)m^x7qtN#26qj?w~hw=9T9KCQBD~LE7;+$Luxm+pH8Z9och{Y}H zSL5}MqFPgtvOUj45lFJRpRxIqaH+b-d#?qdgnwvW3SycK0Y^+ z8F-zxyy4>1yTFo(&6cjOjnC#PLYQki2CVr_k%%*A{=HbFwyNbOSi#`%33XLvdAPN% zjB_CF*pb!vPw04ZREYHx;E+EN)P zft4VX_zXg6jp!IqiX0P4#0*^>fV?#t94q&A^_~Y3;}Nu$Lv8oP`yCv$2n1)uIfht$ zr#wXl!X1dUEQbUNB-kojCdzd!m4ZiETV4s6jLnn+DED3&46IIrwS1%UAb2!jU=KOUij5nvpbBEp7qBJuMR zb*2x~SSpA$qIKKo=o@Mv#*CG1rGiC)#2nH3O5QpoxZ<*{7o+uv^E%>-Q=5@sOi|Pu z!M7npjU1_FwGKw#<^iHP{AQeJ@yCQ8fwd7;mj~P~gT}$=AtK1P4I97}^pF^hm5LEO z94gM^jpNShD7Ac|*uSAQHBQCQYQ z0_L(r#H@xi#}No=0XmDiJbEzz=#3N*#c5s@OWBKIYiIsq$%bm^Rd5Ryujo8=8#wXW^AbKp#JE|s9r}^>ebYhIE>;Ir& zO{jQEb&~Uc(8l*9-@x1`AG&)G3J2#8DWLkzDFfXe3k5ao`Wz z7skhRiNZW1ZZbl(L2H4NX0>u!rd6DddE8{gm=7MdgJGmCcAZNm)>|FJ&74xlaLQeP zsDEEgj!!K}Hx9H$H|2ue@J>wCjj1HTv0CSP)?lpV@F83z2L}{ICEYcR=8RYUfppHp z`iDYm+p3l8&BH%);4PpS1Ok_6ZnroX4%R}Z+ut?L398!J4I1ZbYvbxAfN&x>AL4J@ z@-CI5f`_$Kn?XuM6L3!AVVg~q#6_I!qaYIOn4qeu_%LuIFu;pI5n*VUP-J3sR<&%Q zhCo#FSgwXJ5UoaFz*Jr#)H$LzchbCW{>5<-9JGZBj>n<9R#{OrW1^ZYW|3OOWJS}a ziK;g@F$^LP@g1HuHDcBxgMVA>W{!Y4mcEY7N})R^si_^)ONab6faMy1GSh{S-|8)< zE0`RF+|+6DWLh%Gq`!{P$Z`7PLN1Tn9UrE@gz!krxZS222!^;2{gu|qnK@!4F?2o- zBPp2@&qsojEh2i0_Je3o`0GfZhD*G~NP@{_M#7URW1!}xUXNjX;6gj;|c zOfC&Bb-5dgpr|RT-<}?3|Gz@B4pF!qwVk4>(Ogi1j7Nq2>?u&oU`ch(l%Q1&nc}$d zf*0b}3xC7r4*y^5FhN1ck;bbJx8kIiW=IJh@dwqh;bVZ;rl`}f4Nje^wrR*4%VX3gk(xf_25D3jp%gXBS}CzKq8$ z)u(Zl`MHH^qAVR^Bi>UVuq4gRk#sKc7Dok*CBvgkW69l1)w&7BNU|Ne#HUBs$XL2K2Z90t-}Id5aOwvtCf?Wi$0c2Wub)qH3hkBpP8)9X@DgN_NEa z(96Pbf>uq#NiY_a+*@-7yu9lT*{MNlP@K$Fs-xahZB-GV}SAE=|e;>gSOdRnlM z$_r_9;RCfG2J(j$$Kmc&;>}E>LYIz$mbooQIrB57aF$!TJ5eM1~oR^!% z>h$6&7)LUpn1}GijUySxCl>|$#wRz9ASMMkKwTuEm^*Rc~bHr4oCLgKZ>S+;R2^NLpYcofBBv@iAH)sxdWNHGRTyZ}HFW8(#OtyOcY zr*a*9B#xpvFlmw6bAclxnVPHvFloZnLB$NOl)t`Cooj$q_hU6TDFxj@;^**ifg-rC zMngF_>0?l2DlIntOj;X2(EE?ogk~wcLZoCPx`L=y#=HtssZvq#9NEMD?PXCZDJYHButsFdE

!8WKZ-bgZ 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:Yhm{E*zr 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

wu{g&KI-qAvSLYL{>-pt(5;0C!^n#vT~G9 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 diff --git a/script/command/make_package.py b/script/command/make_package.py index ff5dd04..0f2dab3 100644 --- a/script/command/make_package.py +++ b/script/command/make_package.py @@ -75,6 +75,7 @@ def modify_vsix(): # webview copy_dir('./resources/fsm/view', os.path.join(extract_folder, 'extension', 'resources', 'fsm', 'view')) copy_dir('./resources/netlist/view', os.path.join(extract_folder, 'extension', 'resources', 'netlist', 'view')) + copy_dir('./resources/dide-viewer/view', os.path.join(extract_folder, 'extension', 'resources', 'dide-viewer', 'view')) # remake diff --git a/src/extension.ts b/src/extension.ts index dc16419..3223215 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -29,7 +29,7 @@ async function launch(context: vscode.ExtensionContext) { hdlMonitor.start(); }); - MainOutput.report('Digital-IDE has launched, Version: 0.3.2', ReportType.Launch); + MainOutput.report('Digital-IDE has launched, Version: 0.3.3', ReportType.Launch); MainOutput.report('OS: ' + opeParam.os, ReportType.Launch); console.log(hdlParam); diff --git a/src/function/dide-viewer/index.ts b/src/function/dide-viewer/index.ts index 0d1847c..96849e4 100644 --- a/src/function/dide-viewer/index.ts +++ b/src/function/dide-viewer/index.ts @@ -38,9 +38,18 @@ class WaveViewer { const previewHtml = this.getWebviewContent(); if (this.panel && previewHtml) { + const dideviewerPath = hdlPath.join(opeParam.extensionPath, 'resources', 'dide-viewer', 'view'); + const workerAbsPath = hdlPath.join(dideviewerPath, 'worker.js'); const webviewUri = this.panel.webview.asWebviewUri(uri); - this.panel.webview.html = previewHtml.replace('test.vcd', webviewUri.toString()); - + const workerUri = this.panel.webview.asWebviewUri(vscode.Uri.file(workerAbsPath)); + const workerRootUri = this.panel.webview.asWebviewUri(vscode.Uri.file(dideviewerPath)); + + let preprocessHtml = previewHtml + .replace('test.vcd', webviewUri.toString()) + .replace('worker.js', workerUri.toString()) + .replace('', workerRootUri.toString()); + this.panel.webview.html = preprocessHtml; + const iconPath = hdlPath.join(opeParam.extensionPath, 'images', 'icon.svg'); this.panel.iconPath = vscode.Uri.file(iconPath); } else {