diff --git a/src/main/java/com/ydool/common/constant/UrlConstant.java b/src/main/java/com/ydool/common/constant/UrlConstant.java index 2ec9c93..2dd4290 100644 --- a/src/main/java/com/ydool/common/constant/UrlConstant.java +++ b/src/main/java/com/ydool/common/constant/UrlConstant.java @@ -1,5 +1,7 @@ package com.ydool.common.constant; +import com.ydool.integrated.entity.Institution; + public interface UrlConstant { /** * 后台根路径 @@ -28,6 +30,15 @@ public interface UrlConstant { String JOB = API + "/job"; + String DOCUMENT = API + "/document"; + + String INSTITUTION = API + "/institution"; + String STUDY = API + "/study"; + String NOTICE = API + "/notice"; + String FOODTYPE = API + "/foodType"; + String FOODRESERVES = API + "/foodReserves"; + String FOODRESERVESLOG = API + "/foodReservesLog"; + String WORKFLOW = API + "/workFlow"; String PERSON = API + "/person"; String EXCHANGE = API + "/exchange"; diff --git a/src/main/java/com/ydool/common/gen/Generator.java b/src/main/java/com/ydool/common/gen/Generator.java index bb2d3f9..8103d70 100644 --- a/src/main/java/com/ydool/common/gen/Generator.java +++ b/src/main/java/com/ydool/common/gen/Generator.java @@ -20,18 +20,18 @@ import com.ydool.common.base.BaseService; */ public class Generator { - private static String url = "jdbc:mysql://10.0.0.200:3306/lc_oa?useSSL=false&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=UTF8&autoReconnect=true&serverTimezone=Asia/Shanghai"; - private static String username = "lc_oa"; - private static String password = "wZxxeSJjtTzT2iAk"; + private static String url = "jdbc:mysql://localhost:3306/lc_oa?useSSL=false&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=UTF8&autoReconnect=true&serverTimezone=Asia/Shanghai"; + private static String username = "root"; + private static String password = "Wang09211108"; private static String driverName = "com.mysql.cj.jdbc.Driver"; public static void main(String[] args) { //表名 - String tableName = "t_lc_personnel_middle"; + String tableName = "t_work_flow_notice"; //表前缀 - String tablePrefix = "t_lc_"; + String tablePrefix = "t_"; //作者— - String author = "msh"; + String author = "zhouyuan"; generate(tableName, tablePrefix, author); } @@ -52,7 +52,7 @@ public class Generator { //带swagger注解 gc.setSwagger2(true); //实现类不要Impl后缀 -// gc.setServiceImplName("%sService"); + gc.setServiceImplName("%sService"); mpg.setGlobalConfig(gc); //数据源 @@ -66,10 +66,9 @@ public class Generator { //包配置 PackageConfig pc = new PackageConfig(); - pc.setParent("com.ydool.staff"); + pc.setParent("com.ydool.oa.workFlow"); pc.setEntity("entity"); pc.setServiceImpl("service"); - pc.setServiceImpl("service.impl"); pc.setMapper("mapper"); mpg.setPackageInfo(pc); @@ -99,14 +98,12 @@ public class Generator { //指定生成模块 //可见不是模块null才会生成指定模块 TemplateConfig templateConfig = new TemplateConfig(); -// templateConfig.setController("/templates/controller.java"); - templateConfig.setServiceImpl("/templates/serviceImpl.java"); - templateConfig.setService("/templates/service.java"); + templateConfig.setServiceImpl("/templates/service.java"); templateConfig.setMapper("/templates/mapper.java"); - //只生成实体类,mapper,Service和serviceImpl + //只生成实体类,mapper和serviceImpl templateConfig.setController(null); -// templateConfig.setService(null); + templateConfig.setService(null); templateConfig.setXml(null); mpg.setTemplate(templateConfig); @@ -122,7 +119,6 @@ public class Generator { strategy.setRestControllerStyle(true); //公共父类 strategy.setSuperEntityClass(BaseEntity.class); - strategy.setSuperControllerClass(BaseController.class); strategy.setSuperServiceImplClass(BaseService.class); strategy.setSuperMapperClass("com.github.yulichang.base.MPJBaseMapper"); strategy.setTablePrefix(tablePrefix); diff --git a/src/main/java/com/ydool/grainStorage/controller/FoodReservesController.java b/src/main/java/com/ydool/grainStorage/controller/FoodReservesController.java new file mode 100644 index 0000000..19c4b9d --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/controller/FoodReservesController.java @@ -0,0 +1,88 @@ +package com.ydool.grainStorage.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.dto.FoodReservesDto; +import com.ydool.grainStorage.service.FoodReservesService; +import com.ydool.grainStorage.vo.FoodReservesVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.FOODRESERVES) +@Api(tags = "粮食储备管理", value = "粮食储备管理") +@ApiSupport(order = 2) +public class FoodReservesController extends BaseController { + @Autowired + private FoodReservesService foodReservesService; + + /** + * 操作粮食储备 + * + * @param vo + * @return + */ + @PostMapping(value = "operation") + @ApiOperation(value = "操作") + public AjaxResult operationFoodReserves(@Validated @RequestBody FoodReservesVo vo) { + return foodReservesService.operationFoodReserves(vo); + } + + /** + * 粮食储备详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodReservesDto.class) + }), order = 2 + ) + public AjaxResult foodReservesDetails(String id) { + return foodReservesService.foodReservesDetails(id); + } + + + /** + * 粮食储备分页列表 + * + * @param value + * @param column + * @param orderBy + * @param deptId + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc"), + @ApiImplicitParam(name = "deptId", value = "部门id 领导专用") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodReservesDto.class) + }), + order = 3 + ) + public AjaxResult foodReservesPages(String value, String column, String orderBy, String deptId) { + return foodReservesService.foodReservesPages(getPage(), value, column, orderBy, deptId); + } + +} diff --git a/src/main/java/com/ydool/grainStorage/controller/FoodReservesLogController.java b/src/main/java/com/ydool/grainStorage/controller/FoodReservesLogController.java new file mode 100644 index 0000000..4c25132 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/controller/FoodReservesLogController.java @@ -0,0 +1,79 @@ +package com.ydool.grainStorage.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.dto.FoodReservesDto; +import com.ydool.grainStorage.dto.FoodReservesLogDto; +import com.ydool.grainStorage.service.FoodReservesLogService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping(UrlConstant.FOODRESERVESLOG) +@Api(tags = "粮食变更记录", value = "粮食变更记录") +@ApiSupport(order = 3) +public class FoodReservesLogController extends BaseController { + + @Autowired + private FoodReservesLogService foodReservesLogService; + + + /** + * 粮食变更记录详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodReservesLogDto.class) + }), order = 1 + ) + public AjaxResult foodReservesLogDetails(String id) { + return foodReservesLogService.foodReservesLogDetails(id); + } + + /** + * 粮食变更记录分页列表 + * @param value + * @param column + * @param orderBy + * @param deptId + * @param type + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc"), + @ApiImplicitParam(name = "deptId", value = "部门id 领导专用"), + @ApiImplicitParam(name = "type", value = "操作类型"), + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodReservesDto.class) + }), + order = 2 + ) + public AjaxResult foodReservesLogPages(String value, String column, String orderBy, String deptId, + String type){ + return foodReservesLogService.foodReservesLogPages(getPage(), value, column, orderBy,deptId,type); + } +} diff --git a/src/main/java/com/ydool/grainStorage/controller/FoodTypeController.java b/src/main/java/com/ydool/grainStorage/controller/FoodTypeController.java new file mode 100644 index 0000000..c83bd12 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/controller/FoodTypeController.java @@ -0,0 +1,131 @@ +package com.ydool.grainStorage.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.dto.FoodTypeDto; +import com.ydool.grainStorage.service.FoodTypeService; +import com.ydool.grainStorage.vo.FoodTypeVo; +import com.ydool.integrated.vo.IdsVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.FOODTYPE) +@Api(tags = "粮食类型管理", value = "粮食类型管理") +@ApiSupport(order = 1) +public class FoodTypeController extends BaseController { + @Autowired + private FoodTypeService foodTypeService; + + /** + * 保存粮食类型 + * + * @param vo + * @return + */ + @PostMapping(value = "save") + @ApiOperation(value = "保存") + @ApiOperationSupport(order = 1) + public AjaxResult saveFoodType(@Validated @RequestBody FoodTypeVo vo) { + return foodTypeService.saveFoodType(vo); + } + + + /** + * 编辑粮食类型 + * + * @param id + * @param vo + * @return + */ + @PutMapping(value = "edit") + @ApiOperation(value = "编辑") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult editFoodType(String id, @Validated @RequestBody FoodTypeVo vo) { + return foodTypeService.editFoodType(id, vo); + } + + + /** + * 删除粮食类型 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 3) + public AjaxResult removeFoodType(String id) { + return foodTypeService.removeFoodType(id); + } + + /** + * 批量删除粮食类型 + * + * @param vo + * @return + */ + @PutMapping(value = "removeBatch") + @ApiOperation(value = "批量删除") + @ApiOperationSupport(order = 4) + public AjaxResult removeFoodTypes(@Validated @RequestBody IdsVo vo) { + return foodTypeService.removeFoodTypes(vo); + } + + + /** + * 粮食类型详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodTypeDto.class) + }), order = 5 + ) + public AjaxResult foodTypeDetails(String id) { + return foodTypeService.foodTypeDetails(id); + } + + /** + * 粮食类型分页列表 + * + * @param value + * @param column + * @param orderBy + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = FoodTypeDto.class) + }), + order = 6 + ) + public AjaxResult foodTypePages(String value, String column, String orderBy) { + return foodTypeService.foodTypePages(getPage(), value, column, orderBy); + } +} diff --git a/src/main/java/com/ydool/grainStorage/dto/FoodReservesDto.java b/src/main/java/com/ydool/grainStorage/dto/FoodReservesDto.java new file mode 100644 index 0000000..3c50ac2 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/dto/FoodReservesDto.java @@ -0,0 +1,23 @@ +package com.ydool.grainStorage.dto; + +import com.ydool.grainStorage.entity.FoodReserves; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@Data +@EqualsAndHashCode(callSuper = true) +public class FoodReservesDto extends FoodReserves { + + @ApiModelProperty(value = "粮食类型") + private String foodTypeName; + + @ApiModelProperty(value = "粮仓类型") + private String deptName; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/grainStorage/dto/FoodReservesLogDto.java b/src/main/java/com/ydool/grainStorage/dto/FoodReservesLogDto.java new file mode 100644 index 0000000..d8756b3 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/dto/FoodReservesLogDto.java @@ -0,0 +1,22 @@ +package com.ydool.grainStorage.dto; + +import com.ydool.grainStorage.entity.FoodReservesLog; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@Data +@EqualsAndHashCode(callSuper = true) +public class FoodReservesLogDto extends FoodReservesLog { + @ApiModelProperty(value = "粮食类型") + private String foodTypeName; + + @ApiModelProperty(value = "粮仓类型") + private String deptName; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/grainStorage/dto/FoodTypeDto.java b/src/main/java/com/ydool/grainStorage/dto/FoodTypeDto.java new file mode 100644 index 0000000..b37e3c5 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/dto/FoodTypeDto.java @@ -0,0 +1,17 @@ +package com.ydool.grainStorage.dto; + +import com.ydool.grainStorage.entity.FoodType; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@Data +@EqualsAndHashCode(callSuper = true) +public class FoodTypeDto extends FoodType { + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/grainStorage/entity/FoodReserves.java b/src/main/java/com/ydool/grainStorage/entity/FoodReserves.java new file mode 100644 index 0000000..5963025 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/entity/FoodReserves.java @@ -0,0 +1,35 @@ +package com.ydool.grainStorage.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 粮食储备 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_grain_storage_food_reserves") +@ApiModel(value="FoodReserves对象", description="粮食储备") +public class FoodReserves extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "粮食类型") + private String foodTypeId; + + @ApiModelProperty(value = "粮仓类型") + private String deptId; + + @ApiModelProperty(value = "库存") + private Double amount; + +} diff --git a/src/main/java/com/ydool/grainStorage/entity/FoodReservesLog.java b/src/main/java/com/ydool/grainStorage/entity/FoodReservesLog.java new file mode 100644 index 0000000..d89cc3d --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/entity/FoodReservesLog.java @@ -0,0 +1,38 @@ +package com.ydool.grainStorage.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 粮食变更记录 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_grain_storage_food_reserves_log") +@ApiModel(value="FoodReservesLog对象", description="粮食变更记录") +public class FoodReservesLog extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "粮食类型") + private String foodTypeId; + + @ApiModelProperty(value = "粮仓类型") + private String deptId; + + @ApiModelProperty(value = "变更类型") + private String type; + + @ApiModelProperty(value = "变更库存") + private Double amount; + +} diff --git a/src/main/java/com/ydool/grainStorage/entity/FoodType.java b/src/main/java/com/ydool/grainStorage/entity/FoodType.java new file mode 100644 index 0000000..3595cb6 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/entity/FoodType.java @@ -0,0 +1,29 @@ +package com.ydool.grainStorage.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 粮食类型管理 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_grain_storage_food_type") +@ApiModel(value="FoodType对象", description="粮食类型管理") +public class FoodType extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "粮食类型") + private String type; + +} diff --git a/src/main/java/com/ydool/grainStorage/mapper/FoodReservesLogMapper.java b/src/main/java/com/ydool/grainStorage/mapper/FoodReservesLogMapper.java new file mode 100644 index 0000000..001343d --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/mapper/FoodReservesLogMapper.java @@ -0,0 +1,18 @@ +package com.ydool.grainStorage.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.grainStorage.entity.FoodReservesLog; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 粮食变更记录 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Mapper +public interface FoodReservesLogMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/grainStorage/mapper/FoodReservesMapper.java b/src/main/java/com/ydool/grainStorage/mapper/FoodReservesMapper.java new file mode 100644 index 0000000..1579b43 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/mapper/FoodReservesMapper.java @@ -0,0 +1,18 @@ +package com.ydool.grainStorage.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.grainStorage.entity.FoodReserves; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 粮食储备 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Mapper +public interface FoodReservesMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/grainStorage/mapper/FoodTypeMapper.java b/src/main/java/com/ydool/grainStorage/mapper/FoodTypeMapper.java new file mode 100644 index 0000000..a105356 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/mapper/FoodTypeMapper.java @@ -0,0 +1,18 @@ +package com.ydool.grainStorage.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.grainStorage.entity.FoodType; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 粮食类型管理 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Mapper +public interface FoodTypeMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/grainStorage/service/FoodReservesLogService.java b/src/main/java/com/ydool/grainStorage/service/FoodReservesLogService.java new file mode 100644 index 0000000..147aedc --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/service/FoodReservesLogService.java @@ -0,0 +1,102 @@ +package com.ydool.grainStorage.service; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.cache.ConfigCache; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.entity.FoodReservesLog; +import com.ydool.grainStorage.mapper.FoodReservesLogMapper; +import com.ydool.grainStorage.wrapper.FoodReservesLogWrapper; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +/** + *

+ * 粮食变更记录 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Service +public class FoodReservesLogService extends BaseService { + + @Autowired + private UserServiceImpl userService; + + + /** + * 粮食变更记录详情 + * + * @param id + * @return + */ + public AjaxResult foodReservesLogDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + FoodReservesLog foodReservesLog = getById(id); + if (ObjectUtil.isNull(foodReservesLog)) return AjaxResult.fail("该粮食储备不存在"); + return AjaxResult.ok().data(FoodReservesLogWrapper.INSTANCE.toDto(foodReservesLog)); + } + + /** + * 粮食变更记录分页列表 + * @param page + * @param value + * @param column + * @param orderBy + * @param deptId + * @param type + * @return + */ + public AjaxResult foodReservesLogPages(Page page, String value, String column, String orderBy, String deptId, + String type) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.inSql(FoodReservesLog::getFoodTypeId, "select id from t_grain_storage_food_type where type " + + "like '%" + value + "%'"); + } + ); + + //判断是否为领导 + String loginName = ConfigCache.getStr("sys.user.leadership"); + User user = userService.getOne(new QueryWrapper().lambda() + .eq(User::getId, StpUtil.getLoginIdAsString()) + .last("limit 1") + ); + if (loginName.equals(user.getLoginName())) { + qw.lambda().eq(StrUtil.isNotBlank(deptId), FoodReservesLog::getDeptId, deptId); + } else { + qw.lambda().eq(FoodReservesLog::getDeptId, user.getDept()); + } + + qw.lambda().eq(StrUtil.isNotBlank(type),FoodReservesLog::getType,type) + .inSql(FoodReservesLog::getFoodTypeId,"select id from t_grain_storage_food_type"); + + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(FoodReservesLog::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(FoodReservesLogWrapper.INSTANCE.toDto(pageList)); + } + +} + diff --git a/src/main/java/com/ydool/grainStorage/service/FoodReservesService.java b/src/main/java/com/ydool/grainStorage/service/FoodReservesService.java new file mode 100644 index 0000000..8378734 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/service/FoodReservesService.java @@ -0,0 +1,235 @@ +package com.ydool.grainStorage.service; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.util.ObjUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.cache.ConfigCache; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.entity.FoodReserves; +import com.ydool.grainStorage.entity.FoodReservesLog; +import com.ydool.grainStorage.entity.FoodType; +import com.ydool.grainStorage.mapper.FoodReservesMapper; +import com.ydool.grainStorage.vo.FoodReservesVo; +import com.ydool.grainStorage.wrapper.FoodReservesWrapper; +import com.ydool.system.entity.Dept; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.DeptServiceImpl; +import com.ydool.system.service.impl.UserServiceImpl; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +/** + *

+ * 粮食储备 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Service +public class FoodReservesService extends BaseService { + + @Autowired + private FoodReservesLogService foodReservesLogService; + + @Autowired + private UserServiceImpl userService; + + @Autowired + private FoodTypeService foodTypeService; + + @Autowired + private DeptServiceImpl deptService; + + + /** + * 操作粮食储备 + * + * @param vo + * @return + */ + @Transactional(rollbackFor = Exception.class) + public AjaxResult operationFoodReserves(FoodReservesVo vo) { + //判断是否为领导 + String loginName = ConfigCache.getStr("sys.user.leadership"); + User user = userService.getOne(new QueryWrapper().lambda() + .eq(User::getId, StpUtil.getLoginIdAsString()) + .last("limit 1") + ); + //不是领导 自动导入所属粮仓 + if (!loginName.equals(user.getLoginName())) { + vo.setDeptId(user.getDept()); + } + if (StrUtil.isBlank(vo.getDeptId())) { + return AjaxResult.fail("请选择粮仓类型"); + } + + //判断粮食类型是否存在 + FoodType foodType = foodTypeService.getById(vo.getFoodTypeId()); + if (ObjUtil.isNull(foodType)) { + return AjaxResult.fail("粮食类型不存在"); + } + + //判断粮仓类型 + Dept dept = deptService.getById(vo.getDeptId()); + if (ObjUtil.isNull(dept)) { + return AjaxResult.fail("粮仓类型不存在"); + } + + + FoodReserves foodReserves = getOne(new QueryWrapper().lambda() + .eq(FoodReserves::getDeptId, vo.getDeptId()) + .eq(FoodReserves::getFoodTypeId, vo.getFoodTypeId()) + .last("limit 1") + ); + + //非新增时,粮食储备是否存在 + if (!"add".equals(vo.getOperationType()) && ObjUtil.isNull(foodReserves)) { + return AjaxResult.fail("此粮仓内不存在该粮食类型"); + } + + FoodReservesLog foodReservesLog = new FoodReservesLog(); + boolean flag = false; + + //添加 + if ("add".equals(vo.getOperationType())) { + + if (ObjUtil.isNotNull(foodReserves)) return AjaxResult.fail("此粮仓已有该粮食类型,请勿重复添加"); + + //判断数量 + if (vo.getAmount() < 0) { + return AjaxResult.fail("变更数量不得小于0"); + } + foodReserves = new FoodReserves(); + foodReserves.setFoodTypeId(vo.getFoodTypeId()); + foodReserves.setDeptId(vo.getDeptId()); + foodReserves.setAmount(vo.getAmount()); + flag = save(foodReserves); + + foodReservesLog.setFoodTypeId(vo.getFoodTypeId()); + foodReservesLog.setDeptId(vo.getDeptId()); + foodReservesLog.setAmount(vo.getAmount()); + foodReservesLog.setType("新增"); + flag = foodReservesLogService.save(foodReservesLog); + } + + //删除 + if ("delete".equals(vo.getOperationType())) { + flag = removeById(foodReserves.getId()); + foodReservesLog.setFoodTypeId(vo.getFoodTypeId()); + foodReservesLog.setDeptId(vo.getDeptId()); + foodReservesLog.setAmount(foodReserves.getAmount()); + foodReservesLog.setType("删除"); + flag = foodReservesLogService.save(foodReservesLog); + } + + //入库 + if ("warehousing".equals(vo.getOperationType())) { + //判断数量 + if (vo.getAmount() <= 0) { + return AjaxResult.fail("变更数量必须大于0"); + } + foodReserves.setAmount(foodReserves.getAmount() + vo.getAmount()); + flag = updateById(foodReserves); + foodReservesLog.setFoodTypeId(vo.getFoodTypeId()); + foodReservesLog.setDeptId(vo.getDeptId()); + foodReservesLog.setAmount(vo.getAmount()); + foodReservesLog.setType("入库"); + flag = foodReservesLogService.save(foodReservesLog); + } + + //出库 + if ("out_of_stock".equals(vo.getOperationType())) { + //判断数量 + if (vo.getAmount() <= 0) { + return AjaxResult.fail("变更数量必须大于0"); + } + //出库数量是否大于库存数量 + if (vo.getAmount() > foodReserves.getAmount()) { + return AjaxResult.fail("出库数量不得大于该粮仓此粮食类型实际库存"); + } + foodReserves.setAmount(foodReserves.getAmount() - vo.getAmount()); + flag = updateById(foodReserves); + foodReservesLog.setFoodTypeId(vo.getFoodTypeId()); + foodReservesLog.setDeptId(vo.getDeptId()); + foodReservesLog.setAmount(vo.getAmount()); + foodReservesLog.setType("出库"); + flag = foodReservesLogService.save(foodReservesLog); + } + + + return flag ? AjaxResult.ok().msg("操作成功") : AjaxResult.fail("操作失败"); + } + + + /** + * 粮食储备详情 + * + * @param id + * @return + */ + public AjaxResult foodReservesDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + FoodReserves foodReserves = getById(id); + if (ObjectUtil.isNull(foodReserves)) return AjaxResult.fail("该粮食储备不存在"); + return AjaxResult.ok().data(FoodReservesWrapper.INSTANCE.toDto(foodReserves)); + } + + /** + * 粮食储备分页列表 + * + * @param page + * @param value + * @param column + * @param orderBy + * @param deptId + * @return + */ + public AjaxResult foodReservesPages(Page page, String value, String column, String orderBy, String deptId) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.inSql(FoodReserves::getFoodTypeId, "select id from t_grain_storage_food_type where type " + + "like '%" + value + "%'"); + } + ); + + //判断是否为领导 + String loginName = ConfigCache.getStr("sys.user.leadership",""); + User user = userService.getOne(new QueryWrapper().lambda() + .eq(User::getId, StpUtil.getLoginIdAsString()) + .last("limit 1") + ); + if (loginName.equals(user.getLoginName())) { + qw.lambda().eq(StrUtil.isNotBlank(deptId), FoodReserves::getDeptId, deptId); + } else { + qw.lambda().eq(FoodReserves::getDeptId, user.getDept()); + } + + qw.lambda().inSql(FoodReserves::getFoodTypeId, "select id from t_grain_storage_food_type"); + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(FoodReserves::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(FoodReservesWrapper.INSTANCE.toDto(pageList)); + } + +} + diff --git a/src/main/java/com/ydool/grainStorage/service/FoodTypeService.java b/src/main/java/com/ydool/grainStorage/service/FoodTypeService.java new file mode 100644 index 0000000..a58b856 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/service/FoodTypeService.java @@ -0,0 +1,159 @@ +package com.ydool.grainStorage.service; + +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.grainStorage.entity.FoodType; +import com.ydool.grainStorage.mapper.FoodTypeMapper; +import com.ydool.grainStorage.vo.FoodTypeVo; +import com.ydool.grainStorage.wrapper.FoodTypeWrapper; +import com.ydool.integrated.vo.IdsVo; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + *

+ * 粮食类型管理 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Service +public class FoodTypeService extends BaseService { + /** + * 校验粮食类型 + * + * @param id + * @param vo + * @return + */ + private String checkFoodType(String id, FoodTypeVo vo) { + int count = count(new QueryWrapper().lambda() + .ne(StrUtil.isNotBlank(id), FoodType::getId, id) + .eq(FoodType::getType, vo.getType()) + ); + if (count > 0) return "粮食类型不能重复"; + return null; + } + + + /** + * 保存粮食类型 + * + * @param vo + * @return + */ + public AjaxResult saveFoodType(FoodTypeVo vo) { + String message = checkFoodType("", vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + FoodType foodType = BeanUtil.copyProperties(vo, FoodType.class); + boolean flag = save(foodType); + return flag ? AjaxResult.ok().msg("保存成功") : AjaxResult.fail("保存失败"); + } + + /** + * 编辑粮食类型 + * + * @param id + * @param vo + * @return + */ + public AjaxResult editFoodType(String id, FoodTypeVo vo) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + String message = checkFoodType(id, vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + FoodType foodType = getById(id); + if (ObjectUtil.isNull(foodType)) return AjaxResult.fail("该粮食类型不存在"); + BeanUtil.copyProperties(vo, foodType); + boolean flag = updateById(foodType); + return flag ? AjaxResult.ok().msg("编辑成功") : AjaxResult.fail("编辑失败"); + } + + + /** + * 删除粮食类型 + * + * @param id + * @return + */ + public AjaxResult removeFoodType(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + FoodType foodType = getById(id); + if (ObjectUtil.isNull(foodType)) return AjaxResult.fail("该粮食类型不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 批量删除粮食类型 + * + * @param vo + * @return + */ + public AjaxResult removeFoodTypes(IdsVo vo) { + List idList = vo.getIds(); + if (CollUtil.isEmpty(idList)) { + return AjaxResult.fail("粮食类型Id集合不能为空"); + } + List foodTypeList = listByIds(idList); + if (CollUtil.isEmpty(foodTypeList)) { + return AjaxResult.fail("该粮食类型集合全部不存在"); + } + return removeByIds(idList) ? AjaxResult.ok().msg("批量删除成功") : AjaxResult.fail("批量删除失败"); + } + + /** + * 粮食类型详情 + * + * @param id + * @return + */ + public AjaxResult foodTypeDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + FoodType foodType = getById(id); + if (ObjectUtil.isNull(foodType)) return AjaxResult.fail("该粮食类型不存在"); + return AjaxResult.ok().data(FoodTypeWrapper.INSTANCE.toDto(foodType)); + } + + /** + * 粮食类型分页列表 + * @param page + * @param value + * @param column + * @param orderBy + * @return + */ + public AjaxResult foodTypePages(Page page, String value, String column, String orderBy) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.like(FoodType::getType, value); + } + ); + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(FoodType::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(FoodTypeWrapper.INSTANCE.toDto(pageList)); + } +} + diff --git a/src/main/java/com/ydool/grainStorage/vo/FoodReservesVo.java b/src/main/java/com/ydool/grainStorage/vo/FoodReservesVo.java new file mode 100644 index 0000000..7c36047 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/vo/FoodReservesVo.java @@ -0,0 +1,27 @@ +package com.ydool.grainStorage.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; + +@Data +public class FoodReservesVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "粮食类型") + @NotBlank(message = "粮食类型不能为空") + private String foodTypeId; + + @ApiModelProperty(value = "粮仓类型,领导操作时必填,非领导无需填写") + private String deptId; + + @ApiModelProperty(value = "操作类型,add:新增,delete:删除,warehousing:入库,out_of_stock:出库") + @NotBlank(message = "操作类型不能为空") + private String operationType; + + @ApiModelProperty(value = "变更库存") + @NotNull(message = "变更库存不能为空") + private Double amount; +} diff --git a/src/main/java/com/ydool/grainStorage/vo/FoodTypeVo.java b/src/main/java/com/ydool/grainStorage/vo/FoodTypeVo.java new file mode 100644 index 0000000..3cfb4be --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/vo/FoodTypeVo.java @@ -0,0 +1,15 @@ +package com.ydool.grainStorage.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class FoodTypeVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "粮食类型", required = true) + @NotBlank(message = "粮食类型不能为空") + private String type; +} diff --git a/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesLogWrapper.java b/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesLogWrapper.java new file mode 100644 index 0000000..388c5b3 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesLogWrapper.java @@ -0,0 +1,46 @@ +package com.ydool.grainStorage.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.grainStorage.dto.FoodReservesLogDto; +import com.ydool.grainStorage.entity.FoodReservesLog; +import com.ydool.grainStorage.entity.FoodType; +import com.ydool.grainStorage.service.FoodTypeService; +import com.ydool.system.entity.Dept; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.DeptServiceImpl; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface FoodReservesLogWrapper extends BaseWrapper { + FoodReservesLogWrapper INSTANCE = Mappers.getMapper(FoodReservesLogWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") FoodReservesLog obj, @MappingTarget @Param("dto") FoodReservesLogDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + DeptServiceImpl deptService = SpringUtil.getBean(DeptServiceImpl.class); + Dept dept = deptService.getById(obj.getDeptId()); + if (ObjUtil.isNotNull(dept)) { + dto.setDeptName(dept.getName()); + } + FoodTypeService foodTypeService = SpringUtil.getBean(FoodTypeService.class); + FoodType foodType = foodTypeService.getById(obj.getFoodTypeId()); + if (ObjUtil.isNotNull(foodType)) { + dto.setFoodTypeName(foodType.getType()); + } + } +} diff --git a/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesWrapper.java b/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesWrapper.java new file mode 100644 index 0000000..f6962ca --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/wrapper/FoodReservesWrapper.java @@ -0,0 +1,46 @@ +package com.ydool.grainStorage.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.grainStorage.dto.FoodReservesDto; +import com.ydool.grainStorage.entity.FoodReserves; +import com.ydool.grainStorage.entity.FoodType; +import com.ydool.grainStorage.service.FoodTypeService; +import com.ydool.system.entity.Dept; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.DeptServiceImpl; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface FoodReservesWrapper extends BaseWrapper { + FoodReservesWrapper INSTANCE = Mappers.getMapper(FoodReservesWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") FoodReserves obj, @MappingTarget @Param("dto") FoodReservesDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + DeptServiceImpl deptService = SpringUtil.getBean(DeptServiceImpl.class); + Dept dept = deptService.getById(obj.getDeptId()); + if (ObjUtil.isNotNull(dept)) { + dto.setDeptName(dept.getName()); + } + FoodTypeService foodTypeService = SpringUtil.getBean(FoodTypeService.class); + FoodType foodType = foodTypeService.getById(obj.getFoodTypeId()); + if (ObjUtil.isNotNull(foodType)) { + dto.setFoodTypeName(foodType.getType()); + } + } +} diff --git a/src/main/java/com/ydool/grainStorage/wrapper/FoodTypeWrapper.java b/src/main/java/com/ydool/grainStorage/wrapper/FoodTypeWrapper.java new file mode 100644 index 0000000..0076481 --- /dev/null +++ b/src/main/java/com/ydool/grainStorage/wrapper/FoodTypeWrapper.java @@ -0,0 +1,32 @@ +package com.ydool.grainStorage.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.grainStorage.dto.FoodTypeDto; +import com.ydool.grainStorage.entity.FoodType; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface FoodTypeWrapper extends BaseWrapper { + FoodTypeWrapper INSTANCE = Mappers.getMapper(FoodTypeWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") FoodType obj, @MappingTarget @Param("dto") FoodTypeDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + } +} diff --git a/src/main/java/com/ydool/integrated/controller/DocumentController.java b/src/main/java/com/ydool/integrated/controller/DocumentController.java new file mode 100644 index 0000000..2a964cc --- /dev/null +++ b/src/main/java/com/ydool/integrated/controller/DocumentController.java @@ -0,0 +1,137 @@ +package com.ydool.integrated.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.dto.DocumentDto; +import com.ydool.integrated.service.DocumentService; +import com.ydool.integrated.vo.DocumentVo; +import com.ydool.integrated.vo.IdsVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.DOCUMENT) +@Api(tags = "文件管理", value = "文件管理") +@ApiSupport(order = 1) +public class DocumentController extends BaseController { + + @Autowired + private DocumentService documentService; + + + /** + * 保存文件 + * + * @param vo + * @return + */ + @PostMapping(value = "save") + @ApiOperation(value = "保存") + @ApiOperationSupport(order = 1) + public AjaxResult saveDocument(@Validated @RequestBody DocumentVo vo) { + return documentService.saveDocument(vo); + } + + + /** + * 编辑文件 + * + * @param id + * @param vo + * @return + */ + @PutMapping(value = "edit") + @ApiOperation(value = "编辑") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult editDocument(String id, @Validated @RequestBody DocumentVo vo) { + return documentService.editDocument(id, vo); + } + + + /** + * 删除文件 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 3) + public AjaxResult removeDocument(String id) { + return documentService.removeDocument(id); + } + + /** + * 批量删除文件 + * + * @param vo + * @return + */ + @PutMapping(value = "removeBatch") + @ApiOperation(value = "批量删除") + @ApiOperationSupport(order = 4) + public AjaxResult removeDocuments(@Validated @RequestBody IdsVo vo) { + return documentService.removeDocuments(vo); + } + + + /** + * 文件详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = DocumentDto.class) + }), order = 5 + ) + public AjaxResult documentDetails(String id) { + return documentService.documentDetails(id); + } + + /** + * 文件分页列表 + * + * @param value + * @param column + * @param orderBy + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = DocumentDto.class) + }), + order = 6 + ) + public AjaxResult documentPages(String value, String column, String orderBy) { + return documentService.documentPages(getPage(), value, column, orderBy); + } + + + + +} diff --git a/src/main/java/com/ydool/integrated/controller/InstitutionController.java b/src/main/java/com/ydool/integrated/controller/InstitutionController.java new file mode 100644 index 0000000..e28811f --- /dev/null +++ b/src/main/java/com/ydool/integrated/controller/InstitutionController.java @@ -0,0 +1,132 @@ +package com.ydool.integrated.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.dto.InstitutionDto; +import com.ydool.integrated.service.InstitutionService; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.InstitutionVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.INSTITUTION) +@Api(tags = "制度管理", value = "制度管理") +@ApiSupport(order = 2) +public class InstitutionController extends BaseController { + + @Autowired + private InstitutionService institutionService; + + /** + * 保存制度 + * + * @param vo + * @return + */ + @PostMapping(value = "save") + @ApiOperation(value = "保存") + @ApiOperationSupport(order = 1) + public AjaxResult saveInstitution(@Validated @RequestBody InstitutionVo vo) { + return institutionService.saveInstitution(vo); + } + + + /** + * 编辑制度 + * + * @param id + * @param vo + * @return + */ + @PutMapping(value = "edit") + @ApiOperation(value = "编辑") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult editInstitution(String id, @Validated @RequestBody InstitutionVo vo) { + return institutionService.editInstitution(id, vo); + } + + + /** + * 删除制度 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 3) + public AjaxResult removeInstitution(String id) { + return institutionService.removeInstitution(id); + } + + /** + * 批量删除制度 + * + * @param vo + * @return + */ + @PutMapping(value = "removeBatch") + @ApiOperation(value = "批量删除") + @ApiOperationSupport(order = 4) + public AjaxResult removeInstitutions(@Validated @RequestBody IdsVo vo) { + return institutionService.removeInstitutions(vo); + } + + + /** + * 制度详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = InstitutionDto.class) + }), order = 5 + ) + public AjaxResult institutionDetails(String id) { + return institutionService.institutionDetails(id); + } + + /** + * 制度分页列表 + * + * @param value + * @param column + * @param orderBy + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = InstitutionDto.class) + }), + order = 6 + ) + public AjaxResult institutionPages(String value, String column, String orderBy) { + return institutionService.institutionPages(getPage(), value, column, orderBy); + } +} diff --git a/src/main/java/com/ydool/integrated/controller/NoticeController.java b/src/main/java/com/ydool/integrated/controller/NoticeController.java new file mode 100644 index 0000000..cba864f --- /dev/null +++ b/src/main/java/com/ydool/integrated/controller/NoticeController.java @@ -0,0 +1,132 @@ +package com.ydool.integrated.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.dto.DocumentDto; +import com.ydool.integrated.service.NoticeService; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.NoticeVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.NOTICE) +@Api(tags = "通知管理", value = "通知管理") +@ApiSupport(order = 4) +public class NoticeController extends BaseController { + @Autowired + private NoticeService noticeService; + + /** + * 保存通知 + * + * @param vo + * @return + */ + @PostMapping(value = "save") + @ApiOperation(value = "保存") + @ApiOperationSupport(order = 1) + public AjaxResult saveNotice(@Validated @RequestBody NoticeVo vo) { + return noticeService.saveNotice(vo); + } + + + /** + * 编辑通知 + * + * @param id + * @param vo + * @return + */ + @PutMapping(value = "edit") + @ApiOperation(value = "编辑") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult editNotice(String id, @Validated @RequestBody NoticeVo vo) { + return noticeService.editNotice(id, vo); + } + + + /** + * 删除通知 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 3) + public AjaxResult removeNotice(String id) { + return noticeService.removeNotice(id); + } + + /** + * 批量删除通知 + * + * @param vo + * @return + */ + @PutMapping(value = "removeBatch") + @ApiOperation(value = "批量删除") + @ApiOperationSupport(order = 4) + public AjaxResult removeNotices(@Validated @RequestBody IdsVo vo) { + return noticeService.removeNotices(vo); + } + + + /** + * 通知详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = DocumentDto.class) + }), order = 5 + ) + public AjaxResult noticeDetails(String id) { + return noticeService.noticeDetails(id); + } + + /** + * 通知分页列表 + * + * @param value + * @param column + * @param orderBy + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc"), + @ApiImplicitParam(name = "type", value = "user:通知公告,dept:通知管理"), + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = DocumentDto.class) + }), + order = 6 + ) + public AjaxResult noticePages(String value, String column, String orderBy, String type) { + return noticeService.noticePages(getPage(), value, column, orderBy,type); + } +} diff --git a/src/main/java/com/ydool/integrated/controller/StudyController.java b/src/main/java/com/ydool/integrated/controller/StudyController.java new file mode 100644 index 0000000..9588d59 --- /dev/null +++ b/src/main/java/com/ydool/integrated/controller/StudyController.java @@ -0,0 +1,132 @@ +package com.ydool.integrated.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.dto.StudyDto; +import com.ydool.integrated.service.StudyService; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.StudyVo; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.STUDY) +@Api(tags = "学习管理", value = "学习管理") +@ApiSupport(order = 3) +public class StudyController extends BaseController { + + @Autowired + private StudyService studyService; + + /** + * 保存学习 + * + * @param vo + * @return + */ + @PostMapping(value = "save") + @ApiOperation(value = "保存") + @ApiOperationSupport(order = 1) + public AjaxResult saveStudy(@Validated @RequestBody StudyVo vo) { + return studyService.saveStudy(vo); + } + + + /** + * 编辑学习 + * + * @param id + * @param vo + * @return + */ + @PutMapping(value = "edit") + @ApiOperation(value = "编辑") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult editStudy(String id, @Validated @RequestBody StudyVo vo) { + return studyService.editStudy(id, vo); + } + + + /** + * 删除学习 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 3) + public AjaxResult removeStudy(String id) { + return studyService.removeStudy(id); + } + + /** + * 批量删除学习 + * + * @param vo + * @return + */ + @PutMapping(value = "removeBatch") + @ApiOperation(value = "批量删除") + @ApiOperationSupport(order = 4) + public AjaxResult removeStudys(@Validated @RequestBody IdsVo vo) { + return studyService.removeStudys(vo); + } + + + /** + * 学习详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = StudyDto.class) + }), order = 5 + ) + public AjaxResult studyDetails(String id) { + return studyService.studyDetails(id); + } + + /** + * 学习分页列表 + * + * @param value + * @param column + * @param orderBy + * @return + */ + @GetMapping(value = "page") + @ApiOperation(value = "列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer"), + @ApiImplicitParam(name = "value", value = "搜索框中的内容(只支持字符串类型)"), + @ApiImplicitParam(name = "column", value = "排序字段 字段名"), + @ApiImplicitParam(name = "orderBy", value = "排序顺序 降序:desc,升序:asc") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = StudyDto.class) + }), + order = 6 + ) + public AjaxResult studyPages(String value, String column, String orderBy) { + return studyService.studyPages(getPage(), value, column, orderBy); + } +} diff --git a/src/main/java/com/ydool/integrated/dto/DocumentDto.java b/src/main/java/com/ydool/integrated/dto/DocumentDto.java new file mode 100644 index 0000000..7a5b72c --- /dev/null +++ b/src/main/java/com/ydool/integrated/dto/DocumentDto.java @@ -0,0 +1,16 @@ +package com.ydool.integrated.dto; + +import com.ydool.integrated.entity.Document; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@EqualsAndHashCode(callSuper = true) +@Data +public class DocumentDto extends Document { + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/integrated/dto/InstitutionDto.java b/src/main/java/com/ydool/integrated/dto/InstitutionDto.java new file mode 100644 index 0000000..1b8db6f --- /dev/null +++ b/src/main/java/com/ydool/integrated/dto/InstitutionDto.java @@ -0,0 +1,17 @@ +package com.ydool.integrated.dto; + +import com.ydool.integrated.entity.Institution; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@EqualsAndHashCode(callSuper = true) +@Data +public class InstitutionDto extends Institution { + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/integrated/dto/NoticeDto.java b/src/main/java/com/ydool/integrated/dto/NoticeDto.java new file mode 100644 index 0000000..036bb13 --- /dev/null +++ b/src/main/java/com/ydool/integrated/dto/NoticeDto.java @@ -0,0 +1,19 @@ +package com.ydool.integrated.dto; + +import com.ydool.integrated.entity.Notice; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@EqualsAndHashCode(callSuper = true) +@Data +public class NoticeDto extends Notice { + @ApiModelProperty(value = "接收人") + private String userList; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/integrated/dto/StudyDto.java b/src/main/java/com/ydool/integrated/dto/StudyDto.java new file mode 100644 index 0000000..4162407 --- /dev/null +++ b/src/main/java/com/ydool/integrated/dto/StudyDto.java @@ -0,0 +1,20 @@ +package com.ydool.integrated.dto; + +import com.ydool.integrated.entity.Study; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + + +@EqualsAndHashCode(callSuper = true) +@Data +public class StudyDto extends Study { + @ApiModelProperty(value = "参会人员") + private String userList; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/integrated/entity/Document.java b/src/main/java/com/ydool/integrated/entity/Document.java new file mode 100644 index 0000000..fa04077 --- /dev/null +++ b/src/main/java/com/ydool/integrated/entity/Document.java @@ -0,0 +1,38 @@ +package com.ydool.integrated.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 文件管理 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_integrated_document") +@ApiModel(value="Document对象", description="文件管理") +public class Document extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题") + private String title; + + @ApiModelProperty(value = "编号") + private String serialNumber; + + @ApiModelProperty(value = "备注") + private String remarks; + + @ApiModelProperty(value = "附件") + private String files; + +} diff --git a/src/main/java/com/ydool/integrated/entity/Institution.java b/src/main/java/com/ydool/integrated/entity/Institution.java new file mode 100644 index 0000000..99dbafe --- /dev/null +++ b/src/main/java/com/ydool/integrated/entity/Institution.java @@ -0,0 +1,35 @@ +package com.ydool.integrated.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 制度管理 + *

+ * + * @author zhouyuan + * @since 2023-05-05 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_integrated_institution") +@ApiModel(value="Institution对象", description="制度管理") +public class Institution extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题") + private String title; + + @ApiModelProperty(value = "内容") + private String content; + + @ApiModelProperty(value = "附件") + private String files; + +} diff --git a/src/main/java/com/ydool/integrated/entity/Notice.java b/src/main/java/com/ydool/integrated/entity/Notice.java new file mode 100644 index 0000000..b41f2a8 --- /dev/null +++ b/src/main/java/com/ydool/integrated/entity/Notice.java @@ -0,0 +1,41 @@ +package com.ydool.integrated.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 通知管理 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_integrated_notice") +@ApiModel(value="Notice对象", description="通知管理") +public class Notice extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题") + private String title; + + @ApiModelProperty(value = "内容") + private String content; + + @ApiModelProperty(value = "附件") + private String files; + + @ApiModelProperty(value = "接收人") + private String userIds; + + @ApiModelProperty(value = "发布部门") + private String deptId; + +} diff --git a/src/main/java/com/ydool/integrated/entity/Study.java b/src/main/java/com/ydool/integrated/entity/Study.java new file mode 100644 index 0000000..952ad3c --- /dev/null +++ b/src/main/java/com/ydool/integrated/entity/Study.java @@ -0,0 +1,53 @@ +package com.ydool.integrated.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +import org.springframework.format.annotation.DateTimeFormat; + +import java.time.LocalDateTime; +/** + *

+ * 学习管理 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_integrated_study") +@ApiModel(value="Study对象", description="学习管理") +public class Study extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "学习主题") + private String subject; + + @ApiModelProperty(value = "参加人员") + private String userIds; + + @ApiModelProperty(value = "照片记录") + private String photos; + + @ApiModelProperty(value = "相关附件") + private String files; + + @ApiModelProperty(value = "开始时间") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") // 表示返回时间类型 + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") // 表示接收时间类型 + private LocalDateTime startTime; + + @ApiModelProperty(value = "结束时间") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") // 表示返回时间类型 + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") // 表示接收时间类型 + private LocalDateTime endTime; + +} diff --git a/src/main/java/com/ydool/integrated/mapper/DocumentMapper.java b/src/main/java/com/ydool/integrated/mapper/DocumentMapper.java new file mode 100644 index 0000000..7a542b1 --- /dev/null +++ b/src/main/java/com/ydool/integrated/mapper/DocumentMapper.java @@ -0,0 +1,18 @@ +package com.ydool.integrated.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.integrated.entity.Document; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 文件管理 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Mapper +public interface DocumentMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/integrated/mapper/InstitutionMapper.java b/src/main/java/com/ydool/integrated/mapper/InstitutionMapper.java new file mode 100644 index 0000000..2c429d3 --- /dev/null +++ b/src/main/java/com/ydool/integrated/mapper/InstitutionMapper.java @@ -0,0 +1,18 @@ +package com.ydool.integrated.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.integrated.entity.Institution; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 制度管理 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-05 + */ +@Mapper +public interface InstitutionMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/integrated/mapper/NoticeMapper.java b/src/main/java/com/ydool/integrated/mapper/NoticeMapper.java new file mode 100644 index 0000000..2801f9c --- /dev/null +++ b/src/main/java/com/ydool/integrated/mapper/NoticeMapper.java @@ -0,0 +1,18 @@ +package com.ydool.integrated.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.integrated.entity.Notice; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 通知管理 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Mapper +public interface NoticeMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/integrated/mapper/StudyMapper.java b/src/main/java/com/ydool/integrated/mapper/StudyMapper.java new file mode 100644 index 0000000..74b3f0e --- /dev/null +++ b/src/main/java/com/ydool/integrated/mapper/StudyMapper.java @@ -0,0 +1,18 @@ +package com.ydool.integrated.mapper; + +import com.github.yulichang.base.MPJBaseMapper; +import com.ydool.integrated.entity.Study; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 学习管理 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Mapper +public interface StudyMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/integrated/service/DocumentService.java b/src/main/java/com/ydool/integrated/service/DocumentService.java new file mode 100644 index 0000000..15d0e02 --- /dev/null +++ b/src/main/java/com/ydool/integrated/service/DocumentService.java @@ -0,0 +1,172 @@ +package com.ydool.integrated.service; + +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.entity.Document; +import com.ydool.integrated.mapper.DocumentMapper; +import com.ydool.integrated.vo.DocumentVo; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.wrapper.DocumentWrapper; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + *

+ * 文件管理 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Service +public class DocumentService extends BaseService { + + /** + * 校验文件 + * + * @param id + * @param vo + * @return + */ + private String checkDocument(String id, DocumentVo vo) { + int count = count(new QueryWrapper().lambda() + .ne(StrUtil.isNotBlank(id), Document::getId, id) + .eq(Document::getSerialNumber, vo.getSerialNumber()) + ); + if (count > 0) return "文件编号不允许重复"; + return null; + } + + + /** + * 保存文件 + * + * @param vo + * @return + */ + public AjaxResult saveDocument(DocumentVo vo) { + String message = checkDocument("", vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Document document = BeanUtil.copyProperties(vo, Document.class); + boolean flag = save(document); + return flag ? AjaxResult.ok().msg("保存成功") : AjaxResult.fail("保存失败"); + } + + /** + * 编辑文件 + * + * @param id + * @param vo + * @return + */ + public AjaxResult editDocument(String id, DocumentVo vo) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + String message = checkDocument(id, vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Document document = getById(id); + if (ObjectUtil.isNull(document)) return AjaxResult.fail("该文件不存在"); + BeanUtil.copyProperties(vo, document); + boolean flag = updateById(document); + return flag ? AjaxResult.ok().msg("编辑成功") : AjaxResult.fail("编辑失败"); + } + + + /** + * 删除文件 + * + * @param id + * @return + */ + public AjaxResult removeDocument(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Document document = getById(id); + if (ObjectUtil.isNull(document)) return AjaxResult.fail("该文件不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 批量删除文件 + * + * @param vo + * @return + */ + public AjaxResult removeDocuments(IdsVo vo) { + List idList = vo.getIds(); + if (CollUtil.isEmpty(idList)) { + return AjaxResult.fail("文件Id集合不能为空"); + } + List documentList = listByIds(idList); + if (CollUtil.isEmpty(documentList)) { + return AjaxResult.fail("该文件集合全部不存在"); + } + return removeByIds(idList) ? AjaxResult.ok().msg("批量删除成功") : AjaxResult.fail("批量删除失败"); + } + + /** + * 文件详情 + * + * @param id + * @return + */ + public AjaxResult documentDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Document document = getById(id); + if (ObjectUtil.isNull(document)) return AjaxResult.fail("该文件不存在"); + return AjaxResult.ok().data(DocumentWrapper.INSTANCE.toDto(document)); + } + + /** + * 文件分页列表 + * + * @param page + * @param value + * @param column + * @param orderBy + * @return + */ + public AjaxResult documentPages(Page page, String value, String column, String orderBy) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.like(Document::getTitle, value) + .or().like(Document::getRemarks, value) + .or().like(Document::getSerialNumber, value); + } + ); + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(Document::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + + + + + + + + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(DocumentWrapper.INSTANCE.toDto(pageList)); + } + +} + diff --git a/src/main/java/com/ydool/integrated/service/InstitutionService.java b/src/main/java/com/ydool/integrated/service/InstitutionService.java new file mode 100644 index 0000000..9a11681 --- /dev/null +++ b/src/main/java/com/ydool/integrated/service/InstitutionService.java @@ -0,0 +1,157 @@ +package com.ydool.integrated.service; + +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.entity.Institution; +import com.ydool.integrated.mapper.InstitutionMapper; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.InstitutionVo; +import com.ydool.integrated.wrapper.InstitutionWrapper; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + *

+ * 制度管理 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-05 + */ +@Service +public class InstitutionService extends BaseService { + + + /** + * 保存制度 + * + * @param vo + * @return + */ + public AjaxResult saveInstitution(InstitutionVo vo) { + String message = checkInstitution("", vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Institution institution = BeanUtil.copyProperties(vo, Institution.class); + boolean flag = save(institution); + return flag ? AjaxResult.ok().msg("保存成功") : AjaxResult.fail("保存失败"); + } + + /** + * 编辑制度 + * + * @param id + * @param vo + * @return + */ + public AjaxResult editInstitution(String id, InstitutionVo vo) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + String message = checkInstitution(id, vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Institution institution = getById(id); + if (ObjectUtil.isNull(institution)) return AjaxResult.fail("该制度不存在"); + BeanUtil.copyProperties(vo, institution); + boolean flag = updateById(institution); + return flag ? AjaxResult.ok().msg("编辑成功") : AjaxResult.fail("编辑失败"); + } + + /** + * 删除制度 + * + * @param id + * @return + */ + public AjaxResult removeInstitution(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Institution institution = getById(id); + if (ObjectUtil.isNull(institution)) return AjaxResult.fail("该制度不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 批量删除制度 + * + * @param vo + * @return + */ + public AjaxResult removeInstitutions(IdsVo vo) { + List idList = vo.getIds(); + if (CollUtil.isEmpty(idList)) { + return AjaxResult.fail("制度Id集合不能为空"); + } + List institutionList = listByIds(idList); + if (CollUtil.isEmpty(institutionList)) { + return AjaxResult.fail("该制度集合全部不存在"); + } + return removeByIds(idList) ? AjaxResult.ok().msg("批量删除成功") : AjaxResult.fail("批量删除失败"); + } + + /** + * 制度详情 + * + * @param id + * @return + */ + public AjaxResult institutionDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Institution institution = getById(id); + if (ObjectUtil.isNull(institution)) return AjaxResult.fail("该制度不存在"); + return AjaxResult.ok().data(InstitutionWrapper.INSTANCE.toDto(institution)); + } + + /** + * 制度分页列表 + * + * @param page + * @param value + * @param column + * @param orderBy + * @return + */ + public AjaxResult institutionPages(Page page, String value, String column, String orderBy) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.like(Institution::getTitle, value) + .or().like(Institution::getContent, value); + } + ); + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(Institution::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(InstitutionWrapper.INSTANCE.toDto(pageList)); + } + + /** + * 校验制度 + * + * @param id + * @param vo + * @return + */ + private String checkInstitution(String id, InstitutionVo vo) { + return null; + } + +} + diff --git a/src/main/java/com/ydool/integrated/service/NoticeService.java b/src/main/java/com/ydool/integrated/service/NoticeService.java new file mode 100644 index 0000000..8b20268 --- /dev/null +++ b/src/main/java/com/ydool/integrated/service/NoticeService.java @@ -0,0 +1,178 @@ +package com.ydool.integrated.service; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.entity.Notice; +import com.ydool.integrated.mapper.NoticeMapper; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.NoticeVo; +import com.ydool.integrated.wrapper.NoticeWrapper; +import com.ydool.system.service.impl.UserServiceImpl; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + *

+ * 通知管理 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-08 + */ +@Service +public class NoticeService extends BaseService { + + @Autowired + private UserServiceImpl userService; + + /** + * 校验通知 + * + * @param id + * @param vo + * @return + */ + private String checkNotice(String id, NoticeVo vo) { + return null; + } + + + /** + * 保存通知 + * + * @param vo + * @return + */ + public AjaxResult saveNotice(NoticeVo vo) { + String message = checkNotice("", vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Notice notice = BeanUtil.copyProperties(vo, Notice.class); + notice.setDeptId(userService.getById(StpUtil.getLoginIdAsString()).getDept()); + boolean flag = save(notice); + return flag ? AjaxResult.ok().msg("保存成功") : AjaxResult.fail("保存失败"); + } + + /** + * 编辑通知 + * + * @param id + * @param vo + * @return + */ + public AjaxResult editNotice(String id, NoticeVo vo) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + String message = checkNotice(id, vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Notice notice = getById(id); + if (ObjectUtil.isNull(notice)) return AjaxResult.fail("该通知不存在"); + BeanUtil.copyProperties(vo, notice); + boolean flag = updateById(notice); + return flag ? AjaxResult.ok().msg("编辑成功") : AjaxResult.fail("编辑失败"); + } + + + /** + * 删除通知 + * + * @param id + * @return + */ + public AjaxResult removeNotice(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Notice notice = getById(id); + if (ObjectUtil.isNull(notice)) return AjaxResult.fail("该通知不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 批量删除通知 + * + * @param vo + * @return + */ + public AjaxResult removeNotices(IdsVo vo) { + List idList = vo.getIds(); + if (CollUtil.isEmpty(idList)) { + return AjaxResult.fail("通知Id集合不能为空"); + } + List noticeList = listByIds(idList); + if (CollUtil.isEmpty(noticeList)) { + return AjaxResult.fail("该通知集合全部不存在"); + } + return removeByIds(idList) ? AjaxResult.ok().msg("批量删除成功") : AjaxResult.fail("批量删除失败"); + } + + /** + * 通知详情 + * + * @param id + * @return + */ + public AjaxResult noticeDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Notice notice = getById(id); + if (ObjectUtil.isNull(notice)) return AjaxResult.fail("该通知不存在"); + return AjaxResult.ok().data(NoticeWrapper.INSTANCE.toDto(notice)); + } + + /** + * 通知分页列表 + * + * @param page + * @param value + * @param column + * @param orderBy + * @return + */ + public AjaxResult noticePages(Page page, String value, String column, String orderBy, String type) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.like(Notice::getTitle, value) + .or().like(Notice::getContent, value); + } + ); + + String loginId = StpUtil.getLoginIdAsString(); + //通知管理 只能看到本部门的 + if ("user".equals(type)) { + qw.lambda().and((query -> { + query.eq(Notice::getUserIds, "[]") + .or().like(Notice::getUserIds, loginId); + } + )); + } + if ("dept".equals(type)) { + qw.lambda().eq(Notice::getDeptId, userService.getById(loginId).getDept()); + } + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(Notice::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(NoticeWrapper.INSTANCE.toDto(pageList)); + } + +} + diff --git a/src/main/java/com/ydool/integrated/service/StudyService.java b/src/main/java/com/ydool/integrated/service/StudyService.java new file mode 100644 index 0000000..29b768e --- /dev/null +++ b/src/main/java/com/ydool/integrated/service/StudyService.java @@ -0,0 +1,160 @@ +package com.ydool.integrated.service; + +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.collection.CollUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import cn.hutool.json.JSONUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.integrated.entity.Study; +import com.ydool.integrated.mapper.StudyMapper; +import com.ydool.integrated.vo.IdsVo; +import com.ydool.integrated.vo.StudyVo; +import com.ydool.integrated.wrapper.StudyWrapper; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + *

+ * 学习管理 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-06 + */ +@Service +public class StudyService extends BaseService { + + /** + * 校验学习 + * + * @param id + * @param vo + * @return + */ + private String checkStudy(String id, StudyVo vo) { + List userIds = JSONUtil.toList(vo.getUserIds(), String.class); + if (CollUtil.isEmpty(userIds)) return "参加人员不能为空"; + return null; + } + + + /** + * 保存学习 + * + * @param vo + * @return + */ + public AjaxResult saveStudy(StudyVo vo) { + String message = checkStudy("", vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Study study = BeanUtil.copyProperties(vo, Study.class); + boolean flag = save(study); + return flag ? AjaxResult.ok().msg("保存成功") : AjaxResult.fail("保存失败"); + } + + /** + * 编辑学习 + * + * @param id + * @param vo + * @return + */ + public AjaxResult editStudy(String id, StudyVo vo) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + String message = checkStudy(id, vo); + if (StrUtil.isNotBlank(message)) return AjaxResult.fail(message); + Study study = getById(id); + if (ObjectUtil.isNull(study)) return AjaxResult.fail("该学习不存在"); + BeanUtil.copyProperties(vo, study); + boolean flag = updateById(study); + return flag ? AjaxResult.ok().msg("编辑成功") : AjaxResult.fail("编辑失败"); + } + + + /** + * 删除学习 + * + * @param id + * @return + */ + public AjaxResult removeStudy(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Study study = getById(id); + if (ObjectUtil.isNull(study)) return AjaxResult.fail("该学习不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 批量删除学习 + * + * @param vo + * @return + */ + public AjaxResult removeStudys(IdsVo vo) { + List idList = vo.getIds(); + if (CollUtil.isEmpty(idList)) { + return AjaxResult.fail("学习Id集合不能为空"); + } + List studyList = listByIds(idList); + if (CollUtil.isEmpty(studyList)) { + return AjaxResult.fail("该学习集合全部不存在"); + } + return removeByIds(idList) ? AjaxResult.ok().msg("批量删除成功") : AjaxResult.fail("批量删除失败"); + } + + /** + * 学习详情 + * + * @param id + * @return + */ + public AjaxResult studyDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + Study study = getById(id); + if (ObjectUtil.isNull(study)) return AjaxResult.fail("该学习不存在"); + return AjaxResult.ok().data(StudyWrapper.INSTANCE.toDto(study)); + } + + /** + * 学习分页列表 + * + * @param page + * @param value + * @param column + * @param orderBy + * @return + */ + public AjaxResult studyPages(Page page, String value, String column, String orderBy) { + QueryWrapper qw = new QueryWrapper(); + qw.lambda().and( + StrUtil.isNotBlank(value), query -> { + query.like(Study::getSubject, value); + } + ); + + + if (StrUtil.isBlank(column)) { + qw.lambda().orderByDesc(Study::getCreatedAt); + } else { + if ("desc".equals(orderBy)) { + qw.orderByDesc(StrUtil.toUnderlineCase(column)); + } + + if ("asc".equals(orderBy)) { + qw.orderByAsc(StrUtil.toUnderlineCase(column)); + } + } + + Page pageList = page(page, qw); + + return AjaxResult.ok().data(StudyWrapper.INSTANCE.toDto(pageList)); + } + +} + diff --git a/src/main/java/com/ydool/integrated/vo/DocumentVo.java b/src/main/java/com/ydool/integrated/vo/DocumentVo.java new file mode 100644 index 0000000..6f2133e --- /dev/null +++ b/src/main/java/com/ydool/integrated/vo/DocumentVo.java @@ -0,0 +1,26 @@ +package com.ydool.integrated.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class DocumentVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题", required = true) + @NotBlank(message = "标题不能为空") + private String title; + + @ApiModelProperty(value = "编号", required = true) + @NotBlank(message = "编号不能为空") + private String serialNumber; + + @ApiModelProperty(value = "备注") + private String remarks; + + @ApiModelProperty(value = "附件 为空请传[]", required = true) + @NotBlank(message = "附件 为空请传[]") + private String files; +} diff --git a/src/main/java/com/ydool/integrated/vo/IdsVo.java b/src/main/java/com/ydool/integrated/vo/IdsVo.java new file mode 100644 index 0000000..90f885e --- /dev/null +++ b/src/main/java/com/ydool/integrated/vo/IdsVo.java @@ -0,0 +1,17 @@ +package com.ydool.integrated.vo; + + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotNull; +import java.util.List; + +@Data +public class IdsVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "Id集合", required = true) + @NotNull(message = "请输入Id集合") + private List ids; +} diff --git a/src/main/java/com/ydool/integrated/vo/InstitutionVo.java b/src/main/java/com/ydool/integrated/vo/InstitutionVo.java new file mode 100644 index 0000000..076ab44 --- /dev/null +++ b/src/main/java/com/ydool/integrated/vo/InstitutionVo.java @@ -0,0 +1,23 @@ +package com.ydool.integrated.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class InstitutionVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题", required = true) + @NotBlank(message = "标题不能为空") + private String title; + + @ApiModelProperty(value = "内容", required = true) + @NotBlank(message = "内容不能为空") + private String content; + + @ApiModelProperty(value = "附件 为空请传[]", required = true) + @NotBlank(message = "附件 为空请传[]") + private String files; +} diff --git a/src/main/java/com/ydool/integrated/vo/NoticeVo.java b/src/main/java/com/ydool/integrated/vo/NoticeVo.java new file mode 100644 index 0000000..6826846 --- /dev/null +++ b/src/main/java/com/ydool/integrated/vo/NoticeVo.java @@ -0,0 +1,28 @@ +package com.ydool.integrated.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class NoticeVo { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题", required = true) + @NotBlank(message = "标题不能为空") + private String title; + + @ApiModelProperty(value = "内容", required = true) + @NotBlank(message = "内容不能为空") + private String content; + + @ApiModelProperty(value = "附件 为空请传[]", required = true) + @NotBlank(message = "附件 为空请传[]") + private String files; + + @ApiModelProperty(value = "接收人 为空请传[]", required = true) + @NotBlank(message = "接收人 为空请传[]") + private String userIds; +} diff --git a/src/main/java/com/ydool/integrated/vo/StudyVo.java b/src/main/java/com/ydool/integrated/vo/StudyVo.java new file mode 100644 index 0000000..ed83771 --- /dev/null +++ b/src/main/java/com/ydool/integrated/vo/StudyVo.java @@ -0,0 +1,43 @@ +package com.ydool.integrated.vo; + +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import org.springframework.format.annotation.DateTimeFormat; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.time.LocalDateTime; + +@Data +public class StudyVo { + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "学习主题", required = true) + @NotBlank(message = "学习主题不能为空") + private String subject; + + @ApiModelProperty(value = "参加人员", required = true) + @NotBlank(message = "参加人员 为空请传[]") + private String userIds; + + @ApiModelProperty(value = "照片记录 为空请传[]", required = true) + @NotBlank(message = "照片记录 为空请传[]") + private String photos; + + @ApiModelProperty(value = "相关附件 为空请传[]", required = true) + @NotBlank(message = "相关附件 为空请传[]") + private String files; + + @ApiModelProperty(value = "开始时间", required = true) + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") // 表示返回时间类型 + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") // 表示接收时间类型 + @NotNull(message = "开始时间不能为空") + private LocalDateTime startTime; + + @ApiModelProperty(value = "结束时间", required = true) + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") // 表示返回时间类型 + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") // 表示接收时间类型 + @NotNull(message = "结束时间不能为空") + private LocalDateTime endTime; +} diff --git a/src/main/java/com/ydool/integrated/wrapper/DocumentWrapper.java b/src/main/java/com/ydool/integrated/wrapper/DocumentWrapper.java new file mode 100644 index 0000000..98b799f --- /dev/null +++ b/src/main/java/com/ydool/integrated/wrapper/DocumentWrapper.java @@ -0,0 +1,32 @@ +package com.ydool.integrated.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.integrated.dto.DocumentDto; +import com.ydool.integrated.entity.Document; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface DocumentWrapper extends BaseWrapper { + DocumentWrapper INSTANCE = Mappers.getMapper(DocumentWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") Document obj,@MappingTarget @Param("dto") DocumentDto dto){ + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)){ + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)){ + dto.setUpdatedName(updatedUser.getUserName()); + } + } +} diff --git a/src/main/java/com/ydool/integrated/wrapper/InstitutionWrapper.java b/src/main/java/com/ydool/integrated/wrapper/InstitutionWrapper.java new file mode 100644 index 0000000..d59f3d2 --- /dev/null +++ b/src/main/java/com/ydool/integrated/wrapper/InstitutionWrapper.java @@ -0,0 +1,31 @@ +package com.ydool.integrated.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.integrated.dto.InstitutionDto; +import com.ydool.integrated.entity.Institution; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface InstitutionWrapper extends BaseWrapper { + InstitutionWrapper INSTANCE = Mappers.getMapper(InstitutionWrapper.class); + @AfterMapping + default void setOtherField(@Param("obj") Institution obj, @MappingTarget @Param("dto") InstitutionDto dto){ + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)){ + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)){ + dto.setUpdatedName(updatedUser.getUserName()); + } + } +} diff --git a/src/main/java/com/ydool/integrated/wrapper/NoticeWrapper.java b/src/main/java/com/ydool/integrated/wrapper/NoticeWrapper.java new file mode 100644 index 0000000..be4c6df --- /dev/null +++ b/src/main/java/com/ydool/integrated/wrapper/NoticeWrapper.java @@ -0,0 +1,40 @@ +package com.ydool.integrated.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import cn.hutool.json.JSONUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.integrated.dto.NoticeDto; +import com.ydool.integrated.entity.Notice; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +import java.util.List; + +@Mapper +public interface NoticeWrapper extends BaseWrapper { + NoticeWrapper INSTANCE = Mappers.getMapper(NoticeWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") Notice obj, @MappingTarget @Param("dto") NoticeDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + + List userIds = JSONUtil.toList(obj.getUserIds(), String.class); + List users = userService.listByIds(userIds); + dto.setUserList(JSONUtil.toJsonStr(users)); + } +} + diff --git a/src/main/java/com/ydool/integrated/wrapper/StudyWrapper.java b/src/main/java/com/ydool/integrated/wrapper/StudyWrapper.java new file mode 100644 index 0000000..14ee8c2 --- /dev/null +++ b/src/main/java/com/ydool/integrated/wrapper/StudyWrapper.java @@ -0,0 +1,39 @@ +package com.ydool.integrated.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import cn.hutool.json.JSONUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.integrated.dto.StudyDto; +import com.ydool.integrated.entity.Study; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +import java.util.List; + +@Mapper +public interface StudyWrapper extends BaseWrapper { + StudyWrapper INSTANCE = Mappers.getMapper(StudyWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") Study obj, @MappingTarget @Param("dto") StudyDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + + List userIds = JSONUtil.toList(obj.getUserIds(), String.class); + List users = userService.listByIds(userIds); + dto.setUserList(JSONUtil.toJsonStr(users)); + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/controller/WorkFlowController.java b/src/main/java/com/ydool/oa/workFlow/controller/WorkFlowController.java new file mode 100644 index 0000000..91dffc5 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/controller/WorkFlowController.java @@ -0,0 +1,221 @@ +package com.ydool.oa.workFlow.controller; + +import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; +import com.github.xiaoymin.knife4j.annotations.ApiSupport; +import com.github.xiaoymin.knife4j.annotations.DynamicParameter; +import com.github.xiaoymin.knife4j.annotations.DynamicResponseParameters; +import com.ydool.common.base.BaseController; +import com.ydool.common.constant.UrlConstant; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.dto.WorkFlowCountDto; +import com.ydool.oa.workFlow.data.dto.WorkFlowDto; +import com.ydool.oa.workFlow.data.entity.WorkFlowNotice; +import com.ydool.oa.workFlow.data.vo.WorkFlowNoticeVo; +import com.ydool.oa.workFlow.data.vo.WorkFlowStepVo; +import com.ydool.oa.workFlow.data.vo.WorkFlowVo; +import com.ydool.oa.workFlow.service.WorkFlowNoticeService; +import com.ydool.oa.workFlow.service.WorkFlowService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiImplicitParam; +import io.swagger.annotations.ApiImplicitParams; +import io.swagger.annotations.ApiOperation; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +@RestController +@RequestMapping(UrlConstant.WORKFLOW) +@Api(tags = "工作流程申请", value = "工作流程申请") +@ApiSupport(order = 1) +public class WorkFlowController extends BaseController { + + @Autowired + private WorkFlowService workFlowService; + + @Autowired + private WorkFlowNoticeService workFlowNoticeService; + + + /** + * 发起流程 + * + * @param vo + * @return + */ + @PostMapping(value = "start") + @ApiOperation(value = "发起流程") + @ApiOperationSupport(order = 1) + public AjaxResult startFlow(@RequestBody @Validated WorkFlowVo vo) { + return workFlowService.start(vo); + } + + + /** + * 删除流程 + * + * @param id + * @return + */ + @DeleteMapping(value = "remove") + @ApiOperation(value = "删除流程") + @ApiImplicitParam(name = "id", value = "Id") + @ApiOperationSupport(order = 2) + public AjaxResult removeWorkFlow(String id) { + return workFlowService.removeWorkFlow(id); + } + + /** + * 获取流程详情 + * + * @param id + * @return + */ + @GetMapping(value = "detail") + @ApiOperation(value = "流程详情") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowDto.class) + }), order = 3 + ) + public AjaxResult flowDetails(String id) { + return workFlowService.flowDetails(id); + } + + /** + * 我发起的流程列表 + * + * @return + */ + @GetMapping(value = "getCreateFlowList") + @ApiOperation(value = "我发起的流程列表") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowDto.class) + }), + order = 4 + ) + public AjaxResult getCreateFlowList() { + return workFlowService.getCreateFlowList(getPage()); + } + + /** + * 待我处理 + */ + @GetMapping(value = "getTodoFlowList") + @ApiOperation(value = "待我处理") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowDto.class) + }), + order = 5 + ) + public AjaxResult getTodoFlowList() { + return workFlowService.getTodoFlowList(getPage()); + } + + /** + * 待我填写 + */ + @GetMapping(value = "getWriteFlowList") + @ApiOperation(value = "待我填写") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowDto.class) + }), + order = 6 + ) + public AjaxResult getWriteFlowList() { + return workFlowService.getWriteFlowList(getPage()); + } + + /** + * 获取各流程数量 + * + * @param + * @return + */ + @GetMapping(value = "getWorkFlowCount") + @ApiOperation(value = "获取各流程数量") + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowCountDto.class) + }), + order = 7 + ) + public AjaxResult getWorkFlowCount() { + return workFlowService.getWorkFlowCount(); + } + + /** + * 执行流程 + * + * @param vo + * @return + */ + @PostMapping(value = "execute") + @ApiOperation(value = "执行流程") + @ApiOperationSupport(order = 8) + public AjaxResult execute(@RequestBody @Validated WorkFlowStepVo vo) { + return workFlowService.execute(vo); + } + + /** + * 分页查询自己有关的流程通知 + * + * @return + */ + @GetMapping(value = "workFlowNoticePageList") + @ApiOperation(value = "分页查询自己有关的流程通知") + @ApiImplicitParams({ + @ApiImplicitParam(name = "current", value = "当前页", dataType = "Integer"), + @ApiImplicitParam(name = "size", value = "每页条数", dataType = "Integer") + }) + @ApiOperationSupport( + responses = @DynamicResponseParameters(properties = { + @DynamicParameter(name = "data", dataTypeClass = WorkFlowNotice.class) + }), + order = 9 + ) + public AjaxResult workFlowNoticePageList() { + return workFlowNoticeService.workFlowNoticePageList(getPage()); + } + + + /** + * 已读 + * + * @param vo + * @return + */ + @PostMapping(value = "read") + @ApiOperation(value = "已读") + @ApiOperationSupport(order = 10) + public AjaxResult read(@RequestBody @Validated WorkFlowNoticeVo vo) { + return workFlowNoticeService.read(vo); + } + + /** + * 获取未读数量 + * + * @return + */ + @GetMapping(value = "getUnReadCount") + @ApiOperation(value = "获取未读通知数量") + @ApiOperationSupport(order = 11) + public AjaxResult getUnReadCount() { + return workFlowNoticeService.getUnReadCount(); + } + +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowCountDto.java b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowCountDto.java new file mode 100644 index 0000000..b3b6fc8 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowCountDto.java @@ -0,0 +1,18 @@ +package com.ydool.oa.workFlow.data.dto; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +@Data +public class WorkFlowCountDto { + + @ApiModelProperty(value = "发起的流程数量") + private Integer createFlowCount; + + @ApiModelProperty(value = "待审批的流程数量") + private Integer approvalFlowCount; + + @ApiModelProperty(value = "待填写的流程数量") + private Integer writeFlowCount; + +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowDto.java b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowDto.java new file mode 100644 index 0000000..d56ca6a --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowDto.java @@ -0,0 +1,48 @@ +package com.ydool.oa.workFlow.data.dto; + +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.util.List; + +@EqualsAndHashCode(callSuper = true) +@Data +public class WorkFlowDto extends WorkFlow { + + @ApiModelProperty(value = "发起人") + private String userName; + + @ApiModelProperty(value = "流程类型") + private String typeName; + + @ApiModelProperty(value = "流程节点类型") + private String stepTypeName; + + + @ApiModelProperty(value = "状态") + private String statusName; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; + + @ApiModelProperty(value = "流程节点") + private List workFlowSteps; + + @ApiModelProperty(value = "流程日志") + private List workFlowStepLogs; + + @ApiModelProperty(value = "是否审批人") + private Boolean isApprove; + + @ApiModelProperty(value = "是否代填写人") + private Boolean isWrite; + + @ApiModelProperty(value = "是否能重新发起") + private Boolean isReStart; + +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepDto.java b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepDto.java new file mode 100644 index 0000000..27711d6 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepDto.java @@ -0,0 +1,26 @@ +package com.ydool.oa.workFlow.data.dto; + +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + + +@EqualsAndHashCode(callSuper = true) +@Data +public class WorkFlowStepDto extends WorkFlowStep { + @ApiModelProperty(value = "流程节点类型") + private String stepTypeName; + + @ApiModelProperty(value = "状态") + private String statusName; + + @ApiModelProperty(value = "审批人") + private String userName; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepLogDto.java b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepLogDto.java new file mode 100644 index 0000000..a385cda --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/dto/WorkFlowStepLogDto.java @@ -0,0 +1,25 @@ +package com.ydool.oa.workFlow.data.dto; + +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; + +@EqualsAndHashCode(callSuper = true) +@Data +public class WorkFlowStepLogDto extends WorkFlowStepLog { + @ApiModelProperty(value = "流程节点类型") + private String stepTypeName; + + @ApiModelProperty(value = "状态") + private String statusName; + + @ApiModelProperty(value = "审批人") + private String userName; + + @ApiModelProperty(value = "创建人") + private String createdName; + + @ApiModelProperty(value = "更新人") + private String updatedName; +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlow.java b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlow.java new file mode 100644 index 0000000..8d888d9 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlow.java @@ -0,0 +1,46 @@ +package com.ydool.oa.workFlow.data.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 工作流程 + *

+ * + * @author zhouyuan + * @since 2023-05-22 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_work_flow") +@ApiModel(value="Flow对象", description="工作流程") +public class WorkFlow extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "发起人") + private String userId; + + @ApiModelProperty(value = "流程类型") + private String type; + + + @ApiModelProperty(value = "流程节点") + private Integer step; + + + @ApiModelProperty(value = "流程节点类型") + private String stepType; + + @ApiModelProperty(value = "表单数据") + private String data; + + @ApiModelProperty(value = "状态") + private String status; + +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowNotice.java b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowNotice.java new file mode 100644 index 0000000..009e3f4 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowNotice.java @@ -0,0 +1,51 @@ +package com.ydool.oa.workFlow.data.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 流程通知 + *

+ * + * @author zhouyuan + * @since 2023-05-29 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_work_flow_notice") +@ApiModel(value="WorkFlowNotice对象", description="流程通知") +public class WorkFlowNotice extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "标题") + private String title; + + @ApiModelProperty(value = "流程类型") + private String flowType; + + @ApiModelProperty(value = "流程id") + private String flowId; + + @ApiModelProperty(value = "接收人") + private String userId; + + @ApiModelProperty(value = "是否已读") + private Boolean status; + + public WorkFlowNotice() { + } + + public WorkFlowNotice(String title, WorkFlow workFlow, String userId) { + this.title = title; + this.flowType = workFlow.getType(); + this.flowId = workFlow.getId(); + this.userId = userId; + this.status = false; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStep.java b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStep.java new file mode 100644 index 0000000..7e034db --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStep.java @@ -0,0 +1,55 @@ +package com.ydool.oa.workFlow.data.entity; +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +/** + *

+ * 工作流程环节 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_work_flow_step") +@ApiModel(value="WorkFlowStep对象", description="工作流程环节") +public class WorkFlowStep extends BaseEntity{ + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "流程Id") + private String flowId; + + @ApiModelProperty(value = "流程节点") + private Integer step; + + @ApiModelProperty(value = "节点类型") + private String stepType; + + @ApiModelProperty(value = "审批人") + private String userId; + + @ApiModelProperty(value = "执行状态") + private String status; + + @ApiModelProperty(value = "备注") + private String remarks; + + public WorkFlowStep() { + } + + public WorkFlowStep(WorkFlow workFlow, String stepType, String userId, String status, String remarks) { + this.flowId = workFlow.getId(); + this.step = workFlow.getStep(); + this.stepType = stepType; + this.userId = userId; + this.status = status; + this.remarks = remarks; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStepLog.java b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStepLog.java new file mode 100644 index 0000000..45469fd --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/entity/WorkFlowStepLog.java @@ -0,0 +1,62 @@ +package com.ydool.oa.workFlow.data.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.ydool.common.base.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + *

+ * 工作流程环节日志 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@Accessors(chain = true) +@TableName("t_work_flow_step_log") +@ApiModel(value = "WorkFlowStepLog对象", description = "工作流程环节日志") +public class WorkFlowStepLog extends BaseEntity { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "流程Id") + private String flowId; + + @ApiModelProperty(value = "表单数据") + private String data; + + @ApiModelProperty(value = "流程节点") + private Integer step; + + @ApiModelProperty(value = "节点类型") + private String stepType; + + @ApiModelProperty(value = "审批人") + private String userId; + + @ApiModelProperty(value = "执行状态") + private String status; + + @ApiModelProperty(value = "备注") + private String remarks; + + public WorkFlowStepLog() { + + } + + public WorkFlowStepLog(WorkFlowStep workFlowStep,String data) { + this.flowId = workFlowStep.getFlowId(); + this.data = data; + this.step = workFlowStep.getStep(); + this.stepType = workFlowStep.getStepType(); + this.userId = workFlowStep.getUserId(); + this.status = workFlowStep.getStatus(); + this.remarks = workFlowStep.getRemarks(); + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowNoticeVo.java b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowNoticeVo.java new file mode 100644 index 0000000..105cbb3 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowNoticeVo.java @@ -0,0 +1,19 @@ +package com.ydool.oa.workFlow.data.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class WorkFlowNoticeVo { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "类型:all 全部,one 一个") + @NotBlank(message = "类型不能为空") + private String type; + + @ApiModelProperty(value = "id") + private String id; +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowStepVo.java b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowStepVo.java new file mode 100644 index 0000000..33fab4e --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowStepVo.java @@ -0,0 +1,23 @@ +package com.ydool.oa.workFlow.data.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class WorkFlowStepVo { + @ApiModelProperty(value = "id") + @NotBlank(message = "id不能为空") + private String id; + + @ApiModelProperty(value = "表单数据") + private String data; + + @ApiModelProperty(value = "执行状态 REFUSE 驳回 PASS 通过 SUBMIT 已提交") + @NotBlank(message = "执行状态不能为空") + private String status; + + @ApiModelProperty(value = "备注") + private String remarks; +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowVo.java b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowVo.java new file mode 100644 index 0000000..172b78e --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/vo/WorkFlowVo.java @@ -0,0 +1,20 @@ +package com.ydool.oa.workFlow.data.vo; + +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.validation.constraints.NotBlank; + +@Data +public class WorkFlowVo { + + private static final long serialVersionUID = 1L; + + @ApiModelProperty(value = "流程类型") + @NotBlank(message = "流程类型不能为空") + private String type; + + @ApiModelProperty(value = "表单数据") + @NotBlank(message = "表单数据不能为空") + private String data; +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepLogWrapper.java b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepLogWrapper.java new file mode 100644 index 0000000..4b52531 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepLogWrapper.java @@ -0,0 +1,41 @@ +package com.ydool.oa.workFlow.data.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.oa.workFlow.data.dto.WorkFlowStepLogDto; +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.ydool.oa.workFlow.enums.WorkFlowStepStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepTypeEnum; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface WorkFlowStepLogWrapper extends BaseWrapper { + WorkFlowStepLogWrapper INSTANCE = Mappers.getMapper(WorkFlowStepLogWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") WorkFlowStepLog obj, @MappingTarget @Param("dto") WorkFlowStepLogDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + User user = userService.getById(obj.getUserId()); + if (ObjUtil.isNotNull(user)) { + dto.setUserName(user.getUserName()); + } + + dto.setStepTypeName(WorkFlowStepTypeEnum.valueOf(obj.getStepType()).getName()); + dto.setStatusName(WorkFlowStepStatusEnum.valueOf(obj.getStatus()).getName()); + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepWrapper.java b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepWrapper.java new file mode 100644 index 0000000..1f2d12e --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowStepWrapper.java @@ -0,0 +1,41 @@ +package com.ydool.oa.workFlow.data.wrapper; + +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.ydool.common.base.BaseWrapper; +import com.ydool.oa.workFlow.data.dto.WorkFlowStepDto; +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.oa.workFlow.enums.WorkFlowStepStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepTypeEnum; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +@Mapper +public interface WorkFlowStepWrapper extends BaseWrapper { + WorkFlowStepWrapper INSTANCE = Mappers.getMapper(WorkFlowStepWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") WorkFlowStep obj, @MappingTarget @Param("dto") WorkFlowStepDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + User user = userService.getById(obj.getUserId()); + if (ObjUtil.isNotNull(user)) { + dto.setUserName(user.getUserName()); + } + + dto.setStepTypeName(WorkFlowStepTypeEnum.valueOf(obj.getStepType()).getName()); + dto.setStatusName(WorkFlowStepStatusEnum.valueOf(obj.getStatus()).getName()); + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowWrapper.java b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowWrapper.java new file mode 100644 index 0000000..e238f51 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/data/wrapper/WorkFlowWrapper.java @@ -0,0 +1,99 @@ +package com.ydool.oa.workFlow.data.wrapper; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.util.ObjUtil; +import cn.hutool.extra.spring.SpringUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.ydool.common.base.BaseWrapper; +import com.ydool.oa.workFlow.data.dto.WorkFlowDto; +import com.ydool.oa.workFlow.data.dto.WorkFlowStepDto; +import com.ydool.oa.workFlow.data.dto.WorkFlowStepLogDto; +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.ydool.oa.workFlow.enums.WorkFlowStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepTypeEnum; +import com.ydool.oa.workFlow.enums.WorkFlowTypeEnum; +import com.ydool.oa.workFlow.service.WorkFlowStepLogService; +import com.ydool.oa.workFlow.service.WorkFlowStepService; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.apache.ibatis.annotations.Param; +import org.mapstruct.AfterMapping; +import org.mapstruct.Mapper; +import org.mapstruct.MappingTarget; +import org.mapstruct.factory.Mappers; + +import java.util.ArrayList; +import java.util.List; + +@Mapper +public interface WorkFlowWrapper extends BaseWrapper { + WorkFlowWrapper INSTANCE = Mappers.getMapper(WorkFlowWrapper.class); + + @AfterMapping + default void setOtherField(@Param("obj") WorkFlow obj, @MappingTarget @Param("dto") WorkFlowDto dto) { + UserServiceImpl userService = SpringUtil.getBean(UserServiceImpl.class); + User createdUser = userService.getById(obj.getCreatedId()); + if (ObjUtil.isNotNull(createdUser)) { + dto.setCreatedName(createdUser.getUserName()); + } + User updatedUser = userService.getById(obj.getUpdatedId()); + if (ObjUtil.isNotNull(updatedUser)) { + dto.setUpdatedName(updatedUser.getUserName()); + } + User user = userService.getById(obj.getUserId()); + if (ObjUtil.isNotNull(user)) { + dto.setUserName(user.getUserName()); + } + + dto.setTypeName(WorkFlowTypeEnum.valueOf(obj.getType().toUpperCase()).getName()); + dto.setStepTypeName(WorkFlowStepTypeEnum.valueOf(obj.getStepType()).getName()); + dto.setStatusName(WorkFlowStatusEnum.valueOf(obj.getStatus()).getName()); + + WorkFlowStepService workFlowStepService = SpringUtil.getBean(WorkFlowStepService.class); + WorkFlowStepLogService workFlowStepLogService = SpringUtil.getBean(WorkFlowStepLogService.class); + + List workFlowStepList = workFlowStepService.list(new QueryWrapper().lambda() + .eq(WorkFlowStep::getFlowId, obj.getId()) + ); + + List workFlowStepLogList = + workFlowStepLogService.list(new QueryWrapper().lambda() + .eq(WorkFlowStepLog::getFlowId, obj.getId()) + ); + + + List workFlowStepDtoList = WorkFlowStepWrapper.INSTANCE.toDto(workFlowStepList); + dto.setWorkFlowSteps(workFlowStepDtoList); + List workFlowStepLogDtoList = WorkFlowStepLogWrapper.INSTANCE.toDto(workFlowStepLogList); + dto.setWorkFlowStepLogs(workFlowStepLogDtoList); + + if (WorkFlowStepTypeEnum.END.getType().equals(obj.getStepType()) && WorkFlowStatusEnum.REFUSE.getStatus().equals(obj.getStatus())) { + dto.setIsReStart(true); + } else { + dto.setIsReStart(false); + } + + int count = workFlowStepService.count( + new QueryWrapper().lambda() + .eq(WorkFlowStep::getFlowId, obj.getId()) + .eq(WorkFlowStep::getStep, obj.getStep()) + .eq(WorkFlowStep::getUserId, StpUtil.getLoginIdAsString()) + .eq(WorkFlowStep::getStatus, WorkFlowStepStatusEnum.NOT_START.getStatus()) + ); + + dto.setIsApprove(false); + dto.setIsWrite(false); + + if (count > 0 && WorkFlowStepTypeEnum.APPROVAL.getType().equals(obj.getStepType())) { + dto.setIsApprove(true); + } + + if (count > 0 && WorkFlowStepTypeEnum.WRITE.getType().equals(obj.getStepType())) { + dto.setIsWrite(true); + } + + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/engine/factory/WorkFlowTypeFactory.java b/src/main/java/com/ydool/oa/workFlow/engine/factory/WorkFlowTypeFactory.java new file mode 100644 index 0000000..c522585 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/engine/factory/WorkFlowTypeFactory.java @@ -0,0 +1,37 @@ +package com.ydool.oa.workFlow.engine.factory; + +import com.ydool.common.exception.ResultException; +import com.ydool.oa.workFlow.engine.service.IWorkFlowType; +import org.springframework.beans.BeansException; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextAware; +import org.springframework.context.ApplicationListener; +import org.springframework.context.event.ContextRefreshedEvent; +import org.springframework.stereotype.Component; + +import java.util.Map; +import java.util.Optional; +import java.util.concurrent.ConcurrentHashMap; + +@Component +public class WorkFlowTypeFactory implements ApplicationContextAware, ApplicationListener { + + private Map workFlowTypeMap = new ConcurrentHashMap<>(); + + private ApplicationContext applicationContext; + + public IWorkFlowType getWorkFlowType(String workFlowType) { + return Optional.ofNullable(workFlowTypeMap.get(workFlowType)).orElseThrow(() -> new ResultException("找不到 [" + workFlowType + "] 流程的处理类")); + } + + @Override + public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { + this.applicationContext = applicationContext; + } + + @Override + public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) { + Map beansOfType = applicationContext.getBeansOfType(IWorkFlowType.class); + beansOfType.values().forEach(source -> workFlowTypeMap.put(source.getName(), source)); + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/engine/service/IWorkFlowType.java b/src/main/java/com/ydool/oa/workFlow/engine/service/IWorkFlowType.java new file mode 100644 index 0000000..dbd59f6 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/engine/service/IWorkFlowType.java @@ -0,0 +1,35 @@ +package com.ydool.oa.workFlow.engine.service; + +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.oa.workFlow.data.vo.WorkFlowStepVo; +import com.ydool.oa.workFlow.data.vo.WorkFlowVo; + +public interface IWorkFlowType { + + /** + * 发起流程 + * + * @param workFlow + * @return + */ + AjaxResult first(WorkFlow workFlow); + + + /** + * 执行流程 + * @param vo + * @param obj + * @return + */ + AjaxResult execute(WorkFlowStepVo vo, WorkFlow obj); + + /** + * 流程类型 + * + * @param + * @return + */ + String getName(); +} diff --git a/src/main/java/com/ydool/oa/workFlow/engine/service/impl/LeaveWorkFlowService.java b/src/main/java/com/ydool/oa/workFlow/engine/service/impl/LeaveWorkFlowService.java new file mode 100644 index 0000000..4964e40 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/engine/service/impl/LeaveWorkFlowService.java @@ -0,0 +1,203 @@ +package com.ydool.oa.workFlow.engine.service.impl; + +import cn.dev33.satoken.stp.StpUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import com.ydool.oa.workFlow.data.entity.WorkFlowNotice; +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.ydool.oa.workFlow.data.vo.WorkFlowStepVo; +import com.ydool.oa.workFlow.engine.service.IWorkFlowType; +import com.ydool.oa.workFlow.enums.WorkFlowStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepTypeEnum; +import com.ydool.oa.workFlow.enums.WorkFlowTypeEnum; +import com.ydool.oa.workFlow.service.WorkFlowNoticeService; +import com.ydool.oa.workFlow.service.WorkFlowService; +import com.ydool.oa.workFlow.service.WorkFlowStepLogService; +import com.ydool.oa.workFlow.service.WorkFlowStepService; +import com.ydool.system.entity.Config; +import com.ydool.system.entity.Job; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.ConfigServiceImpl; +import com.ydool.system.service.impl.JobServiceImpl; +import com.ydool.system.service.impl.UserServiceImpl; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +@Service +public class LeaveWorkFlowService implements IWorkFlowType { + + @Autowired + private WorkFlowService workFlowService; + + @Autowired + private WorkFlowStepService workFlowStepService; + + @Autowired + private WorkFlowStepLogService workFlowStepLogService; + + @Autowired + private WorkFlowNoticeService workFlowNoticeService; + + @Autowired + private UserServiceImpl userService; + + @Autowired + private JobServiceImpl jobService; + + @Autowired + private ConfigServiceImpl configService; + + @Override + @Transactional(rollbackFor = Exception.class) + public AjaxResult first(WorkFlow workFlow) { + + // 1.流程step+1 + workFlow.setStep(workFlow.getStep() + 1); + workFlow.setStepType(WorkFlowStepTypeEnum.APPROVAL.getType()); + workFlow.setStatus(WorkFlowStatusEnum.ACTIVE.getStatus()); + boolean flag = workFlowService.updateById(workFlow); + + // 2.找到上级领导 + Job superior = jobService.getOne(new QueryWrapper().lambda() + .eq(Job::getCode, "superior") + .last("limit 1") + ); + User user = userService.getById(StpUtil.getLoginIdAsString()); + User superiorUser = userService.getOne(new QueryWrapper().lambda() + .eq(User::getDept, user.getDept()) + .eq(User::getJob, superior.getId()) + .last("limit 1") + ); + + // 3.添加下一步流程环节 + WorkFlowStep nextWorkFlowStep = new WorkFlowStep(workFlow, WorkFlowStepTypeEnum.APPROVAL.getType(), + superiorUser.getId(), WorkFlowStepStatusEnum.NOT_START.getStatus(), ""); + flag = workFlowStepService.save(nextWorkFlowStep); + + // 4.通知上级领导 + String title = + user.getUserName() + "的" + WorkFlowTypeEnum.valueOf(workFlow.getType().toUpperCase()).getName() + + "待您审批"; + WorkFlowNotice workFlowNotice = new WorkFlowNotice(title, workFlow, superiorUser.getId()); + flag = workFlowNoticeService.save(workFlowNotice); + + return flag ? AjaxResult.ok().msg("发起成功") : AjaxResult.fail("发起失败"); + } + + + @Override + @Transactional(rollbackFor = Exception.class) + public AjaxResult execute(WorkFlowStepVo vo, WorkFlow workFlow) { + + // 1.查询当前流程环节 并且执行人是当前登录人 + WorkFlowStep workFlowStep = workFlowStepService.getOne(new QueryWrapper().lambda() + .eq(WorkFlowStep::getFlowId, workFlow.getId()) + .eq(WorkFlowStep::getStep, workFlow.getStep()) + .eq(WorkFlowStep::getUserId, StpUtil.getLoginIdAsString()) + .last("limit 1") + ); + + // 2.判断执行哪个方法 + switch (workFlow.getStep()) { + case 2: + // 2.1 请假流程第二步 上级领导审批 + return second(vo, workFlow, workFlowStep); + case 3: + // 2.2 请假流程第三步 总经理审批 + return third(vo, workFlow, workFlowStep); + default: + return AjaxResult.fail("流程环节错误"); + } + } + + @Transactional(rollbackFor = Exception.class) + public AjaxResult second(WorkFlowStepVo vo, WorkFlow workFlow, WorkFlowStep workFlowStep) { + + // 1.流程环节进行变更 + workFlowStep.setStatus(WorkFlowStepStatusEnum.PASS.getStatus()); + workFlowStep.setRemarks(vo.getRemarks()); + boolean flag = workFlowStepService.updateById(workFlowStep); + + // 2.记录流程环节日志 + WorkFlowStepLog workFlowStepLog = new WorkFlowStepLog(workFlowStep, workFlow.getData()); + flag = workFlowStepLogService.save(workFlowStepLog); + + // 3.流程step+1 进入下一步 + workFlow.setStep(workFlow.getStep() + 1); + workFlow.setStepType(WorkFlowStepTypeEnum.APPROVAL.getType()); + workFlow.setStatus(WorkFlowStatusEnum.ACTIVE.getStatus()); + flag = workFlowService.updateById(workFlow); + + // 4.找到总经理 + Config generalManager = configService.getOne(new QueryWrapper().lambda() + .eq(Config::getParamKey, "general.manager") + .last("limit 1") + ); + User generalManagerUser = userService.getOne(new QueryWrapper().lambda() + .eq(User::getLoginName, generalManager.getParamValue()) + .last("limit 1") + ); + + // 5.添加下一步流程环节 + WorkFlowStep nextWorkFlowStep = new WorkFlowStep(workFlow, WorkFlowStepTypeEnum.APPROVAL.getType(), + generalManagerUser.getId(), WorkFlowStepStatusEnum.NOT_START.getStatus(), ""); + flag = workFlowStepService.save(nextWorkFlowStep); + + // 6.通知总经理 + User user = userService.getById(workFlow.getUserId()); + String title = + user.getUserName() + "的" + WorkFlowTypeEnum.valueOf(workFlow.getType().toUpperCase()).getName() + + "待您审批"; + WorkFlowNotice workFlowNotice = new WorkFlowNotice(title, workFlow, generalManagerUser.getId()); + flag = workFlowNoticeService.save(workFlowNotice); + + return flag ? AjaxResult.ok().msg("审批成功") : AjaxResult.fail("审批失败"); + } + + public AjaxResult third(WorkFlowStepVo vo, WorkFlow workFlow, WorkFlowStep workFlowStep){ + + // 1.流程环节进行变更 + workFlowStep.setStatus(WorkFlowStepStatusEnum.PASS.getStatus()); + workFlowStep.setRemarks(vo.getRemarks()); + boolean flag = workFlowStepService.updateById(workFlowStep); + + // 2.记录流程环节日志 + WorkFlowStepLog workFlowStepLog = new WorkFlowStepLog(workFlowStep, workFlow.getData()); + flag = workFlowStepLogService.save(workFlowStepLog); + + // 3.流程完结 + workFlow.setStep(workFlow.getStep() + 1); + workFlow.setStepType(WorkFlowStepTypeEnum.END.getType()); + workFlow.setStatus(WorkFlowStatusEnum.PASS.getStatus()); + flag = workFlowService.updateById(workFlow); + + // 4.添加完结流程环节 + WorkFlowStep doneWorkFlowStep = new WorkFlowStep(workFlow, WorkFlowStepTypeEnum.END.getType(), + StpUtil.getLoginIdAsString(), WorkFlowStepStatusEnum.DONE.getStatus(), ""); + flag = workFlowStepService.save(doneWorkFlowStep); + + // 5.记录完结流程环节日志 + WorkFlowStepLog doneWorkFlowStepLog = new WorkFlowStepLog(doneWorkFlowStep, workFlow.getData()); + flag = workFlowStepLogService.save(doneWorkFlowStepLog); + + + // 6.通知发起人 + String title = + "您的" + WorkFlowTypeEnum.valueOf(workFlow.getType().toUpperCase()).getName() + + "已通过审批"; + WorkFlowNotice workFlowNotice = new WorkFlowNotice(title, workFlow, workFlow.getUserId()); + flag = workFlowNoticeService.save(workFlowNotice); + + return flag ? AjaxResult.ok().msg("审批成功") : AjaxResult.fail("审批失败"); + } + + + @Override + public String getName() { + return "leave"; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStatusEnum.java b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStatusEnum.java new file mode 100644 index 0000000..d0945fb --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStatusEnum.java @@ -0,0 +1,40 @@ +package com.ydool.oa.workFlow.enums; + +public enum WorkFlowStatusEnum { + /** + * 执行中 + */ + ACTIVE("ACTIVE", "执行中"), + /** + * 驳回 + */ + REFUSE("REFUSE", "驳回"), + /** + * 通过 + */ + PASS("PASS", "通过"); + + /** + * 流程状态 + */ + private final String status; + + + /** + * 流程状态名称 + */ + private final String name; + + private WorkFlowStatusEnum(String status, String name) { + this.status = status; + this.name = name; + } + + public String getStatus() { + return status; + } + + public String getName() { + return name; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepStatusEnum.java b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepStatusEnum.java new file mode 100644 index 0000000..daf7990 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepStatusEnum.java @@ -0,0 +1,48 @@ +package com.ydool.oa.workFlow.enums; + +public enum WorkFlowStepStatusEnum { + /** + * 未开始 + */ + NOT_START("NOT_START", "未开始"), + /** + * 驳回 + */ + REFUSE("REFUSE", "驳回"), + /** + * 通过 + */ + PASS("PASS", "通过"), + /** + * 已提交 + */ + SUBMIT("SUBMIT", "已提交"), + /** + * 结束 + */ + DONE("DONE", "结束"); + + /** + * 流程状态 + */ + private final String status; + + + /** + * 流程状态名称 + */ + private final String name; + + private WorkFlowStepStatusEnum(String status, String name) { + this.status = status; + this.name = name; + } + + public String getStatus() { + return status; + } + + public String getName() { + return name; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepTypeEnum.java b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepTypeEnum.java new file mode 100644 index 0000000..312e56b --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowStepTypeEnum.java @@ -0,0 +1,48 @@ +package com.ydool.oa.workFlow.enums; + +public enum WorkFlowStepTypeEnum { + /** + * 开始节点 + */ + START("START", "开始节点"), + + /** + * 审批节点 + */ + APPROVAL("APPROVAL", "审批节点"), + + /** + * 填写节点 + */ + WRITE("WRITE", "填写节点"), + + /** + * 结束节点 + */ + END("END", "结束节点"), + + + ; + /** + * 节点类型 + */ + private final String type; + + /** + * 节点名称 + */ + private final String name; + + private WorkFlowStepTypeEnum(String type, String name) { + this.type = type; + this.name = name; + } + + public String getType() { + return type; + } + + public String getName() { + return name; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowTypeEnum.java b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowTypeEnum.java new file mode 100644 index 0000000..c9dd005 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/enums/WorkFlowTypeEnum.java @@ -0,0 +1,60 @@ +package com.ydool.oa.workFlow.enums; + + +public enum WorkFlowTypeEnum { + /** + * 熏蒸申报 + */ + FUMIGATION("fumigation", "熏蒸申报"), + + /** + * 轮换申报 + */ + ROTATION("rotation", "轮换申报"), + + /** + * 药剂领用 + */ + DRUG("drug", "药剂领用"), + + /** + * 维修决算申报 + */ + REPAIR("repair", "维修决算申报"), + + /** + * 预算申请 + */ + BUDGET("budget", "预算申请"), + + /** + * 请假申请 + */ + LEAVE("leave", "请假申请"), + ; + + + /** + * 流程类型 + */ + private final String type; + + /** + * 流程名称 + */ + private final String name; + + + private WorkFlowTypeEnum(String type, String name) { + this.type = type; + this.name = name; + } + + public String getName() { + return name; + } + + public String getType() { + return type; + } +} diff --git a/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowMapper.java b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowMapper.java new file mode 100644 index 0000000..b62d590 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowMapper.java @@ -0,0 +1,18 @@ +package com.ydool.oa.workFlow.mapper; + +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import com.github.yulichang.base.MPJBaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 工作流程 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-22 + */ +@Mapper +public interface WorkFlowMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowNoticeMapper.java b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowNoticeMapper.java new file mode 100644 index 0000000..7c97769 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowNoticeMapper.java @@ -0,0 +1,18 @@ +package com.ydool.oa.workFlow.mapper; + +import com.ydool.oa.workFlow.data.entity.WorkFlowNotice; +import com.github.yulichang.base.MPJBaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 流程通知 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-29 + */ +@Mapper +public interface WorkFlowNoticeMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepLogMapper.java b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepLogMapper.java new file mode 100644 index 0000000..6e99c26 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepLogMapper.java @@ -0,0 +1,18 @@ +package com.ydool.oa.workFlow.mapper; + +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.github.yulichang.base.MPJBaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 工作流程环节日志 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Mapper +public interface WorkFlowStepLogMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepMapper.java b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepMapper.java new file mode 100644 index 0000000..e350b2b --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/mapper/WorkFlowStepMapper.java @@ -0,0 +1,18 @@ +package com.ydool.oa.workFlow.mapper; + +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.github.yulichang.base.MPJBaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

+ * 工作流程环节 Mapper 接口 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Mapper +public interface WorkFlowStepMapper extends MPJBaseMapper { + +} diff --git a/src/main/java/com/ydool/oa/workFlow/service/WorkFlowNoticeService.java b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowNoticeService.java new file mode 100644 index 0000000..ba0ab3d --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowNoticeService.java @@ -0,0 +1,84 @@ +package com.ydool.oa.workFlow.service; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.util.ObjUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.entity.WorkFlowNotice; +import com.ydool.oa.workFlow.data.vo.WorkFlowNoticeVo; +import com.ydool.oa.workFlow.mapper.WorkFlowNoticeMapper; +import org.springframework.stereotype.Service; + +/** + *

+ * 流程通知 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-29 + */ +@Service +public class WorkFlowNoticeService extends BaseService { + /** + * 分页查询自己有关的流程通知 + * + * @param page + * @return + */ + public AjaxResult workFlowNoticePageList(Page page) { + Page pageList = page(page, new QueryWrapper().lambda() + .eq(WorkFlowNotice::getUserId, StpUtil.getLoginIdAsString()) + .orderByDesc(WorkFlowNotice::getCreatedAt) + ); + return AjaxResult.ok().data(pageList); + } + + /** + * 已读 + * + * @param vo + * @return + */ + public AjaxResult read(WorkFlowNoticeVo vo) { + boolean flag = false; + if ("all".equals(vo.getType())) { + flag = update(new UpdateWrapper().lambda() + .eq(WorkFlowNotice::getUserId, StpUtil.getLoginIdAsString()) + .eq(WorkFlowNotice::getStatus, false) + .set(WorkFlowNotice::getStatus, true) + ); + } else { + String id = vo.getId(); + if (StrUtil.isBlank(id)) { + return AjaxResult.fail("id不能为空"); + } + WorkFlowNotice workFlowNotice = getById(id); + if (ObjUtil.isNull(workFlowNotice)) { + return AjaxResult.fail("该通知不存在"); + } + if (workFlowNotice.getStatus()) { + return AjaxResult.fail("该通知已读"); + } + workFlowNotice.setStatus(true); + flag = updateById(workFlowNotice); + } + return flag ? AjaxResult.ok().msg("操作成功") : AjaxResult.fail("操作失败"); + } + + /** + * 获取未读通知数量 + * + * @return + */ + public AjaxResult getUnReadCount() { + return AjaxResult.ok().data(count(new QueryWrapper().lambda() + .eq(WorkFlowNotice::getUserId, StpUtil.getLoginIdAsString()) + .eq(WorkFlowNotice::getStatus, false) + )); + } +} + diff --git a/src/main/java/com/ydool/oa/workFlow/service/WorkFlowService.java b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowService.java new file mode 100644 index 0000000..04123ce --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowService.java @@ -0,0 +1,294 @@ +package com.ydool.oa.workFlow.service; + +import cn.dev33.satoken.stp.StpUtil; +import cn.hutool.core.bean.BeanUtil; +import cn.hutool.core.util.ObjectUtil; +import cn.hutool.core.util.StrUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.dto.WorkFlowCountDto; +import com.ydool.oa.workFlow.data.entity.WorkFlow; +import com.ydool.oa.workFlow.data.entity.WorkFlowNotice; +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.ydool.oa.workFlow.data.vo.WorkFlowStepVo; +import com.ydool.oa.workFlow.data.vo.WorkFlowVo; +import com.ydool.oa.workFlow.data.wrapper.WorkFlowWrapper; +import com.ydool.oa.workFlow.engine.factory.WorkFlowTypeFactory; +import com.ydool.oa.workFlow.enums.WorkFlowStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepStatusEnum; +import com.ydool.oa.workFlow.enums.WorkFlowStepTypeEnum; +import com.ydool.oa.workFlow.enums.WorkFlowTypeEnum; +import com.ydool.oa.workFlow.mapper.WorkFlowMapper; +import com.ydool.system.entity.User; +import com.ydool.system.service.impl.UserServiceImpl; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +/** + *

+ * 工作流程 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-22 + */ +@Service +public class WorkFlowService extends BaseService { + + @Autowired + private WorkFlowTypeFactory workFlowTypeFactory; + + @Autowired + private WorkFlowStepService workFlowStepService; + + @Autowired + private WorkFlowStepLogService workFlowStepLogService; + + @Autowired + private WorkFlowNoticeService workFlowNoticeService; + + @Autowired + private UserServiceImpl userService; + + /** + * 发起流程 + * + * @param vo + * @return + */ + @Transactional(rollbackFor = Exception.class) + public AjaxResult start(WorkFlowVo vo) { + + // 1.保存流程 + WorkFlow workFlow = BeanUtil.copyProperties(vo, WorkFlow.class); + workFlow.setUserId(StpUtil.getLoginIdAsString()); + workFlow.setStep(1); + workFlow.setStepType(WorkFlowStepTypeEnum.START.getType()); + workFlow.setStatus(WorkFlowStatusEnum.ACTIVE.getStatus()); + boolean flag = save(workFlow); + + // 2.保存流程步骤 + WorkFlowStep workFlowStep = new WorkFlowStep(workFlow, WorkFlowStepTypeEnum.START.getType(), + StpUtil.getLoginIdAsString(), WorkFlowStepStatusEnum.SUBMIT.getStatus(), ""); + flag = workFlowStepService.save(workFlowStep); + + // 3.保存流程步骤日志 + WorkFlowStepLog workFlowStepLog = new WorkFlowStepLog(workFlowStep, workFlow.getData()); + flag = workFlowStepLogService.save(workFlowStepLog); + + // 4.判断是否进入下一步 + return flag ? workFlowTypeFactory.getWorkFlowType(vo.getType()).first(workFlow) : AjaxResult.fail("发起失败"); + } + + + /** + * 执行流程 + * + * @param vo + * @return + */ + @Transactional(rollbackFor = Exception.class) + public AjaxResult execute(WorkFlowStepVo vo) { + + // 1.基础校验 + if (!WorkFlowStepStatusEnum.SUBMIT.getStatus().equals(vo.getStatus()) && StrUtil.isBlank(vo.getRemarks())) + return AjaxResult.fail( + "备注不能为空"); + String id = vo.getId(); + WorkFlow workFlow = getById(id); + if (ObjectUtil.isNull(workFlow)) return AjaxResult.fail("该流程不存在"); + + // 2.判断流程是已结束 + if (!workFlow.getStatus().equals(WorkFlowStatusEnum.ACTIVE.getStatus())) return AjaxResult.fail("该流程已结束"); + + // 3.判断是否为当前环节未操作的执行人 + int count = workFlowStepService.count( + new QueryWrapper().lambda() + .eq(WorkFlowStep::getFlowId, id) + .eq(WorkFlowStep::getStep, workFlow.getStep()) + .eq(WorkFlowStep::getUserId, StpUtil.getLoginIdAsString()) + .eq(WorkFlowStep::getStatus, WorkFlowStepStatusEnum.NOT_START.getStatus()) + ); + if (count == 0) return AjaxResult.fail("您已操作过该流程或当前环节不是您的操作环节"); + + // 4.判断执行状态 进行下一步操作 + switch (vo.getStatus()) { + case "PASS": + // 4.1 同意 + return workFlowTypeFactory.getWorkFlowType(workFlow.getType()).execute(vo, workFlow); + case "REFUSE": + //4.2 驳回 + return this.refuse(workFlow, vo.getRemarks()); + case "SUBMIT": + // 4.3 提交 + return workFlowTypeFactory.getWorkFlowType(workFlow.getType()).execute(vo, workFlow); + default: + return AjaxResult.fail("执行状态类型错误"); + } + } + + /** + * 驳回流程 + * + * @param workFlow + * @return + */ + @Transactional(rollbackFor = Exception.class) + public AjaxResult refuse(WorkFlow workFlow, String remarks) { + + // 1.修改流程状态为驳回并直接结束 + workFlow.setStepType(WorkFlowStepTypeEnum.END.getType()); + workFlow.setStatus(WorkFlowStatusEnum.REFUSE.getStatus()); + boolean flag = updateById(workFlow); + + // 2.修改流程步骤状态为驳回 + WorkFlowStep workFlowStep = workFlowStepService.getOne(new QueryWrapper().lambda() + .eq(WorkFlowStep::getFlowId, workFlow.getId()) + .eq(WorkFlowStep::getStep, workFlow.getStep()) + .eq(WorkFlowStep::getUserId, StpUtil.getLoginIdAsString()) + .last("limit 1") + ); + workFlowStep.setStatus(WorkFlowStepStatusEnum.REFUSE.getStatus()); + workFlowStep.setRemarks(remarks); + flag = workFlowStepService.updateById(workFlowStep); + + // 3.记录流程日志 + WorkFlowStepLog workFlowStepLog = new WorkFlowStepLog(workFlowStep, workFlow.getData()); + flag = workFlowStepLogService.save(workFlowStepLog); + + // 4.发送消息通知给发起人 + User user = userService.getById(StpUtil.getLoginIdAsString()); + String title = + "您的" + WorkFlowTypeEnum.valueOf(workFlow.getType().toUpperCase()).getName() + "已被" + user.getUserName() + "驳回"; + WorkFlowNotice workFlowNotice = new WorkFlowNotice(title, workFlow, workFlow.getUserId()); + flag = workFlowNoticeService.save(workFlowNotice); + + return flag ? AjaxResult.ok().msg("操作成功") : AjaxResult.fail("操作失败"); + } + + + /** + * 删除流程 + * + * @param id + * @return + */ + public AjaxResult removeWorkFlow(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + WorkFlow workFlow = getById(id); + if (ObjectUtil.isNull(workFlow)) return AjaxResult.fail("该流程不存在"); + return removeById(id) ? AjaxResult.ok().msg("删除成功") : AjaxResult.fail("删除失败"); + } + + + /** + * 获取流程详情 + * + * @param id + * @return + */ + public AjaxResult flowDetails(String id) { + if (StrUtil.isBlank(id)) return AjaxResult.fail("id不能为空"); + WorkFlow workFlow = getById(id); + if (ObjectUtil.isNull(workFlow)) return AjaxResult.fail("该流程不存在"); + return AjaxResult.ok().data(WorkFlowWrapper.INSTANCE.toDto(workFlow)); + } + + /** + * 我发起的流程列表 + * + * @param page + * @return + */ + public AjaxResult getCreateFlowList(Page page) { + Page pageList = page(page, new QueryWrapper().lambda() + .eq(WorkFlow::getUserId, StpUtil.getLoginIdAsString()) + .orderByDesc(WorkFlow::getCreatedAt) + ); + return AjaxResult.ok().data(WorkFlowWrapper.INSTANCE.toDto(pageList)); + } + + /** + * 待我填写 + * + * @param page + * @return + */ + public AjaxResult getWriteFlowList(Page page) { + Page pageList = page(page, new QueryWrapper().lambda() + .eq(WorkFlow::getStatus, WorkFlowStatusEnum.ACTIVE.getStatus()) + .eq(WorkFlow::getStepType, WorkFlowStepTypeEnum.WRITE.getType()) + .exists( + "select 1 from t_work_flow_step step where t_work_flow.id = step.flow_id and t_work_flow.step" + + " = step.step and step.user_id = '" + StpUtil.getLoginIdAsString() + + "' and step.status = '" + WorkFlowStepStatusEnum.NOT_START.getStatus() + "'" + ) + .orderByDesc(WorkFlow::getCreatedAt) + ); + return AjaxResult.ok().data(WorkFlowWrapper.INSTANCE.toDto(pageList)); + } + + /** + * 待我处理 + * + * @param page + * @return + */ + public AjaxResult getTodoFlowList(Page page) { + Page pageList = page(page, new QueryWrapper().lambda() + .eq(WorkFlow::getStatus, WorkFlowStatusEnum.ACTIVE.getStatus()) + .eq(WorkFlow::getStepType, WorkFlowStepTypeEnum.APPROVAL.getType()) + .exists( + "select 1 from t_work_flow_step step where t_work_flow.id = step.flow_id and t_work_flow.step" + + " = step.step and step.user_id = '" + StpUtil.getLoginIdAsString() + + "' and step.status = '" + WorkFlowStepStatusEnum.NOT_START.getStatus() + "'" + ) + .orderByDesc(WorkFlow::getCreatedAt) + ); + return AjaxResult.ok().data(WorkFlowWrapper.INSTANCE.toDto(pageList)); + } + + /** + * 获取各流程数量 + * + * @param + * @return + */ + public AjaxResult getWorkFlowCount() { + WorkFlowCountDto workFlowCountDto = new WorkFlowCountDto(); + // 发起的流程数量 + int createFlowCount = count(new QueryWrapper().lambda() + .eq(WorkFlow::getUserId, StpUtil.getLoginIdAsString())); + workFlowCountDto.setCreateFlowCount(createFlowCount); + // 待审批的流程数量 + int approvalFlowCount = count(new QueryWrapper().lambda() + .eq(WorkFlow::getStatus, WorkFlowStatusEnum.ACTIVE.getStatus()) + .eq(WorkFlow::getStepType, WorkFlowStepTypeEnum.APPROVAL.getType()) + .exists( + "select 1 from t_work_flow_step step where t_work_flow.id = step.flow_id and t_work_flow.step" + + " = step.step and step.user_id = '" + StpUtil.getLoginIdAsString() + + "' and step.status = '" + WorkFlowStepStatusEnum.NOT_START.getStatus() + "'" + ) + ); + workFlowCountDto.setApprovalFlowCount(approvalFlowCount); + // 待填写的流程数量 + int writeFlowCount = count(new QueryWrapper().lambda() + .eq(WorkFlow::getStatus, WorkFlowStatusEnum.ACTIVE.getStatus()) + .eq(WorkFlow::getStepType, WorkFlowStepTypeEnum.WRITE.getType()) + .exists( + "select 1 from t_work_flow_step step where t_work_flow.id = step.flow_id and t_work_flow.step" + + " = step.step and step.user_id = '" + StpUtil.getLoginIdAsString() + + "' and step.status = '" + WorkFlowStepStatusEnum.NOT_START.getStatus() + "'" + ) + ); + workFlowCountDto.setWriteFlowCount(writeFlowCount); + return AjaxResult.ok().data(workFlowCountDto); + } + + +} + diff --git a/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepLogService.java b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepLogService.java new file mode 100644 index 0000000..813e065 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepLogService.java @@ -0,0 +1,24 @@ +package com.ydool.oa.workFlow.service; + +import cn.dev33.satoken.stp.StpUtil; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ydool.common.base.BaseService; +import com.ydool.common.data.dto.AjaxResult; +import com.ydool.oa.workFlow.data.entity.WorkFlowStepLog; +import com.ydool.oa.workFlow.mapper.WorkFlowStepLogMapper; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作流程环节日志 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Service +public class WorkFlowStepLogService extends BaseService { + +} + diff --git a/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepService.java b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepService.java new file mode 100644 index 0000000..78bebe7 --- /dev/null +++ b/src/main/java/com/ydool/oa/workFlow/service/WorkFlowStepService.java @@ -0,0 +1,20 @@ +package com.ydool.oa.workFlow.service; + +import com.ydool.oa.workFlow.data.entity.WorkFlowStep; +import com.ydool.common.base.BaseService; +import com.ydool.oa.workFlow.mapper.WorkFlowStepMapper; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作流程环节 服务类 + *

+ * + * @author zhouyuan + * @since 2023-05-26 + */ +@Service +public class WorkFlowStepService extends BaseService { + +} + diff --git a/src/main/java/com/ydool/platform/swagger/config/SwaggerConfig.java b/src/main/java/com/ydool/platform/swagger/config/SwaggerConfig.java index 1b8ba1d..7a10dee 100644 --- a/src/main/java/com/ydool/platform/swagger/config/SwaggerConfig.java +++ b/src/main/java/com/ydool/platform/swagger/config/SwaggerConfig.java @@ -91,6 +91,54 @@ public class SwaggerConfig { return docket; } + @Bean(value = "defaultApi5") + public Docket defaultApi5() { + String groupName="综合管理"; + Docket docket=new Docket(DocumentationType.SWAGGER_2) + .host("http://www.ydool.com/") + .apiInfo(apiInfo()) + .groupName(groupName) + .select() + .apis(RequestHandlerSelectors.basePackage("com.ydool.integrated.controller")) + .paths(PathSelectors.any()) + .build() + //赋予插件体系 + .extensions(openApiExtensionResolver.buildExtensions(groupName)); + return docket; + } + + @Bean(value = "defaultApi6") + public Docket defaultApi6() { + String groupName="购销仓储"; + Docket docket=new Docket(DocumentationType.SWAGGER_2) + .host("http://www.ydool.com/") + .apiInfo(apiInfo()) + .groupName(groupName) + .select() + .apis(RequestHandlerSelectors.basePackage("com.ydool.grainStorage.controller")) + .paths(PathSelectors.any()) + .build() + //赋予插件体系 + .extensions(openApiExtensionResolver.buildExtensions(groupName)); + return docket; + } + + @Bean(value = "defaultApi7") + public Docket defaultApi7() { + String groupName="流程管理"; + Docket docket=new Docket(DocumentationType.SWAGGER_2) + .host("http://www.ydool.com/") + .apiInfo(apiInfo()) + .groupName(groupName) + .select() + .apis(RequestHandlerSelectors.basePackage("com.ydool.oa.workFlow.controller")) + .paths(PathSelectors.any()) + .build() + //赋予插件体系 + .extensions(openApiExtensionResolver.buildExtensions(groupName)); + return docket; + } + private ApiInfo apiInfo() { return new ApiInfoBuilder().title("接口文档系统") .description("接口文档系统") diff --git a/src/main/java/com/ydool/system/service/impl/AuthServiceImpl.java b/src/main/java/com/ydool/system/service/impl/AuthServiceImpl.java index f93ae75..c2846b5 100644 --- a/src/main/java/com/ydool/system/service/impl/AuthServiceImpl.java +++ b/src/main/java/com/ydool/system/service/impl/AuthServiceImpl.java @@ -10,9 +10,11 @@ import cn.hutool.core.util.StrUtil; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.ydool.common.base.BaseService; import com.ydool.common.cache.ConfigCache; +import com.ydool.common.constant.UrlConstant; import com.ydool.common.data.dto.AjaxResult; import com.ydool.common.utils.HttpServletUtil; import com.ydool.common.utils.PasswordUtil; +import com.ydool.common.utils.RsaUtil; import com.ydool.system.entity.Dept; import com.ydool.system.entity.Menu; import com.ydool.system.entity.Role; @@ -58,8 +60,8 @@ public class AuthServiceImpl extends BaseService implements IA userName = URLDecoder.decode(userName, StandardCharsets.UTF_8.name()); password = URLDecoder.decode(password, StandardCharsets.UTF_8.name()); //按照Rsa解密用户名密码 -// userName = RsaUtil.decrypt(userName, UrlConstant.APP_PRIVATE_KEY); -// password = RsaUtil.decrypt(password, UrlConstant.APP_PRIVATE_KEY); + userName = RsaUtil.decrypt(userName, UrlConstant.APP_PRIVATE_KEY); + password = RsaUtil.decrypt(password, UrlConstant.APP_PRIVATE_KEY); //根据用户名查询账号是否存在 User loginUser = getOne(new QueryWrapper().lambda().eq(User::getLoginName, userName)); if (ObjectUtil.isNull(loginUser)) return AjaxResult.fail("账号或者密码错误"); diff --git a/src/main/resources/html/lc/assets/404-09011b2c.js b/src/main/resources/html/lc/assets/404-9272a6dd.js similarity index 70% rename from src/main/resources/html/lc/assets/404-09011b2c.js rename to src/main/resources/html/lc/assets/404-9272a6dd.js index b29a5fe..81a8bf5 100644 --- a/src/main/resources/html/lc/assets/404-09011b2c.js +++ b/src/main/resources/html/lc/assets/404-9272a6dd.js @@ -1 +1 @@ -import{_ as e}from"./_plugin-vue_export-helper-c27b6911.js";import{o as c,c as o}from"./@vue-99409b8e.js";const r={};function t(n,_){return c(),o("div",null," 404 ")}const f=e(r,[["render",t]]);export{f as default}; +import{_ as e}from"./_plugin-vue_export-helper-c27b6911.js";import{o as c,c as o}from"./@vue-5dd246aa.js";const r={};function t(n,_){return c(),o("div",null," 404 ")}const f=e(r,[["render",t]]);export{f as default}; diff --git a/src/main/resources/html/lc/assets/404-legacy-700a0efb.js b/src/main/resources/html/lc/assets/404-legacy-2c57c771.js similarity index 77% rename from src/main/resources/html/lc/assets/404-legacy-700a0efb.js rename to src/main/resources/html/lc/assets/404-legacy-2c57c771.js index 07795bb..6fa2390 100644 --- a/src/main/resources/html/lc/assets/404-legacy-700a0efb.js +++ b/src/main/resources/html/lc/assets/404-legacy-2c57c771.js @@ -1 +1 @@ -System.register(["./_plugin-vue_export-helper-legacy-762b7923.js","./@vue-legacy-6c3c82af.js"],(function(e,t){"use strict";var r,u,n;return{setters:[e=>{r=e._},e=>{u=e.o,n=e.c}],execute:function(){e("default",r({},[["render",function(e,t){return u(),n("div",null," 404 ")}]]))}}})); +System.register(["./_plugin-vue_export-helper-legacy-762b7923.js","./@vue-legacy-4de3d5b5.js"],(function(e,t){"use strict";var r,u,n;return{setters:[e=>{r=e._},e=>{u=e.o,n=e.c}],execute:function(){e("default",r({},[["render",function(e,t){return u(),n("div",null," 404 ")}]]))}}})); diff --git a/src/main/resources/html/lc/assets/@babel-5a4b8c9a.js b/src/main/resources/html/lc/assets/@babel-5a4b8c9a.js new file mode 100644 index 0000000..2d0ccaa --- /dev/null +++ b/src/main/resources/html/lc/assets/@babel-5a4b8c9a.js @@ -0,0 +1 @@ +function f(e){return f=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(r){return typeof r}:function(r){return r&&typeof Symbol=="function"&&r.constructor===Symbol&&r!==Symbol.prototype?"symbol":typeof r},f(e)}function l(e,r,t,n,a,c,i){try{var u=e[c](i),o=u.value}catch(y){t(y);return}u.done?r(o):Promise.resolve(o).then(n,a)}function p(e){return function(){var r=this,t=arguments;return new Promise(function(n,a){var c=e.apply(r,t);function i(o){l(c,n,a,i,u,"next",o)}function u(o){l(c,n,a,i,u,"throw",o)}i(void 0)})}}function m(e,r){if(f(e)!=="object"||e===null)return e;var t=e[Symbol.toPrimitive];if(t!==void 0){var n=t.call(e,r||"default");if(f(n)!=="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(r==="string"?String:Number)(e)}function s(e){var r=m(e,"string");return f(r)==="symbol"?r:String(r)}function b(e,r,t){return r=s(r),r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}export{p as _,b as a,f as b}; diff --git a/src/main/resources/html/lc/assets/@babel-legacy-633f46ed.js b/src/main/resources/html/lc/assets/@babel-legacy-633f46ed.js new file mode 100644 index 0000000..f7b7448 --- /dev/null +++ b/src/main/resources/html/lc/assets/@babel-legacy-633f46ed.js @@ -0,0 +1 @@ +System.register([],(function(t,r){"use strict";return{execute:function(){function r(n){return t("b",r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t}),r(n)}function n(t,r,n,e,o,i,u){try{var c=t[i](u),f=c.value}catch(l){return void n(l)}c.done?r(f):Promise.resolve(f).then(e,o)}function e(t){var n=function(t,n){if("object"!==r(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var o=e.call(t,n||"default");if("object"!==r(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===n?String:Number)(t)}(t,"string");return"symbol"===r(n)?n:String(n)}t({_:function(t){return function(){var r=this,e=arguments;return new Promise((function(o,i){var u=t.apply(r,e);function c(t){n(u,o,i,c,f,"next",t)}function f(t){n(u,o,i,c,f,"throw",t)}c(void 0)}))}},a:function(t,r,n){return(r=e(r))in t?Object.defineProperty(t,r,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[r]=n,t},b:r})}}})); diff --git a/src/main/resources/html/lc/assets/@element-plus-12a4a04c.js b/src/main/resources/html/lc/assets/@element-plus-ba666efa.js similarity index 99% rename from src/main/resources/html/lc/assets/@element-plus-12a4a04c.js rename to src/main/resources/html/lc/assets/@element-plus-ba666efa.js index 9c06ed2..46c61a0 100644 --- a/src/main/resources/html/lc/assets/@element-plus-12a4a04c.js +++ b/src/main/resources/html/lc/assets/@element-plus-ba666efa.js @@ -1 +1 @@ -import{o,c as n,a as e,b as u}from"./@vue-99409b8e.js";/*! Element Plus Icons Vue v2.0.10 */var v={name:"AddLocation"},s=(t,a)=>{let _=t.__vccOpts||t;for(let[r,l]of a)_[r]=l;return _},d={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),h=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),p=e("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96z"},null,-1),f=[c,h,p];function w(t,a,_,r,l,i){return o(),n("svg",d,f)}var m=s(v,[["render",w],["__file","add-location.vue"]]),g={name:"Aim"},$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),x=e("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32zm0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32zM96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32zm576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32z"},null,-1),H=[z,x];function M(t,a,_,r,l,i){return o(),n("svg",$,H)}var C=s(g,[["render",M],["__file","aim.vue"]]),V={name:"AlarmClock"},y={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},B=e("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),L=e("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32l48-83.136zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32l-48-83.136zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0v192zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128l46.912 46.912z"},null,-1),A=[B,L];function b(t,a,_,r,l,i){return o(),n("svg",y,A)}var k=s(V,[["render",b],["__file","alarm-clock.vue"]]),S={name:"Apple"},q={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},F=e("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"},null,-1),D=[F];function P(t,a,_,r,l,i){return o(),n("svg",q,D)}var R=s(S,[["render",P],["__file","apple.vue"]]),T={name:"ArrowDownBold"},O={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G=e("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"},null,-1),I=[G];function U(t,a,_,r,l,i){return o(),n("svg",O,I)}var W=s(T,[["render",U],["__file","arrow-down-bold.vue"]]),E={name:"ArrowDown"},N={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z=e("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"},null,-1),K=[Z];function Q(t,a,_,r,l,i){return o(),n("svg",N,K)}var j=s(E,[["render",Q],["__file","arrow-down.vue"]]),J={name:"ArrowLeftBold"},X={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y=e("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"},null,-1),e2=[Y];function t2(t,a,_,r,l,i){return o(),n("svg",X,e2)}var _2=s(J,[["render",t2],["__file","arrow-left-bold.vue"]]),a2={name:"ArrowLeft"},r2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l2=e("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"},null,-1),o2=[l2];function n2(t,a,_,r,l,i){return o(),n("svg",r2,o2)}var s2=s(a2,[["render",n2],["__file","arrow-left.vue"]]),i2={name:"ArrowRightBold"},u2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v2=e("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"},null,-1),d2=[v2];function c2(t,a,_,r,l,i){return o(),n("svg",u2,d2)}var h2=s(i2,[["render",c2],["__file","arrow-right-bold.vue"]]),p2={name:"ArrowRight"},f2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w2=e("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"},null,-1),m2=[w2];function g2(t,a,_,r,l,i){return o(),n("svg",f2,m2)}var $2=s(p2,[["render",g2],["__file","arrow-right.vue"]]),z2={name:"ArrowUpBold"},x2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},H2=e("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"},null,-1),M2=[H2];function C2(t,a,_,r,l,i){return o(),n("svg",x2,M2)}var V2=s(z2,[["render",C2],["__file","arrow-up-bold.vue"]]),y2={name:"ArrowUp"},B2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L2=e("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 0z"},null,-1),A2=[L2];function b2(t,a,_,r,l,i){return o(),n("svg",B2,A2)}var k2=s(y2,[["render",b2],["__file","arrow-up.vue"]]),S2={name:"Avatar"},q2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},F2=e("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704l116.736-175.104zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0z"},null,-1),D2=[F2];function P2(t,a,_,r,l,i){return o(),n("svg",q2,D2)}var R2=s(S2,[["render",P2],["__file","avatar.vue"]]),T2={name:"Back"},O2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G2=e("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64z"},null,-1),I2=e("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.312L237.248 512z"},null,-1),U2=[G2,I2];function W2(t,a,_,r,l,i){return o(),n("svg",O2,U2)}var E2=s(T2,[["render",W2],["__file","back.vue"]]),N2={name:"Baseball"},Z2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},K2=e("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104z"},null,-1),Q2=e("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"},null,-1),j2=[K2,Q2];function J2(t,a,_,r,l,i){return o(),n("svg",Z2,j2)}var X2=s(N2,[["render",J2],["__file","baseball.vue"]]),Y2={name:"Basketball"},e0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},t0=e("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336zm-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8zm106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6z"},null,-1),_0=[t0];function a0(t,a,_,r,l,i){return o(),n("svg",e0,_0)}var r0=s(Y2,[["render",a0],["__file","basketball.vue"]]),l0={name:"BellFilled"},o0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n0=e("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0h256zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8H832z"},null,-1),s0=[n0];function i0(t,a,_,r,l,i){return o(),n("svg",o0,s0)}var u0=s(l0,[["render",i0],["__file","bell-filled.vue"]]),v0={name:"Bell"},d0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c0=e("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64z"},null,-1),h0=e("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0v320zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320z"},null,-1),p0=e("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm352 128h128a64 64 0 0 1-128 0z"},null,-1),f0=[c0,h0,p0];function w0(t,a,_,r,l,i){return o(),n("svg",d0,f0)}var m0=s(v0,[["render",w0],["__file","bell.vue"]]),g0={name:"Bicycle"},$0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z0=u('',5),x0=[z0];function H0(t,a,_,r,l,i){return o(),n("svg",$0,x0)}var M0=s(g0,[["render",H0],["__file","bicycle.vue"]]),C0={name:"BottomLeft"},V0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y0=e("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"},null,-1),B0=e("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"},null,-1),L0=[y0,B0];function A0(t,a,_,r,l,i){return o(),n("svg",V0,L0)}var b0=s(C0,[["render",A0],["__file","bottom-left.vue"]]),k0={name:"BottomRight"},S0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q0=e("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"},null,-1),F0=e("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"},null,-1),D0=[q0,F0];function P0(t,a,_,r,l,i){return o(),n("svg",S0,D0)}var R0=s(k0,[["render",P0],["__file","bottom-right.vue"]]),T0={name:"Bottom"},O0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G0=e("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"},null,-1),I0=[G0];function U0(t,a,_,r,l,i){return o(),n("svg",O0,I0)}var W0=s(T0,[["render",U0],["__file","bottom.vue"]]),E0={name:"Bowl"},N0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z0=e("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256h404.864zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64v-65.408zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248L493.248 320zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424L680.576 320zM352 768v64h320v-64H352z"},null,-1),K0=[Z0];function Q0(t,a,_,r,l,i){return o(),n("svg",N0,K0)}var j0=s(E0,[["render",Q0],["__file","bowl.vue"]]),J0={name:"Box"},X0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y0=e("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128H317.056zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"},null,-1),e1=e("path",{fill:"currentColor",d:"M64 320h896v64H64z"},null,-1),t1=e("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16L448 327.872zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320l64-256z"},null,-1),_1=[Y0,e1,t1];function a1(t,a,_,r,l,i){return o(),n("svg",X0,_1)}var r1=s(J0,[["render",a1],["__file","box.vue"]]),l1={name:"Briefcase"},o1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n1=e("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320h192zM128 576h768v320H128V576zm256-256h256.064V192H384v128z"},null,-1),s1=[n1];function i1(t,a,_,r,l,i){return o(),n("svg",o1,s1)}var u1=s(l1,[["render",i1],["__file","briefcase.vue"]]),v1={name:"BrushFilled"},d1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c1=e("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128h-96zM192 512V128.064h640V512H192z"},null,-1),h1=[c1];function p1(t,a,_,r,l,i){return o(),n("svg",d1,h1)}var f1=s(v1,[["render",p1],["__file","brush-filled.vue"]]),w1={name:"Brush"},m1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},g1=e("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64V448zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"},null,-1),$1=[g1];function z1(t,a,_,r,l,i){return o(),n("svg",m1,$1)}var x1=s(w1,[["render",z1],["__file","brush.vue"]]),H1={name:"Burger"},M1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},C1=e("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H160zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44zM832 448a320 320 0 0 0-640 0h640zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704H512z"},null,-1),V1=[C1];function y1(t,a,_,r,l,i){return o(),n("svg",M1,V1)}var B1=s(H1,[["render",y1],["__file","burger.vue"]]),L1={name:"Calendar"},A1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},b1=e("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-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 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"},null,-1),k1=[b1];function S1(t,a,_,r,l,i){return o(),n("svg",A1,k1)}var q1=s(L1,[["render",S1],["__file","calendar.vue"]]),F1={name:"CameraFilled"},D1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P1=e("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224H160zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4zm0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),R1=[P1];function T1(t,a,_,r,l,i){return o(),n("svg",D1,R1)}var O1=s(F1,[["render",T1],["__file","camera-filled.vue"]]),G1={name:"Camera"},I1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U1=e("path",{fill:"currentColor",d:"M896 256H128v576h768V256zm-199.424-64-32.064-64h-304.96l-32 64h369.024zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32zm416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448z"},null,-1),W1=[U1];function E1(t,a,_,r,l,i){return o(),n("svg",I1,W1)}var N1=s(G1,[["render",E1],["__file","camera.vue"]]),Z1={name:"CaretBottom"},K1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q1=e("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"},null,-1),j1=[Q1];function J1(t,a,_,r,l,i){return o(),n("svg",K1,j1)}var X1=s(Z1,[["render",J1],["__file","caret-bottom.vue"]]),Y1={name:"CaretLeft"},e4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},t4=e("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"},null,-1),_4=[t4];function a4(t,a,_,r,l,i){return o(),n("svg",e4,_4)}var r4=s(Y1,[["render",a4],["__file","caret-left.vue"]]),l4={name:"CaretRight"},o4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n4=e("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"},null,-1),s4=[n4];function i4(t,a,_,r,l,i){return o(),n("svg",o4,s4)}var u4=s(l4,[["render",i4],["__file","caret-right.vue"]]),v4={name:"CaretTop"},d4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c4=e("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"},null,-1),h4=[c4];function p4(t,a,_,r,l,i){return o(),n("svg",d4,h4)}var f4=s(v4,[["render",p4],["__file","caret-top.vue"]]),w4={name:"Cellphone"},m4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},g4=e("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H256zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64zm128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64zm128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),$4=[g4];function z4(t,a,_,r,l,i){return o(),n("svg",m4,$4)}var x4=s(w4,[["render",z4],["__file","cellphone.vue"]]),H4={name:"ChatDotRound"},M4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},C4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),V4=e("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),y4=[C4,V4];function B4(t,a,_,r,l,i){return o(),n("svg",M4,y4)}var L4=s(H4,[["render",B4],["__file","chat-dot-round.vue"]]),A4={name:"ChatDotSquare"},b4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},k4=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),S4=e("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),q4=[k4,S4];function F4(t,a,_,r,l,i){return o(),n("svg",b4,q4)}var D4=s(A4,[["render",F4],["__file","chat-dot-square.vue"]]),P4={name:"ChatLineRound"},R4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},T4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),O4=e("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),G4=[T4,O4];function I4(t,a,_,r,l,i){return o(),n("svg",R4,G4)}var U4=s(P4,[["render",I4],["__file","chat-line-round.vue"]]),W4={name:"ChatLineSquare"},E4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N4=e("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),Z4=e("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),K4=[N4,Z4];function Q4(t,a,_,r,l,i){return o(),n("svg",E4,K4)}var j4=s(W4,[["render",Q4],["__file","chat-line-square.vue"]]),J4={name:"ChatRound"},X4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y4=e("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"},null,-1),e6=[Y4];function t6(t,a,_,r,l,i){return o(),n("svg",X4,e6)}var _6=s(J4,[["render",t6],["__file","chat-round.vue"]]),a6={name:"ChatSquare"},r6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l6=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),o6=[l6];function n6(t,a,_,r,l,i){return o(),n("svg",r6,o6)}var s6=s(a6,[["render",n6],["__file","chat-square.vue"]]),i6={name:"Check"},u6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v6=e("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"},null,-1),d6=[v6];function c6(t,a,_,r,l,i){return o(),n("svg",u6,d6)}var h6=s(i6,[["render",c6],["__file","check.vue"]]),p6={name:"Checked"},f6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w6=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704v-64zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024 311.616 537.28zM384 192V96h256v96H384z"},null,-1),m6=[w6];function g6(t,a,_,r,l,i){return o(),n("svg",f6,m6)}var $6=s(p6,[["render",g6],["__file","checked.vue"]]),z6={name:"Cherry"},x6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},H6=e("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320z"},null,-1),M6=[H6];function C6(t,a,_,r,l,i){return o(),n("svg",x6,M6)}var V6=s(z6,[["render",C6],["__file","cherry.vue"]]),y6={name:"Chicken"},B6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L6=e("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84zM244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52 3.52-56.32zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"},null,-1),A6=[L6];function b6(t,a,_,r,l,i){return o(),n("svg",B6,A6)}var k6=s(y6,[["render",b6],["__file","chicken.vue"]]),S6={name:"ChromeFilled"},q6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},F6=e("path",{d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z",fill:"currentColor"},null,-1),D6=e("path",{d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91z",fill:"currentColor"},null,-1),P6=e("path",{d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21zm117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z",fill:"currentColor"},null,-1),R6=[F6,D6,P6];function T6(t,a,_,r,l,i){return o(),n("svg",q6,R6)}var O6=s(S6,[["render",T6],["__file","chrome-filled.vue"]]),G6={name:"CircleCheckFilled"},I6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U6=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1),W6=[U6];function E6(t,a,_,r,l,i){return o(),n("svg",I6,W6)}var N6=s(G6,[["render",E6],["__file","circle-check-filled.vue"]]),Z6={name:"CircleCheck"},K6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q6=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),j6=e("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"},null,-1),J6=[Q6,j6];function X6(t,a,_,r,l,i){return o(),n("svg",K6,J6)}var Y6=s(Z6,[["render",X6],["__file","circle-check.vue"]]),e3={name:"CircleCloseFilled"},t3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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.336L512 457.664z"},null,-1),a3=[_3];function r3(t,a,_,r,l,i){return o(),n("svg",t3,a3)}var l3=s(e3,[["render",r3],["__file","circle-close-filled.vue"]]),o3={name:"CircleClose"},n3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},s3=e("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.248L466.752 512z"},null,-1),i3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),u3=[s3,i3];function v3(t,a,_,r,l,i){return o(),n("svg",n3,u3)}var d3=s(o3,[["render",v3],["__file","circle-close.vue"]]),c3={name:"CirclePlusFilled"},h3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},p3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"},null,-1),f3=[p3];function w3(t,a,_,r,l,i){return o(),n("svg",h3,f3)}var m3=s(c3,[["render",w3],["__file","circle-plus-filled.vue"]]),g3={name:"CirclePlus"},$3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z3=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),x3=e("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0z"},null,-1),H3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),M3=[z3,x3,H3];function C3(t,a,_,r,l,i){return o(),n("svg",$3,M3)}var V3=s(g3,[["render",C3],["__file","circle-plus.vue"]]),y3={name:"Clock"},B3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),A3=e("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),b3=e("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"},null,-1),k3=[L3,A3,b3];function S3(t,a,_,r,l,i){return o(),n("svg",B3,k3)}var q3=s(y3,[["render",S3],["__file","clock.vue"]]),F3={name:"CloseBold"},D3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P3=e("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"},null,-1),R3=[P3];function T3(t,a,_,r,l,i){return o(),n("svg",D3,R3)}var O3=s(F3,[["render",T3],["__file","close-bold.vue"]]),G3={name:"Close"},I3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U3=e("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"},null,-1),W3=[U3];function E3(t,a,_,r,l,i){return o(),n("svg",I3,W3)}var N3=s(G3,[["render",E3],["__file","close.vue"]]),Z3={name:"Cloudy"},K3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q3=e("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),j3=[Q3];function J3(t,a,_,r,l,i){return o(),n("svg",K3,j3)}var X3=s(Z3,[["render",J3],["__file","cloudy.vue"]]),Y3={name:"CoffeeCup"},ee={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},te=e("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v32zm0 64v256a128 128 0 1 0 0-256zM96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192H128z"},null,-1),_e=[te];function ae(t,a,_,r,l,i){return o(),n("svg",ee,_e)}var re=s(Y3,[["render",ae],["__file","coffee-cup.vue"]]),le={name:"Coffee"},oe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ne=e("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304L822.592 192zm-64.128 0 4.544-64H260.736l4.544 64h493.184zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784zm68.736 64 36.544 512H708.16l36.544-512H279.04z"},null,-1),se=[ne];function ie(t,a,_,r,l,i){return o(),n("svg",oe,se)}var ue=s(le,[["render",ie],["__file","coffee.vue"]]),ve={name:"Coin"},de={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ce=e("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),he=e("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),pe=e("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224zm0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160z"},null,-1),fe=[ce,he,pe];function we(t,a,_,r,l,i){return o(),n("svg",de,fe)}var me=s(ve,[["render",we],["__file","coin.vue"]]),ge={name:"ColdDrink"},$e={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ze=e("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64zM656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928H299.008z"},null,-1),xe=[ze];function He(t,a,_,r,l,i){return o(),n("svg",$e,xe)}var Me=s(ge,[["render",He],["__file","cold-drink.vue"]]),Ce={name:"CollectionTag"},Ve={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ye=e("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"},null,-1),Be=[ye];function Le(t,a,_,r,l,i){return o(),n("svg",Ve,Be)}var Ae=s(Ce,[["render",Le],["__file","collection-tag.vue"]]),be={name:"Collection"},ke={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Se=e("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64v544zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64z"},null,-1),qe=e("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96H240zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224zm144-608v250.88l96-76.8 96 76.8V128H384zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44V64z"},null,-1),Fe=[Se,qe];function De(t,a,_,r,l,i){return o(),n("svg",ke,Fe)}var Pe=s(be,[["render",De],["__file","collection.vue"]]),Re={name:"Comment"},Te={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Oe=e("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zM128 128v640h192v160l224-160h352V128H128z"},null,-1),Ge=[Oe];function Ie(t,a,_,r,l,i){return o(),n("svg",Te,Ge)}var Ue=s(Re,[["render",Ie],["__file","comment.vue"]]),We={name:"Compass"},Ee={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ne=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Ze=e("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832z"},null,-1),Ke=[Ne,Ze];function Qe(t,a,_,r,l,i){return o(),n("svg",Ee,Ke)}var je=s(We,[["render",Qe],["__file","compass.vue"]]),Je={name:"Connection"},Xe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ye=e("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192h192z"},null,-1),e8=e("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192H384z"},null,-1),t8=[Ye,e8];function _8(t,a,_,r,l,i){return o(),n("svg",Xe,t8)}var a8=s(Je,[["render",_8],["__file","connection.vue"]]),r8={name:"Coordinate"},l8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},o8=e("path",{fill:"currentColor",d:"M480 512h64v320h-64z"},null,-1),n8=e("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64zm64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128zm256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),s8=[o8,n8];function i8(t,a,_,r,l,i){return o(),n("svg",l8,s8)}var u8=s(r8,[["render",i8],["__file","coordinate.vue"]]),v8={name:"CopyDocument"},d8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c8=e("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64h64z"},null,-1),h8=e("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H384zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64z"},null,-1),p8=[c8,h8];function f8(t,a,_,r,l,i){return o(),n("svg",d8,p8)}var w8=s(v8,[["render",f8],["__file","copy-document.vue"]]),m8={name:"Cpu"},g8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$8=e("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H320zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128z"},null,-1),z8=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zM64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32z"},null,-1),x8=[$8,z8];function H8(t,a,_,r,l,i){return o(),n("svg",g8,x8)}var M8=s(m8,[["render",H8],["__file","cpu.vue"]]),C8={name:"CreditCard"},V8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y8=e("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416V324.096zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"},null,-1),B8=e("path",{fill:"currentColor",d:"M64 320h896v64H64v-64zm0 128h896v64H64v-64zm128 192h256v64H192z"},null,-1),L8=[y8,B8];function A8(t,a,_,r,l,i){return o(),n("svg",V8,L8)}var b8=s(C8,[["render",A8],["__file","credit-card.vue"]]),k8={name:"Crop"},S8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q8=e("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0v672z"},null,-1),F8=e("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32z"},null,-1),D8=[q8,F8];function P8(t,a,_,r,l,i){return o(),n("svg",S8,D8)}var R8=s(k8,[["render",P8],["__file","crop.vue"]]),T8={name:"DArrowLeft"},O8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G8=e("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"},null,-1),I8=[G8];function U8(t,a,_,r,l,i){return o(),n("svg",O8,I8)}var W8=s(T8,[["render",U8],["__file","d-arrow-left.vue"]]),E8={name:"DArrowRight"},N8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z8=e("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.688zm-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"},null,-1),K8=[Z8];function Q8(t,a,_,r,l,i){return o(),n("svg",N8,K8)}var j8=s(E8,[["render",Q8],["__file","d-arrow-right.vue"]]),J8={name:"DCaret"},X8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y8=e("path",{fill:"currentColor",d:"m512 128 288 320H224l288-320zM224 576h576L512 896 224 576z"},null,-1),et=[Y8];function tt(t,a,_,r,l,i){return o(),n("svg",X8,et)}var _t=s(J8,[["render",tt],["__file","d-caret.vue"]]),at={name:"DataAnalysis"},rt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lt=e("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216zM832 192H192v512h640V192zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32z"},null,-1),ot=[lt];function nt(t,a,_,r,l,i){return o(),n("svg",rt,ot)}var st=s(at,[["render",nt],["__file","data-analysis.vue"]]),it={name:"DataBoard"},ut={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vt=e("path",{fill:"currentColor",d:"M32 128h960v64H32z"},null,-1),dt=e("path",{fill:"currentColor",d:"M192 192v512h640V192H192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V128z"},null,-1),ct=e("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32L322.176 960zm453.888 0h-73.856L576 741.44l55.424-32L776.064 960z"},null,-1),ht=[vt,dt,ct];function pt(t,a,_,r,l,i){return o(),n("svg",ut,ht)}var ft=s(it,[["render",pt],["__file","data-board.vue"]]),wt={name:"DataLine"},mt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gt=e("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192zM832 192H192v512h640V192zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"},null,-1),$t=[gt];function zt(t,a,_,r,l,i){return o(),n("svg",mt,$t)}var xt=s(wt,[["render",zt],["__file","data-line.vue"]]),Ht={name:"DeleteFilled"},Mt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ct=e("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"},null,-1),Vt=[Ct];function yt(t,a,_,r,l,i){return o(),n("svg",Mt,Vt)}var Bt=s(Ht,[["render",yt],["__file","delete-filled.vue"]]),Lt={name:"DeleteLocation"},At={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bt=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),kt=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),St=e("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),qt=[bt,kt,St];function Ft(t,a,_,r,l,i){return o(),n("svg",At,qt)}var Dt=s(Lt,[["render",Ft],["__file","delete-location.vue"]]),Pt={name:"Delete"},Rt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tt=e("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-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"},null,-1),Ot=[Tt];function Gt(t,a,_,r,l,i){return o(),n("svg",Rt,Ot)}var It=s(Pt,[["render",Gt],["__file","delete.vue"]]),Ut={name:"Dessert"},Wt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Et=e("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416zm287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736zM384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64z"},null,-1),Nt=[Et];function Zt(t,a,_,r,l,i){return o(),n("svg",Wt,Nt)}var Kt=s(Ut,[["render",Zt],["__file","dessert.vue"]]),Qt={name:"Discount"},jt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jt=e("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336V704zm0 64v128h576V768H224zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),Xt=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Yt=[Jt,Xt];function e_(t,a,_,r,l,i){return o(),n("svg",jt,Yt)}var t_=s(Qt,[["render",e_],["__file","discount.vue"]]),__={name:"DishDot"},a_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},r_=e("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-128h768a384 384 0 1 0-768 0zm447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256h127.68z"},null,-1),l_=[r_];function o_(t,a,_,r,l,i){return o(),n("svg",a_,l_)}var n_=s(__,[["render",o_],["__file","dish-dot.vue"]]),s_={name:"Dish"},i_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},u_=e("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152zM128 704h768a384 384 0 1 0-768 0zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64z"},null,-1),v_=[u_];function d_(t,a,_,r,l,i){return o(),n("svg",i_,v_)}var c_=s(s_,[["render",d_],["__file","dish.vue"]]),h_={name:"DocumentAdd"},p_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},f_=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"},null,-1),w_=[f_];function m_(t,a,_,r,l,i){return o(),n("svg",p_,w_)}var g_=s(h_,[["render",m_],["__file","document-add.vue"]]),$_={name:"DocumentChecked"},z_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},x_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312L478.4 646.144z"},null,-1),H_=[x_];function M_(t,a,_,r,l,i){return o(),n("svg",z_,H_)}var C_=s($_,[["render",M_],["__file","document-checked.vue"]]),V_={name:"DocumentCopy"},y_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},B_=e("path",{fill:"currentColor",d:"M128 320v576h576V320H128zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zM960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32zM256 672h320v64H256v-64zm0-192h320v64H256v-64z"},null,-1),L_=[B_];function A_(t,a,_,r,l,i){return o(),n("svg",y_,L_)}var b_=s(V_,[["render",A_],["__file","document-copy.vue"]]),k_={name:"DocumentDelete"},S_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"},null,-1),F_=[q_];function D_(t,a,_,r,l,i){return o(),n("svg",S_,F_)}var P_=s(k_,[["render",D_],["__file","document-delete.vue"]]),R_={name:"DocumentRemove"},T_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},O_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm192 512h320v64H352v-64z"},null,-1),G_=[O_];function I_(t,a,_,r,l,i){return o(),n("svg",T_,G_)}var U_=s(R_,[["render",I_],["__file","document-remove.vue"]]),W_={name:"Document"},E_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N_=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h160v64H320v-64zm0 384h384v64H320v-64z"},null,-1),Z_=[N_];function K_(t,a,_,r,l,i){return o(),n("svg",E_,Z_)}var Q_=s(W_,[["render",K_],["__file","document.vue"]]),j_={name:"Download"},J_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X_=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64v450.304z"},null,-1),Y_=[X_];function ea(t,a,_,r,l,i){return o(),n("svg",J_,Y_)}var ta=s(j_,[["render",ea],["__file","download.vue"]]),_a={name:"Drizzling"},aa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ra=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM288 800h64v64h-64v-64zm192 0h64v64h-64v-64zm-96 96h64v64h-64v-64zm192 0h64v64h-64v-64zm96-96h64v64h-64v-64z"},null,-1),la=[ra];function oa(t,a,_,r,l,i){return o(),n("svg",aa,la)}var na=s(_a,[["render",oa],["__file","drizzling.vue"]]),sa={name:"EditPen"},ia={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ua=e("path",{d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696L175.168 732.8zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336L104.32 708.8zm384 254.272v-64h448v64h-448z",fill:"currentColor"},null,-1),va=[ua];function da(t,a,_,r,l,i){return o(),n("svg",ia,va)}var ca=s(sa,[["render",da],["__file","edit-pen.vue"]]),ha={name:"Edit"},pa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fa=e("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"},null,-1),wa=e("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"},null,-1),ma=[fa,wa];function ga(t,a,_,r,l,i){return o(),n("svg",pa,ma)}var $a=s(ha,[["render",ga],["__file","edit.vue"]]),za={name:"ElemeFilled"},xa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ha=e("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112zm150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"},null,-1),Ma=[Ha];function Ca(t,a,_,r,l,i){return o(),n("svg",xa,Ma)}var Va=s(za,[["render",Ca],["__file","eleme-filled.vue"]]),ya={name:"Eleme"},Ba={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},La=e("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"},null,-1),Aa=[La];function ba(t,a,_,r,l,i){return o(),n("svg",Ba,Aa)}var ka=s(ya,[["render",ba],["__file","eleme.vue"]]),Sa={name:"ElementPlus"},qa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fa=e("path",{d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8zM714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z",fill:"currentColor"},null,-1),Da=[Fa];function Pa(t,a,_,r,l,i){return o(),n("svg",qa,Da)}var Ra=s(Sa,[["render",Pa],["__file","element-plus.vue"]]),Ta={name:"Expand"},Oa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ga=e("path",{fill:"currentColor",d:"M128 192h768v128H128V192zm0 256h512v128H128V448zm0 256h768v128H128V704zm576-352 192 160-192 128V352z"},null,-1),Ia=[Ga];function Ua(t,a,_,r,l,i){return o(),n("svg",Oa,Ia)}var Wa=s(Ta,[["render",Ua],["__file","expand.vue"]]),Ea={name:"Failed"},Na={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Za=e("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384v-64zm-320 0V96h256v96H384z"},null,-1),Ka=[Za];function Qa(t,a,_,r,l,i){return o(),n("svg",Na,Ka)}var ja=s(Ea,[["render",Qa],["__file","failed.vue"]]),Ja={name:"Female"},Xa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ya=e("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),er=e("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32z"},null,-1),tr=e("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),_r=[Ya,er,tr];function ar(t,a,_,r,l,i){return o(),n("svg",Xa,_r)}var rr=s(Ja,[["render",ar],["__file","female.vue"]]),lr={name:"Files"},or={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},nr=e("path",{fill:"currentColor",d:"M128 384v448h768V384H128zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32zm64-128h704v64H160zm96-128h512v64H256z"},null,-1),sr=[nr];function ir(t,a,_,r,l,i){return o(),n("svg",or,sr)}var ur=s(lr,[["render",ir],["__file","files.vue"]]),vr={name:"Film"},dr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cr=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),hr=e("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64h192z"},null,-1),pr=[cr,hr];function fr(t,a,_,r,l,i){return o(),n("svg",dr,pr)}var wr=s(vr,[["render",fr],["__file","film.vue"]]),mr={name:"Filter"},gr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$r=e("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288L384 523.392z"},null,-1),zr=[$r];function xr(t,a,_,r,l,i){return o(),n("svg",gr,zr)}var Hr=s(mr,[["render",xr],["__file","filter.vue"]]),Mr={name:"Finished"},Cr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vr=e("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64H736zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64H608zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64H480z"},null,-1),yr=[Vr];function Br(t,a,_,r,l,i){return o(),n("svg",Cr,yr)}var Lr=s(Mr,[["render",Br],["__file","finished.vue"]]),Ar={name:"FirstAidKit"},br={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kr=e("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H192zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),Sr=e("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96zM352 128v64h320v-64H352zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),qr=[kr,Sr];function Fr(t,a,_,r,l,i){return o(),n("svg",br,qr)}var Dr=s(Ar,[["render",Fr],["__file","first-aid-kit.vue"]]),Pr={name:"Flag"},Rr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tr=e("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96v64z"},null,-1),Or=[Tr];function Gr(t,a,_,r,l,i){return o(),n("svg",Rr,Or)}var Ir=s(Pr,[["render",Gr],["__file","flag.vue"]]),Ur={name:"Fold"},Wr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Er=e("path",{fill:"currentColor",d:"M896 192H128v128h768V192zm0 256H384v128h512V448zm0 256H128v128h768V704zM320 384 128 512l192 128V384z"},null,-1),Nr=[Er];function Zr(t,a,_,r,l,i){return o(),n("svg",Wr,Nr)}var Kr=s(Ur,[["render",Zr],["__file","fold.vue"]]),Qr={name:"FolderAdd"},jr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jr=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm384 416V416h64v128h128v64H544v128h-64V608H352v-64h128z"},null,-1),Xr=[Jr];function Yr(t,a,_,r,l,i){return o(),n("svg",jr,Xr)}var e5=s(Qr,[["render",Yr],["__file","folder-add.vue"]]),t5={name:"FolderChecked"},_5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},a5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312L510.08 630.144z"},null,-1),r5=[a5];function l5(t,a,_,r,l,i){return o(),n("svg",_5,r5)}var o5=s(t5,[["render",l5],["__file","folder-checked.vue"]]),n5={name:"FolderDelete"},s5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},i5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248L466.752 576z"},null,-1),u5=[i5];function v5(t,a,_,r,l,i){return o(),n("svg",s5,u5)}var d5=s(n5,[["render",v5],["__file","folder-delete.vue"]]),c5={name:"FolderOpened"},h5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},p5=e("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"},null,-1),f5=[p5];function w5(t,a,_,r,l,i){return o(),n("svg",h5,f5)}var m5=s(c5,[["render",w5],["__file","folder-opened.vue"]]),g5={name:"FolderRemove"},$5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm256 416h320v64H352v-64z"},null,-1),x5=[z5];function H5(t,a,_,r,l,i){return o(),n("svg",$5,x5)}var M5=s(g5,[["render",H5],["__file","folder-remove.vue"]]),C5={name:"Folder"},V5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32z"},null,-1),B5=[y5];function L5(t,a,_,r,l,i){return o(),n("svg",V5,B5)}var A5=s(C5,[["render",L5],["__file","folder.vue"]]),b5={name:"Food"},k5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},S5=e("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0zm128 0h192a96 96 0 0 0-192 0zm439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352zM672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32v-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288z"},null,-1),q5=[S5];function F5(t,a,_,r,l,i){return o(),n("svg",k5,q5)}var D5=s(b5,[["render",F5],["__file","food.vue"]]),P5={name:"Football"},R5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},T5=e("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768z"},null,-1),O5=e("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0zm-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0l-11.136-63.104zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"},null,-1),G5=[T5,O5];function I5(t,a,_,r,l,i){return o(),n("svg",R5,G5)}var U5=s(P5,[["render",I5],["__file","football.vue"]]),W5={name:"ForkSpoon"},E5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N5=e("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0V572.48zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192z"},null,-1),Z5=[N5];function K5(t,a,_,r,l,i){return o(),n("svg",E5,Z5)}var Q5=s(W5,[["render",K5],["__file","fork-spoon.vue"]]),j5={name:"Fries"},J5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X5=e("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096V224zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160h37.12zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160h-16zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512h-1.216zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480V288zm-128 96V224a32 32 0 0 0-64 0v160h64-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704H253.12z"},null,-1),Y5=[X5];function el(t,a,_,r,l,i){return o(),n("svg",J5,Y5)}var tl=s(j5,[["render",el],["__file","fries.vue"]]),_l={name:"FullScreen"},al={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rl=e("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64v.064zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64l-192 .192zM864 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-64v-.064z"},null,-1),ll=[rl];function ol(t,a,_,r,l,i){return o(),n("svg",al,ll)}var nl=s(_l,[["render",ol],["__file","full-screen.vue"]]),sl={name:"GobletFull"},il={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ul=e("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320zm503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4z"},null,-1),vl=[ul];function dl(t,a,_,r,l,i){return o(),n("svg",il,vl)}var cl=s(sl,[["render",dl],["__file","goblet-full.vue"]]),hl={name:"GobletSquareFull"},pl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fl=e("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848z"},null,-1),wl=[fl];function ml(t,a,_,r,l,i){return o(),n("svg",pl,wl)}var gl=s(hl,[["render",ml],["__file","goblet-square-full.vue"]]),$l={name:"GobletSquare"},zl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xl=e("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912zM256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256v191.68z"},null,-1),Hl=[xl];function Ml(t,a,_,r,l,i){return o(),n("svg",zl,Hl)}var Cl=s($l,[["render",Ml],["__file","goblet-square.vue"]]),Vl={name:"Goblet"},yl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bl=e("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4zM256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320z"},null,-1),Ll=[Bl];function Al(t,a,_,r,l,i){return o(),n("svg",yl,Ll)}var bl=s(Vl,[["render",Al],["__file","goblet.vue"]]),kl={name:"GoldMedal"},Sl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ql=e("path",{d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128h128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128H384zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z",fill:"currentColor"},null,-1),Fl=e("path",{d:"M544 480H416v64h64v192h-64v64h192v-64h-64z",fill:"currentColor"},null,-1),Dl=[ql,Fl];function Pl(t,a,_,r,l,i){return o(),n("svg",Sl,Dl)}var Rl=s(kl,[["render",Pl],["__file","gold-medal.vue"]]),Tl={name:"GoodsFilled"},Ol={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gl=e("path",{fill:"currentColor",d:"M192 352h640l64 544H128l64-544zm128 224h64V448h-64v128zm320 0h64V448h-64v128zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0z"},null,-1),Il=[Gl];function Ul(t,a,_,r,l,i){return o(),n("svg",Ol,Il)}var Wl=s(Tl,[["render",Ul],["__file","goods-filled.vue"]]),El={name:"Goods"},Nl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zl=e("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96z"},null,-1),Kl=[Zl];function Ql(t,a,_,r,l,i){return o(),n("svg",Nl,Kl)}var jl=s(El,[["render",Ql],["__file","goods.vue"]]),Jl={name:"Grape"},Xl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yl=e("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64v67.2zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),eo=[Yl];function to(t,a,_,r,l,i){return o(),n("svg",Xl,eo)}var _o=s(Jl,[["render",to],["__file","grape.vue"]]),ao={name:"Grid"},ro={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lo=e("path",{fill:"currentColor",d:"M640 384v256H384V384h256zm64 0h192v256H704V384zm-64 512H384V704h256v192zm64 0V704h192v192H704zm-64-768v192H384V128h256zm64 0h192v192H704V128zM320 384v256H128V384h192zm0 512H128V704h192v192zm0-768v192H128V128h192z"},null,-1),oo=[lo];function no(t,a,_,r,l,i){return o(),n("svg",ro,oo)}var so=s(ao,[["render",no],["__file","grid.vue"]]),io={name:"Guide"},uo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vo=e("path",{fill:"currentColor",d:"M640 608h-64V416h64v192zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768h64zM384 608V416h64v192h-64zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32v160z"},null,-1),co=e("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192zm678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"},null,-1),ho=[vo,co];function po(t,a,_,r,l,i){return o(),n("svg",uo,ho)}var fo=s(io,[["render",po],["__file","guide.vue"]]),wo={name:"Handbag"},mo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},go=e("path",{d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01zM421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5zM832 896H192V320h128v128h64V320h256v128h64V320h128v576z",fill:"currentColor"},null,-1),$o=[go];function zo(t,a,_,r,l,i){return o(),n("svg",mo,$o)}var xo=s(wo,[["render",zo],["__file","handbag.vue"]]),Ho={name:"Headset"},Mo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Co=e("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848zM896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0V640zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0z"},null,-1),Vo=[Co];function yo(t,a,_,r,l,i){return o(),n("svg",Mo,Vo)}var Bo=s(Ho,[["render",yo],["__file","headset.vue"]]),Lo={name:"HelpFilled"},Ao={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bo=e("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480zm0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544h225.472zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"},null,-1),ko=[bo];function So(t,a,_,r,l,i){return o(),n("svg",Ao,ko)}var qo=s(Lo,[["render",So],["__file","help-filled.vue"]]),Fo={name:"Help"},Do={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Po=e("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752zm45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992l-91.008-90.944zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Ro=[Po];function To(t,a,_,r,l,i){return o(),n("svg",Do,Ro)}var Oo=s(Fo,[["render",To],["__file","help.vue"]]),Go={name:"Hide"},Io={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Uo=e("path",{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.2L371.2 588.8ZM889.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",fill:"currentColor"},null,-1),Wo=e("path",{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",fill:"currentColor"},null,-1),Eo=[Uo,Wo];function No(t,a,_,r,l,i){return o(),n("svg",Io,Eo)}var Zo=s(Go,[["render",No],["__file","hide.vue"]]),Ko={name:"Histogram"},Qo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jo=e("path",{fill:"currentColor",d:"M416 896V128h192v768H416zm-288 0V448h192v448H128zm576 0V320h192v576H704z"},null,-1),Jo=[jo];function Xo(t,a,_,r,l,i){return o(),n("svg",Qo,Jo)}var Yo=s(Ko,[["render",Xo],["__file","histogram.vue"]]),e9={name:"HomeFilled"},t9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_9=e("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"},null,-1),a9=[_9];function r9(t,a,_,r,l,i){return o(),n("svg",t9,a9)}var l9=s(e9,[["render",r9],["__file","home-filled.vue"]]),o9={name:"HotWater"},n9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},s9=e("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067v68.267zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133zm273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133zM170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"},null,-1),i9=[s9];function u9(t,a,_,r,l,i){return o(),n("svg",n9,i9)}var v9=s(o9,[["render",u9],["__file","hot-water.vue"]]),d9={name:"House"},c9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},h9=e("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328 192 413.952zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576z"},null,-1),p9=[h9];function f9(t,a,_,r,l,i){return o(),n("svg",c9,p9)}var w9=s(d9,[["render",f9],["__file","house.vue"]]),m9={name:"IceCreamRound"},g9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$9=e("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248L398.848 670.4zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"},null,-1),z9=[$9];function x9(t,a,_,r,l,i){return o(),n("svg",g9,z9)}var H9=s(m9,[["render",x9],["__file","ice-cream-round.vue"]]),M9={name:"IceCreamSquare"},C9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},V9=e("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h64zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96h-64zm-64 0h-64v160a32 32 0 1 0 64 0V704z"},null,-1),y9=[V9];function B9(t,a,_,r,l,i){return o(),n("svg",C9,y9)}var L9=s(M9,[["render",B9],["__file","ice-cream-square.vue"]]),A9={name:"IceCream"},b9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},k9=e("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448h.64zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56z"},null,-1),S9=[k9];function q9(t,a,_,r,l,i){return o(),n("svg",b9,S9)}var F9=s(A9,[["render",q9],["__file","ice-cream.vue"]]),D9={name:"IceDrink"},P9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},R9=e("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128H512zm-64 0H256.256l16.064 128H448V448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64zm-64 8.064A256.448 256.448 0 0 0 264.256 384H448V200.704zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32v32.64zM743.68 640H280.32l32.128 256h399.104l32.128-256z"},null,-1),T9=[R9];function O9(t,a,_,r,l,i){return o(),n("svg",P9,T9)}var G9=s(D9,[["render",O9],["__file","ice-drink.vue"]]),I9={name:"IceTea"},U9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},W9=e("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352zM264.064 256h495.872a256.128 256.128 0 0 0-495.872 0zm495.424 256H264.512l48 384h398.976l48-384zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32zm160 192h64v64h-64v-64zm192 64h64v64h-64v-64zm-128 64h64v64h-64v-64zm64-192h64v64h-64v-64z"},null,-1),E9=[W9];function N9(t,a,_,r,l,i){return o(),n("svg",U9,E9)}var Z9=s(I9,[["render",N9],["__file","ice-tea.vue"]]),K9={name:"InfoFilled"},Q9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},j9=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64zm67.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.344zM590.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"},null,-1),J9=[j9];function X9(t,a,_,r,l,i){return o(),n("svg",Q9,J9)}var Y9=s(K9,[["render",X9],["__file","info-filled.vue"]]),en={name:"Iphone"},tn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_n=e("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768H224zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64v544zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96H256zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0z"},null,-1),an=[_n];function rn(t,a,_,r,l,i){return o(),n("svg",tn,an)}var ln=s(en,[["render",rn],["__file","iphone.vue"]]),on={name:"Key"},nn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sn=e("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064zM512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384z"},null,-1),un=[sn];function vn(t,a,_,r,l,i){return o(),n("svg",nn,un)}var dn=s(on,[["render",vn],["__file","key.vue"]]),cn={name:"KnifeFork"},hn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pn=e("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56zm384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288H640z"},null,-1),fn=[pn];function wn(t,a,_,r,l,i){return o(),n("svg",hn,fn)}var mn=s(cn,[["render",wn],["__file","knife-fork.vue"]]),gn={name:"Lightning"},$n={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zn=e("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"},null,-1),xn=e("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736H416z"},null,-1),Hn=[zn,xn];function Mn(t,a,_,r,l,i){return o(),n("svg",$n,Hn)}var Cn=s(gn,[["render",Mn],["__file","lightning.vue"]]),Vn={name:"Link"},yn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bn=e("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"},null,-1),Ln=[Bn];function An(t,a,_,r,l,i){return o(),n("svg",yn,Ln)}var bn=s(Vn,[["render",An],["__file","link.vue"]]),kn={name:"List"},Sn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qn=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384v-64zM288 512h448v-64H288v64zm0 256h448v-64H288v64zm96-576V96h256v96H384z"},null,-1),Fn=[qn];function Dn(t,a,_,r,l,i){return o(),n("svg",Sn,Fn)}var Pn=s(kn,[["render",Dn],["__file","list.vue"]]),Rn={name:"Loading"},Tn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},On=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.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 0zm-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"},null,-1),Gn=[On];function In(t,a,_,r,l,i){return o(),n("svg",Tn,Gn)}var Un=s(Rn,[["render",In],["__file","loading.vue"]]),Wn={name:"LocationFilled"},En={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nn=e("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928zm0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6z"},null,-1),Zn=[Nn];function Kn(t,a,_,r,l,i){return o(),n("svg",En,Zn)}var Qn=s(Wn,[["render",Kn],["__file","location-filled.vue"]]),jn={name:"LocationInformation"},Jn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xn=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),Yn=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),es=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),ts=[Xn,Yn,es];function _s(t,a,_,r,l,i){return o(),n("svg",Jn,ts)}var as=s(jn,[["render",_s],["__file","location-information.vue"]]),rs={name:"Location"},ls={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},os=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),ns=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),ss=[os,ns];function is(t,a,_,r,l,i){return o(),n("svg",ls,ss)}var us=s(rs,[["render",is],["__file","location.vue"]]),vs={name:"Lock"},ds={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cs=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),hs=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"},null,-1),ps=[cs,hs];function fs(t,a,_,r,l,i){return o(),n("svg",ds,ps)}var ws=s(vs,[["render",fs],["__file","lock.vue"]]),ms={name:"Lollipop"},gs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$s=e("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0h1.28zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696zm105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"},null,-1),zs=[$s];function xs(t,a,_,r,l,i){return o(),n("svg",gs,zs)}var Hs=s(ms,[["render",xs],["__file","lollipop.vue"]]),Ms={name:"MagicStick"},Cs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vs=e("path",{fill:"currentColor",d:"M512 64h64v192h-64V64zm0 576h64v192h-64V640zM160 480v-64h192v64H160zm576 0v-64h192v64H736zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248L657.152 606.4zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248-316.8 316.8zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248L702.4 334.848z"},null,-1),ys=[Vs];function Bs(t,a,_,r,l,i){return o(),n("svg",Cs,ys)}var Ls=s(Ms,[["render",Bs],["__file","magic-stick.vue"]]),As={name:"Magnet"},bs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ks=e("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64h128zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0z"},null,-1),Ss=[ks];function qs(t,a,_,r,l,i){return o(),n("svg",bs,Ss)}var Fs=s(As,[["render",qs],["__file","magnet.vue"]]),Ds={name:"Male"},Ps={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rs=e("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450zm0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5zm253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125z"},null,-1),Ts=e("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125z"},null,-1),Os=e("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"},null,-1),Gs=[Rs,Ts,Os];function Is(t,a,_,r,l,i){return o(),n("svg",Ps,Gs)}var Us=s(Ds,[["render",Is],["__file","male.vue"]]),Ws={name:"Management"},Es={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ns=e("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128h256zm-448 0h128v768H128V128z"},null,-1),Zs=[Ns];function Ks(t,a,_,r,l,i){return o(),n("svg",Es,Zs)}var Qs=s(Ws,[["render",Ks],["__file","management.vue"]]),js={name:"MapLocation"},Js={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xs=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),Ys=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256zm345.6 192L960 960H672v-64H352v64H64l102.4-256h691.2zm-68.928 0H235.328l-76.8 192h706.944l-76.8-192z"},null,-1),ei=[Xs,Ys];function ti(t,a,_,r,l,i){return o(),n("svg",Js,ei)}var _i=s(js,[["render",ti],["__file","map-location.vue"]]),ai={name:"Medal"},ri={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},li=e("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),oi=e("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8V128zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128H640zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64z"},null,-1),ni=[li,oi];function si(t,a,_,r,l,i){return o(),n("svg",ri,ni)}var ii=s(ai,[["render",si],["__file","medal.vue"]]),ui={name:"Memo"},vi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},di=e("path",{d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),ci=e("path",{d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01zM192 896V128h96v768h-96zm640 0H352V128h480v768z",fill:"currentColor"},null,-1),hi=e("path",{d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32zm0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),pi=[di,ci,hi];function fi(t,a,_,r,l,i){return o(),n("svg",vi,pi)}var wi=s(ui,[["render",fi],["__file","memo.vue"]]),mi={name:"Menu"},gi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$i=e("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H608zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H608z"},null,-1),zi=[$i];function xi(t,a,_,r,l,i){return o(),n("svg",gi,zi)}var Hi=s(mi,[["render",xi],["__file","menu.vue"]]),Mi={name:"MessageBox"},Ci={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vi=e("path",{fill:"currentColor",d:"M288 384h448v64H288v-64zm96-128h256v64H384v-64zM131.456 512H384v128h256V512h252.544L721.856 192H302.144L131.456 512zM896 576H704v128H320V576H128v256h768V576zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"},null,-1),yi=[Vi];function Bi(t,a,_,r,l,i){return o(),n("svg",Ci,yi)}var Li=s(Mi,[["render",Bi],["__file","message-box.vue"]]),Ai={name:"Message"},bi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ki=e("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224H128zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64z"},null,-1),Si=e("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224h784zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056z"},null,-1),qi=[ki,Si];function Fi(t,a,_,r,l,i){return o(),n("svg",bi,qi)}var Di=s(Ai,[["render",Fi],["__file","message.vue"]]),Pi={name:"Mic"},Ri={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ti=e("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64h96zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128h-96z"},null,-1),Oi=[Ti];function Gi(t,a,_,r,l,i){return o(),n("svg",Ri,Oi)}var Ii=s(Pi,[["render",Gi],["__file","mic.vue"]]),Ui={name:"Microphone"},Wi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ei=e("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128zm0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64zm-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64z"},null,-1),Ni=[Ei];function Zi(t,a,_,r,l,i){return o(),n("svg",Wi,Ni)}var Ki=s(Ui,[["render",Zi],["__file","microphone.vue"]]),Qi={name:"MilkTea"},ji={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ji=e("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128h192zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320H276.48zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64zm493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12z"},null,-1),Xi=[Ji];function Yi(t,a,_,r,l,i){return o(),n("svg",ji,Xi)}var eu=s(Qi,[["render",Yi],["__file","milk-tea.vue"]]),tu={name:"Minus"},_u={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},au=e("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"},null,-1),ru=[au];function lu(t,a,_,r,l,i){return o(),n("svg",_u,ru)}var ou=s(tu,[["render",lu],["__file","minus.vue"]]),nu={name:"Money"},su={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iu=e("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640h64z"},null,-1),uu=e("path",{fill:"currentColor",d:"M768 192H128v448h640V192zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"},null,-1),vu=e("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320zm0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),du=[iu,uu,vu];function cu(t,a,_,r,l,i){return o(),n("svg",su,du)}var hu=s(nu,[["render",cu],["__file","money.vue"]]),pu={name:"Monitor"},fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wu=e("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H544zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H192z"},null,-1),mu=[wu];function gu(t,a,_,r,l,i){return o(),n("svg",fu,mu)}var $u=s(pu,[["render",gu],["__file","monitor.vue"]]),zu={name:"MoonNight"},xu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hu=e("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512zM171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"},null,-1),Mu=e("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"},null,-1),Cu=[Hu,Mu];function Vu(t,a,_,r,l,i){return o(),n("svg",xu,Cu)}var yu=s(zu,[["render",Vu],["__file","moon-night.vue"]]),Bu={name:"Moon"},Lu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Au=e("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696z"},null,-1),bu=[Au];function ku(t,a,_,r,l,i){return o(),n("svg",Lu,bu)}var Su=s(Bu,[["render",ku],["__file","moon.vue"]]),qu={name:"MoreFilled"},Fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Du=e("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224z"},null,-1),Pu=[Du];function Ru(t,a,_,r,l,i){return o(),n("svg",Fu,Pu)}var Tu=s(qu,[["render",Ru],["__file","more-filled.vue"]]),Ou={name:"More"},Gu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Iu=e("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-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"},null,-1),Uu=[Iu];function Wu(t,a,_,r,l,i){return o(),n("svg",Gu,Uu)}var Eu=s(Ou,[["render",Wu],["__file","more.vue"]]),Nu={name:"MostlyCloudy"},Zu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ku=e("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048zm15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72z"},null,-1),Qu=[Ku];function ju(t,a,_,r,l,i){return o(),n("svg",Zu,Qu)}var Ju=s(Nu,[["render",ju],["__file","mostly-cloudy.vue"]]),Xu={name:"Mouse"},Yu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ev=e("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256H438.144zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"},null,-1),tv=e("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32zm32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96v64z"},null,-1),_v=[ev,tv];function av(t,a,_,r,l,i){return o(),n("svg",Yu,_v)}var rv=s(Xu,[["render",av],["__file","mouse.vue"]]),lv={name:"Mug"},ov={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},nv=e("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64zm64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32H800z"},null,-1),sv=[nv];function iv(t,a,_,r,l,i){return o(),n("svg",ov,sv)}var uv=s(lv,[["render",iv],["__file","mug.vue"]]),vv={name:"MuteNotification"},dv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cv=e("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64H241.216zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0z"},null,-1),hv=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),pv=[cv,hv];function fv(t,a,_,r,l,i){return o(),n("svg",dv,pv)}var wv=s(vv,[["render",fv],["__file","mute-notification.vue"]]),mv={name:"Mute"},gv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$v=e("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128zm51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528l47.808-47.808zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032zM266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288L266.752 737.6z"},null,-1),zv=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),xv=[$v,zv];function Hv(t,a,_,r,l,i){return o(),n("svg",gv,xv)}var Mv=s(mv,[["render",Hv],["__file","mute.vue"]]),Cv={name:"NoSmoking"},Vv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yv=e("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256l-64 64zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744l64-64zM768 576v128h128V576H768zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Bv=[yv];function Lv(t,a,_,r,l,i){return o(),n("svg",Vv,Bv)}var Av=s(Cv,[["render",Lv],["__file","no-smoking.vue"]]),bv={name:"Notebook"},kv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Sv=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),qv=e("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),Fv=[Sv,qv];function Dv(t,a,_,r,l,i){return o(),n("svg",kv,Fv)}var Pv=s(bv,[["render",Dv],["__file","notebook.vue"]]),Rv={name:"Notification"},Tv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ov=e("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128h256z"},null,-1),Gv=e("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"},null,-1),Iv=[Ov,Gv];function Uv(t,a,_,r,l,i){return o(),n("svg",Tv,Iv)}var Wv=s(Rv,[["render",Uv],["__file","notification.vue"]]),Ev={name:"Odometer"},Nv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zv=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Kv=e("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0z"},null,-1),Qv=e("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928z"},null,-1),jv=[Zv,Kv,Qv];function Jv(t,a,_,r,l,i){return o(),n("svg",Nv,jv)}var Xv=s(Ev,[["render",Jv],["__file","odometer.vue"]]),Yv={name:"OfficeBuilding"},ed={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},td=e("path",{fill:"currentColor",d:"M192 128v704h384V128H192zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_d=e("path",{fill:"currentColor",d:"M256 256h256v64H256v-64zm0 192h256v64H256v-64zm0 192h256v64H256v-64zm384-128h128v64H640v-64zm0 128h128v64H640v-64zM64 832h896v64H64v-64z"},null,-1),ad=e("path",{fill:"currentColor",d:"M640 384v448h192V384H640zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32z"},null,-1),rd=[td,_d,ad];function ld(t,a,_,r,l,i){return o(),n("svg",ed,rd)}var od=s(Yv,[["render",ld],["__file","office-building.vue"]]),nd={name:"Open"},sd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},id=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),ud=e("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),vd=[id,ud];function dd(t,a,_,r,l,i){return o(),n("svg",sd,vd)}var cd=s(nd,[["render",dd],["__file","open.vue"]]),hd={name:"Operation"},pd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fd=e("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64h261.44zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64h453.44zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64h133.44z"},null,-1),wd=[fd];function md(t,a,_,r,l,i){return o(),n("svg",pd,wd)}var gd=s(hd,[["render",md],["__file","operation.vue"]]),$d={name:"Opportunity"},zd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xd=e("path",{fill:"currentColor",d:"M384 960v-64h192.064v64H384zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416zm-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288h64z"},null,-1),Hd=[xd];function Md(t,a,_,r,l,i){return o(),n("svg",zd,Hd)}var Cd=s($d,[["render",Md],["__file","opportunity.vue"]]),Vd={name:"Orange"},yd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bd=e("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696l182.912-182.976zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696V129.344zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024L218.752 264.064zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544H129.344zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696L264.064 805.248zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128z"},null,-1),Ld=[Bd];function Ad(t,a,_,r,l,i){return o(),n("svg",yd,Ld)}var bd=s(Vd,[["render",Ad],["__file","orange.vue"]]),kd={name:"Paperclip"},Sd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qd=e("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"},null,-1),Fd=[qd];function Dd(t,a,_,r,l,i){return o(),n("svg",Sd,Fd)}var Pd=s(kd,[["render",Dd],["__file","paperclip.vue"]]),Rd={name:"PartlyCloudy"},Td={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Od=e("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),Gd=e("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"},null,-1),Id=[Od,Gd];function Ud(t,a,_,r,l,i){return o(),n("svg",Td,Id)}var Wd=s(Rd,[["render",Ud],["__file","partly-cloudy.vue"]]),Ed={name:"Pear"},Nd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zd=e("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"},null,-1),Kd=[Zd];function Qd(t,a,_,r,l,i){return o(),n("svg",Nd,Kd)}var jd=s(Ed,[["render",Qd],["__file","pear.vue"]]),Jd={name:"PhoneFilled"},Xd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yd=e("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"},null,-1),e7=[Yd];function t7(t,a,_,r,l,i){return o(),n("svg",Xd,e7)}var _7=s(Jd,[["render",t7],["__file","phone-filled.vue"]]),a7={name:"Phone"},r7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l7=e("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192zm0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384z"},null,-1),o7=[l7];function n7(t,a,_,r,l,i){return o(),n("svg",r7,o7)}var s7=s(a7,[["render",n7],["__file","phone.vue"]]),i7={name:"PictureFilled"},u7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v7=e("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 32H96zm315.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.112zM256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384z"},null,-1),d7=[v7];function c7(t,a,_,r,l,i){return o(),n("svg",u7,d7)}var h7=s(i7,[["render",c7],["__file","picture-filled.vue"]]),p7={name:"PictureRounded"},f7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w7=e("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768zm0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z"},null,-1),m7=e("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"},null,-1),g7=[w7,m7];function $7(t,a,_,r,l,i){return o(),n("svg",f7,g7)}var z7=s(p7,[["render",$7],["__file","picture-rounded.vue"]]),x7={name:"Picture"},H7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},M7=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),C7=e("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952L185.408 876.992z"},null,-1),V7=[M7,C7];function y7(t,a,_,r,l,i){return o(),n("svg",H7,V7)}var B7=s(x7,[["render",y7],["__file","picture.vue"]]),L7={name:"PieChart"},A7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},b7=e("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"},null,-1),k7=e("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512V64z"},null,-1),S7=[b7,k7];function q7(t,a,_,r,l,i){return o(),n("svg",A7,S7)}var F7=s(L7,[["render",q7],["__file","pie-chart.vue"]]),D7={name:"Place"},P7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},R7=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),T7=e("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32z"},null,-1),O7=e("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912z"},null,-1),G7=[R7,T7,O7];function I7(t,a,_,r,l,i){return o(),n("svg",P7,G7)}var U7=s(D7,[["render",I7],["__file","place.vue"]]),W7={name:"Platform"},E7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N7=e("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64h192zM128 704V128h768v576H128z"},null,-1),Z7=[N7];function K7(t,a,_,r,l,i){return o(),n("svg",E7,Z7)}var Q7=s(W7,[["render",K7],["__file","platform.vue"]]),j7={name:"Plus"},J7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X7=e("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-64h352z"},null,-1),Y7=[X7];function ec(t,a,_,r,l,i){return o(),n("svg",J7,Y7)}var tc=s(j7,[["render",ec],["__file","plus.vue"]]),_c={name:"Pointer"},ac={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rc=e("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128zM359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32L359.04 556.8z"},null,-1),lc=[rc];function oc(t,a,_,r,l,i){return o(),n("svg",ac,lc)}var nc=s(_c,[["render",oc],["__file","pointer.vue"]]),sc={name:"Position"},ic={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},uc=e("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"},null,-1),vc=[uc];function dc(t,a,_,r,l,i){return o(),n("svg",ic,vc)}var cc=s(sc,[["render",dc],["__file","position.vue"]]),hc={name:"Postcard"},pc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fc=e("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32H160zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96z"},null,-1),wc=e("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128zM288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32zm0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),mc=[fc,wc];function gc(t,a,_,r,l,i){return o(),n("svg",pc,mc)}var $c=s(hc,[["render",gc],["__file","postcard.vue"]]),zc={name:"Pouring"},xc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hc=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32z"},null,-1),Mc=[Hc];function Cc(t,a,_,r,l,i){return o(),n("svg",xc,Mc)}var Vc=s(zc,[["render",Cc],["__file","pouring.vue"]]),yc={name:"Present"},Bc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lc=e("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576h288zm64 0h288V320H544v256h288v64H544v256zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V256z"},null,-1),Ac=e("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),bc=e("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),kc=e("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Sc=[Lc,Ac,bc,kc];function qc(t,a,_,r,l,i){return o(),n("svg",Bc,Sc)}var Fc=s(yc,[["render",qc],["__file","present.vue"]]),Dc={name:"PriceTag"},Pc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rc=e("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),Tc=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Oc=[Rc,Tc];function Gc(t,a,_,r,l,i){return o(),n("svg",Pc,Oc)}var Ic=s(Dc,[["render",Gc],["__file","price-tag.vue"]]),Uc={name:"Printer"},Wc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ec=e("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256V768zm64-192v320h384V576H320zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704h128zm64-448h384V128H320v128zm-64 128h64v64h-64v-64zm128 0h64v64h-64v-64z"},null,-1),Nc=[Ec];function Zc(t,a,_,r,l,i){return o(),n("svg",Wc,Nc)}var Kc=s(Uc,[["render",Zc],["__file","printer.vue"]]),Qc={name:"Promotion"},jc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jc=e("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472 64 448zm256 512V657.024L512 768 320 960z"},null,-1),Xc=[Jc];function Yc(t,a,_,r,l,i){return o(),n("svg",jc,Xc)}var eh=s(Qc,[["render",Yc],["__file","promotion.vue"]]),th={name:"QuartzWatch"},_h={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ah=e("path",{d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49v-.01zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01zm6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49zM512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99zm183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01z",fill:"currentColor"},null,-1),rh=e("path",{d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5zM416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68V128zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68V896zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768z",fill:"currentColor"},null,-1),lh=e("path",{d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99zm112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02z",fill:"currentColor"},null,-1),oh=[ah,rh,lh];function nh(t,a,_,r,l,i){return o(),n("svg",_h,oh)}var sh=s(th,[["render",nh],["__file","quartz-watch.vue"]]),ih={name:"QuestionFilled"},uh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vh=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm23.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"},null,-1),dh=[vh];function ch(t,a,_,r,l,i){return o(),n("svg",uh,dh)}var hh=s(ih,[["render",ch],["__file","question-filled.vue"]]),ph={name:"Rank"},fh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wh=e("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"},null,-1),mh=[wh];function gh(t,a,_,r,l,i){return o(),n("svg",fh,mh)}var $h=s(ph,[["render",gh],["__file","rank.vue"]]),zh={name:"ReadingLamp"},xh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hh=e("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm-44.672-768-99.52 448h608.384l-99.52-448H307.328zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"},null,-1),Mh=e("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32zm-192-.064h64V960h-64z"},null,-1),Ch=[Hh,Mh];function Vh(t,a,_,r,l,i){return o(),n("svg",xh,Ch)}var yh=s(zh,[["render",Vh],["__file","reading-lamp.vue"]]),Bh={name:"Reading"},Lh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ah=e("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72l384 54.848zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"},null,-1),bh=e("path",{fill:"currentColor",d:"M480 192h64v704h-64z"},null,-1),kh=[Ah,bh];function Sh(t,a,_,r,l,i){return o(),n("svg",Lh,kh)}var qh=s(Bh,[["render",Sh],["__file","reading.vue"]]),Fh={name:"RefreshLeft"},Dh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ph=e("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"},null,-1),Rh=[Ph];function Th(t,a,_,r,l,i){return o(),n("svg",Dh,Rh)}var Oh=s(Fh,[["render",Th],["__file","refresh-left.vue"]]),Gh={name:"RefreshRight"},Ih={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Uh=e("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"},null,-1),Wh=[Uh];function Eh(t,a,_,r,l,i){return o(),n("svg",Ih,Wh)}var Nh=s(Gh,[["render",Eh],["__file","refresh-right.vue"]]),Zh={name:"Refresh"},Kh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qh=e("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"},null,-1),jh=[Qh];function Jh(t,a,_,r,l,i){return o(),n("svg",Kh,jh)}var Xh=s(Zh,[["render",Jh],["__file","refresh.vue"]]),Yh={name:"Refrigerator"},ep={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tp=e("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32v288zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512H256zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96zm32 224h64v96h-64v-96zm0 288h64v96h-64v-96z"},null,-1),_p=[tp];function ap(t,a,_,r,l,i){return o(),n("svg",ep,_p)}var rp=s(Yh,[["render",ap],["__file","refrigerator.vue"]]),lp={name:"RemoveFilled"},op={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},np=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zM288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512z"},null,-1),sp=[np];function ip(t,a,_,r,l,i){return o(),n("svg",op,sp)}var up=s(lp,[["render",ip],["__file","remove-filled.vue"]]),vp={name:"Remove"},dp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cp=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),hp=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),pp=[cp,hp];function fp(t,a,_,r,l,i){return o(),n("svg",dp,pp)}var wp=s(vp,[["render",fp],["__file","remove.vue"]]),mp={name:"Right"},gp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$p=e("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312L754.752 480z"},null,-1),zp=[$p];function xp(t,a,_,r,l,i){return o(),n("svg",gp,zp)}var Hp=s(mp,[["render",xp],["__file","right.vue"]]),Mp={name:"ScaleToOriginal"},Cp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vp=e("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.118zM512 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.412zM512 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 512z"},null,-1),yp=[Vp];function Bp(t,a,_,r,l,i){return o(),n("svg",Cp,yp)}var Lp=s(Mp,[["render",Bp],["__file","scale-to-original.vue"]]),Ap={name:"School"},bp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kp=e("path",{fill:"currentColor",d:"M224 128v704h576V128H224zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),Sp=e("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"},null,-1),qp=e("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0v64zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192zM320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"},null,-1),Fp=[kp,Sp,qp];function Dp(t,a,_,r,l,i){return o(),n("svg",bp,Fp)}var Pp=s(Ap,[["render",Dp],["__file","school.vue"]]),Rp={name:"Scissor"},Tp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Op=e("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248z"},null,-1),Gp=[Op];function Ip(t,a,_,r,l,i){return o(),n("svg",Tp,Gp)}var Up=s(Rp,[["render",Ip],["__file","scissor.vue"]]),Wp={name:"Search"},Ep={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Np=e("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 704z"},null,-1),Zp=[Np];function Kp(t,a,_,r,l,i){return o(),n("svg",Ep,Zp)}var Qp=s(Wp,[["render",Kp],["__file","search.vue"]]),jp={name:"Select"},Jp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xp=e("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"},null,-1),Yp=[Xp];function ef(t,a,_,r,l,i){return o(),n("svg",Jp,Yp)}var tf=s(jp,[["render",ef],["__file","select.vue"]]),_f={name:"Sell"},af={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rf=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"},null,-1),lf=[rf];function of(t,a,_,r,l,i){return o(),n("svg",af,lf)}var nf=s(_f,[["render",of],["__file","sell.vue"]]),sf={name:"SemiSelect"},uf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vf=e("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64z"},null,-1),df=[vf];function cf(t,a,_,r,l,i){return o(),n("svg",uf,df)}var hf=s(sf,[["render",cf],["__file","semi-select.vue"]]),pf={name:"Service"},ff={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wf=e("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0zM256 448a128 128 0 1 0 0 256V448zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128z"},null,-1),mf=[wf];function gf(t,a,_,r,l,i){return o(),n("svg",ff,mf)}var $f=s(pf,[["render",gf],["__file","service.vue"]]),zf={name:"SetUp"},xf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hf=e("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64H224zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96z"},null,-1),Mf=e("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Cf=e("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Vf=e("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),yf=[Hf,Mf,Cf,Vf];function Bf(t,a,_,r,l,i){return o(),n("svg",xf,yf)}var Lf=s(zf,[["render",Bf],["__file","set-up.vue"]]),Af={name:"Setting"},bf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kf=e("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384zm0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256z"},null,-1),Sf=[kf];function qf(t,a,_,r,l,i){return o(),n("svg",bf,Sf)}var Ff=s(Af,[["render",qf],["__file","setting.vue"]]),Df={name:"Share"},Pf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rf=e("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"},null,-1),Tf=[Rf];function Of(t,a,_,r,l,i){return o(),n("svg",Pf,Tf)}var Gf=s(Df,[["render",Of],["__file","share.vue"]]),If={name:"Ship"},Uf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wf=e("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216L512 386.88zm0-70.272 144.768-65.792L512 171.84v144.768zM512 512H148.864l18.24 64H856.96l18.24-64H512zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408z"},null,-1),Ef=[Wf];function Nf(t,a,_,r,l,i){return o(),n("svg",Uf,Ef)}var Zf=s(If,[["render",Nf],["__file","ship.vue"]]),Kf={name:"Shop"},Qf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jf=e("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384v-64zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640l60.544 423.808z"},null,-1),Jf=[jf];function Xf(t,a,_,r,l,i){return o(),n("svg",Qf,Jf)}var Yf=s(Kf,[["render",Xf],["__file","shop.vue"]]),ew={name:"ShoppingBag"},tw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_w=e("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320H704zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32h160zm64 0h256a128 128 0 1 0-256 0z"},null,-1),aw=e("path",{fill:"currentColor",d:"M192 704h640v64H192z"},null,-1),rw=[_w,aw];function lw(t,a,_,r,l,i){return o(),n("svg",tw,rw)}var ow=s(ew,[["render",lw],["__file","shopping-bag.vue"]]),nw={name:"ShoppingCartFull"},sw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),uw=e("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04z"},null,-1),vw=[iw,uw];function dw(t,a,_,r,l,i){return o(),n("svg",sw,vw)}var cw=s(nw,[["render",dw],["__file","shopping-cart-full.vue"]]),hw={name:"ShoppingCart"},pw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),ww=[fw];function mw(t,a,_,r,l,i){return o(),n("svg",pw,ww)}var gw=s(hw,[["render",mw],["__file","shopping-cart.vue"]]),$w={name:"ShoppingTrolley"},zw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},xw=e("path",{d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833zm439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64h551zM256 192h622l-96 384H256V192zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833z",fill:"currentColor"},null,-1),Hw=[xw];function Mw(t,a,_,r,l,i){return o(),n("svg",zw,Hw)}var Cw=s($w,[["render",Mw],["__file","shopping-trolley.vue"]]),Vw={name:"Smoking"},yw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bw=e("path",{fill:"currentColor",d:"M256 576v128h640V576H256zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32z"},null,-1),Lw=e("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Aw=[Bw,Lw];function bw(t,a,_,r,l,i){return o(),n("svg",yw,Aw)}var kw=s(Vw,[["render",bw],["__file","smoking.vue"]]),Sw={name:"Soccer"},qw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fw=e("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24zm72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536L871.04 418.496zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152zm452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"},null,-1),Dw=[Fw];function Pw(t,a,_,r,l,i){return o(),n("svg",qw,Dw)}var Rw=s(Sw,[["render",Pw],["__file","soccer.vue"]]),Tw={name:"SoldOut"},Ow={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gw=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"},null,-1),Iw=[Gw];function Uw(t,a,_,r,l,i){return o(),n("svg",Ow,Iw)}var Ww=s(Tw,[["render",Uw],["__file","sold-out.vue"]]),Ew={name:"SortDown"},Nw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zw=e("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 0z"},null,-1),Kw=[Zw];function Qw(t,a,_,r,l,i){return o(),n("svg",Nw,Kw)}var jw=s(Ew,[["render",Qw],["__file","sort-down.vue"]]),Jw={name:"SortUp"},Xw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yw=e("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.248z"},null,-1),em=[Yw];function tm(t,a,_,r,l,i){return o(),n("svg",Xw,em)}var _m=s(Jw,[["render",tm],["__file","sort-up.vue"]]),am={name:"Sort"},rm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lm=e("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632V96zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"},null,-1),om=[lm];function nm(t,a,_,r,l,i){return o(),n("svg",rm,om)}var sm=s(am,[["render",nm],["__file","sort.vue"]]),im={name:"Stamp"},um={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vm=e("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0zM128 896v-64h768v64H128z"},null,-1),dm=[vm];function cm(t,a,_,r,l,i){return o(),n("svg",um,dm)}var hm=s(im,[["render",cm],["__file","stamp.vue"]]),pm={name:"StarFilled"},fm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wm=e("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"},null,-1),mm=[wm];function gm(t,a,_,r,l,i){return o(),n("svg",fm,mm)}var $m=s(pm,[["render",gm],["__file","star-filled.vue"]]),zm={name:"Star"},xm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hm=e("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.72L512 747.84zM313.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"},null,-1),Mm=[Hm];function Cm(t,a,_,r,l,i){return o(),n("svg",xm,Mm)}var Vm=s(zm,[["render",Cm],["__file","star.vue"]]),ym={name:"Stopwatch"},Bm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lm=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Am=e("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"},null,-1),bm=[Lm,Am];function km(t,a,_,r,l,i){return o(),n("svg",Bm,bm)}var Sm=s(ym,[["render",km],["__file","stopwatch.vue"]]),qm={name:"SuccessFilled"},Fm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Dm=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1),Pm=[Dm];function Rm(t,a,_,r,l,i){return o(),n("svg",Fm,Pm)}var Tm=s(qm,[["render",Rm],["__file","success-filled.vue"]]),Om={name:"Sugar"},Gm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Im=e("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904H252.928zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928h326.208zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"},null,-1),Um=[Im];function Wm(t,a,_,r,l,i){return o(),n("svg",Gm,Um)}var Em=s(Om,[["render",Wm],["__file","sugar.vue"]]),Nm={name:"SuitcaseLine"},Zm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Km=e("path",{d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5zM384 128h256v64H384v-64zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128v384zm448 0H320V448h384v384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128v320zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320v64z",fill:"currentColor"},null,-1),Qm=[Km];function jm(t,a,_,r,l,i){return o(),n("svg",Zm,Qm)}var Jm=s(Nm,[["render",jm],["__file","suitcase-line.vue"]]),Xm={name:"Suitcase"},Ym={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},eg=e("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64v64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448H128zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),tg=e("path",{fill:"currentColor",d:"M384 128v64h256v-64H384zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64z"},null,-1),_g=[eg,tg];function ag(t,a,_,r,l,i){return o(),n("svg",Ym,_g)}var rg=s(Xm,[["render",ag],["__file","suitcase.vue"]]),lg={name:"Sunny"},og={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ng=e("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32zM195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248zM64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32zm768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32zM195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0z"},null,-1),sg=[ng];function ig(t,a,_,r,l,i){return o(),n("svg",og,sg)}var ug=s(lg,[["render",ig],["__file","sunny.vue"]]),vg={name:"Sunrise"},dg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cg=e("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64zm129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32zm407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248z"},null,-1),hg=[cg];function pg(t,a,_,r,l,i){return o(),n("svg",dg,hg)}var fg=s(vg,[["render",pg],["__file","sunrise.vue"]]),wg={name:"Sunset"},mg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gg=e("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0H82.56zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),$g=[gg];function zg(t,a,_,r,l,i){return o(),n("svg",mg,$g)}var xg=s(wg,[["render",zg],["__file","sunset.vue"]]),Hg={name:"SwitchButton"},Mg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cg=e("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"},null,-1),Vg=e("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32z"},null,-1),yg=[Cg,Vg];function Bg(t,a,_,r,l,i){return o(),n("svg",Mg,yg)}var Lg=s(Hg,[["render",Bg],["__file","switch-button.vue"]]),Ag={name:"SwitchFilled"},bg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},kg=e("path",{d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z",fill:"currentColor"},null,-1),Sg=e("path",{d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57v644.36zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z",fill:"currentColor"},null,-1),qg=[kg,Sg];function Fg(t,a,_,r,l,i){return o(),n("svg",bg,qg)}var Dg=s(Ag,[["render",Fg],["__file","switch-filled.vue"]]),Pg={name:"Switch"},Rg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tg=e("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32z"},null,-1),Og=[Tg];function Gg(t,a,_,r,l,i){return o(),n("svg",Rg,Og)}var Ig=s(Pg,[["render",Gg],["__file","switch.vue"]]),Ug={name:"TakeawayBox"},Wg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Eg=e("path",{fill:"currentColor",d:"M832 384H192v448h640V384zM96 320h832V128H96v192zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32h-64zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64z"},null,-1),Ng=[Eg];function Zg(t,a,_,r,l,i){return o(),n("svg",Wg,Ng)}var Kg=s(Ug,[["render",Zg],["__file","takeaway-box.vue"]]),Qg={name:"Ticket"},jg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jg=e("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64v160zm0-416v192h64V416h-64z"},null,-1),Xg=[Jg];function Yg(t,a,_,r,l,i){return o(),n("svg",jg,Xg)}var e$=s(Qg,[["render",Yg],["__file","ticket.vue"]]),t$={name:"Tickets"},_$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},a$=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h192v64H320v-64zm0 384h384v64H320v-64z"},null,-1),r$=[a$];function l$(t,a,_,r,l,i){return o(),n("svg",_$,r$)}var o$=s(t$,[["render",l$],["__file","tickets.vue"]]),n$={name:"Timer"},s$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},i$=e("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),u$=e("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32z"},null,-1),v$=e("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0zm96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96z"},null,-1),d$=[i$,u$,v$];function c$(t,a,_,r,l,i){return o(),n("svg",s$,d$)}var h$=s(n$,[["render",c$],["__file","timer.vue"]]),p$={name:"ToiletPaper"},f$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w$=e("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224zM736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64h416zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224z"},null,-1),m$=e("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96z"},null,-1),g$=[w$,m$];function $$(t,a,_,r,l,i){return o(),n("svg",f$,g$)}var z$=s(p$,[["render",$$],["__file","toilet-paper.vue"]]),x$={name:"Tools"},H$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},M$=e("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0z"},null,-1),C$=[M$];function V$(t,a,_,r,l,i){return o(),n("svg",H$,C$)}var y$=s(x$,[["render",V$],["__file","tools.vue"]]),B$={name:"TopLeft"},L$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},A$=e("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0V256z"},null,-1),b$=e("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"},null,-1),k$=[A$,b$];function S$(t,a,_,r,l,i){return o(),n("svg",L$,k$)}var q$=s(B$,[["render",S$],["__file","top-left.vue"]]),F$={name:"TopRight"},D$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P$=e("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0V256z"},null,-1),R$=e("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"},null,-1),T$=[P$,R$];function O$(t,a,_,r,l,i){return o(),n("svg",D$,T$)}var G$=s(F$,[["render",O$],["__file","top-right.vue"]]),I$={name:"Top"},U$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},W$=e("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"},null,-1),E$=[W$];function N$(t,a,_,r,l,i){return o(),n("svg",U$,E$)}var Z$=s(I$,[["render",N$],["__file","top.vue"]]),K$={name:"TrendCharts"},Q$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},j$=e("path",{fill:"currentColor",d:"M128 896V128h768v768H128zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0z"},null,-1),J$=[j$];function X$(t,a,_,r,l,i){return o(),n("svg",Q$,J$)}var Y$=s(K$,[["render",X$],["__file","trend-charts.vue"]]),ez={name:"TrophyBase"},tz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_z=e("path",{d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256v182.4zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4zm172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6z",fill:"currentColor"},null,-1),az=[_z];function rz(t,a,_,r,l,i){return o(),n("svg",tz,az)}var lz=s(ez,[["render",rz],["__file","trophy-base.vue"]]),oz={name:"Trophy"},nz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sz=e("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64h128zm224-448V128H320v320a192 192 0 1 0 384 0zm64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768v192zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448H256z"},null,-1),iz=[sz];function uz(t,a,_,r,l,i){return o(),n("svg",nz,iz)}var vz=s(oz,[["render",uz],["__file","trophy.vue"]]),dz={name:"TurnOff"},cz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hz=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),pz=e("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),fz=[hz,pz];function wz(t,a,_,r,l,i){return o(),n("svg",cz,fz)}var mz=s(dz,[["render",wz],["__file","turn-off.vue"]]),gz={name:"Umbrella"},$z={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zz=e("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0zm570.688-320a384.128 384.128 0 0 0-757.376 0h757.376z"},null,-1),xz=[zz];function Hz(t,a,_,r,l,i){return o(),n("svg",$z,xz)}var Mz=s(gz,[["render",Hz],["__file","umbrella.vue"]]),Cz={name:"Unlock"},Vz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yz=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),Bz=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104l-59.456 23.808z"},null,-1),Lz=[yz,Bz];function Az(t,a,_,r,l,i){return o(),n("svg",Vz,Lz)}var bz=s(Cz,[["render",Az],["__file","unlock.vue"]]),kz={name:"UploadFilled"},Sz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qz=e("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6H544z"},null,-1),Fz=[qz];function Dz(t,a,_,r,l,i){return o(),n("svg",Sz,Fz)}var Pz=s(kz,[["render",Dz],["__file","upload-filled.vue"]]),Rz={name:"Upload"},Tz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Oz=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"},null,-1),Gz=[Oz];function Iz(t,a,_,r,l,i){return o(),n("svg",Tz,Gz)}var Uz=s(Rz,[["render",Iz],["__file","upload.vue"]]),Wz={name:"UserFilled"},Ez={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nz=e("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0zm544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"},null,-1),Zz=[Nz];function Kz(t,a,_,r,l,i){return o(),n("svg",Ez,Zz)}var Qz=s(Wz,[["render",Kz],["__file","user-filled.vue"]]),jz={name:"User"},Jz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xz=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0z"},null,-1),Yz=[Xz];function ex(t,a,_,r,l,i){return o(),n("svg",Jz,Yz)}var tx=s(jz,[["render",ex],["__file","user.vue"]]),_x={name:"Van"},ax={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rx=e("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416h24.256zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672zm48.128-192-14.72-96H704v96h151.872zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160zm-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160z"},null,-1),lx=[rx];function ox(t,a,_,r,l,i){return o(),n("svg",ax,lx)}var nx=s(_x,[["render",ox],["__file","van.vue"]]),sx={name:"VideoCameraFilled"},ix={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ux=e("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v96zM192 768v64h384v-64H192zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0zm64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288zm-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320zm64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0z"},null,-1),vx=[ux];function dx(t,a,_,r,l,i){return o(),n("svg",ix,vx)}var cx=s(sx,[["render",dx],["__file","video-camera-filled.vue"]]),hx={name:"VideoCamera"},px={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fx=e("path",{fill:"currentColor",d:"M704 768V256H128v512h576zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 71.552v176.896l128 64V359.552l-128 64zM192 320h192v64H192v-64z"},null,-1),wx=[fx];function mx(t,a,_,r,l,i){return o(),n("svg",px,wx)}var gx=s(hx,[["render",mx],["__file","video-camera.vue"]]),$x={name:"VideoPause"},zx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xx=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32zm192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32z"},null,-1),Hx=[xx];function Mx(t,a,_,r,l,i){return o(),n("svg",zx,Hx)}var Cx=s($x,[["render",Mx],["__file","video-pause.vue"]]),Vx={name:"VideoPlay"},yx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bx=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-48-247.616L668.608 512 464 375.616v272.768zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"},null,-1),Lx=[Bx];function Ax(t,a,_,r,l,i){return o(),n("svg",yx,Lx)}var bx=s(Vx,[["render",Ax],["__file","video-play.vue"]]),kx={name:"View"},Sx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qx=e("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352zm0 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-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160z"},null,-1),Fx=[qx];function Dx(t,a,_,r,l,i){return o(),n("svg",Sx,Fx)}var Px=s(kx,[["render",Dx],["__file","view.vue"]]),Rx={name:"WalletFilled"},Tx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ox=e("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160H688zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96zm-80-544 128 160H384l256-160z"},null,-1),Gx=[Ox];function Ix(t,a,_,r,l,i){return o(),n("svg",Tx,Gx)}var Ux=s(Rx,[["render",Ix],["__file","wallet-filled.vue"]]),Wx={name:"Wallet"},Ex={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nx=e("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32v192z"},null,-1),Zx=e("path",{fill:"currentColor",d:"M128 320v512h768V320H128zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32z"},null,-1),Kx=e("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),Qx=[Nx,Zx,Kx];function jx(t,a,_,r,l,i){return o(),n("svg",Ex,Qx)}var Jx=s(Wx,[["render",jx],["__file","wallet.vue"]]),Xx={name:"WarnTriangleFilled"},Yx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},eH=e("path",{d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03zM554.67 768h-85.33v-85.33h85.33V768zm0-426.67v298.66h-85.33V341.32l85.33.01z",fill:"currentColor"},null,-1),tH=[eH];function _H(t,a,_,r,l,i){return o(),n("svg",Yx,tH)}var aH=s(Xx,[["render",_H],["__file","warn-triangle-filled.vue"]]),rH={name:"WarningFilled"},lH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},oH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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 256zm0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4z"},null,-1),nH=[oH];function sH(t,a,_,r,l,i){return o(),n("svg",lH,nH)}var iH=s(rH,[["render",sH],["__file","warning-filled.vue"]]),uH={name:"Warning"},vH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),cH=[dH];function hH(t,a,_,r,l,i){return o(),n("svg",vH,cH)}var pH=s(uH,[["render",hH],["__file","warning.vue"]]),fH={name:"Watch"},wH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mH=e("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),gH=e("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32z"},null,-1),$H=e("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm128-256V128H416v128h-64V64h320v192h-64zM416 768v128h192V768h64v192H352V768h64z"},null,-1),zH=[mH,gH,$H];function xH(t,a,_,r,l,i){return o(),n("svg",wH,zH)}var HH=s(fH,[["render",xH],["__file","watch.vue"]]),MH={name:"Watermelon"},CH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},VH=e("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248L683.072 600.32zm231.552 141.056a448 448 0 1 1-632-632l632 632z"},null,-1),yH=[VH];function BH(t,a,_,r,l,i){return o(),n("svg",CH,yH)}var LH=s(MH,[["render",BH],["__file","watermelon.vue"]]),AH={name:"WindPower"},bH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kH=e("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32zm416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92l192-17.472zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96v226.368z"},null,-1),SH=[kH];function qH(t,a,_,r,l,i){return o(),n("svg",bH,SH)}var FH=s(AH,[["render",qH],["__file","wind-power.vue"]]),DH={name:"ZoomIn"},PH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},RH=e("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 704zm-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-64h96z"},null,-1),TH=[RH];function OH(t,a,_,r,l,i){return o(),n("svg",PH,TH)}var GH=s(DH,[["render",OH],["__file","zoom-in.vue"]]),IH={name:"ZoomOut"},UH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},WH=e("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 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),EH=[WH];function NH(t,a,_,r,l,i){return o(),n("svg",UH,EH)}var ZH=s(IH,[["render",NH],["__file","zoom-out.vue"]]);const QH=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:m,Aim:C,AlarmClock:k,Apple:R,ArrowDown:j,ArrowDownBold:W,ArrowLeft:s2,ArrowLeftBold:_2,ArrowRight:$2,ArrowRightBold:h2,ArrowUp:k2,ArrowUpBold:V2,Avatar:R2,Back:E2,Baseball:X2,Basketball:r0,Bell:m0,BellFilled:u0,Bicycle:M0,Bottom:W0,BottomLeft:b0,BottomRight:R0,Bowl:j0,Box:r1,Briefcase:u1,Brush:x1,BrushFilled:f1,Burger:B1,Calendar:q1,Camera:N1,CameraFilled:O1,CaretBottom:X1,CaretLeft:r4,CaretRight:u4,CaretTop:f4,Cellphone:x4,ChatDotRound:L4,ChatDotSquare:D4,ChatLineRound:U4,ChatLineSquare:j4,ChatRound:_6,ChatSquare:s6,Check:h6,Checked:$6,Cherry:V6,Chicken:k6,ChromeFilled:O6,CircleCheck:Y6,CircleCheckFilled:N6,CircleClose:d3,CircleCloseFilled:l3,CirclePlus:V3,CirclePlusFilled:m3,Clock:q3,Close:N3,CloseBold:O3,Cloudy:X3,Coffee:ue,CoffeeCup:re,Coin:me,ColdDrink:Me,Collection:Pe,CollectionTag:Ae,Comment:Ue,Compass:je,Connection:a8,Coordinate:u8,CopyDocument:w8,Cpu:M8,CreditCard:b8,Crop:R8,DArrowLeft:W8,DArrowRight:j8,DCaret:_t,DataAnalysis:st,DataBoard:ft,DataLine:xt,Delete:It,DeleteFilled:Bt,DeleteLocation:Dt,Dessert:Kt,Discount:t_,Dish:c_,DishDot:n_,Document:Q_,DocumentAdd:g_,DocumentChecked:C_,DocumentCopy:b_,DocumentDelete:P_,DocumentRemove:U_,Download:ta,Drizzling:na,Edit:$a,EditPen:ca,Eleme:ka,ElemeFilled:Va,ElementPlus:Ra,Expand:Wa,Failed:ja,Female:rr,Files:ur,Film:wr,Filter:Hr,Finished:Lr,FirstAidKit:Dr,Flag:Ir,Fold:Kr,Folder:A5,FolderAdd:e5,FolderChecked:o5,FolderDelete:d5,FolderOpened:m5,FolderRemove:M5,Food:D5,Football:U5,ForkSpoon:Q5,Fries:tl,FullScreen:nl,Goblet:bl,GobletFull:cl,GobletSquare:Cl,GobletSquareFull:gl,GoldMedal:Rl,Goods:jl,GoodsFilled:Wl,Grape:_o,Grid:so,Guide:fo,Handbag:xo,Headset:Bo,Help:Oo,HelpFilled:qo,Hide:Zo,Histogram:Yo,HomeFilled:l9,HotWater:v9,House:w9,IceCream:F9,IceCreamRound:H9,IceCreamSquare:L9,IceDrink:G9,IceTea:Z9,InfoFilled:Y9,Iphone:ln,Key:dn,KnifeFork:mn,Lightning:Cn,Link:bn,List:Pn,Loading:Un,Location:us,LocationFilled:Qn,LocationInformation:as,Lock:ws,Lollipop:Hs,MagicStick:Ls,Magnet:Fs,Male:Us,Management:Qs,MapLocation:_i,Medal:ii,Memo:wi,Menu:Hi,Message:Di,MessageBox:Li,Mic:Ii,Microphone:Ki,MilkTea:eu,Minus:ou,Money:hu,Monitor:$u,Moon:Su,MoonNight:yu,More:Eu,MoreFilled:Tu,MostlyCloudy:Ju,Mouse:rv,Mug:uv,Mute:Mv,MuteNotification:wv,NoSmoking:Av,Notebook:Pv,Notification:Wv,Odometer:Xv,OfficeBuilding:od,Open:cd,Operation:gd,Opportunity:Cd,Orange:bd,Paperclip:Pd,PartlyCloudy:Wd,Pear:jd,Phone:s7,PhoneFilled:_7,Picture:B7,PictureFilled:h7,PictureRounded:z7,PieChart:F7,Place:U7,Platform:Q7,Plus:tc,Pointer:nc,Position:cc,Postcard:$c,Pouring:Vc,Present:Fc,PriceTag:Ic,Printer:Kc,Promotion:eh,QuartzWatch:sh,QuestionFilled:hh,Rank:$h,Reading:qh,ReadingLamp:yh,Refresh:Xh,RefreshLeft:Oh,RefreshRight:Nh,Refrigerator:rp,Remove:wp,RemoveFilled:up,Right:Hp,ScaleToOriginal:Lp,School:Pp,Scissor:Up,Search:Qp,Select:tf,Sell:nf,SemiSelect:hf,Service:$f,SetUp:Lf,Setting:Ff,Share:Gf,Ship:Zf,Shop:Yf,ShoppingBag:ow,ShoppingCart:gw,ShoppingCartFull:cw,ShoppingTrolley:Cw,Smoking:kw,Soccer:Rw,SoldOut:Ww,Sort:sm,SortDown:jw,SortUp:_m,Stamp:hm,Star:Vm,StarFilled:$m,Stopwatch:Sm,SuccessFilled:Tm,Sugar:Em,Suitcase:rg,SuitcaseLine:Jm,Sunny:ug,Sunrise:fg,Sunset:xg,Switch:Ig,SwitchButton:Lg,SwitchFilled:Dg,TakeawayBox:Kg,Ticket:e$,Tickets:o$,Timer:h$,ToiletPaper:z$,Tools:y$,Top:Z$,TopLeft:q$,TopRight:G$,TrendCharts:Y$,Trophy:vz,TrophyBase:lz,TurnOff:mz,Umbrella:Mz,Unlock:bz,Upload:Uz,UploadFilled:Pz,User:tx,UserFilled:Qz,Van:nx,VideoCamera:gx,VideoCameraFilled:cx,VideoPause:Cx,VideoPlay:bx,View:Px,Wallet:Jx,WalletFilled:Ux,WarnTriangleFilled:aH,Warning:pH,WarningFilled:iH,Watch:HH,Watermelon:LH,WindPower:FH,ZoomIn:GH,ZoomOut:ZH},Symbol.toStringTag,{value:"Module"}));export{ou as A,tc as B,Eu as C,E2 as D,Tu as E,hh as F,$m as G,Vm as H,N6 as I,h7 as J,_m as K,jw as L,Qp as M,u4 as N,Q_ as O,It as P,QH as Q,Pd as R,Y6 as a,d3 as b,l3 as c,N3 as d,f4 as e,q3 as f,q1 as g,Zo as h,Y9 as i,k2 as j,j as k,Un as l,s2 as m,$2 as n,h6 as o,W8 as p,j8 as q,nl as r,Tm as s,Lp as t,GH as u,Px as v,iH as w,Oh as x,Nh as y,ZH as z}; +import{o,c as n,a as e,b as u}from"./@vue-5dd246aa.js";/*! Element Plus Icons Vue v2.0.10 */var v={name:"AddLocation"},s=(t,a)=>{let _=t.__vccOpts||t;for(let[r,l]of a)_[r]=l;return _},d={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),h=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),p=e("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96z"},null,-1),f=[c,h,p];function w(t,a,_,r,l,i){return o(),n("svg",d,f)}var m=s(v,[["render",w],["__file","add-location.vue"]]),g={name:"Aim"},$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),x=e("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32zm0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32zM96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32zm576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32z"},null,-1),H=[z,x];function M(t,a,_,r,l,i){return o(),n("svg",$,H)}var C=s(g,[["render",M],["__file","aim.vue"]]),V={name:"AlarmClock"},y={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},B=e("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),L=e("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32l48-83.136zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32l-48-83.136zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0v192zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128l46.912 46.912z"},null,-1),A=[B,L];function b(t,a,_,r,l,i){return o(),n("svg",y,A)}var k=s(V,[["render",b],["__file","alarm-clock.vue"]]),S={name:"Apple"},q={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},F=e("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"},null,-1),D=[F];function P(t,a,_,r,l,i){return o(),n("svg",q,D)}var R=s(S,[["render",P],["__file","apple.vue"]]),T={name:"ArrowDownBold"},O={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G=e("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"},null,-1),I=[G];function U(t,a,_,r,l,i){return o(),n("svg",O,I)}var W=s(T,[["render",U],["__file","arrow-down-bold.vue"]]),E={name:"ArrowDown"},N={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z=e("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"},null,-1),K=[Z];function Q(t,a,_,r,l,i){return o(),n("svg",N,K)}var j=s(E,[["render",Q],["__file","arrow-down.vue"]]),J={name:"ArrowLeftBold"},X={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y=e("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"},null,-1),e2=[Y];function t2(t,a,_,r,l,i){return o(),n("svg",X,e2)}var _2=s(J,[["render",t2],["__file","arrow-left-bold.vue"]]),a2={name:"ArrowLeft"},r2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l2=e("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"},null,-1),o2=[l2];function n2(t,a,_,r,l,i){return o(),n("svg",r2,o2)}var s2=s(a2,[["render",n2],["__file","arrow-left.vue"]]),i2={name:"ArrowRightBold"},u2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v2=e("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"},null,-1),d2=[v2];function c2(t,a,_,r,l,i){return o(),n("svg",u2,d2)}var h2=s(i2,[["render",c2],["__file","arrow-right-bold.vue"]]),p2={name:"ArrowRight"},f2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w2=e("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"},null,-1),m2=[w2];function g2(t,a,_,r,l,i){return o(),n("svg",f2,m2)}var $2=s(p2,[["render",g2],["__file","arrow-right.vue"]]),z2={name:"ArrowUpBold"},x2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},H2=e("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"},null,-1),M2=[H2];function C2(t,a,_,r,l,i){return o(),n("svg",x2,M2)}var V2=s(z2,[["render",C2],["__file","arrow-up-bold.vue"]]),y2={name:"ArrowUp"},B2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L2=e("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 0z"},null,-1),A2=[L2];function b2(t,a,_,r,l,i){return o(),n("svg",B2,A2)}var k2=s(y2,[["render",b2],["__file","arrow-up.vue"]]),S2={name:"Avatar"},q2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},F2=e("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704l116.736-175.104zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0z"},null,-1),D2=[F2];function P2(t,a,_,r,l,i){return o(),n("svg",q2,D2)}var R2=s(S2,[["render",P2],["__file","avatar.vue"]]),T2={name:"Back"},O2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G2=e("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64z"},null,-1),I2=e("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.312L237.248 512z"},null,-1),U2=[G2,I2];function W2(t,a,_,r,l,i){return o(),n("svg",O2,U2)}var E2=s(T2,[["render",W2],["__file","back.vue"]]),N2={name:"Baseball"},Z2={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},K2=e("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104z"},null,-1),Q2=e("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"},null,-1),j2=[K2,Q2];function J2(t,a,_,r,l,i){return o(),n("svg",Z2,j2)}var X2=s(N2,[["render",J2],["__file","baseball.vue"]]),Y2={name:"Basketball"},e0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},t0=e("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336zm-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8zm106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6z"},null,-1),_0=[t0];function a0(t,a,_,r,l,i){return o(),n("svg",e0,_0)}var r0=s(Y2,[["render",a0],["__file","basketball.vue"]]),l0={name:"BellFilled"},o0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n0=e("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0h256zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8H832z"},null,-1),s0=[n0];function i0(t,a,_,r,l,i){return o(),n("svg",o0,s0)}var u0=s(l0,[["render",i0],["__file","bell-filled.vue"]]),v0={name:"Bell"},d0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c0=e("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64z"},null,-1),h0=e("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0v320zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320z"},null,-1),p0=e("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm352 128h128a64 64 0 0 1-128 0z"},null,-1),f0=[c0,h0,p0];function w0(t,a,_,r,l,i){return o(),n("svg",d0,f0)}var m0=s(v0,[["render",w0],["__file","bell.vue"]]),g0={name:"Bicycle"},$0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z0=u('',5),x0=[z0];function H0(t,a,_,r,l,i){return o(),n("svg",$0,x0)}var M0=s(g0,[["render",H0],["__file","bicycle.vue"]]),C0={name:"BottomLeft"},V0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y0=e("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"},null,-1),B0=e("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"},null,-1),L0=[y0,B0];function A0(t,a,_,r,l,i){return o(),n("svg",V0,L0)}var b0=s(C0,[["render",A0],["__file","bottom-left.vue"]]),k0={name:"BottomRight"},S0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q0=e("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"},null,-1),F0=e("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"},null,-1),D0=[q0,F0];function P0(t,a,_,r,l,i){return o(),n("svg",S0,D0)}var R0=s(k0,[["render",P0],["__file","bottom-right.vue"]]),T0={name:"Bottom"},O0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G0=e("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"},null,-1),I0=[G0];function U0(t,a,_,r,l,i){return o(),n("svg",O0,I0)}var W0=s(T0,[["render",U0],["__file","bottom.vue"]]),E0={name:"Bowl"},N0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z0=e("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256h404.864zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64v-65.408zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248L493.248 320zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424L680.576 320zM352 768v64h320v-64H352z"},null,-1),K0=[Z0];function Q0(t,a,_,r,l,i){return o(),n("svg",N0,K0)}var j0=s(E0,[["render",Q0],["__file","bowl.vue"]]),J0={name:"Box"},X0={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y0=e("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128H317.056zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"},null,-1),e1=e("path",{fill:"currentColor",d:"M64 320h896v64H64z"},null,-1),t1=e("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16L448 327.872zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320l64-256z"},null,-1),_1=[Y0,e1,t1];function a1(t,a,_,r,l,i){return o(),n("svg",X0,_1)}var r1=s(J0,[["render",a1],["__file","box.vue"]]),l1={name:"Briefcase"},o1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n1=e("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320h192zM128 576h768v320H128V576zm256-256h256.064V192H384v128z"},null,-1),s1=[n1];function i1(t,a,_,r,l,i){return o(),n("svg",o1,s1)}var u1=s(l1,[["render",i1],["__file","briefcase.vue"]]),v1={name:"BrushFilled"},d1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c1=e("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128h-96zM192 512V128.064h640V512H192z"},null,-1),h1=[c1];function p1(t,a,_,r,l,i){return o(),n("svg",d1,h1)}var f1=s(v1,[["render",p1],["__file","brush-filled.vue"]]),w1={name:"Brush"},m1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},g1=e("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64V448zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"},null,-1),$1=[g1];function z1(t,a,_,r,l,i){return o(),n("svg",m1,$1)}var x1=s(w1,[["render",z1],["__file","brush.vue"]]),H1={name:"Burger"},M1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},C1=e("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H160zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44zM832 448a320 320 0 0 0-640 0h640zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704H512z"},null,-1),V1=[C1];function y1(t,a,_,r,l,i){return o(),n("svg",M1,V1)}var B1=s(H1,[["render",y1],["__file","burger.vue"]]),L1={name:"Calendar"},A1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},b1=e("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-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 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"},null,-1),k1=[b1];function S1(t,a,_,r,l,i){return o(),n("svg",A1,k1)}var q1=s(L1,[["render",S1],["__file","calendar.vue"]]),F1={name:"CameraFilled"},D1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P1=e("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224H160zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4zm0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),R1=[P1];function T1(t,a,_,r,l,i){return o(),n("svg",D1,R1)}var O1=s(F1,[["render",T1],["__file","camera-filled.vue"]]),G1={name:"Camera"},I1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U1=e("path",{fill:"currentColor",d:"M896 256H128v576h768V256zm-199.424-64-32.064-64h-304.96l-32 64h369.024zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32zm416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448z"},null,-1),W1=[U1];function E1(t,a,_,r,l,i){return o(),n("svg",I1,W1)}var N1=s(G1,[["render",E1],["__file","camera.vue"]]),Z1={name:"CaretBottom"},K1={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q1=e("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"},null,-1),j1=[Q1];function J1(t,a,_,r,l,i){return o(),n("svg",K1,j1)}var X1=s(Z1,[["render",J1],["__file","caret-bottom.vue"]]),Y1={name:"CaretLeft"},e4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},t4=e("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"},null,-1),_4=[t4];function a4(t,a,_,r,l,i){return o(),n("svg",e4,_4)}var r4=s(Y1,[["render",a4],["__file","caret-left.vue"]]),l4={name:"CaretRight"},o4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},n4=e("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"},null,-1),s4=[n4];function i4(t,a,_,r,l,i){return o(),n("svg",o4,s4)}var u4=s(l4,[["render",i4],["__file","caret-right.vue"]]),v4={name:"CaretTop"},d4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c4=e("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"},null,-1),h4=[c4];function p4(t,a,_,r,l,i){return o(),n("svg",d4,h4)}var f4=s(v4,[["render",p4],["__file","caret-top.vue"]]),w4={name:"Cellphone"},m4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},g4=e("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H256zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64zm128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64zm128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),$4=[g4];function z4(t,a,_,r,l,i){return o(),n("svg",m4,$4)}var x4=s(w4,[["render",z4],["__file","cellphone.vue"]]),H4={name:"ChatDotRound"},M4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},C4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),V4=e("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),y4=[C4,V4];function B4(t,a,_,r,l,i){return o(),n("svg",M4,y4)}var L4=s(H4,[["render",B4],["__file","chat-dot-round.vue"]]),A4={name:"ChatDotSquare"},b4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},k4=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),S4=e("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1),q4=[k4,S4];function F4(t,a,_,r,l,i){return o(),n("svg",b4,q4)}var D4=s(A4,[["render",F4],["__file","chat-dot-square.vue"]]),P4={name:"ChatLineRound"},R4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},T4=e("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),O4=e("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),G4=[T4,O4];function I4(t,a,_,r,l,i){return o(),n("svg",R4,G4)}var U4=s(P4,[["render",I4],["__file","chat-line-round.vue"]]),W4={name:"ChatLineSquare"},E4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N4=e("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),Z4=e("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),K4=[N4,Z4];function Q4(t,a,_,r,l,i){return o(),n("svg",E4,K4)}var j4=s(W4,[["render",Q4],["__file","chat-line-square.vue"]]),J4={name:"ChatRound"},X4={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y4=e("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"},null,-1),e6=[Y4];function t6(t,a,_,r,l,i){return o(),n("svg",X4,e6)}var _6=s(J4,[["render",t6],["__file","chat-round.vue"]]),a6={name:"ChatSquare"},r6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l6=e("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),o6=[l6];function n6(t,a,_,r,l,i){return o(),n("svg",r6,o6)}var s6=s(a6,[["render",n6],["__file","chat-square.vue"]]),i6={name:"Check"},u6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v6=e("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"},null,-1),d6=[v6];function c6(t,a,_,r,l,i){return o(),n("svg",u6,d6)}var h6=s(i6,[["render",c6],["__file","check.vue"]]),p6={name:"Checked"},f6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w6=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704v-64zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024 311.616 537.28zM384 192V96h256v96H384z"},null,-1),m6=[w6];function g6(t,a,_,r,l,i){return o(),n("svg",f6,m6)}var $6=s(p6,[["render",g6],["__file","checked.vue"]]),z6={name:"Cherry"},x6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},H6=e("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320z"},null,-1),M6=[H6];function C6(t,a,_,r,l,i){return o(),n("svg",x6,M6)}var V6=s(z6,[["render",C6],["__file","cherry.vue"]]),y6={name:"Chicken"},B6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L6=e("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84zM244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52 3.52-56.32zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"},null,-1),A6=[L6];function b6(t,a,_,r,l,i){return o(),n("svg",B6,A6)}var k6=s(y6,[["render",b6],["__file","chicken.vue"]]),S6={name:"ChromeFilled"},q6={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},F6=e("path",{d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z",fill:"currentColor"},null,-1),D6=e("path",{d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91z",fill:"currentColor"},null,-1),P6=e("path",{d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21zm117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z",fill:"currentColor"},null,-1),R6=[F6,D6,P6];function T6(t,a,_,r,l,i){return o(),n("svg",q6,R6)}var O6=s(S6,[["render",T6],["__file","chrome-filled.vue"]]),G6={name:"CircleCheckFilled"},I6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U6=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1),W6=[U6];function E6(t,a,_,r,l,i){return o(),n("svg",I6,W6)}var N6=s(G6,[["render",E6],["__file","circle-check-filled.vue"]]),Z6={name:"CircleCheck"},K6={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q6=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),j6=e("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"},null,-1),J6=[Q6,j6];function X6(t,a,_,r,l,i){return o(),n("svg",K6,J6)}var Y6=s(Z6,[["render",X6],["__file","circle-check.vue"]]),e3={name:"CircleCloseFilled"},t3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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.336L512 457.664z"},null,-1),a3=[_3];function r3(t,a,_,r,l,i){return o(),n("svg",t3,a3)}var l3=s(e3,[["render",r3],["__file","circle-close-filled.vue"]]),o3={name:"CircleClose"},n3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},s3=e("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.248L466.752 512z"},null,-1),i3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),u3=[s3,i3];function v3(t,a,_,r,l,i){return o(),n("svg",n3,u3)}var d3=s(o3,[["render",v3],["__file","circle-close.vue"]]),c3={name:"CirclePlusFilled"},h3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},p3=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"},null,-1),f3=[p3];function w3(t,a,_,r,l,i){return o(),n("svg",h3,f3)}var m3=s(c3,[["render",w3],["__file","circle-plus-filled.vue"]]),g3={name:"CirclePlus"},$3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z3=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),x3=e("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0z"},null,-1),H3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),M3=[z3,x3,H3];function C3(t,a,_,r,l,i){return o(),n("svg",$3,M3)}var V3=s(g3,[["render",C3],["__file","circle-plus.vue"]]),y3={name:"Clock"},B3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},L3=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),A3=e("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),b3=e("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"},null,-1),k3=[L3,A3,b3];function S3(t,a,_,r,l,i){return o(),n("svg",B3,k3)}var q3=s(y3,[["render",S3],["__file","clock.vue"]]),F3={name:"CloseBold"},D3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P3=e("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"},null,-1),R3=[P3];function T3(t,a,_,r,l,i){return o(),n("svg",D3,R3)}var O3=s(F3,[["render",T3],["__file","close-bold.vue"]]),G3={name:"Close"},I3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},U3=e("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"},null,-1),W3=[U3];function E3(t,a,_,r,l,i){return o(),n("svg",I3,W3)}var N3=s(G3,[["render",E3],["__file","close.vue"]]),Z3={name:"Cloudy"},K3={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q3=e("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),j3=[Q3];function J3(t,a,_,r,l,i){return o(),n("svg",K3,j3)}var X3=s(Z3,[["render",J3],["__file","cloudy.vue"]]),Y3={name:"CoffeeCup"},ee={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},te=e("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v32zm0 64v256a128 128 0 1 0 0-256zM96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192H128z"},null,-1),_e=[te];function ae(t,a,_,r,l,i){return o(),n("svg",ee,_e)}var re=s(Y3,[["render",ae],["__file","coffee-cup.vue"]]),le={name:"Coffee"},oe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ne=e("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304L822.592 192zm-64.128 0 4.544-64H260.736l4.544 64h493.184zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784zm68.736 64 36.544 512H708.16l36.544-512H279.04z"},null,-1),se=[ne];function ie(t,a,_,r,l,i){return o(),n("svg",oe,se)}var ue=s(le,[["render",ie],["__file","coffee.vue"]]),ve={name:"Coin"},de={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ce=e("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),he=e("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),pe=e("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224zm0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160z"},null,-1),fe=[ce,he,pe];function we(t,a,_,r,l,i){return o(),n("svg",de,fe)}var me=s(ve,[["render",we],["__file","coin.vue"]]),ge={name:"ColdDrink"},$e={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ze=e("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64zM656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928H299.008z"},null,-1),xe=[ze];function He(t,a,_,r,l,i){return o(),n("svg",$e,xe)}var Me=s(ge,[["render",He],["__file","cold-drink.vue"]]),Ce={name:"CollectionTag"},Ve={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ye=e("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"},null,-1),Be=[ye];function Le(t,a,_,r,l,i){return o(),n("svg",Ve,Be)}var Ae=s(Ce,[["render",Le],["__file","collection-tag.vue"]]),be={name:"Collection"},ke={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Se=e("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64v544zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64z"},null,-1),qe=e("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96H240zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224zm144-608v250.88l96-76.8 96 76.8V128H384zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44V64z"},null,-1),Fe=[Se,qe];function De(t,a,_,r,l,i){return o(),n("svg",ke,Fe)}var Pe=s(be,[["render",De],["__file","collection.vue"]]),Re={name:"Comment"},Te={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Oe=e("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zM128 128v640h192v160l224-160h352V128H128z"},null,-1),Ge=[Oe];function Ie(t,a,_,r,l,i){return o(),n("svg",Te,Ge)}var Ue=s(Re,[["render",Ie],["__file","comment.vue"]]),We={name:"Compass"},Ee={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ne=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Ze=e("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832z"},null,-1),Ke=[Ne,Ze];function Qe(t,a,_,r,l,i){return o(),n("svg",Ee,Ke)}var je=s(We,[["render",Qe],["__file","compass.vue"]]),Je={name:"Connection"},Xe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ye=e("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192h192z"},null,-1),e8=e("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192H384z"},null,-1),t8=[Ye,e8];function _8(t,a,_,r,l,i){return o(),n("svg",Xe,t8)}var a8=s(Je,[["render",_8],["__file","connection.vue"]]),r8={name:"Coordinate"},l8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},o8=e("path",{fill:"currentColor",d:"M480 512h64v320h-64z"},null,-1),n8=e("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64zm64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128zm256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),s8=[o8,n8];function i8(t,a,_,r,l,i){return o(),n("svg",l8,s8)}var u8=s(r8,[["render",i8],["__file","coordinate.vue"]]),v8={name:"CopyDocument"},d8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c8=e("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64h64z"},null,-1),h8=e("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H384zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64z"},null,-1),p8=[c8,h8];function f8(t,a,_,r,l,i){return o(),n("svg",d8,p8)}var w8=s(v8,[["render",f8],["__file","copy-document.vue"]]),m8={name:"Cpu"},g8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$8=e("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H320zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128z"},null,-1),z8=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zM64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32z"},null,-1),x8=[$8,z8];function H8(t,a,_,r,l,i){return o(),n("svg",g8,x8)}var M8=s(m8,[["render",H8],["__file","cpu.vue"]]),C8={name:"CreditCard"},V8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y8=e("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416V324.096zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"},null,-1),B8=e("path",{fill:"currentColor",d:"M64 320h896v64H64v-64zm0 128h896v64H64v-64zm128 192h256v64H192z"},null,-1),L8=[y8,B8];function A8(t,a,_,r,l,i){return o(),n("svg",V8,L8)}var b8=s(C8,[["render",A8],["__file","credit-card.vue"]]),k8={name:"Crop"},S8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q8=e("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0v672z"},null,-1),F8=e("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32z"},null,-1),D8=[q8,F8];function P8(t,a,_,r,l,i){return o(),n("svg",S8,D8)}var R8=s(k8,[["render",P8],["__file","crop.vue"]]),T8={name:"DArrowLeft"},O8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G8=e("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"},null,-1),I8=[G8];function U8(t,a,_,r,l,i){return o(),n("svg",O8,I8)}var W8=s(T8,[["render",U8],["__file","d-arrow-left.vue"]]),E8={name:"DArrowRight"},N8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Z8=e("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.688zm-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"},null,-1),K8=[Z8];function Q8(t,a,_,r,l,i){return o(),n("svg",N8,K8)}var j8=s(E8,[["render",Q8],["__file","d-arrow-right.vue"]]),J8={name:"DCaret"},X8={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y8=e("path",{fill:"currentColor",d:"m512 128 288 320H224l288-320zM224 576h576L512 896 224 576z"},null,-1),et=[Y8];function tt(t,a,_,r,l,i){return o(),n("svg",X8,et)}var _t=s(J8,[["render",tt],["__file","d-caret.vue"]]),at={name:"DataAnalysis"},rt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lt=e("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216zM832 192H192v512h640V192zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32z"},null,-1),ot=[lt];function nt(t,a,_,r,l,i){return o(),n("svg",rt,ot)}var st=s(at,[["render",nt],["__file","data-analysis.vue"]]),it={name:"DataBoard"},ut={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vt=e("path",{fill:"currentColor",d:"M32 128h960v64H32z"},null,-1),dt=e("path",{fill:"currentColor",d:"M192 192v512h640V192H192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V128z"},null,-1),ct=e("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32L322.176 960zm453.888 0h-73.856L576 741.44l55.424-32L776.064 960z"},null,-1),ht=[vt,dt,ct];function pt(t,a,_,r,l,i){return o(),n("svg",ut,ht)}var ft=s(it,[["render",pt],["__file","data-board.vue"]]),wt={name:"DataLine"},mt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gt=e("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192zM832 192H192v512h640V192zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"},null,-1),$t=[gt];function zt(t,a,_,r,l,i){return o(),n("svg",mt,$t)}var xt=s(wt,[["render",zt],["__file","data-line.vue"]]),Ht={name:"DeleteFilled"},Mt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ct=e("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"},null,-1),Vt=[Ct];function yt(t,a,_,r,l,i){return o(),n("svg",Mt,Vt)}var Bt=s(Ht,[["render",yt],["__file","delete-filled.vue"]]),Lt={name:"DeleteLocation"},At={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bt=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),kt=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),St=e("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1),qt=[bt,kt,St];function Ft(t,a,_,r,l,i){return o(),n("svg",At,qt)}var Dt=s(Lt,[["render",Ft],["__file","delete-location.vue"]]),Pt={name:"Delete"},Rt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tt=e("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-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"},null,-1),Ot=[Tt];function Gt(t,a,_,r,l,i){return o(),n("svg",Rt,Ot)}var It=s(Pt,[["render",Gt],["__file","delete.vue"]]),Ut={name:"Dessert"},Wt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Et=e("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416zm287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736zM384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64z"},null,-1),Nt=[Et];function Zt(t,a,_,r,l,i){return o(),n("svg",Wt,Nt)}var Kt=s(Ut,[["render",Zt],["__file","dessert.vue"]]),Qt={name:"Discount"},jt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jt=e("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336V704zm0 64v128h576V768H224zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),Xt=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Yt=[Jt,Xt];function e_(t,a,_,r,l,i){return o(),n("svg",jt,Yt)}var t_=s(Qt,[["render",e_],["__file","discount.vue"]]),__={name:"DishDot"},a_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},r_=e("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-128h768a384 384 0 1 0-768 0zm447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256h127.68z"},null,-1),l_=[r_];function o_(t,a,_,r,l,i){return o(),n("svg",a_,l_)}var n_=s(__,[["render",o_],["__file","dish-dot.vue"]]),s_={name:"Dish"},i_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},u_=e("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152zM128 704h768a384 384 0 1 0-768 0zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64z"},null,-1),v_=[u_];function d_(t,a,_,r,l,i){return o(),n("svg",i_,v_)}var c_=s(s_,[["render",d_],["__file","dish.vue"]]),h_={name:"DocumentAdd"},p_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},f_=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"},null,-1),w_=[f_];function m_(t,a,_,r,l,i){return o(),n("svg",p_,w_)}var g_=s(h_,[["render",m_],["__file","document-add.vue"]]),$_={name:"DocumentChecked"},z_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},x_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312L478.4 646.144z"},null,-1),H_=[x_];function M_(t,a,_,r,l,i){return o(),n("svg",z_,H_)}var C_=s($_,[["render",M_],["__file","document-checked.vue"]]),V_={name:"DocumentCopy"},y_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},B_=e("path",{fill:"currentColor",d:"M128 320v576h576V320H128zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zM960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32zM256 672h320v64H256v-64zm0-192h320v64H256v-64z"},null,-1),L_=[B_];function A_(t,a,_,r,l,i){return o(),n("svg",y_,L_)}var b_=s(V_,[["render",A_],["__file","document-copy.vue"]]),k_={name:"DocumentDelete"},S_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},q_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"},null,-1),F_=[q_];function D_(t,a,_,r,l,i){return o(),n("svg",S_,F_)}var P_=s(k_,[["render",D_],["__file","document-delete.vue"]]),R_={name:"DocumentRemove"},T_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},O_=e("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm192 512h320v64H352v-64z"},null,-1),G_=[O_];function I_(t,a,_,r,l,i){return o(),n("svg",T_,G_)}var U_=s(R_,[["render",I_],["__file","document-remove.vue"]]),W_={name:"Document"},E_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N_=e("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h160v64H320v-64zm0 384h384v64H320v-64z"},null,-1),Z_=[N_];function K_(t,a,_,r,l,i){return o(),n("svg",E_,Z_)}var Q_=s(W_,[["render",K_],["__file","document.vue"]]),j_={name:"Download"},J_={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X_=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64v450.304z"},null,-1),Y_=[X_];function ea(t,a,_,r,l,i){return o(),n("svg",J_,Y_)}var ta=s(j_,[["render",ea],["__file","download.vue"]]),_a={name:"Drizzling"},aa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ra=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM288 800h64v64h-64v-64zm192 0h64v64h-64v-64zm-96 96h64v64h-64v-64zm192 0h64v64h-64v-64zm96-96h64v64h-64v-64z"},null,-1),la=[ra];function oa(t,a,_,r,l,i){return o(),n("svg",aa,la)}var na=s(_a,[["render",oa],["__file","drizzling.vue"]]),sa={name:"EditPen"},ia={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ua=e("path",{d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696L175.168 732.8zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336L104.32 708.8zm384 254.272v-64h448v64h-448z",fill:"currentColor"},null,-1),va=[ua];function da(t,a,_,r,l,i){return o(),n("svg",ia,va)}var ca=s(sa,[["render",da],["__file","edit-pen.vue"]]),ha={name:"Edit"},pa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fa=e("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"},null,-1),wa=e("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"},null,-1),ma=[fa,wa];function ga(t,a,_,r,l,i){return o(),n("svg",pa,ma)}var $a=s(ha,[["render",ga],["__file","edit.vue"]]),za={name:"ElemeFilled"},xa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ha=e("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112zm150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"},null,-1),Ma=[Ha];function Ca(t,a,_,r,l,i){return o(),n("svg",xa,Ma)}var Va=s(za,[["render",Ca],["__file","eleme-filled.vue"]]),ya={name:"Eleme"},Ba={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},La=e("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"},null,-1),Aa=[La];function ba(t,a,_,r,l,i){return o(),n("svg",Ba,Aa)}var ka=s(ya,[["render",ba],["__file","eleme.vue"]]),Sa={name:"ElementPlus"},qa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fa=e("path",{d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8zM714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z",fill:"currentColor"},null,-1),Da=[Fa];function Pa(t,a,_,r,l,i){return o(),n("svg",qa,Da)}var Ra=s(Sa,[["render",Pa],["__file","element-plus.vue"]]),Ta={name:"Expand"},Oa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ga=e("path",{fill:"currentColor",d:"M128 192h768v128H128V192zm0 256h512v128H128V448zm0 256h768v128H128V704zm576-352 192 160-192 128V352z"},null,-1),Ia=[Ga];function Ua(t,a,_,r,l,i){return o(),n("svg",Oa,Ia)}var Wa=s(Ta,[["render",Ua],["__file","expand.vue"]]),Ea={name:"Failed"},Na={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Za=e("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384v-64zm-320 0V96h256v96H384z"},null,-1),Ka=[Za];function Qa(t,a,_,r,l,i){return o(),n("svg",Na,Ka)}var ja=s(Ea,[["render",Qa],["__file","failed.vue"]]),Ja={name:"Female"},Xa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ya=e("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),er=e("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32z"},null,-1),tr=e("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1),_r=[Ya,er,tr];function ar(t,a,_,r,l,i){return o(),n("svg",Xa,_r)}var rr=s(Ja,[["render",ar],["__file","female.vue"]]),lr={name:"Files"},or={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},nr=e("path",{fill:"currentColor",d:"M128 384v448h768V384H128zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32zm64-128h704v64H160zm96-128h512v64H256z"},null,-1),sr=[nr];function ir(t,a,_,r,l,i){return o(),n("svg",or,sr)}var ur=s(lr,[["render",ir],["__file","files.vue"]]),vr={name:"Film"},dr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cr=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),hr=e("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64h192z"},null,-1),pr=[cr,hr];function fr(t,a,_,r,l,i){return o(),n("svg",dr,pr)}var wr=s(vr,[["render",fr],["__file","film.vue"]]),mr={name:"Filter"},gr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$r=e("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288L384 523.392z"},null,-1),zr=[$r];function xr(t,a,_,r,l,i){return o(),n("svg",gr,zr)}var Hr=s(mr,[["render",xr],["__file","filter.vue"]]),Mr={name:"Finished"},Cr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vr=e("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64H736zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64H608zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64H480z"},null,-1),yr=[Vr];function Br(t,a,_,r,l,i){return o(),n("svg",Cr,yr)}var Lr=s(Mr,[["render",Br],["__file","finished.vue"]]),Ar={name:"FirstAidKit"},br={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kr=e("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H192zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),Sr=e("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96zM352 128v64h320v-64H352zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),qr=[kr,Sr];function Fr(t,a,_,r,l,i){return o(),n("svg",br,qr)}var Dr=s(Ar,[["render",Fr],["__file","first-aid-kit.vue"]]),Pr={name:"Flag"},Rr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tr=e("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96v64z"},null,-1),Or=[Tr];function Gr(t,a,_,r,l,i){return o(),n("svg",Rr,Or)}var Ir=s(Pr,[["render",Gr],["__file","flag.vue"]]),Ur={name:"Fold"},Wr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Er=e("path",{fill:"currentColor",d:"M896 192H128v128h768V192zm0 256H384v128h512V448zm0 256H128v128h768V704zM320 384 128 512l192 128V384z"},null,-1),Nr=[Er];function Zr(t,a,_,r,l,i){return o(),n("svg",Wr,Nr)}var Kr=s(Ur,[["render",Zr],["__file","fold.vue"]]),Qr={name:"FolderAdd"},jr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jr=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm384 416V416h64v128h128v64H544v128h-64V608H352v-64h128z"},null,-1),Xr=[Jr];function Yr(t,a,_,r,l,i){return o(),n("svg",jr,Xr)}var e5=s(Qr,[["render",Yr],["__file","folder-add.vue"]]),t5={name:"FolderChecked"},_5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},a5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312L510.08 630.144z"},null,-1),r5=[a5];function l5(t,a,_,r,l,i){return o(),n("svg",_5,r5)}var o5=s(t5,[["render",l5],["__file","folder-checked.vue"]]),n5={name:"FolderDelete"},s5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},i5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248L466.752 576z"},null,-1),u5=[i5];function v5(t,a,_,r,l,i){return o(),n("svg",s5,u5)}var d5=s(n5,[["render",v5],["__file","folder-delete.vue"]]),c5={name:"FolderOpened"},h5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},p5=e("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"},null,-1),f5=[p5];function w5(t,a,_,r,l,i){return o(),n("svg",h5,f5)}var m5=s(c5,[["render",w5],["__file","folder-opened.vue"]]),g5={name:"FolderRemove"},$5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm256 416h320v64H352v-64z"},null,-1),x5=[z5];function H5(t,a,_,r,l,i){return o(),n("svg",$5,x5)}var M5=s(g5,[["render",H5],["__file","folder-remove.vue"]]),C5={name:"Folder"},V5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},y5=e("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32z"},null,-1),B5=[y5];function L5(t,a,_,r,l,i){return o(),n("svg",V5,B5)}var A5=s(C5,[["render",L5],["__file","folder.vue"]]),b5={name:"Food"},k5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},S5=e("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0zm128 0h192a96 96 0 0 0-192 0zm439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352zM672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32v-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288z"},null,-1),q5=[S5];function F5(t,a,_,r,l,i){return o(),n("svg",k5,q5)}var D5=s(b5,[["render",F5],["__file","food.vue"]]),P5={name:"Football"},R5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},T5=e("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768z"},null,-1),O5=e("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0zm-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0l-11.136-63.104zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"},null,-1),G5=[T5,O5];function I5(t,a,_,r,l,i){return o(),n("svg",R5,G5)}var U5=s(P5,[["render",I5],["__file","football.vue"]]),W5={name:"ForkSpoon"},E5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N5=e("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0V572.48zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192z"},null,-1),Z5=[N5];function K5(t,a,_,r,l,i){return o(),n("svg",E5,Z5)}var Q5=s(W5,[["render",K5],["__file","fork-spoon.vue"]]),j5={name:"Fries"},J5={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X5=e("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096V224zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160h37.12zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160h-16zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512h-1.216zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480V288zm-128 96V224a32 32 0 0 0-64 0v160h64-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704H253.12z"},null,-1),Y5=[X5];function el(t,a,_,r,l,i){return o(),n("svg",J5,Y5)}var tl=s(j5,[["render",el],["__file","fries.vue"]]),_l={name:"FullScreen"},al={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rl=e("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64v.064zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64l-192 .192zM864 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-64v-.064z"},null,-1),ll=[rl];function ol(t,a,_,r,l,i){return o(),n("svg",al,ll)}var nl=s(_l,[["render",ol],["__file","full-screen.vue"]]),sl={name:"GobletFull"},il={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ul=e("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320zm503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4z"},null,-1),vl=[ul];function dl(t,a,_,r,l,i){return o(),n("svg",il,vl)}var cl=s(sl,[["render",dl],["__file","goblet-full.vue"]]),hl={name:"GobletSquareFull"},pl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fl=e("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848z"},null,-1),wl=[fl];function ml(t,a,_,r,l,i){return o(),n("svg",pl,wl)}var gl=s(hl,[["render",ml],["__file","goblet-square-full.vue"]]),$l={name:"GobletSquare"},zl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xl=e("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912zM256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256v191.68z"},null,-1),Hl=[xl];function Ml(t,a,_,r,l,i){return o(),n("svg",zl,Hl)}var Cl=s($l,[["render",Ml],["__file","goblet-square.vue"]]),Vl={name:"Goblet"},yl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bl=e("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4zM256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320z"},null,-1),Ll=[Bl];function Al(t,a,_,r,l,i){return o(),n("svg",yl,Ll)}var bl=s(Vl,[["render",Al],["__file","goblet.vue"]]),kl={name:"GoldMedal"},Sl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ql=e("path",{d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128h128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128H384zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z",fill:"currentColor"},null,-1),Fl=e("path",{d:"M544 480H416v64h64v192h-64v64h192v-64h-64z",fill:"currentColor"},null,-1),Dl=[ql,Fl];function Pl(t,a,_,r,l,i){return o(),n("svg",Sl,Dl)}var Rl=s(kl,[["render",Pl],["__file","gold-medal.vue"]]),Tl={name:"GoodsFilled"},Ol={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gl=e("path",{fill:"currentColor",d:"M192 352h640l64 544H128l64-544zm128 224h64V448h-64v128zm320 0h64V448h-64v128zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0z"},null,-1),Il=[Gl];function Ul(t,a,_,r,l,i){return o(),n("svg",Ol,Il)}var Wl=s(Tl,[["render",Ul],["__file","goods-filled.vue"]]),El={name:"Goods"},Nl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zl=e("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96z"},null,-1),Kl=[Zl];function Ql(t,a,_,r,l,i){return o(),n("svg",Nl,Kl)}var jl=s(El,[["render",Ql],["__file","goods.vue"]]),Jl={name:"Grape"},Xl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yl=e("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64v67.2zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),eo=[Yl];function to(t,a,_,r,l,i){return o(),n("svg",Xl,eo)}var _o=s(Jl,[["render",to],["__file","grape.vue"]]),ao={name:"Grid"},ro={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lo=e("path",{fill:"currentColor",d:"M640 384v256H384V384h256zm64 0h192v256H704V384zm-64 512H384V704h256v192zm64 0V704h192v192H704zm-64-768v192H384V128h256zm64 0h192v192H704V128zM320 384v256H128V384h192zm0 512H128V704h192v192zm0-768v192H128V128h192z"},null,-1),oo=[lo];function no(t,a,_,r,l,i){return o(),n("svg",ro,oo)}var so=s(ao,[["render",no],["__file","grid.vue"]]),io={name:"Guide"},uo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vo=e("path",{fill:"currentColor",d:"M640 608h-64V416h64v192zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768h64zM384 608V416h64v192h-64zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32v160z"},null,-1),co=e("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192zm678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"},null,-1),ho=[vo,co];function po(t,a,_,r,l,i){return o(),n("svg",uo,ho)}var fo=s(io,[["render",po],["__file","guide.vue"]]),wo={name:"Handbag"},mo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},go=e("path",{d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01zM421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5zM832 896H192V320h128v128h64V320h256v128h64V320h128v576z",fill:"currentColor"},null,-1),$o=[go];function zo(t,a,_,r,l,i){return o(),n("svg",mo,$o)}var xo=s(wo,[["render",zo],["__file","handbag.vue"]]),Ho={name:"Headset"},Mo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Co=e("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848zM896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0V640zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0z"},null,-1),Vo=[Co];function yo(t,a,_,r,l,i){return o(),n("svg",Mo,Vo)}var Bo=s(Ho,[["render",yo],["__file","headset.vue"]]),Lo={name:"HelpFilled"},Ao={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bo=e("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480zm0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544h225.472zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"},null,-1),ko=[bo];function So(t,a,_,r,l,i){return o(),n("svg",Ao,ko)}var qo=s(Lo,[["render",So],["__file","help-filled.vue"]]),Fo={name:"Help"},Do={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Po=e("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752zm45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992l-91.008-90.944zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Ro=[Po];function To(t,a,_,r,l,i){return o(),n("svg",Do,Ro)}var Oo=s(Fo,[["render",To],["__file","help.vue"]]),Go={name:"Hide"},Io={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Uo=e("path",{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.2L371.2 588.8ZM889.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",fill:"currentColor"},null,-1),Wo=e("path",{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",fill:"currentColor"},null,-1),Eo=[Uo,Wo];function No(t,a,_,r,l,i){return o(),n("svg",Io,Eo)}var Zo=s(Go,[["render",No],["__file","hide.vue"]]),Ko={name:"Histogram"},Qo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jo=e("path",{fill:"currentColor",d:"M416 896V128h192v768H416zm-288 0V448h192v448H128zm576 0V320h192v576H704z"},null,-1),Jo=[jo];function Xo(t,a,_,r,l,i){return o(),n("svg",Qo,Jo)}var Yo=s(Ko,[["render",Xo],["__file","histogram.vue"]]),e9={name:"HomeFilled"},t9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_9=e("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"},null,-1),a9=[_9];function r9(t,a,_,r,l,i){return o(),n("svg",t9,a9)}var l9=s(e9,[["render",r9],["__file","home-filled.vue"]]),o9={name:"HotWater"},n9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},s9=e("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067v68.267zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133zm273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133zM170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"},null,-1),i9=[s9];function u9(t,a,_,r,l,i){return o(),n("svg",n9,i9)}var v9=s(o9,[["render",u9],["__file","hot-water.vue"]]),d9={name:"House"},c9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},h9=e("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328 192 413.952zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576z"},null,-1),p9=[h9];function f9(t,a,_,r,l,i){return o(),n("svg",c9,p9)}var w9=s(d9,[["render",f9],["__file","house.vue"]]),m9={name:"IceCreamRound"},g9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$9=e("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248L398.848 670.4zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"},null,-1),z9=[$9];function x9(t,a,_,r,l,i){return o(),n("svg",g9,z9)}var H9=s(m9,[["render",x9],["__file","ice-cream-round.vue"]]),M9={name:"IceCreamSquare"},C9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},V9=e("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h64zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96h-64zm-64 0h-64v160a32 32 0 1 0 64 0V704z"},null,-1),y9=[V9];function B9(t,a,_,r,l,i){return o(),n("svg",C9,y9)}var L9=s(M9,[["render",B9],["__file","ice-cream-square.vue"]]),A9={name:"IceCream"},b9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},k9=e("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448h.64zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56z"},null,-1),S9=[k9];function q9(t,a,_,r,l,i){return o(),n("svg",b9,S9)}var F9=s(A9,[["render",q9],["__file","ice-cream.vue"]]),D9={name:"IceDrink"},P9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},R9=e("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128H512zm-64 0H256.256l16.064 128H448V448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64zm-64 8.064A256.448 256.448 0 0 0 264.256 384H448V200.704zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32v32.64zM743.68 640H280.32l32.128 256h399.104l32.128-256z"},null,-1),T9=[R9];function O9(t,a,_,r,l,i){return o(),n("svg",P9,T9)}var G9=s(D9,[["render",O9],["__file","ice-drink.vue"]]),I9={name:"IceTea"},U9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},W9=e("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352zM264.064 256h495.872a256.128 256.128 0 0 0-495.872 0zm495.424 256H264.512l48 384h398.976l48-384zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32zm160 192h64v64h-64v-64zm192 64h64v64h-64v-64zm-128 64h64v64h-64v-64zm64-192h64v64h-64v-64z"},null,-1),E9=[W9];function N9(t,a,_,r,l,i){return o(),n("svg",U9,E9)}var Z9=s(I9,[["render",N9],["__file","ice-tea.vue"]]),K9={name:"InfoFilled"},Q9={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},j9=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64zm67.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.344zM590.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"},null,-1),J9=[j9];function X9(t,a,_,r,l,i){return o(),n("svg",Q9,J9)}var Y9=s(K9,[["render",X9],["__file","info-filled.vue"]]),en={name:"Iphone"},tn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_n=e("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768H224zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64v544zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96H256zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0z"},null,-1),an=[_n];function rn(t,a,_,r,l,i){return o(),n("svg",tn,an)}var ln=s(en,[["render",rn],["__file","iphone.vue"]]),on={name:"Key"},nn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sn=e("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064zM512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384z"},null,-1),un=[sn];function vn(t,a,_,r,l,i){return o(),n("svg",nn,un)}var dn=s(on,[["render",vn],["__file","key.vue"]]),cn={name:"KnifeFork"},hn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pn=e("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56zm384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288H640z"},null,-1),fn=[pn];function wn(t,a,_,r,l,i){return o(),n("svg",hn,fn)}var mn=s(cn,[["render",wn],["__file","knife-fork.vue"]]),gn={name:"Lightning"},$n={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zn=e("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"},null,-1),xn=e("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736H416z"},null,-1),Hn=[zn,xn];function Mn(t,a,_,r,l,i){return o(),n("svg",$n,Hn)}var Cn=s(gn,[["render",Mn],["__file","lightning.vue"]]),Vn={name:"Link"},yn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bn=e("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"},null,-1),Ln=[Bn];function An(t,a,_,r,l,i){return o(),n("svg",yn,Ln)}var bn=s(Vn,[["render",An],["__file","link.vue"]]),kn={name:"List"},Sn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qn=e("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384v-64zM288 512h448v-64H288v64zm0 256h448v-64H288v64zm96-576V96h256v96H384z"},null,-1),Fn=[qn];function Dn(t,a,_,r,l,i){return o(),n("svg",Sn,Fn)}var Pn=s(kn,[["render",Dn],["__file","list.vue"]]),Rn={name:"Loading"},Tn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},On=e("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.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 0zm-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"},null,-1),Gn=[On];function In(t,a,_,r,l,i){return o(),n("svg",Tn,Gn)}var Un=s(Rn,[["render",In],["__file","loading.vue"]]),Wn={name:"LocationFilled"},En={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nn=e("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928zm0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6z"},null,-1),Zn=[Nn];function Kn(t,a,_,r,l,i){return o(),n("svg",En,Zn)}var Qn=s(Wn,[["render",Kn],["__file","location-filled.vue"]]),jn={name:"LocationInformation"},Jn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xn=e("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),Yn=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),es=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),ts=[Xn,Yn,es];function _s(t,a,_,r,l,i){return o(),n("svg",Jn,ts)}var as=s(jn,[["render",_s],["__file","location-information.vue"]]),rs={name:"Location"},ls={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},os=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),ns=e("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1),ss=[os,ns];function is(t,a,_,r,l,i){return o(),n("svg",ls,ss)}var us=s(rs,[["render",is],["__file","location.vue"]]),vs={name:"Lock"},ds={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cs=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),hs=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"},null,-1),ps=[cs,hs];function fs(t,a,_,r,l,i){return o(),n("svg",ds,ps)}var ws=s(vs,[["render",fs],["__file","lock.vue"]]),ms={name:"Lollipop"},gs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$s=e("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0h1.28zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696zm105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"},null,-1),zs=[$s];function xs(t,a,_,r,l,i){return o(),n("svg",gs,zs)}var Hs=s(ms,[["render",xs],["__file","lollipop.vue"]]),Ms={name:"MagicStick"},Cs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vs=e("path",{fill:"currentColor",d:"M512 64h64v192h-64V64zm0 576h64v192h-64V640zM160 480v-64h192v64H160zm576 0v-64h192v64H736zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248L657.152 606.4zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248-316.8 316.8zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248L702.4 334.848z"},null,-1),ys=[Vs];function Bs(t,a,_,r,l,i){return o(),n("svg",Cs,ys)}var Ls=s(Ms,[["render",Bs],["__file","magic-stick.vue"]]),As={name:"Magnet"},bs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ks=e("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64h128zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0z"},null,-1),Ss=[ks];function qs(t,a,_,r,l,i){return o(),n("svg",bs,Ss)}var Fs=s(As,[["render",qs],["__file","magnet.vue"]]),Ds={name:"Male"},Ps={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rs=e("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450zm0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5zm253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125z"},null,-1),Ts=e("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125z"},null,-1),Os=e("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"},null,-1),Gs=[Rs,Ts,Os];function Is(t,a,_,r,l,i){return o(),n("svg",Ps,Gs)}var Us=s(Ds,[["render",Is],["__file","male.vue"]]),Ws={name:"Management"},Es={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ns=e("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128h256zm-448 0h128v768H128V128z"},null,-1),Zs=[Ns];function Ks(t,a,_,r,l,i){return o(),n("svg",Es,Zs)}var Qs=s(Ws,[["render",Ks],["__file","management.vue"]]),js={name:"MapLocation"},Js={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xs=e("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),Ys=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256zm345.6 192L960 960H672v-64H352v64H64l102.4-256h691.2zm-68.928 0H235.328l-76.8 192h706.944l-76.8-192z"},null,-1),ei=[Xs,Ys];function ti(t,a,_,r,l,i){return o(),n("svg",Js,ei)}var _i=s(js,[["render",ti],["__file","map-location.vue"]]),ai={name:"Medal"},ri={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},li=e("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),oi=e("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8V128zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128H640zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64z"},null,-1),ni=[li,oi];function si(t,a,_,r,l,i){return o(),n("svg",ri,ni)}var ii=s(ai,[["render",si],["__file","medal.vue"]]),ui={name:"Memo"},vi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},di=e("path",{d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),ci=e("path",{d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01zM192 896V128h96v768h-96zm640 0H352V128h480v768z",fill:"currentColor"},null,-1),hi=e("path",{d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32zm0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),pi=[di,ci,hi];function fi(t,a,_,r,l,i){return o(),n("svg",vi,pi)}var wi=s(ui,[["render",fi],["__file","memo.vue"]]),mi={name:"Menu"},gi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$i=e("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H608zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H608z"},null,-1),zi=[$i];function xi(t,a,_,r,l,i){return o(),n("svg",gi,zi)}var Hi=s(mi,[["render",xi],["__file","menu.vue"]]),Mi={name:"MessageBox"},Ci={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vi=e("path",{fill:"currentColor",d:"M288 384h448v64H288v-64zm96-128h256v64H384v-64zM131.456 512H384v128h256V512h252.544L721.856 192H302.144L131.456 512zM896 576H704v128H320V576H128v256h768V576zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"},null,-1),yi=[Vi];function Bi(t,a,_,r,l,i){return o(),n("svg",Ci,yi)}var Li=s(Mi,[["render",Bi],["__file","message-box.vue"]]),Ai={name:"Message"},bi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ki=e("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224H128zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64z"},null,-1),Si=e("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224h784zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056z"},null,-1),qi=[ki,Si];function Fi(t,a,_,r,l,i){return o(),n("svg",bi,qi)}var Di=s(Ai,[["render",Fi],["__file","message.vue"]]),Pi={name:"Mic"},Ri={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ti=e("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64h96zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128h-96z"},null,-1),Oi=[Ti];function Gi(t,a,_,r,l,i){return o(),n("svg",Ri,Oi)}var Ii=s(Pi,[["render",Gi],["__file","mic.vue"]]),Ui={name:"Microphone"},Wi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ei=e("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128zm0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64zm-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64z"},null,-1),Ni=[Ei];function Zi(t,a,_,r,l,i){return o(),n("svg",Wi,Ni)}var Ki=s(Ui,[["render",Zi],["__file","microphone.vue"]]),Qi={name:"MilkTea"},ji={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ji=e("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128h192zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320H276.48zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64zm493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12z"},null,-1),Xi=[Ji];function Yi(t,a,_,r,l,i){return o(),n("svg",ji,Xi)}var eu=s(Qi,[["render",Yi],["__file","milk-tea.vue"]]),tu={name:"Minus"},_u={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},au=e("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"},null,-1),ru=[au];function lu(t,a,_,r,l,i){return o(),n("svg",_u,ru)}var ou=s(tu,[["render",lu],["__file","minus.vue"]]),nu={name:"Money"},su={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iu=e("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640h64z"},null,-1),uu=e("path",{fill:"currentColor",d:"M768 192H128v448h640V192zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"},null,-1),vu=e("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320zm0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1),du=[iu,uu,vu];function cu(t,a,_,r,l,i){return o(),n("svg",su,du)}var hu=s(nu,[["render",cu],["__file","money.vue"]]),pu={name:"Monitor"},fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wu=e("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H544zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H192z"},null,-1),mu=[wu];function gu(t,a,_,r,l,i){return o(),n("svg",fu,mu)}var $u=s(pu,[["render",gu],["__file","monitor.vue"]]),zu={name:"MoonNight"},xu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hu=e("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512zM171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"},null,-1),Mu=e("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"},null,-1),Cu=[Hu,Mu];function Vu(t,a,_,r,l,i){return o(),n("svg",xu,Cu)}var yu=s(zu,[["render",Vu],["__file","moon-night.vue"]]),Bu={name:"Moon"},Lu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Au=e("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696z"},null,-1),bu=[Au];function ku(t,a,_,r,l,i){return o(),n("svg",Lu,bu)}var Su=s(Bu,[["render",ku],["__file","moon.vue"]]),qu={name:"MoreFilled"},Fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Du=e("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224z"},null,-1),Pu=[Du];function Ru(t,a,_,r,l,i){return o(),n("svg",Fu,Pu)}var Tu=s(qu,[["render",Ru],["__file","more-filled.vue"]]),Ou={name:"More"},Gu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Iu=e("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-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"},null,-1),Uu=[Iu];function Wu(t,a,_,r,l,i){return o(),n("svg",Gu,Uu)}var Eu=s(Ou,[["render",Wu],["__file","more.vue"]]),Nu={name:"MostlyCloudy"},Zu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ku=e("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048zm15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72z"},null,-1),Qu=[Ku];function ju(t,a,_,r,l,i){return o(),n("svg",Zu,Qu)}var Ju=s(Nu,[["render",ju],["__file","mostly-cloudy.vue"]]),Xu={name:"Mouse"},Yu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ev=e("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256H438.144zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"},null,-1),tv=e("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32zm32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96v64z"},null,-1),_v=[ev,tv];function av(t,a,_,r,l,i){return o(),n("svg",Yu,_v)}var rv=s(Xu,[["render",av],["__file","mouse.vue"]]),lv={name:"Mug"},ov={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},nv=e("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64zm64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32H800z"},null,-1),sv=[nv];function iv(t,a,_,r,l,i){return o(),n("svg",ov,sv)}var uv=s(lv,[["render",iv],["__file","mug.vue"]]),vv={name:"MuteNotification"},dv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cv=e("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64H241.216zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0z"},null,-1),hv=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),pv=[cv,hv];function fv(t,a,_,r,l,i){return o(),n("svg",dv,pv)}var wv=s(vv,[["render",fv],["__file","mute-notification.vue"]]),mv={name:"Mute"},gv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$v=e("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128zm51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528l47.808-47.808zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032zM266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288L266.752 737.6z"},null,-1),zv=e("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1),xv=[$v,zv];function Hv(t,a,_,r,l,i){return o(),n("svg",gv,xv)}var Mv=s(mv,[["render",Hv],["__file","mute.vue"]]),Cv={name:"NoSmoking"},Vv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yv=e("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256l-64 64zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744l64-64zM768 576v128h128V576H768zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Bv=[yv];function Lv(t,a,_,r,l,i){return o(),n("svg",Vv,Bv)}var Av=s(Cv,[["render",Lv],["__file","no-smoking.vue"]]),bv={name:"Notebook"},kv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Sv=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),qv=e("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),Fv=[Sv,qv];function Dv(t,a,_,r,l,i){return o(),n("svg",kv,Fv)}var Pv=s(bv,[["render",Dv],["__file","notebook.vue"]]),Rv={name:"Notification"},Tv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ov=e("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128h256z"},null,-1),Gv=e("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"},null,-1),Iv=[Ov,Gv];function Uv(t,a,_,r,l,i){return o(),n("svg",Tv,Iv)}var Wv=s(Rv,[["render",Uv],["__file","notification.vue"]]),Ev={name:"Odometer"},Nv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zv=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Kv=e("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0z"},null,-1),Qv=e("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928z"},null,-1),jv=[Zv,Kv,Qv];function Jv(t,a,_,r,l,i){return o(),n("svg",Nv,jv)}var Xv=s(Ev,[["render",Jv],["__file","odometer.vue"]]),Yv={name:"OfficeBuilding"},ed={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},td=e("path",{fill:"currentColor",d:"M192 128v704h384V128H192zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),_d=e("path",{fill:"currentColor",d:"M256 256h256v64H256v-64zm0 192h256v64H256v-64zm0 192h256v64H256v-64zm384-128h128v64H640v-64zm0 128h128v64H640v-64zM64 832h896v64H64v-64z"},null,-1),ad=e("path",{fill:"currentColor",d:"M640 384v448h192V384H640zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32z"},null,-1),rd=[td,_d,ad];function ld(t,a,_,r,l,i){return o(),n("svg",ed,rd)}var od=s(Yv,[["render",ld],["__file","office-building.vue"]]),nd={name:"Open"},sd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},id=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),ud=e("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),vd=[id,ud];function dd(t,a,_,r,l,i){return o(),n("svg",sd,vd)}var cd=s(nd,[["render",dd],["__file","open.vue"]]),hd={name:"Operation"},pd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fd=e("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64h261.44zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64h453.44zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64h133.44z"},null,-1),wd=[fd];function md(t,a,_,r,l,i){return o(),n("svg",pd,wd)}var gd=s(hd,[["render",md],["__file","operation.vue"]]),$d={name:"Opportunity"},zd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xd=e("path",{fill:"currentColor",d:"M384 960v-64h192.064v64H384zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416zm-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288h64z"},null,-1),Hd=[xd];function Md(t,a,_,r,l,i){return o(),n("svg",zd,Hd)}var Cd=s($d,[["render",Md],["__file","opportunity.vue"]]),Vd={name:"Orange"},yd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bd=e("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696l182.912-182.976zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696V129.344zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024L218.752 264.064zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544H129.344zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696L264.064 805.248zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128z"},null,-1),Ld=[Bd];function Ad(t,a,_,r,l,i){return o(),n("svg",yd,Ld)}var bd=s(Vd,[["render",Ad],["__file","orange.vue"]]),kd={name:"Paperclip"},Sd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qd=e("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"},null,-1),Fd=[qd];function Dd(t,a,_,r,l,i){return o(),n("svg",Sd,Fd)}var Pd=s(kd,[["render",Dd],["__file","paperclip.vue"]]),Rd={name:"PartlyCloudy"},Td={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Od=e("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),Gd=e("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"},null,-1),Id=[Od,Gd];function Ud(t,a,_,r,l,i){return o(),n("svg",Td,Id)}var Wd=s(Rd,[["render",Ud],["__file","partly-cloudy.vue"]]),Ed={name:"Pear"},Nd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zd=e("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"},null,-1),Kd=[Zd];function Qd(t,a,_,r,l,i){return o(),n("svg",Nd,Kd)}var jd=s(Ed,[["render",Qd],["__file","pear.vue"]]),Jd={name:"PhoneFilled"},Xd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yd=e("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"},null,-1),e7=[Yd];function t7(t,a,_,r,l,i){return o(),n("svg",Xd,e7)}var _7=s(Jd,[["render",t7],["__file","phone-filled.vue"]]),a7={name:"Phone"},r7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},l7=e("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192zm0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384z"},null,-1),o7=[l7];function n7(t,a,_,r,l,i){return o(),n("svg",r7,o7)}var s7=s(a7,[["render",n7],["__file","phone.vue"]]),i7={name:"PictureFilled"},u7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},v7=e("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 32H96zm315.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.112zM256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384z"},null,-1),d7=[v7];function c7(t,a,_,r,l,i){return o(),n("svg",u7,d7)}var h7=s(i7,[["render",c7],["__file","picture-filled.vue"]]),p7={name:"PictureRounded"},f7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w7=e("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768zm0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z"},null,-1),m7=e("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"},null,-1),g7=[w7,m7];function $7(t,a,_,r,l,i){return o(),n("svg",f7,g7)}var z7=s(p7,[["render",$7],["__file","picture-rounded.vue"]]),x7={name:"Picture"},H7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},M7=e("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),C7=e("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952L185.408 876.992z"},null,-1),V7=[M7,C7];function y7(t,a,_,r,l,i){return o(),n("svg",H7,V7)}var B7=s(x7,[["render",y7],["__file","picture.vue"]]),L7={name:"PieChart"},A7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},b7=e("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"},null,-1),k7=e("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512V64z"},null,-1),S7=[b7,k7];function q7(t,a,_,r,l,i){return o(),n("svg",A7,S7)}var F7=s(L7,[["render",q7],["__file","pie-chart.vue"]]),D7={name:"Place"},P7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},R7=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),T7=e("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32z"},null,-1),O7=e("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912z"},null,-1),G7=[R7,T7,O7];function I7(t,a,_,r,l,i){return o(),n("svg",P7,G7)}var U7=s(D7,[["render",I7],["__file","place.vue"]]),W7={name:"Platform"},E7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},N7=e("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64h192zM128 704V128h768v576H128z"},null,-1),Z7=[N7];function K7(t,a,_,r,l,i){return o(),n("svg",E7,Z7)}var Q7=s(W7,[["render",K7],["__file","platform.vue"]]),j7={name:"Plus"},J7={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},X7=e("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-64h352z"},null,-1),Y7=[X7];function ec(t,a,_,r,l,i){return o(),n("svg",J7,Y7)}var tc=s(j7,[["render",ec],["__file","plus.vue"]]),_c={name:"Pointer"},ac={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rc=e("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128zM359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32L359.04 556.8z"},null,-1),lc=[rc];function oc(t,a,_,r,l,i){return o(),n("svg",ac,lc)}var nc=s(_c,[["render",oc],["__file","pointer.vue"]]),sc={name:"Position"},ic={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},uc=e("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"},null,-1),vc=[uc];function dc(t,a,_,r,l,i){return o(),n("svg",ic,vc)}var cc=s(sc,[["render",dc],["__file","position.vue"]]),hc={name:"Postcard"},pc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fc=e("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32H160zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96z"},null,-1),wc=e("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128zM288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32zm0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),mc=[fc,wc];function gc(t,a,_,r,l,i){return o(),n("svg",pc,mc)}var $c=s(hc,[["render",gc],["__file","postcard.vue"]]),zc={name:"Pouring"},xc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hc=e("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32z"},null,-1),Mc=[Hc];function Cc(t,a,_,r,l,i){return o(),n("svg",xc,Mc)}var Vc=s(zc,[["render",Cc],["__file","pouring.vue"]]),yc={name:"Present"},Bc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lc=e("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576h288zm64 0h288V320H544v256h288v64H544v256zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V256z"},null,-1),Ac=e("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),bc=e("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),kc=e("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Sc=[Lc,Ac,bc,kc];function qc(t,a,_,r,l,i){return o(),n("svg",Bc,Sc)}var Fc=s(yc,[["render",qc],["__file","present.vue"]]),Dc={name:"PriceTag"},Pc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rc=e("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),Tc=e("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Oc=[Rc,Tc];function Gc(t,a,_,r,l,i){return o(),n("svg",Pc,Oc)}var Ic=s(Dc,[["render",Gc],["__file","price-tag.vue"]]),Uc={name:"Printer"},Wc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ec=e("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256V768zm64-192v320h384V576H320zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704h128zm64-448h384V128H320v128zm-64 128h64v64h-64v-64zm128 0h64v64h-64v-64z"},null,-1),Nc=[Ec];function Zc(t,a,_,r,l,i){return o(),n("svg",Wc,Nc)}var Kc=s(Uc,[["render",Zc],["__file","printer.vue"]]),Qc={name:"Promotion"},jc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jc=e("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472 64 448zm256 512V657.024L512 768 320 960z"},null,-1),Xc=[Jc];function Yc(t,a,_,r,l,i){return o(),n("svg",jc,Xc)}var eh=s(Qc,[["render",Yc],["__file","promotion.vue"]]),th={name:"QuartzWatch"},_h={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ah=e("path",{d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49v-.01zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01zm6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49zM512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99zm183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01z",fill:"currentColor"},null,-1),rh=e("path",{d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5zM416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68V128zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68V896zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768z",fill:"currentColor"},null,-1),lh=e("path",{d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99zm112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02z",fill:"currentColor"},null,-1),oh=[ah,rh,lh];function nh(t,a,_,r,l,i){return o(),n("svg",_h,oh)}var sh=s(th,[["render",nh],["__file","quartz-watch.vue"]]),ih={name:"QuestionFilled"},uh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vh=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm23.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"},null,-1),dh=[vh];function ch(t,a,_,r,l,i){return o(),n("svg",uh,dh)}var hh=s(ih,[["render",ch],["__file","question-filled.vue"]]),ph={name:"Rank"},fh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wh=e("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"},null,-1),mh=[wh];function gh(t,a,_,r,l,i){return o(),n("svg",fh,mh)}var $h=s(ph,[["render",gh],["__file","rank.vue"]]),zh={name:"ReadingLamp"},xh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hh=e("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm-44.672-768-99.52 448h608.384l-99.52-448H307.328zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"},null,-1),Mh=e("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32zm-192-.064h64V960h-64z"},null,-1),Ch=[Hh,Mh];function Vh(t,a,_,r,l,i){return o(),n("svg",xh,Ch)}var yh=s(zh,[["render",Vh],["__file","reading-lamp.vue"]]),Bh={name:"Reading"},Lh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ah=e("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72l384 54.848zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"},null,-1),bh=e("path",{fill:"currentColor",d:"M480 192h64v704h-64z"},null,-1),kh=[Ah,bh];function Sh(t,a,_,r,l,i){return o(),n("svg",Lh,kh)}var qh=s(Bh,[["render",Sh],["__file","reading.vue"]]),Fh={name:"RefreshLeft"},Dh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ph=e("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"},null,-1),Rh=[Ph];function Th(t,a,_,r,l,i){return o(),n("svg",Dh,Rh)}var Oh=s(Fh,[["render",Th],["__file","refresh-left.vue"]]),Gh={name:"RefreshRight"},Ih={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Uh=e("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"},null,-1),Wh=[Uh];function Eh(t,a,_,r,l,i){return o(),n("svg",Ih,Wh)}var Nh=s(Gh,[["render",Eh],["__file","refresh-right.vue"]]),Zh={name:"Refresh"},Kh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qh=e("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"},null,-1),jh=[Qh];function Jh(t,a,_,r,l,i){return o(),n("svg",Kh,jh)}var Xh=s(Zh,[["render",Jh],["__file","refresh.vue"]]),Yh={name:"Refrigerator"},ep={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tp=e("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32v288zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512H256zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96zm32 224h64v96h-64v-96zm0 288h64v96h-64v-96z"},null,-1),_p=[tp];function ap(t,a,_,r,l,i){return o(),n("svg",ep,_p)}var rp=s(Yh,[["render",ap],["__file","refrigerator.vue"]]),lp={name:"RemoveFilled"},op={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},np=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zM288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512z"},null,-1),sp=[np];function ip(t,a,_,r,l,i){return o(),n("svg",op,sp)}var up=s(lp,[["render",ip],["__file","remove-filled.vue"]]),vp={name:"Remove"},dp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cp=e("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),hp=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),pp=[cp,hp];function fp(t,a,_,r,l,i){return o(),n("svg",dp,pp)}var wp=s(vp,[["render",fp],["__file","remove.vue"]]),mp={name:"Right"},gp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$p=e("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312L754.752 480z"},null,-1),zp=[$p];function xp(t,a,_,r,l,i){return o(),n("svg",gp,zp)}var Hp=s(mp,[["render",xp],["__file","right.vue"]]),Mp={name:"ScaleToOriginal"},Cp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vp=e("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.118zM512 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.412zM512 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 512z"},null,-1),yp=[Vp];function Bp(t,a,_,r,l,i){return o(),n("svg",Cp,yp)}var Lp=s(Mp,[["render",Bp],["__file","scale-to-original.vue"]]),Ap={name:"School"},bp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kp=e("path",{fill:"currentColor",d:"M224 128v704h576V128H224zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),Sp=e("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"},null,-1),qp=e("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0v64zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192zM320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"},null,-1),Fp=[kp,Sp,qp];function Dp(t,a,_,r,l,i){return o(),n("svg",bp,Fp)}var Pp=s(Ap,[["render",Dp],["__file","school.vue"]]),Rp={name:"Scissor"},Tp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Op=e("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248z"},null,-1),Gp=[Op];function Ip(t,a,_,r,l,i){return o(),n("svg",Tp,Gp)}var Up=s(Rp,[["render",Ip],["__file","scissor.vue"]]),Wp={name:"Search"},Ep={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Np=e("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 704z"},null,-1),Zp=[Np];function Kp(t,a,_,r,l,i){return o(),n("svg",Ep,Zp)}var Qp=s(Wp,[["render",Kp],["__file","search.vue"]]),jp={name:"Select"},Jp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xp=e("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"},null,-1),Yp=[Xp];function ef(t,a,_,r,l,i){return o(),n("svg",Jp,Yp)}var tf=s(jp,[["render",ef],["__file","select.vue"]]),_f={name:"Sell"},af={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rf=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"},null,-1),lf=[rf];function of(t,a,_,r,l,i){return o(),n("svg",af,lf)}var nf=s(_f,[["render",of],["__file","sell.vue"]]),sf={name:"SemiSelect"},uf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vf=e("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64z"},null,-1),df=[vf];function cf(t,a,_,r,l,i){return o(),n("svg",uf,df)}var hf=s(sf,[["render",cf],["__file","semi-select.vue"]]),pf={name:"Service"},ff={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wf=e("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0zM256 448a128 128 0 1 0 0 256V448zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128z"},null,-1),mf=[wf];function gf(t,a,_,r,l,i){return o(),n("svg",ff,mf)}var $f=s(pf,[["render",gf],["__file","service.vue"]]),zf={name:"SetUp"},xf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hf=e("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64H224zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96z"},null,-1),Mf=e("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Cf=e("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),Vf=e("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),yf=[Hf,Mf,Cf,Vf];function Bf(t,a,_,r,l,i){return o(),n("svg",xf,yf)}var Lf=s(zf,[["render",Bf],["__file","set-up.vue"]]),Af={name:"Setting"},bf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kf=e("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384zm0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256z"},null,-1),Sf=[kf];function qf(t,a,_,r,l,i){return o(),n("svg",bf,Sf)}var Ff=s(Af,[["render",qf],["__file","setting.vue"]]),Df={name:"Share"},Pf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rf=e("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"},null,-1),Tf=[Rf];function Of(t,a,_,r,l,i){return o(),n("svg",Pf,Tf)}var Gf=s(Df,[["render",Of],["__file","share.vue"]]),If={name:"Ship"},Uf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wf=e("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216L512 386.88zm0-70.272 144.768-65.792L512 171.84v144.768zM512 512H148.864l18.24 64H856.96l18.24-64H512zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408z"},null,-1),Ef=[Wf];function Nf(t,a,_,r,l,i){return o(),n("svg",Uf,Ef)}var Zf=s(If,[["render",Nf],["__file","ship.vue"]]),Kf={name:"Shop"},Qf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jf=e("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384v-64zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640l60.544 423.808z"},null,-1),Jf=[jf];function Xf(t,a,_,r,l,i){return o(),n("svg",Qf,Jf)}var Yf=s(Kf,[["render",Xf],["__file","shop.vue"]]),ew={name:"ShoppingBag"},tw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_w=e("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320H704zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32h160zm64 0h256a128 128 0 1 0-256 0z"},null,-1),aw=e("path",{fill:"currentColor",d:"M192 704h640v64H192z"},null,-1),rw=[_w,aw];function lw(t,a,_,r,l,i){return o(),n("svg",tw,rw)}var ow=s(ew,[["render",lw],["__file","shopping-bag.vue"]]),nw={name:"ShoppingCartFull"},sw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),uw=e("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04z"},null,-1),vw=[iw,uw];function dw(t,a,_,r,l,i){return o(),n("svg",sw,vw)}var cw=s(nw,[["render",dw],["__file","shopping-cart-full.vue"]]),hw={name:"ShoppingCart"},pw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fw=e("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),ww=[fw];function mw(t,a,_,r,l,i){return o(),n("svg",pw,ww)}var gw=s(hw,[["render",mw],["__file","shopping-cart.vue"]]),$w={name:"ShoppingTrolley"},zw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},xw=e("path",{d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833zm439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64h551zM256 192h622l-96 384H256V192zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833z",fill:"currentColor"},null,-1),Hw=[xw];function Mw(t,a,_,r,l,i){return o(),n("svg",zw,Hw)}var Cw=s($w,[["render",Mw],["__file","shopping-trolley.vue"]]),Vw={name:"Smoking"},yw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bw=e("path",{fill:"currentColor",d:"M256 576v128h640V576H256zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32z"},null,-1),Lw=e("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1),Aw=[Bw,Lw];function bw(t,a,_,r,l,i){return o(),n("svg",yw,Aw)}var kw=s(Vw,[["render",bw],["__file","smoking.vue"]]),Sw={name:"Soccer"},qw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fw=e("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24zm72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536L871.04 418.496zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152zm452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"},null,-1),Dw=[Fw];function Pw(t,a,_,r,l,i){return o(),n("svg",qw,Dw)}var Rw=s(Sw,[["render",Pw],["__file","soccer.vue"]]),Tw={name:"SoldOut"},Ow={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gw=e("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"},null,-1),Iw=[Gw];function Uw(t,a,_,r,l,i){return o(),n("svg",Ow,Iw)}var Ww=s(Tw,[["render",Uw],["__file","sold-out.vue"]]),Ew={name:"SortDown"},Nw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zw=e("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 0z"},null,-1),Kw=[Zw];function Qw(t,a,_,r,l,i){return o(),n("svg",Nw,Kw)}var jw=s(Ew,[["render",Qw],["__file","sort-down.vue"]]),Jw={name:"SortUp"},Xw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yw=e("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.248z"},null,-1),em=[Yw];function tm(t,a,_,r,l,i){return o(),n("svg",Xw,em)}var _m=s(Jw,[["render",tm],["__file","sort-up.vue"]]),am={name:"Sort"},rm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lm=e("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632V96zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"},null,-1),om=[lm];function nm(t,a,_,r,l,i){return o(),n("svg",rm,om)}var sm=s(am,[["render",nm],["__file","sort.vue"]]),im={name:"Stamp"},um={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vm=e("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0zM128 896v-64h768v64H128z"},null,-1),dm=[vm];function cm(t,a,_,r,l,i){return o(),n("svg",um,dm)}var hm=s(im,[["render",cm],["__file","stamp.vue"]]),pm={name:"StarFilled"},fm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wm=e("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"},null,-1),mm=[wm];function gm(t,a,_,r,l,i){return o(),n("svg",fm,mm)}var $m=s(pm,[["render",gm],["__file","star-filled.vue"]]),zm={name:"Star"},xm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hm=e("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.72L512 747.84zM313.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"},null,-1),Mm=[Hm];function Cm(t,a,_,r,l,i){return o(),n("svg",xm,Mm)}var Vm=s(zm,[["render",Cm],["__file","star.vue"]]),ym={name:"Stopwatch"},Bm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lm=e("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),Am=e("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"},null,-1),bm=[Lm,Am];function km(t,a,_,r,l,i){return o(),n("svg",Bm,bm)}var Sm=s(ym,[["render",km],["__file","stopwatch.vue"]]),qm={name:"SuccessFilled"},Fm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Dm=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1),Pm=[Dm];function Rm(t,a,_,r,l,i){return o(),n("svg",Fm,Pm)}var Tm=s(qm,[["render",Rm],["__file","success-filled.vue"]]),Om={name:"Sugar"},Gm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Im=e("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904H252.928zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928h326.208zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"},null,-1),Um=[Im];function Wm(t,a,_,r,l,i){return o(),n("svg",Gm,Um)}var Em=s(Om,[["render",Wm],["__file","sugar.vue"]]),Nm={name:"SuitcaseLine"},Zm={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Km=e("path",{d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5zM384 128h256v64H384v-64zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128v384zm448 0H320V448h384v384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128v320zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320v64z",fill:"currentColor"},null,-1),Qm=[Km];function jm(t,a,_,r,l,i){return o(),n("svg",Zm,Qm)}var Jm=s(Nm,[["render",jm],["__file","suitcase-line.vue"]]),Xm={name:"Suitcase"},Ym={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},eg=e("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64v64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448H128zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),tg=e("path",{fill:"currentColor",d:"M384 128v64h256v-64H384zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64z"},null,-1),_g=[eg,tg];function ag(t,a,_,r,l,i){return o(),n("svg",Ym,_g)}var rg=s(Xm,[["render",ag],["__file","suitcase.vue"]]),lg={name:"Sunny"},og={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ng=e("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32zM195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248zM64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32zm768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32zM195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0z"},null,-1),sg=[ng];function ig(t,a,_,r,l,i){return o(),n("svg",og,sg)}var ug=s(lg,[["render",ig],["__file","sunny.vue"]]),vg={name:"Sunrise"},dg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cg=e("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64zm129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32zm407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248z"},null,-1),hg=[cg];function pg(t,a,_,r,l,i){return o(),n("svg",dg,hg)}var fg=s(vg,[["render",pg],["__file","sunrise.vue"]]),wg={name:"Sunset"},mg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gg=e("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0H82.56zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),$g=[gg];function zg(t,a,_,r,l,i){return o(),n("svg",mg,$g)}var xg=s(wg,[["render",zg],["__file","sunset.vue"]]),Hg={name:"SwitchButton"},Mg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cg=e("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"},null,-1),Vg=e("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32z"},null,-1),yg=[Cg,Vg];function Bg(t,a,_,r,l,i){return o(),n("svg",Mg,yg)}var Lg=s(Hg,[["render",Bg],["__file","switch-button.vue"]]),Ag={name:"SwitchFilled"},bg={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},kg=e("path",{d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z",fill:"currentColor"},null,-1),Sg=e("path",{d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57v644.36zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z",fill:"currentColor"},null,-1),qg=[kg,Sg];function Fg(t,a,_,r,l,i){return o(),n("svg",bg,qg)}var Dg=s(Ag,[["render",Fg],["__file","switch-filled.vue"]]),Pg={name:"Switch"},Rg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tg=e("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32z"},null,-1),Og=[Tg];function Gg(t,a,_,r,l,i){return o(),n("svg",Rg,Og)}var Ig=s(Pg,[["render",Gg],["__file","switch.vue"]]),Ug={name:"TakeawayBox"},Wg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Eg=e("path",{fill:"currentColor",d:"M832 384H192v448h640V384zM96 320h832V128H96v192zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32h-64zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64z"},null,-1),Ng=[Eg];function Zg(t,a,_,r,l,i){return o(),n("svg",Wg,Ng)}var Kg=s(Ug,[["render",Zg],["__file","takeaway-box.vue"]]),Qg={name:"Ticket"},jg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jg=e("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64v160zm0-416v192h64V416h-64z"},null,-1),Xg=[Jg];function Yg(t,a,_,r,l,i){return o(),n("svg",jg,Xg)}var e$=s(Qg,[["render",Yg],["__file","ticket.vue"]]),t$={name:"Tickets"},_$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},a$=e("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h192v64H320v-64zm0 384h384v64H320v-64z"},null,-1),r$=[a$];function l$(t,a,_,r,l,i){return o(),n("svg",_$,r$)}var o$=s(t$,[["render",l$],["__file","tickets.vue"]]),n$={name:"Timer"},s$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},i$=e("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),u$=e("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32z"},null,-1),v$=e("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0zm96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96z"},null,-1),d$=[i$,u$,v$];function c$(t,a,_,r,l,i){return o(),n("svg",s$,d$)}var h$=s(n$,[["render",c$],["__file","timer.vue"]]),p$={name:"ToiletPaper"},f$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},w$=e("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224zM736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64h416zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224z"},null,-1),m$=e("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96z"},null,-1),g$=[w$,m$];function $$(t,a,_,r,l,i){return o(),n("svg",f$,g$)}var z$=s(p$,[["render",$$],["__file","toilet-paper.vue"]]),x$={name:"Tools"},H$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},M$=e("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0z"},null,-1),C$=[M$];function V$(t,a,_,r,l,i){return o(),n("svg",H$,C$)}var y$=s(x$,[["render",V$],["__file","tools.vue"]]),B$={name:"TopLeft"},L$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},A$=e("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0V256z"},null,-1),b$=e("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"},null,-1),k$=[A$,b$];function S$(t,a,_,r,l,i){return o(),n("svg",L$,k$)}var q$=s(B$,[["render",S$],["__file","top-left.vue"]]),F$={name:"TopRight"},D$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P$=e("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0V256z"},null,-1),R$=e("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"},null,-1),T$=[P$,R$];function O$(t,a,_,r,l,i){return o(),n("svg",D$,T$)}var G$=s(F$,[["render",O$],["__file","top-right.vue"]]),I$={name:"Top"},U$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},W$=e("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"},null,-1),E$=[W$];function N$(t,a,_,r,l,i){return o(),n("svg",U$,E$)}var Z$=s(I$,[["render",N$],["__file","top.vue"]]),K$={name:"TrendCharts"},Q$={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},j$=e("path",{fill:"currentColor",d:"M128 896V128h768v768H128zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0z"},null,-1),J$=[j$];function X$(t,a,_,r,l,i){return o(),n("svg",Q$,J$)}var Y$=s(K$,[["render",X$],["__file","trend-charts.vue"]]),ez={name:"TrophyBase"},tz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},_z=e("path",{d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256v182.4zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4zm172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6z",fill:"currentColor"},null,-1),az=[_z];function rz(t,a,_,r,l,i){return o(),n("svg",tz,az)}var lz=s(ez,[["render",rz],["__file","trophy-base.vue"]]),oz={name:"Trophy"},nz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sz=e("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64h128zm224-448V128H320v320a192 192 0 1 0 384 0zm64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768v192zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448H256z"},null,-1),iz=[sz];function uz(t,a,_,r,l,i){return o(),n("svg",nz,iz)}var vz=s(oz,[["render",uz],["__file","trophy.vue"]]),dz={name:"TurnOff"},cz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hz=e("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),pz=e("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1),fz=[hz,pz];function wz(t,a,_,r,l,i){return o(),n("svg",cz,fz)}var mz=s(dz,[["render",wz],["__file","turn-off.vue"]]),gz={name:"Umbrella"},$z={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zz=e("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0zm570.688-320a384.128 384.128 0 0 0-757.376 0h757.376z"},null,-1),xz=[zz];function Hz(t,a,_,r,l,i){return o(),n("svg",$z,xz)}var Mz=s(gz,[["render",Hz],["__file","umbrella.vue"]]),Cz={name:"Unlock"},Vz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yz=e("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),Bz=e("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104l-59.456 23.808z"},null,-1),Lz=[yz,Bz];function Az(t,a,_,r,l,i){return o(),n("svg",Vz,Lz)}var bz=s(Cz,[["render",Az],["__file","unlock.vue"]]),kz={name:"UploadFilled"},Sz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qz=e("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6H544z"},null,-1),Fz=[qz];function Dz(t,a,_,r,l,i){return o(),n("svg",Sz,Fz)}var Pz=s(kz,[["render",Dz],["__file","upload-filled.vue"]]),Rz={name:"Upload"},Tz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Oz=e("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"},null,-1),Gz=[Oz];function Iz(t,a,_,r,l,i){return o(),n("svg",Tz,Gz)}var Uz=s(Rz,[["render",Iz],["__file","upload.vue"]]),Wz={name:"UserFilled"},Ez={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nz=e("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0zm544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"},null,-1),Zz=[Nz];function Kz(t,a,_,r,l,i){return o(),n("svg",Ez,Zz)}var Qz=s(Wz,[["render",Kz],["__file","user-filled.vue"]]),jz={name:"User"},Jz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xz=e("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0z"},null,-1),Yz=[Xz];function ex(t,a,_,r,l,i){return o(),n("svg",Jz,Yz)}var tx=s(jz,[["render",ex],["__file","user.vue"]]),_x={name:"Van"},ax={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rx=e("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416h24.256zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672zm48.128-192-14.72-96H704v96h151.872zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160zm-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160z"},null,-1),lx=[rx];function ox(t,a,_,r,l,i){return o(),n("svg",ax,lx)}var nx=s(_x,[["render",ox],["__file","van.vue"]]),sx={name:"VideoCameraFilled"},ix={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ux=e("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v96zM192 768v64h384v-64H192zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0zm64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288zm-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320zm64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0z"},null,-1),vx=[ux];function dx(t,a,_,r,l,i){return o(),n("svg",ix,vx)}var cx=s(sx,[["render",dx],["__file","video-camera-filled.vue"]]),hx={name:"VideoCamera"},px={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fx=e("path",{fill:"currentColor",d:"M704 768V256H128v512h576zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 71.552v176.896l128 64V359.552l-128 64zM192 320h192v64H192v-64z"},null,-1),wx=[fx];function mx(t,a,_,r,l,i){return o(),n("svg",px,wx)}var gx=s(hx,[["render",mx],["__file","video-camera.vue"]]),$x={name:"VideoPause"},zx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xx=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32zm192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32z"},null,-1),Hx=[xx];function Mx(t,a,_,r,l,i){return o(),n("svg",zx,Hx)}var Cx=s($x,[["render",Mx],["__file","video-pause.vue"]]),Vx={name:"VideoPlay"},yx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bx=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-48-247.616L668.608 512 464 375.616v272.768zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"},null,-1),Lx=[Bx];function Ax(t,a,_,r,l,i){return o(),n("svg",yx,Lx)}var bx=s(Vx,[["render",Ax],["__file","video-play.vue"]]),kx={name:"View"},Sx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qx=e("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352zm0 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-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160z"},null,-1),Fx=[qx];function Dx(t,a,_,r,l,i){return o(),n("svg",Sx,Fx)}var Px=s(kx,[["render",Dx],["__file","view.vue"]]),Rx={name:"WalletFilled"},Tx={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ox=e("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160H688zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96zm-80-544 128 160H384l256-160z"},null,-1),Gx=[Ox];function Ix(t,a,_,r,l,i){return o(),n("svg",Tx,Gx)}var Ux=s(Rx,[["render",Ix],["__file","wallet-filled.vue"]]),Wx={name:"Wallet"},Ex={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nx=e("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32v192z"},null,-1),Zx=e("path",{fill:"currentColor",d:"M128 320v512h768V320H128zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32z"},null,-1),Kx=e("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1),Qx=[Nx,Zx,Kx];function jx(t,a,_,r,l,i){return o(),n("svg",Ex,Qx)}var Jx=s(Wx,[["render",jx],["__file","wallet.vue"]]),Xx={name:"WarnTriangleFilled"},Yx={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},eH=e("path",{d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03zM554.67 768h-85.33v-85.33h85.33V768zm0-426.67v298.66h-85.33V341.32l85.33.01z",fill:"currentColor"},null,-1),tH=[eH];function _H(t,a,_,r,l,i){return o(),n("svg",Yx,tH)}var aH=s(Xx,[["render",_H],["__file","warn-triangle-filled.vue"]]),rH={name:"WarningFilled"},lH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},oH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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 256zm0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4z"},null,-1),nH=[oH];function sH(t,a,_,r,l,i){return o(),n("svg",lH,nH)}var iH=s(rH,[["render",sH],["__file","warning-filled.vue"]]),uH={name:"Warning"},vH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dH=e("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),cH=[dH];function hH(t,a,_,r,l,i){return o(),n("svg",vH,cH)}var pH=s(uH,[["render",hH],["__file","warning.vue"]]),fH={name:"Watch"},wH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mH=e("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),gH=e("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32z"},null,-1),$H=e("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm128-256V128H416v128h-64V64h320v192h-64zM416 768v128h192V768h64v192H352V768h64z"},null,-1),zH=[mH,gH,$H];function xH(t,a,_,r,l,i){return o(),n("svg",wH,zH)}var HH=s(fH,[["render",xH],["__file","watch.vue"]]),MH={name:"Watermelon"},CH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},VH=e("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248L683.072 600.32zm231.552 141.056a448 448 0 1 1-632-632l632 632z"},null,-1),yH=[VH];function BH(t,a,_,r,l,i){return o(),n("svg",CH,yH)}var LH=s(MH,[["render",BH],["__file","watermelon.vue"]]),AH={name:"WindPower"},bH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kH=e("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32zm416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92l192-17.472zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96v226.368z"},null,-1),SH=[kH];function qH(t,a,_,r,l,i){return o(),n("svg",bH,SH)}var FH=s(AH,[["render",qH],["__file","wind-power.vue"]]),DH={name:"ZoomIn"},PH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},RH=e("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 704zm-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-64h96z"},null,-1),TH=[RH];function OH(t,a,_,r,l,i){return o(),n("svg",PH,TH)}var GH=s(DH,[["render",OH],["__file","zoom-in.vue"]]),IH={name:"ZoomOut"},UH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},WH=e("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 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),EH=[WH];function NH(t,a,_,r,l,i){return o(),n("svg",UH,EH)}var ZH=s(IH,[["render",NH],["__file","zoom-out.vue"]]);const QH=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:m,Aim:C,AlarmClock:k,Apple:R,ArrowDown:j,ArrowDownBold:W,ArrowLeft:s2,ArrowLeftBold:_2,ArrowRight:$2,ArrowRightBold:h2,ArrowUp:k2,ArrowUpBold:V2,Avatar:R2,Back:E2,Baseball:X2,Basketball:r0,Bell:m0,BellFilled:u0,Bicycle:M0,Bottom:W0,BottomLeft:b0,BottomRight:R0,Bowl:j0,Box:r1,Briefcase:u1,Brush:x1,BrushFilled:f1,Burger:B1,Calendar:q1,Camera:N1,CameraFilled:O1,CaretBottom:X1,CaretLeft:r4,CaretRight:u4,CaretTop:f4,Cellphone:x4,ChatDotRound:L4,ChatDotSquare:D4,ChatLineRound:U4,ChatLineSquare:j4,ChatRound:_6,ChatSquare:s6,Check:h6,Checked:$6,Cherry:V6,Chicken:k6,ChromeFilled:O6,CircleCheck:Y6,CircleCheckFilled:N6,CircleClose:d3,CircleCloseFilled:l3,CirclePlus:V3,CirclePlusFilled:m3,Clock:q3,Close:N3,CloseBold:O3,Cloudy:X3,Coffee:ue,CoffeeCup:re,Coin:me,ColdDrink:Me,Collection:Pe,CollectionTag:Ae,Comment:Ue,Compass:je,Connection:a8,Coordinate:u8,CopyDocument:w8,Cpu:M8,CreditCard:b8,Crop:R8,DArrowLeft:W8,DArrowRight:j8,DCaret:_t,DataAnalysis:st,DataBoard:ft,DataLine:xt,Delete:It,DeleteFilled:Bt,DeleteLocation:Dt,Dessert:Kt,Discount:t_,Dish:c_,DishDot:n_,Document:Q_,DocumentAdd:g_,DocumentChecked:C_,DocumentCopy:b_,DocumentDelete:P_,DocumentRemove:U_,Download:ta,Drizzling:na,Edit:$a,EditPen:ca,Eleme:ka,ElemeFilled:Va,ElementPlus:Ra,Expand:Wa,Failed:ja,Female:rr,Files:ur,Film:wr,Filter:Hr,Finished:Lr,FirstAidKit:Dr,Flag:Ir,Fold:Kr,Folder:A5,FolderAdd:e5,FolderChecked:o5,FolderDelete:d5,FolderOpened:m5,FolderRemove:M5,Food:D5,Football:U5,ForkSpoon:Q5,Fries:tl,FullScreen:nl,Goblet:bl,GobletFull:cl,GobletSquare:Cl,GobletSquareFull:gl,GoldMedal:Rl,Goods:jl,GoodsFilled:Wl,Grape:_o,Grid:so,Guide:fo,Handbag:xo,Headset:Bo,Help:Oo,HelpFilled:qo,Hide:Zo,Histogram:Yo,HomeFilled:l9,HotWater:v9,House:w9,IceCream:F9,IceCreamRound:H9,IceCreamSquare:L9,IceDrink:G9,IceTea:Z9,InfoFilled:Y9,Iphone:ln,Key:dn,KnifeFork:mn,Lightning:Cn,Link:bn,List:Pn,Loading:Un,Location:us,LocationFilled:Qn,LocationInformation:as,Lock:ws,Lollipop:Hs,MagicStick:Ls,Magnet:Fs,Male:Us,Management:Qs,MapLocation:_i,Medal:ii,Memo:wi,Menu:Hi,Message:Di,MessageBox:Li,Mic:Ii,Microphone:Ki,MilkTea:eu,Minus:ou,Money:hu,Monitor:$u,Moon:Su,MoonNight:yu,More:Eu,MoreFilled:Tu,MostlyCloudy:Ju,Mouse:rv,Mug:uv,Mute:Mv,MuteNotification:wv,NoSmoking:Av,Notebook:Pv,Notification:Wv,Odometer:Xv,OfficeBuilding:od,Open:cd,Operation:gd,Opportunity:Cd,Orange:bd,Paperclip:Pd,PartlyCloudy:Wd,Pear:jd,Phone:s7,PhoneFilled:_7,Picture:B7,PictureFilled:h7,PictureRounded:z7,PieChart:F7,Place:U7,Platform:Q7,Plus:tc,Pointer:nc,Position:cc,Postcard:$c,Pouring:Vc,Present:Fc,PriceTag:Ic,Printer:Kc,Promotion:eh,QuartzWatch:sh,QuestionFilled:hh,Rank:$h,Reading:qh,ReadingLamp:yh,Refresh:Xh,RefreshLeft:Oh,RefreshRight:Nh,Refrigerator:rp,Remove:wp,RemoveFilled:up,Right:Hp,ScaleToOriginal:Lp,School:Pp,Scissor:Up,Search:Qp,Select:tf,Sell:nf,SemiSelect:hf,Service:$f,SetUp:Lf,Setting:Ff,Share:Gf,Ship:Zf,Shop:Yf,ShoppingBag:ow,ShoppingCart:gw,ShoppingCartFull:cw,ShoppingTrolley:Cw,Smoking:kw,Soccer:Rw,SoldOut:Ww,Sort:sm,SortDown:jw,SortUp:_m,Stamp:hm,Star:Vm,StarFilled:$m,Stopwatch:Sm,SuccessFilled:Tm,Sugar:Em,Suitcase:rg,SuitcaseLine:Jm,Sunny:ug,Sunrise:fg,Sunset:xg,Switch:Ig,SwitchButton:Lg,SwitchFilled:Dg,TakeawayBox:Kg,Ticket:e$,Tickets:o$,Timer:h$,ToiletPaper:z$,Tools:y$,Top:Z$,TopLeft:q$,TopRight:G$,TrendCharts:Y$,Trophy:vz,TrophyBase:lz,TurnOff:mz,Umbrella:Mz,Unlock:bz,Upload:Uz,UploadFilled:Pz,User:tx,UserFilled:Qz,Van:nx,VideoCamera:gx,VideoCameraFilled:cx,VideoPause:Cx,VideoPlay:bx,View:Px,Wallet:Jx,WalletFilled:Ux,WarnTriangleFilled:aH,Warning:pH,WarningFilled:iH,Watch:HH,Watermelon:LH,WindPower:FH,ZoomIn:GH,ZoomOut:ZH},Symbol.toStringTag,{value:"Module"}));export{ou as A,tc as B,Eu as C,E2 as D,Tu as E,hh as F,$m as G,Vm as H,N6 as I,h7 as J,_m as K,jw as L,Qp as M,u4 as N,Q_ as O,It as P,QH as Q,Pd as R,Y6 as a,d3 as b,l3 as c,N3 as d,f4 as e,q3 as f,q1 as g,Zo as h,Y9 as i,k2 as j,j as k,Un as l,s2 as m,$2 as n,h6 as o,W8 as p,j8 as q,nl as r,Tm as s,Lp as t,GH as u,Px as v,iH as w,Oh as x,Nh as y,ZH as z}; diff --git a/src/main/resources/html/lc/assets/@element-plus-legacy-109f3c36.js b/src/main/resources/html/lc/assets/@element-plus-legacy-bb874362.js similarity index 99% rename from src/main/resources/html/lc/assets/@element-plus-legacy-109f3c36.js rename to src/main/resources/html/lc/assets/@element-plus-legacy-bb874362.js index 818fab1..a554a38 100644 --- a/src/main/resources/html/lc/assets/@element-plus-legacy-109f3c36.js +++ b/src/main/resources/html/lc/assets/@element-plus-legacy-bb874362.js @@ -1,2 +1,2 @@ -System.register(["./@vue-legacy-6c3c82af.js"],(function(l,e){"use strict";var r,n,a,t;return{setters:[l=>{r=l.o,n=l.c,a=l.a,t=l.b}],execute:function(){/*! Element Plus Icons Vue v2.0.10 */ +System.register(["./@vue-legacy-4de3d5b5.js"],(function(l,e){"use strict";var r,n,a,t;return{setters:[l=>{r=l.o,n=l.c,a=l.a,t=l.b}],execute:function(){/*! Element Plus Icons Vue v2.0.10 */ var e={name:"AddLocation"},o=(l,e)=>{let r=l.__vccOpts||l;for(let[n,a]of e)r[n]=a;return r},v={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},u=[a("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),a("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),a("path",{fill:"currentColor",d:"M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96z"},null,-1)],i=o(e,[["render",function(l,e,a,t,o,i){return r(),n("svg",v,u)}],["__file","add-location.vue"]]),h={name:"Aim"},w={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},c=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("path",{fill:"currentColor",d:"M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32zm0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32zM96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32zm576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32z"},null,-1)],m=o(h,[["render",function(l,e,a,t,o,v){return r(),n("svg",w,c)}],["__file","aim.vue"]]),s={name:"AlarmClock"},f={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},z=[a("path",{fill:"currentColor",d:"M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),a("path",{fill:"currentColor",d:"m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32l48-83.136zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32l-48-83.136zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0v192zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128l46.912 46.912z"},null,-1)],d=o(s,[["render",function(l,e,a,t,o,v){return r(),n("svg",f,z)}],["__file","alarm-clock.vue"]]),g={name:"Apple"},p={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},H=[a("path",{fill:"currentColor",d:"M599.872 203.776a189.44 189.44 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a426.624 426.624 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664zm-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688 63.552 0 81.28 34.688 136.96 33.536 56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152z"},null,-1)],M=o(g,[["render",function(l,e,a,t,o,v){return r(),n("svg",p,H)}],["__file","apple.vue"]]),C={name:"ArrowDownBold"},x={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_=[a("path",{fill:"currentColor",d:"M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496z"},null,-1)],V=o(C,[["render",function(l,e,a,t,o,v){return r(),n("svg",x,_)}],["__file","arrow-down-bold.vue"]]),B={name:"ArrowDown"},L={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},A=[a("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"},null,-1)],S=l("k",o(B,[["render",function(l,e,a,t,o,v){return r(),n("svg",L,A)}],["__file","arrow-down.vue"]])),q={name:"ArrowLeftBold"},F={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},k=[a("path",{fill:"currentColor",d:"M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0z"},null,-1)],b=o(q,[["render",function(l,e,a,t,o,v){return r(),n("svg",F,k)}],["__file","arrow-left-bold.vue"]]),y={name:"ArrowLeft"},D={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},P=[a("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"},null,-1)],R=l("m",o(y,[["render",function(l,e,a,t,o,v){return r(),n("svg",D,P)}],["__file","arrow-left.vue"]])),T={name:"ArrowRightBold"},O={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},G=[a("path",{fill:"currentColor",d:"M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0z"},null,-1)],U=o(T,[["render",function(l,e,a,t,o,v){return r(),n("svg",O,G)}],["__file","arrow-right-bold.vue"]]),W={name:"ArrowRight"},I={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},E=[a("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"},null,-1)],N=l("n",o(W,[["render",function(l,e,a,t,o,v){return r(),n("svg",I,E)}],["__file","arrow-right.vue"]])),Z={name:"ArrowUpBold"},K={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Q=[a("path",{fill:"currentColor",d:"M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"},null,-1)],j=o(Z,[["render",function(l,e,a,t,o,v){return r(),n("svg",K,Q)}],["__file","arrow-up-bold.vue"]]),J={name:"ArrowUp"},X={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Y=[a("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 0z"},null,-1)],$=l("j",o(J,[["render",function(l,e,a,t,o,v){return r(),n("svg",X,Y)}],["__file","arrow-up.vue"]])),ll={name:"Avatar"},el={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rl=[a("path",{fill:"currentColor",d:"M628.736 528.896A416 416 0 0 1 928 928H96a415.872 415.872 0 0 1 299.264-399.104L512 704l116.736-175.104zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0z"},null,-1)],nl=o(ll,[["render",function(l,e,a,t,o,v){return r(),n("svg",el,rl)}],["__file","avatar.vue"]]),al={name:"Back"},tl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ol=[a("path",{fill:"currentColor",d:"M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64z"},null,-1),a("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.312L237.248 512z"},null,-1)],vl=l("D",o(al,[["render",function(l,e,a,t,o,v){return r(),n("svg",tl,ol)}],["__file","back.vue"]])),ul={name:"Baseball"},il={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hl=[a("path",{fill:"currentColor",d:"M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6zm45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104z"},null,-1),a("path",{fill:"currentColor",d:"M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896zM108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1736.64 1736.64 0 0 1-11.392-65.728z"},null,-1)],wl=o(ul,[["render",function(l,e,a,t,o,v){return r(),n("svg",il,hl)}],["__file","baseball.vue"]]),cl={name:"Basketball"},ml={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sl=[a("path",{fill:"currentColor",d:"M778.752 788.224a382.464 382.464 0 0 0 116.032-245.632 256.512 256.512 0 0 0-241.728-13.952 762.88 762.88 0 0 1 125.696 259.584zm-55.04 44.224a699.648 699.648 0 0 0-125.056-269.632 256.128 256.128 0 0 0-56.064 331.968 382.72 382.72 0 0 0 181.12-62.336zm-254.08 61.248A320.128 320.128 0 0 1 557.76 513.6a715.84 715.84 0 0 0-48.192-48.128 320.128 320.128 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.128 256.128 0 0 0 331.072-56.448 699.648 699.648 0 0 0-268.8-124.352 382.656 382.656 0 0 0-62.272 180.8zm106.56-235.84a762.88 762.88 0 0 1 258.688 125.056 256.512 256.512 0 0 0-13.44-241.088A382.464 382.464 0 0 0 235.84 245.248zm318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a779.84 779.84 0 0 1 66.176 66.112 320.832 320.832 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6z"},null,-1)],fl=o(cl,[["render",function(l,e,a,t,o,v){return r(),n("svg",ml,sl)}],["__file","basketball.vue"]]),zl={name:"BellFilled"},dl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gl=[a("path",{fill:"currentColor",d:"M640 832a128 128 0 0 1-256 0h256zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.128 320.128 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8H832z"},null,-1)],pl=o(zl,[["render",function(l,e,a,t,o,v){return r(),n("svg",dl,gl)}],["__file","bell-filled.vue"]]),Hl={name:"Bell"},Ml={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cl=[a("path",{fill:"currentColor",d:"M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64z"},null,-1),a("path",{fill:"currentColor",d:"M256 768h512V448a256 256 0 1 0-512 0v320zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320z"},null,-1),a("path",{fill:"currentColor",d:"M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm352 128h128a64 64 0 0 1-128 0z"},null,-1)],xl=o(Hl,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ml,Cl)}],["__file","bell.vue"]]),_l={name:"Bicycle"},Vl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bl=[t('',5)],Ll=o(_l,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vl,Bl)}],["__file","bicycle.vue"]]),Al={name:"BottomLeft"},Sl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ql=[a("path",{fill:"currentColor",d:"M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"},null,-1),a("path",{fill:"currentColor",d:"M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"},null,-1)],Fl=o(Al,[["render",function(l,e,a,t,o,v){return r(),n("svg",Sl,ql)}],["__file","bottom-left.vue"]]),kl={name:"BottomRight"},bl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yl=[a("path",{fill:"currentColor",d:"M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"},null,-1),a("path",{fill:"currentColor",d:"M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"},null,-1)],Dl=o(kl,[["render",function(l,e,a,t,o,v){return r(),n("svg",bl,yl)}],["__file","bottom-right.vue"]]),Pl={name:"Bottom"},Rl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tl=[a("path",{fill:"currentColor",d:"M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"},null,-1)],Ol=o(Pl,[["render",function(l,e,a,t,o,v){return r(),n("svg",Rl,Tl)}],["__file","bottom.vue"]]),Gl={name:"Bowl"},Ul={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wl=[a("path",{fill:"currentColor",d:"M714.432 704a351.744 351.744 0 0 0 148.16-256H161.408a351.744 351.744 0 0 0 148.16 256h404.864zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64v-65.408zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248L493.248 320zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424L680.576 320zM352 768v64h320v-64H352z"},null,-1)],Il=o(Gl,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ul,Wl)}],["__file","bowl.vue"]]),El={name:"Box"},Nl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zl=[a("path",{fill:"currentColor",d:"M317.056 128 128 344.064V896h768V344.064L706.944 128H317.056zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64z"},null,-1),a("path",{fill:"currentColor",d:"M64 320h896v64H64z"},null,-1),a("path",{fill:"currentColor",d:"M448 327.872V640h128V327.872L526.08 128h-28.16L448 327.872zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320l64-256z"},null,-1)],Kl=o(El,[["render",function(l,e,a,t,o,v){return r(),n("svg",Nl,Zl)}],["__file","box.vue"]]),Ql={name:"Briefcase"},jl={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jl=[a("path",{fill:"currentColor",d:"M320 320V128h384v192h192v192H128V320h192zM128 576h768v320H128V576zm256-256h256.064V192H384v128z"},null,-1)],Xl=o(Ql,[["render",function(l,e,a,t,o,v){return r(),n("svg",jl,Jl)}],["__file","briefcase.vue"]]),Yl={name:"BrushFilled"},$l={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},le=[a("path",{fill:"currentColor",d:"M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128h-96zM192 512V128.064h640V512H192z"},null,-1)],ee=o(Yl,[["render",function(l,e,a,t,o,v){return r(),n("svg",$l,le)}],["__file","brush-filled.vue"]]),re={name:"Brush"},ne={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ae=[a("path",{fill:"currentColor",d:"M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64V448zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a663.872 663.872 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384h61.248zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168z"},null,-1)],te=o(re,[["render",function(l,e,a,t,o,v){return r(),n("svg",ne,ae)}],["__file","brush.vue"]]),oe={name:"Burger"},ve={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ue=[a("path",{fill:"currentColor",d:"M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H160zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44zM832 448a320 320 0 0 0-640 0h640zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704H512z"},null,-1)],ie=o(oe,[["render",function(l,e,a,t,o,v){return r(),n("svg",ve,ue)}],["__file","burger.vue"]]),he={name:"Calendar"},we={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ce=[a("path",{fill:"currentColor",d:"M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-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 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"},null,-1)],me=l("g",o(he,[["render",function(l,e,a,t,o,v){return r(),n("svg",we,ce)}],["__file","calendar.vue"]])),se={name:"CameraFilled"},fe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ze=[a("path",{fill:"currentColor",d:"M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224H160zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4zm0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1)],de=o(se,[["render",function(l,e,a,t,o,v){return r(),n("svg",fe,ze)}],["__file","camera-filled.vue"]]),ge={name:"Camera"},pe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},He=[a("path",{fill:"currentColor",d:"M896 256H128v576h768V256zm-199.424-64-32.064-64h-304.96l-32 64h369.024zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32zm416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448z"},null,-1)],Me=o(ge,[["render",function(l,e,a,t,o,v){return r(),n("svg",pe,He)}],["__file","camera.vue"]]),Ce={name:"CaretBottom"},xe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_e=[a("path",{fill:"currentColor",d:"m192 384 320 384 320-384z"},null,-1)],Ve=o(Ce,[["render",function(l,e,a,t,o,v){return r(),n("svg",xe,_e)}],["__file","caret-bottom.vue"]]),Be={name:"CaretLeft"},Le={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ae=[a("path",{fill:"currentColor",d:"M672 192 288 511.936 672 832z"},null,-1)],Se=o(Be,[["render",function(l,e,a,t,o,v){return r(),n("svg",Le,Ae)}],["__file","caret-left.vue"]]),qe={name:"CaretRight"},Fe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ke=[a("path",{fill:"currentColor",d:"M384 192v640l384-320.064z"},null,-1)],be=l("N",o(qe,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fe,ke)}],["__file","caret-right.vue"]])),ye={name:"CaretTop"},De={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Pe=[a("path",{fill:"currentColor",d:"M512 320 192 704h639.936z"},null,-1)],Re=l("e",o(ye,[["render",function(l,e,a,t,o,v){return r(),n("svg",De,Pe)}],["__file","caret-top.vue"]])),Te={name:"Cellphone"},Oe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ge=[a("path",{fill:"currentColor",d:"M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H256zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64zm128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64zm128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1)],Ue=o(Te,[["render",function(l,e,a,t,o,v){return r(),n("svg",Oe,Ge)}],["__file","cellphone.vue"]]),We={name:"ChatDotRound"},Ie={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ee=[a("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),a("path",{fill:"currentColor",d:"M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1)],Ne=o(We,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ie,Ee)}],["__file","chat-dot-round.vue"]]),Ze={name:"ChatDotSquare"},Ke={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qe=[a("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),a("path",{fill:"currentColor",d:"M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4zm-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4z"},null,-1)],je=o(Ze,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ke,Qe)}],["__file","chat-dot-square.vue"]]),Je={name:"ChatLineRound"},Xe={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ye=[a("path",{fill:"currentColor",d:"m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.056 461.056 0 0 1-206.912-48.384l-175.616 58.56z"},null,-1),a("path",{fill:"currentColor",d:"M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1)],$e=o(Je,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xe,Ye)}],["__file","chat-line-round.vue"]]),lr={name:"ChatLineSquare"},er={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rr=[a("path",{fill:"currentColor",d:"M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1),a("path",{fill:"currentColor",d:"M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1)],nr=o(lr,[["render",function(l,e,a,t,o,v){return r(),n("svg",er,rr)}],["__file","chat-line-square.vue"]]),ar={name:"ChatRound"},tr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},or=[a("path",{fill:"currentColor",d:"m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"},null,-1)],vr=o(ar,[["render",function(l,e,a,t,o,v){return r(),n("svg",tr,or)}],["__file","chat-round.vue"]]),ur={name:"ChatSquare"},ir={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hr=[a("path",{fill:"currentColor",d:"M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88L273.536 736zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128H296z"},null,-1)],wr=o(ur,[["render",function(l,e,a,t,o,v){return r(),n("svg",ir,hr)}],["__file","chat-square.vue"]]),cr={name:"Check"},mr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sr=[a("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"},null,-1)],fr=l("o",o(cr,[["render",function(l,e,a,t,o,v){return r(),n("svg",mr,sr)}],["__file","check.vue"]])),zr={name:"Checked"},dr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gr=[a("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160.064v64H704v-64zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024 311.616 537.28zM384 192V96h256v96H384z"},null,-1)],pr=o(zr,[["render",function(l,e,a,t,o,v){return r(),n("svg",dr,gr)}],["__file","checked.vue"]]),Hr={name:"Cherry"},Mr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cr=[a("path",{fill:"currentColor",d:"M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6zM288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320zm448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320z"},null,-1)],xr=o(Hr,[["render",function(l,e,a,t,o,v){return r(),n("svg",Mr,Cr)}],["__file","cherry.vue"]]),_r={name:"Chicken"},Vr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Br=[a("path",{fill:"currentColor",d:"M349.952 716.992 478.72 588.16a106.688 106.688 0 0 1-26.176-19.072 106.688 106.688 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112zm57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84zM244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52 3.52-56.32zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52-3.52 56.32z"},null,-1)],Lr=o(_r,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vr,Br)}],["__file","chicken.vue"]]),Ar={name:"ChromeFilled"},Sr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},qr=[a("path",{d:"M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.372 212.372 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67z",fill:"currentColor"},null,-1),a("path",{d:"M576.79 401.63a127.92 127.92 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128.005 128.005 0 0 0-2.16 127.44l1.24 2.13a127.906 127.906 0 0 0 46.36 46.61 127.907 127.907 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.984 127.984 0 0 0 .29-127.46 127.957 127.957 0 0 0-46.36-46.91z",fill:"currentColor"},null,-1),a("path",{d:"M394.45 333.96A213.336 213.336 0 0 1 512 298.67h369.58A426.503 426.503 0 0 0 512 85.34a425.598 425.598 0 0 0-171.74 35.98 425.644 425.644 0 0 0-142.62 102.22l118.14 204.63a213.397 213.397 0 0 1 78.67-94.21zm117.56 604.72H512zm-97.25-236.73a213.284 213.284 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.315 213.315 0 0 1-122.77-21.91z",fill:"currentColor"},null,-1)],Fr=o(Ar,[["render",function(l,e,a,t,o,v){return r(),n("svg",Sr,qr)}],["__file","chrome-filled.vue"]]),kr={name:"CircleCheckFilled"},br={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yr=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1)],Dr=l("I",o(kr,[["render",function(l,e,a,t,o,v){return r(),n("svg",br,yr)}],["__file","circle-check-filled.vue"]])),Pr={name:"CircleCheck"},Rr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tr=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("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"},null,-1)],Or=l("a",o(Pr,[["render",function(l,e,a,t,o,v){return r(),n("svg",Rr,Tr)}],["__file","circle-check.vue"]])),Gr={name:"CircleCloseFilled"},Ur={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wr=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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.336L512 457.664z"},null,-1)],Ir=l("c",o(Gr,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ur,Wr)}],["__file","circle-close-filled.vue"]])),Er={name:"CircleClose"},Nr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zr=[a("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.248L466.752 512z"},null,-1),a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1)],Kr=l("b",o(Er,[["render",function(l,e,a,t,o,v){return r(),n("svg",Nr,Zr)}],["__file","circle-close.vue"]])),Qr={name:"CirclePlusFilled"},jr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jr=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0v147.2z"},null,-1)],Xr=o(Qr,[["render",function(l,e,a,t,o,v){return r(),n("svg",jr,Jr)}],["__file","circle-plus-filled.vue"]]),Yr={name:"CirclePlus"},$r={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ln=[a("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),a("path",{fill:"currentColor",d:"M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0z"},null,-1),a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1)],en=o(Yr,[["render",function(l,e,a,t,o,v){return r(),n("svg",$r,ln)}],["__file","circle-plus.vue"]]),rn={name:"Clock"},nn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},an=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("path",{fill:"currentColor",d:"M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"},null,-1)],tn=l("f",o(rn,[["render",function(l,e,a,t,o,v){return r(),n("svg",nn,an)}],["__file","clock.vue"]])),on={name:"CloseBold"},vn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},un=[a("path",{fill:"currentColor",d:"M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496z"},null,-1)],hn=o(on,[["render",function(l,e,a,t,o,v){return r(),n("svg",vn,un)}],["__file","close-bold.vue"]]),wn={name:"Close"},cn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mn=[a("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"},null,-1)],sn=l("d",o(wn,[["render",function(l,e,a,t,o,v){return r(),n("svg",cn,mn)}],["__file","close.vue"]])),fn={name:"Cloudy"},zn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dn=[a("path",{fill:"currentColor",d:"M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1)],gn=o(fn,[["render",function(l,e,a,t,o,v){return r(),n("svg",zn,dn)}],["__file","cloudy.vue"]]),pn={name:"CoffeeCup"},Hn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Mn=[a("path",{fill:"currentColor",d:"M768 192a192 192 0 1 1-8 383.808A256.128 256.128 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v32zm0 64v256a128 128 0 1 0 0-256zM96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192H128z"},null,-1)],Cn=o(pn,[["render",function(l,e,a,t,o,v){return r(),n("svg",Hn,Mn)}],["__file","coffee-cup.vue"]]),xn={name:"Coffee"},_n={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vn=[a("path",{fill:"currentColor",d:"M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304L822.592 192zm-64.128 0 4.544-64H260.736l4.544 64h493.184zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64h6.784zm68.736 64 36.544 512H708.16l36.544-512H279.04z"},null,-1)],Bn=o(xn,[["render",function(l,e,a,t,o,v){return r(),n("svg",_n,Vn)}],["__file","coffee.vue"]]),Ln={name:"Coin"},An={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Sn=[a("path",{fill:"currentColor",d:"m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),a("path",{fill:"currentColor",d:"m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264z"},null,-1),a("path",{fill:"currentColor",d:"M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224zm0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160z"},null,-1)],qn=o(Ln,[["render",function(l,e,a,t,o,v){return r(),n("svg",An,Sn)}],["__file","coin.vue"]]),Fn={name:"ColdDrink"},kn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bn=[a("path",{fill:"currentColor",d:"M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.064 192.064 0 0 1 768 64zM656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928H299.008z"},null,-1)],yn=o(Fn,[["render",function(l,e,a,t,o,v){return r(),n("svg",kn,bn)}],["__file","cold-drink.vue"]]),Dn={name:"CollectionTag"},Pn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rn=[a("path",{fill:"currentColor",d:"M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"},null,-1)],Tn=o(Dn,[["render",function(l,e,a,t,o,v){return r(),n("svg",Pn,Rn)}],["__file","collection-tag.vue"]]),On={name:"Collection"},Gn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Un=[a("path",{fill:"currentColor",d:"M192 736h640V128H256a64 64 0 0 0-64 64v544zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64z"},null,-1),a("path",{fill:"currentColor",d:"M240 800a48 48 0 1 0 0 96h592v-96H240zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224zm144-608v250.88l96-76.8 96 76.8V128H384zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44V64z"},null,-1)],Wn=o(On,[["render",function(l,e,a,t,o,v){return r(),n("svg",Gn,Un)}],["__file","collection.vue"]]),In={name:"Comment"},En={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nn=[a("path",{fill:"currentColor",d:"M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zm-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112zM128 128v640h192v160l224-160h352V128H128z"},null,-1)],Zn=o(In,[["render",function(l,e,a,t,o,v){return r(),n("svg",En,Nn)}],["__file","comment.vue"]]),Kn={name:"Compass"},Qn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jn=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("path",{fill:"currentColor",d:"M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832z"},null,-1)],Jn=o(Kn,[["render",function(l,e,a,t,o,v){return r(),n("svg",Qn,jn)}],["__file","compass.vue"]]),Xn={name:"Connection"},Yn={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$n=[a("path",{fill:"currentColor",d:"M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192h192z"},null,-1),a("path",{fill:"currentColor",d:"M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.064 192.064 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192H384z"},null,-1)],la=o(Xn,[["render",function(l,e,a,t,o,v){return r(),n("svg",Yn,$n)}],["__file","connection.vue"]]),ea={name:"Coordinate"},ra={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},na=[a("path",{fill:"currentColor",d:"M480 512h64v320h-64z"},null,-1),a("path",{fill:"currentColor",d:"M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64zm64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128zm256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1)],aa=o(ea,[["render",function(l,e,a,t,o,v){return r(),n("svg",ra,na)}],["__file","coordinate.vue"]]),ta={name:"CopyDocument"},oa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},va=[a("path",{fill:"currentColor",d:"M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64h64z"},null,-1),a("path",{fill:"currentColor",d:"M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64H384zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64z"},null,-1)],ua=o(ta,[["render",function(l,e,a,t,o,v){return r(),n("svg",oa,va)}],["__file","copy-document.vue"]]),ia={name:"Cpu"},ha={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wa=[a("path",{fill:"currentColor",d:"M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H320zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128z"},null,-1),a("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32zm160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zm-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32zM64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32zm896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32zm0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32z"},null,-1)],ca=o(ia,[["render",function(l,e,a,t,o,v){return r(),n("svg",ha,wa)}],["__file","cpu.vue"]]),ma={name:"CreditCard"},sa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fa=[a("path",{fill:"currentColor",d:"M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.352 52.352 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.352 52.352 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.352 52.352 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.352 52.352 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416V324.096zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448-20.864 11.136-41.6 17.088-98.56 17.088H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.288 116.288 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448 20.864-11.136 41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384 11.136 20.864 17.088 41.6 17.088 98.56z"},null,-1),a("path",{fill:"currentColor",d:"M64 320h896v64H64v-64zm0 128h896v64H64v-64zm128 192h256v64H192z"},null,-1)],za=o(ma,[["render",function(l,e,a,t,o,v){return r(),n("svg",sa,fa)}],["__file","credit-card.vue"]]),da={name:"Crop"},ga={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pa=[a("path",{fill:"currentColor",d:"M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0v672z"},null,-1),a("path",{fill:"currentColor",d:"M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32z"},null,-1)],Ha=o(da,[["render",function(l,e,a,t,o,v){return r(),n("svg",ga,pa)}],["__file","crop.vue"]]),Ma={name:"DArrowLeft"},Ca={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xa=[a("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"},null,-1)],_a=l("p",o(Ma,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ca,xa)}],["__file","d-arrow-left.vue"]])),Va={name:"DArrowRight"},Ba={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},La=[a("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.688zm-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"},null,-1)],Aa=l("q",o(Va,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ba,La)}],["__file","d-arrow-right.vue"]])),Sa={name:"DCaret"},qa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fa=[a("path",{fill:"currentColor",d:"m512 128 288 320H224l288-320zM224 576h576L512 896 224 576z"},null,-1)],ka=o(Sa,[["render",function(l,e,a,t,o,v){return r(),n("svg",qa,Fa)}],["__file","d-caret.vue"]]),ba={name:"DataAnalysis"},ya={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Da=[a("path",{fill:"currentColor",d:"m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216zM832 192H192v512h640V192zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32zm160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32z"},null,-1)],Pa=o(ba,[["render",function(l,e,a,t,o,v){return r(),n("svg",ya,Da)}],["__file","data-analysis.vue"]]),Ra={name:"DataBoard"},Ta={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Oa=[a("path",{fill:"currentColor",d:"M32 128h960v64H32z"},null,-1),a("path",{fill:"currentColor",d:"M192 192v512h640V192H192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V128z"},null,-1),a("path",{fill:"currentColor",d:"M322.176 960H248.32l144.64-250.56 55.424 32L322.176 960zm453.888 0h-73.856L576 741.44l55.424-32L776.064 960z"},null,-1)],Ga=o(Ra,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ta,Oa)}],["__file","data-board.vue"]]),Ua={name:"DataLine"},Wa={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ia=[a("path",{fill:"currentColor",d:"M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192zM832 192H192v512h640V192zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"},null,-1)],Ea=o(Ua,[["render",function(l,e,a,t,o,v){return r(),n("svg",Wa,Ia)}],["__file","data-line.vue"]]),Na={name:"DeleteFilled"},Za={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ka=[a("path",{fill:"currentColor",d:"M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64h256zm64 0h192v-64H416v64zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32H192zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32zm192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32z"},null,-1)],Qa=o(Na,[["render",function(l,e,a,t,o,v){return r(),n("svg",Za,Ka)}],["__file","delete-filled.vue"]]),ja={name:"DeleteLocation"},Ja={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xa=[a("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),a("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),a("path",{fill:"currentColor",d:"M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32z"},null,-1)],Ya=o(ja,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ja,Xa)}],["__file","delete-location.vue"]]),$a={name:"Delete"},lt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},et=[a("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-32V256zm448-64v-64H416v64h192zM224 896h576V256H224v640zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32zm192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32z"},null,-1)],rt=l("P",o($a,[["render",function(l,e,a,t,o,v){return r(),n("svg",lt,et)}],["__file","delete.vue"]])),nt={name:"Dessert"},at={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tt=[a("path",{fill:"currentColor",d:"M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416zm287.104-32.064h193.792a143.808 143.808 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.808 143.808 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0h140.48zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736zM384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64z"},null,-1)],ot=o(nt,[["render",function(l,e,a,t,o,v){return r(),n("svg",at,tt)}],["__file","dessert.vue"]]),vt={name:"Discount"},ut={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},it=[a("path",{fill:"currentColor",d:"M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336V704zm0 64v128h576V768H224zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),a("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1)],ht=o(vt,[["render",function(l,e,a,t,o,v){return r(),n("svg",ut,it)}],["__file","discount.vue"]]),wt={name:"DishDot"},ct={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mt=[a("path",{fill:"currentColor",d:"m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.192 448.192 0 0 1 955.392 768H68.544A448.192 448.192 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64zm32-128h768a384 384 0 1 0-768 0zm447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256h127.68z"},null,-1)],st=o(wt,[["render",function(l,e,a,t,o,v){return r(),n("svg",ct,mt)}],["__file","dish-dot.vue"]]),ft={name:"Dish"},zt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dt=[a("path",{fill:"currentColor",d:"M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152zM128 704h768a384 384 0 1 0-768 0zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64z"},null,-1)],gt=o(ft,[["render",function(l,e,a,t,o,v){return r(),n("svg",zt,dt)}],["__file","dish.vue"]]),pt={name:"DocumentAdd"},Ht={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Mt=[a("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"},null,-1)],Ct=o(pt,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ht,Mt)}],["__file","document-add.vue"]]),xt={name:"DocumentChecked"},_t={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vt=[a("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312L478.4 646.144z"},null,-1)],Bt=o(xt,[["render",function(l,e,a,t,o,v){return r(),n("svg",_t,Vt)}],["__file","document-checked.vue"]]),Lt={name:"DocumentCopy"},At={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},St=[a("path",{fill:"currentColor",d:"M128 320v576h576V320H128zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zM960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32zM256 672h320v64H256v-64zm0-192h320v64H256v-64z"},null,-1)],qt=o(Lt,[["render",function(l,e,a,t,o,v){return r(),n("svg",At,St)}],["__file","document-copy.vue"]]),Ft={name:"DocumentDelete"},kt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bt=[a("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248 90.496-90.496z"},null,-1)],yt=o(Ft,[["render",function(l,e,a,t,o,v){return r(),n("svg",kt,bt)}],["__file","document-delete.vue"]]),Dt={name:"DocumentRemove"},Pt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rt=[a("path",{fill:"currentColor",d:"M805.504 320 640 154.496V320h165.504zM832 384H576V128H192v768h640V384zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm192 512h320v64H352v-64z"},null,-1)],Tt=o(Dt,[["render",function(l,e,a,t,o,v){return r(),n("svg",Pt,Rt)}],["__file","document-remove.vue"]]),Ot={name:"Document"},Gt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ut=[a("path",{fill:"currentColor",d:"M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h160v64H320v-64zm0 384h384v64H320v-64z"},null,-1)],Wt=l("O",o(Ot,[["render",function(l,e,a,t,o,v){return r(),n("svg",Gt,Ut)}],["__file","document.vue"]])),It={name:"Download"},Et={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nt=[a("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64v450.304z"},null,-1)],Zt=o(It,[["render",function(l,e,a,t,o,v){return r(),n("svg",Et,Nt)}],["__file","download.vue"]]),Kt={name:"Drizzling"},Qt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jt=[a("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM288 800h64v64h-64v-64zm192 0h64v64h-64v-64zm-96 96h64v64h-64v-64zm192 0h64v64h-64v-64zm96-96h64v64h-64v-64z"},null,-1)],Jt=o(Kt,[["render",function(l,e,a,t,o,v){return r(),n("svg",Qt,jt)}],["__file","drizzling.vue"]]),Xt={name:"EditPen"},Yt={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$t=[a("path",{d:"m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696L175.168 732.8zM455.04 229.248l193.92 112 56.704-98.112-193.984-112-56.64 98.112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336L104.32 708.8zm384 254.272v-64h448v64h-448z",fill:"currentColor"},null,-1)],lo=o(Xt,[["render",function(l,e,a,t,o,v){return r(),n("svg",Yt,$t)}],["__file","edit-pen.vue"]]),eo={name:"Edit"},ro={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},no=[a("path",{fill:"currentColor",d:"M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640V512z"},null,-1),a("path",{fill:"currentColor",d:"m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"},null,-1)],ao=o(eo,[["render",function(l,e,a,t,o,v){return r(),n("svg",ro,no)}],["__file","edit.vue"]]),to={name:"ElemeFilled"},oo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vo=[a("path",{fill:"currentColor",d:"M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112zm150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.688 330.688 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.552 47.552 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.304 234.304 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.552 47.552 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"},null,-1)],uo=o(to,[["render",function(l,e,a,t,o,v){return r(),n("svg",oo,vo)}],["__file","eleme-filled.vue"]]),io={name:"Eleme"},ho={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wo=[a("path",{fill:"currentColor",d:"M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24zm526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.232 63.232 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8l71.04-46.08z"},null,-1)],co=o(io,[["render",function(l,e,a,t,o,v){return r(),n("svg",ho,wo)}],["__file","eleme.vue"]]),mo={name:"ElementPlus"},so={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fo=[a("path",{d:"M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6c12.8-5.1 25.6-5.1 38.4 0 0 0 279 161.3 309.8 179.2 17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8zM714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4l220.1-128zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64l-2.5-38.4z",fill:"currentColor"},null,-1)],zo=o(mo,[["render",function(l,e,a,t,o,v){return r(),n("svg",so,fo)}],["__file","element-plus.vue"]]),go={name:"Expand"},po={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ho=[a("path",{fill:"currentColor",d:"M128 192h768v128H128V192zm0 256h512v128H128V448zm0 256h768v128H128V704zm576-352 192 160-192 128V352z"},null,-1)],Mo=o(go,[["render",function(l,e,a,t,o,v){return r(),n("svg",po,Ho)}],["__file","expand.vue"]]),Co={name:"Failed"},xo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_o=[a("path",{fill:"currentColor",d:"m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384v-64zm-320 0V96h256v96H384z"},null,-1)],Vo=o(Co,[["render",function(l,e,a,t,o,v){return r(),n("svg",xo,_o)}],["__file","failed.vue"]]),Bo={name:"Female"},Lo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ao=[a("path",{fill:"currentColor",d:"M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),a("path",{fill:"currentColor",d:"M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32z"},null,-1)],So=o(Bo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Lo,Ao)}],["__file","female.vue"]]),qo={name:"Files"},Fo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ko=[a("path",{fill:"currentColor",d:"M128 384v448h768V384H128zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32zm64-128h704v64H160zm96-128h512v64H256z"},null,-1)],bo=o(qo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fo,ko)}],["__file","files.vue"]]),yo={name:"Film"},Do={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Po=[a("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64h192z"},null,-1)],Ro=o(yo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Do,Po)}],["__file","film.vue"]]),To={name:"Filter"},Oo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Go=[a("path",{fill:"currentColor",d:"M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288L384 523.392z"},null,-1)],Uo=o(To,[["render",function(l,e,a,t,o,v){return r(),n("svg",Oo,Go)}],["__file","filter.vue"]]),Wo={name:"Finished"},Io={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Eo=[a("path",{fill:"currentColor",d:"M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2l203.968 152.96zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64H736zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64H608zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64H480z"},null,-1)],No=o(Wo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Io,Eo)}],["__file","finished.vue"]]),Zo={name:"FirstAidKit"},Ko={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qo=[a("path",{fill:"currentColor",d:"M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64H192zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),a("path",{fill:"currentColor",d:"M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0v96zM352 128v64h320v-64H352zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1)],jo=o(Zo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ko,Qo)}],["__file","first-aid-kit.vue"]]),Jo={name:"Flag"},Xo={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yo=[a("path",{fill:"currentColor",d:"M288 128h608L736 384l160 256H288v320h-96V64h96v64z"},null,-1)],$o=o(Jo,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xo,Yo)}],["__file","flag.vue"]]),lv={name:"Fold"},ev={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rv=[a("path",{fill:"currentColor",d:"M896 192H128v128h768V192zm0 256H384v128h512V448zm0 256H128v128h768V704zM320 384 128 512l192 128V384z"},null,-1)],nv=o(lv,[["render",function(l,e,a,t,o,v){return r(),n("svg",ev,rv)}],["__file","fold.vue"]]),av={name:"FolderAdd"},tv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ov=[a("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm384 416V416h64v128h128v64H544v128h-64V608H352v-64h128z"},null,-1)],vv=o(av,[["render",function(l,e,a,t,o,v){return r(),n("svg",tv,ov)}],["__file","folder-add.vue"]]),uv={name:"FolderChecked"},iv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hv=[a("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312L510.08 630.144z"},null,-1)],wv=o(uv,[["render",function(l,e,a,t,o,v){return r(),n("svg",iv,hv)}],["__file","folder-checked.vue"]]),cv={name:"FolderDelete"},mv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sv=[a("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248L466.752 576z"},null,-1)],fv=o(cv,[["render",function(l,e,a,t,o,v){return r(),n("svg",mv,sv)}],["__file","folder-delete.vue"]]),zv={name:"FolderOpened"},dv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gv=[a("path",{fill:"currentColor",d:"M878.08 448H241.92l-96 384h636.16l96-384zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384H832zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896z"},null,-1)],pv=o(zv,[["render",function(l,e,a,t,o,v){return r(),n("svg",dv,gv)}],["__file","folder-opened.vue"]]),Hv={name:"FolderRemove"},Mv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cv=[a("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32zm256 416h320v64H352v-64z"},null,-1)],xv=o(Hv,[["render",function(l,e,a,t,o,v){return r(),n("svg",Mv,Cv)}],["__file","folder-remove.vue"]]),_v={name:"Folder"},Vv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bv=[a("path",{fill:"currentColor",d:"M128 192v640h768V320H485.76L357.504 192H128zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32z"},null,-1)],Lv=o(_v,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vv,Bv)}],["__file","folder.vue"]]),Av={name:"Food"},Sv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qv=[a("path",{fill:"currentColor",d:"M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0zm128 0h192a96 96 0 0 0-192 0zm439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352zM672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32v-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288z"},null,-1)],Fv=o(Av,[["render",function(l,e,a,t,o,v){return r(),n("svg",Sv,qv)}],["__file","food.vue"]]),kv={name:"Football"},bv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yv=[a("path",{fill:"currentColor",d:"M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768z"},null,-1),a("path",{fill:"currentColor",d:"M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a385.984 385.984 0 0 1-80.448-91.648zm653.696-5.312a385.92 385.92 0 0 1-83.776 96.96l-32.512-56.384a322.923 322.923 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184zM465.984 445.248l11.136-63.104a323.584 323.584 0 0 0 69.76 0l11.136 63.104a387.968 387.968 0 0 1-92.032 0zm-62.72-12.8A381.824 381.824 0 0 1 320 396.544l32-55.424a319.885 319.885 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.824 381.824 0 0 1-83.328 35.84l-11.2-63.552A319.885 319.885 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.92 385.92 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072zm657.536.128a1442.759 1442.759 0 0 1-49.024 43.072 321.408 321.408 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408zM465.92 578.752a387.968 387.968 0 0 1 92.032 0l-11.136 63.104a323.584 323.584 0 0 0-69.76 0l-11.136-63.104zm-62.72 12.8 11.2 63.552a319.885 319.885 0 0 0-62.464 27.712L320 627.392a381.824 381.824 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.272 318.272 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"},null,-1)],Dv=o(kv,[["render",function(l,e,a,t,o,v){return r(),n("svg",bv,yv)}],["__file","football.vue"]]),Pv={name:"ForkSpoon"},Rv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tv=[a("path",{fill:"currentColor",d:"M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56zM672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0V572.48zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192z"},null,-1)],Ov=o(Pv,[["render",function(l,e,a,t,o,v){return r(),n("svg",Rv,Tv)}],["__file","fork-spoon.vue"]]),Gv={name:"Fries"},Uv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wv=[a("path",{fill:"currentColor",d:"M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096V224zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160h37.12zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.744 95.744 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160h-16zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128.128 128.128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132.405 132.405 0 0 1 672 510.464V512h-1.216zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480V288zm-128 96V224a32 32 0 0 0-64 0v160h64-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704H253.12z"},null,-1)],Iv=o(Gv,[["render",function(l,e,a,t,o,v){return r(),n("svg",Uv,Wv)}],["__file","fries.vue"]]),Ev={name:"FullScreen"},Nv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zv=[a("path",{fill:"currentColor",d:"m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64v.064zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64l-192 .192zM864 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-64v-.064z"},null,-1)],Kv=l("r",o(Ev,[["render",function(l,e,a,t,o,v){return r(),n("svg",Nv,Zv)}],["__file","full-screen.vue"]])),Qv={name:"GobletFull"},jv={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jv=[a("path",{fill:"currentColor",d:"M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320zm503.936 64H264.064a256.128 256.128 0 0 0 495.872 0zM544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4z"},null,-1)],Xv=o(Qv,[["render",function(l,e,a,t,o,v){return r(),n("svg",jv,Jv)}],["__file","goblet-full.vue"]]),Yv={name:"GobletSquareFull"},$v={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lu=[a("path",{fill:"currentColor",d:"M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256v142.912zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952.32 952.32 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848z"},null,-1)],eu=o(Yv,[["render",function(l,e,a,t,o,v){return r(),n("svg",$v,lu)}],["__file","goblet-square-full.vue"]]),ru={name:"GobletSquare"},nu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},au=[a("path",{fill:"currentColor",d:"M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912zM256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256v191.68z"},null,-1)],tu=o(ru,[["render",function(l,e,a,t,o,v){return r(),n("svg",nu,au)}],["__file","goblet-square.vue"]]),ou={name:"Goblet"},vu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},uu=[a("path",{fill:"currentColor",d:"M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4zM256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320z"},null,-1)],iu=o(ou,[["render",function(l,e,a,t,o,v){return r(),n("svg",vu,uu)}],["__file","goblet.vue"]]),hu={name:"GoldMedal"},wu={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},cu=[a("path",{d:"m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16zM640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128h.01zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a359.844 359.844 0 0 0-32.36 4.79V128h128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128H384zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98z",fill:"currentColor"},null,-1),a("path",{d:"M544 480H416v64h64v192h-64v64h192v-64h-64z",fill:"currentColor"},null,-1)],mu=o(hu,[["render",function(l,e,a,t,o,v){return r(),n("svg",wu,cu)}],["__file","gold-medal.vue"]]),su={name:"GoodsFilled"},fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zu=[a("path",{fill:"currentColor",d:"M192 352h640l64 544H128l64-544zm128 224h64V448h-64v128zm320 0h64V448h-64v128zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0z"},null,-1)],du=o(su,[["render",function(l,e,a,t,o,v){return r(),n("svg",fu,zu)}],["__file","goods-filled.vue"]]),gu={name:"Goods"},pu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hu=[a("path",{fill:"currentColor",d:"M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96z"},null,-1)],Mu=o(gu,[["render",function(l,e,a,t,o,v){return r(),n("svg",pu,Hu)}],["__file","goods.vue"]]),Cu={name:"Grape"},xu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_u=[a("path",{fill:"currentColor",d:"M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64v67.2zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1)],Vu=o(Cu,[["render",function(l,e,a,t,o,v){return r(),n("svg",xu,_u)}],["__file","grape.vue"]]),Bu={name:"Grid"},Lu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Au=[a("path",{fill:"currentColor",d:"M640 384v256H384V384h256zm64 0h192v256H704V384zm-64 512H384V704h256v192zm64 0V704h192v192H704zm-64-768v192H384V128h256zm64 0h192v192H704V128zM320 384v256H128V384h192zm0 512H128V704h192v192zm0-768v192H128V128h192z"},null,-1)],Su=o(Bu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Lu,Au)}],["__file","grid.vue"]]),qu={name:"Guide"},Fu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ku=[a("path",{fill:"currentColor",d:"M640 608h-64V416h64v192zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768h64zM384 608V416h64v192h-64zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32v160z"},null,-1),a("path",{fill:"currentColor",d:"m220.8 256-71.232 80 71.168 80H768V256H220.8zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192zm678.784 496-71.104 80H266.816V608h547.2l71.168 80zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"},null,-1)],bu=o(qu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fu,ku)}],["__file","guide.vue"]]),yu={name:"Handbag"},Du={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Pu=[a("path",{d:"M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01zM421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5zM832 896H192V320h128v128h64V320h256v128h64V320h128v576z",fill:"currentColor"},null,-1)],Ru=o(yu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Du,Pu)}],["__file","handbag.vue"]]),Tu={name:"Headset"},Ou={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gu=[a("path",{fill:"currentColor",d:"M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848zM896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0V640zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0z"},null,-1)],Uu=o(Tu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ou,Gu)}],["__file","headset.vue"]]),Wu={name:"HelpFilled"},Iu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Eu=[a("path",{fill:"currentColor",d:"M926.784 480H701.312A192.512 192.512 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480zm0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.512 192.512 0 0 0 701.312 544h225.472zM97.28 544h225.472A192.512 192.512 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.512 192.512 0 0 0 322.688 480H97.216z"},null,-1)],Nu=o(Wu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Iu,Eu)}],["__file","help-filled.vue"]]),Zu={name:"Help"},Ku={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qu=[a("path",{fill:"currentColor",d:"m759.936 805.248-90.944-91.008A254.912 254.912 0 0 1 512 768a254.912 254.912 0 0 1-156.992-53.76l-90.944 91.008A382.464 382.464 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752zm45.312-45.312A382.464 382.464 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512c0 59.136-20.096 113.6-53.76 156.992l91.008 90.944zm-45.312-541.184A382.464 382.464 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.912 254.912 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76l90.944-91.008zm-541.184 45.312A382.464 382.464 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.912 254.912 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992l-91.008-90.944zm417.28 394.496a194.56 194.56 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.232 191.232 0 0 0-67.968-146.56A191.296 191.296 0 0 0 512 320a191.232 191.232 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.232 191.232 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1)],ju=o(Zu,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ku,Qu)}],["__file","help.vue"]]),Ju={name:"Hide"},Xu={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yu=[a("path",{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.2L371.2 588.8ZM889.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",fill:"currentColor"},null,-1),a("path",{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",fill:"currentColor"},null,-1)],$u=l("h",o(Ju,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xu,Yu)}],["__file","hide.vue"]])),li={name:"Histogram"},ei={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ri=[a("path",{fill:"currentColor",d:"M416 896V128h192v768H416zm-288 0V448h192v448H128zm576 0V320h192v576H704z"},null,-1)],ni=o(li,[["render",function(l,e,a,t,o,v){return r(),n("svg",ei,ri)}],["__file","histogram.vue"]]),ai={name:"HomeFilled"},ti={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},oi=[a("path",{fill:"currentColor",d:"M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"},null,-1)],vi=o(ai,[["render",function(l,e,a,t,o,v){return r(),n("svg",ti,oi)}],["__file","home-filled.vue"]]),ui={name:"HotWater"},ii={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hi=[a("path",{fill:"currentColor",d:"M273.067 477.867h477.866V409.6H273.067v68.267zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2H273.067zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134zM512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133zM375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133zm273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133zM170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267z"},null,-1)],wi=o(ui,[["render",function(l,e,a,t,o,v){return r(),n("svg",ii,hi)}],["__file","hot-water.vue"]]),ci={name:"House"},mi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},si=[a("path",{fill:"currentColor",d:"M192 413.952V896h640V413.952L512 147.328 192 413.952zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576z"},null,-1)],fi=o(ci,[["render",function(l,e,a,t,o,v){return r(),n("svg",mi,si)}],["__file","house.vue"]]),zi={name:"IceCreamRound"},di={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gi=[a("path",{fill:"currentColor",d:"m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248L398.848 670.4zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0z"},null,-1)],pi=o(zi,[["render",function(l,e,a,t,o,v){return r(),n("svg",di,gi)}],["__file","ice-cream-round.vue"]]),Hi={name:"IceCreamSquare"},Mi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ci=[a("path",{fill:"currentColor",d:"M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h64zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96h-64zm-64 0h-64v160a32 32 0 1 0 64 0V704z"},null,-1)],xi=o(Hi,[["render",function(l,e,a,t,o,v){return r(),n("svg",Mi,Ci)}],["__file","ice-cream-square.vue"]]),_i={name:"IceCream"},Vi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bi=[a("path",{fill:"currentColor",d:"M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.128 208.128 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448h.64zm64.256 0h286.208a144 144 0 0 0-286.208 0zm351.36 0h286.272a144 144 0 0 0-286.272 0zm-294.848 64 271.808 396.608L778.24 512H249.408zM511.68 352.64a207.872 207.872 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56z"},null,-1)],Li=o(_i,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vi,Bi)}],["__file","ice-cream.vue"]]),Ai={name:"IceDrink"},Si={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qi=[a("path",{fill:"currentColor",d:"M512 448v128h239.68l16.064-128H512zm-64 0H256.256l16.064 128H448V448zm64-255.36V384h247.744A256.128 256.128 0 0 0 512 192.64zm-64 8.064A256.448 256.448 0 0 0 264.256 384H448V200.704zm64-72.064A320.128 320.128 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.384 320.384 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32v32.64zM743.68 640H280.32l32.128 256h399.104l32.128-256z"},null,-1)],Fi=o(Ai,[["render",function(l,e,a,t,o,v){return r(),n("svg",Si,qi)}],["__file","ice-drink.vue"]]),ki={name:"IceTea"},bi={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yi=[a("path",{fill:"currentColor",d:"M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352zM264.064 256h495.872a256.128 256.128 0 0 0-495.872 0zm495.424 256H264.512l48 384h398.976l48-384zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32zm160 192h64v64h-64v-64zm192 64h64v64h-64v-64zm-128 64h64v64h-64v-64zm64-192h64v64h-64v-64z"},null,-1)],Di=o(ki,[["render",function(l,e,a,t,o,v){return r(),n("svg",bi,yi)}],["__file","ice-tea.vue"]]),Pi={name:"InfoFilled"},Ri={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ti=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64zm67.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.344zM590.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"},null,-1)],Oi=l("i",o(Pi,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ri,Ti)}],["__file","info-filled.vue"]])),Gi={name:"Iphone"},Ui={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wi=[a("path",{fill:"currentColor",d:"M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768H224zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64v544zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96H256zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0z"},null,-1)],Ii=o(Gi,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ui,Wi)}],["__file","iphone.vue"]]),Ei={name:"Key"},Ni={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zi=[a("path",{fill:"currentColor",d:"M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064zM512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384z"},null,-1)],Ki=o(Ei,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ni,Zi)}],["__file","key.vue"]]),Qi={name:"KnifeFork"},ji={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ji=[a("path",{fill:"currentColor",d:"M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56zm384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256 21.312 81.152 32 177.152 32 288H640z"},null,-1)],Xi=o(Qi,[["render",function(l,e,a,t,o,v){return r(),n("svg",ji,Ji)}],["__file","knife-fork.vue"]]),Yi={name:"Lightning"},$i={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lh=[a("path",{fill:"currentColor",d:"M288 671.36v64.128A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"},null,-1),a("path",{fill:"currentColor",d:"M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736H416z"},null,-1)],eh=o(Yi,[["render",function(l,e,a,t,o,v){return r(),n("svg",$i,lh)}],["__file","lightning.vue"]]),rh={name:"Link"},nh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ah=[a("path",{fill:"currentColor",d:"M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496 45.248 45.248zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152 625.152 353.6z"},null,-1)],th=o(rh,[["render",function(l,e,a,t,o,v){return r(),n("svg",nh,ah)}],["__file","link.vue"]]),oh={name:"List"},vh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},uh=[a("path",{fill:"currentColor",d:"M704 192h160v736H160V192h160v64h384v-64zM288 512h448v-64H288v64zm0 256h448v-64H288v64zm96-576V96h256v96H384z"},null,-1)],ih=o(oh,[["render",function(l,e,a,t,o,v){return r(),n("svg",vh,uh)}],["__file","list.vue"]]),hh={name:"Loading"},wh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ch=[a("path",{fill:"currentColor",d:"M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.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 0zm-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"},null,-1)],mh=l("l",o(hh,[["render",function(l,e,a,t,o,v){return r(),n("svg",wh,ch)}],["__file","loading.vue"]])),sh={name:"LocationFilled"},fh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zh=[a("path",{fill:"currentColor",d:"M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928zm0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6z"},null,-1)],dh=o(sh,[["render",function(l,e,a,t,o,v){return r(),n("svg",fh,zh)}],["__file","location-filled.vue"]]),gh={name:"LocationInformation"},ph={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hh=[a("path",{fill:"currentColor",d:"M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1),a("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),a("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1)],Mh=o(gh,[["render",function(l,e,a,t,o,v){return r(),n("svg",ph,Hh)}],["__file","location-information.vue"]]),Ch={name:"Location"},xh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_h=[a("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),a("path",{fill:"currentColor",d:"M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192zm0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320z"},null,-1)],Vh=o(Ch,[["render",function(l,e,a,t,o,v){return r(),n("svg",xh,_h)}],["__file","location.vue"]]),Bh={name:"Lock"},Lh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ah=[a("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),a("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm192-160v-64a192 192 0 1 0-384 0v64h384zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64z"},null,-1)],Sh=o(Bh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Lh,Ah)}],["__file","lock.vue"]]),qh={name:"Lollipop"},Fh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kh=[a("path",{fill:"currentColor",d:"M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0h1.28zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696zm105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744zm-54.464-36.032a321.92 321.92 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"},null,-1)],bh=o(qh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fh,kh)}],["__file","lollipop.vue"]]),yh={name:"MagicStick"},Dh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ph=[a("path",{fill:"currentColor",d:"M512 64h64v192h-64V64zm0 576h64v192h-64V640zM160 480v-64h192v64H160zm576 0v-64h192v64H736zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248L657.152 606.4zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248-316.8 316.8zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248L702.4 334.848z"},null,-1)],Rh=o(yh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Dh,Ph)}],["__file","magic-stick.vue"]]),Th={name:"Magnet"},Oh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gh=[a("path",{fill:"currentColor",d:"M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64h128zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0z"},null,-1)],Uh=o(Th,[["render",function(l,e,a,t,o,v){return r(),n("svg",Oh,Gh)}],["__file","magnet.vue"]]),Wh={name:"Male"},Ih={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Eh=[a("path",{fill:"currentColor",d:"M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450zm0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5zm253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125z"},null,-1),a("path",{fill:"currentColor",d:"M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125z"},null,-1),a("path",{fill:"currentColor",d:"M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"},null,-1)],Nh=o(Wh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ih,Eh)}],["__file","male.vue"]]),Zh={name:"Management"},Kh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qh=[a("path",{fill:"currentColor",d:"M576 128v288l96-96 96 96V128h128v768H320V128h256zm-448 0h128v768H128V128z"},null,-1)],jh=o(Zh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Kh,Qh)}],["__file","management.vue"]]),Jh={name:"MapLocation"},Xh={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yh=[a("path",{fill:"currentColor",d:"M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416zM512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544z"},null,-1),a("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256zm345.6 192L960 960H672v-64H352v64H64l102.4-256h691.2zm-68.928 0H235.328l-76.8 192h706.944l-76.8-192z"},null,-1)],$h=o(Jh,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xh,Yh)}],["__file","map-location.vue"]]),lw={name:"Medal"},ew={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rw=[a("path",{fill:"currentColor",d:"M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),a("path",{fill:"currentColor",d:"M576 128H448v200a286.72 286.72 0 0 1 64-8c19.52 0 40.832 2.688 64 8V128zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128H640zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92V128zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96-56.896 0-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64z"},null,-1)],nw=o(lw,[["render",function(l,e,a,t,o,v){return r(),n("svg",ew,rw)}],["__file","medal.vue"]]),aw={name:"Memo"},tw={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ow=[a("path",{d:"M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1),a("path",{d:"M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01zM192 896V128h96v768h-96zm640 0H352V128h480v768z",fill:"currentColor"},null,-1),a("path",{d:"M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32zm0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32z",fill:"currentColor"},null,-1)],vw=o(aw,[["render",function(l,e,a,t,o,v){return r(),n("svg",tw,ow)}],["__file","memo.vue"]]),uw={name:"Menu"},iw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hw=[a("path",{fill:"currentColor",d:"M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32H608zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H160zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32H608z"},null,-1)],ww=o(uw,[["render",function(l,e,a,t,o,v){return r(),n("svg",iw,hw)}],["__file","menu.vue"]]),cw={name:"MessageBox"},mw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sw=[a("path",{fill:"currentColor",d:"M288 384h448v64H288v-64zm96-128h256v64H384v-64zM131.456 512H384v128h256V512h252.544L721.856 192H302.144L131.456 512zM896 576H704v128H320V576H128v256h768V576zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128z"},null,-1)],fw=o(cw,[["render",function(l,e,a,t,o,v){return r(),n("svg",mw,sw)}],["__file","message-box.vue"]]),zw={name:"Message"},dw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gw=[a("path",{fill:"currentColor",d:"M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224H128zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64z"},null,-1),a("path",{fill:"currentColor",d:"M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224h784zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224H205.056z"},null,-1)],pw=o(zw,[["render",function(l,e,a,t,o,v){return r(),n("svg",dw,gw)}],["__file","message.vue"]]),Hw={name:"Mic"},Mw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cw=[a("path",{fill:"currentColor",d:"M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64h96zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128h-96z"},null,-1)],xw=o(Hw,[["render",function(l,e,a,t,o,v){return r(),n("svg",Mw,Cw)}],["__file","mic.vue"]]),_w={name:"Microphone"},Vw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bw=[a("path",{fill:"currentColor",d:"M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128zm0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64zm-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64z"},null,-1)],Lw=o(_w,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vw,Bw)}],["__file","microphone.vue"]]),Aw={name:"MilkTea"},Sw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qw=[a("path",{fill:"currentColor",d:"M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128h192zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320H276.48zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64zm493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12z"},null,-1)],Fw=o(Aw,[["render",function(l,e,a,t,o,v){return r(),n("svg",Sw,qw)}],["__file","milk-tea.vue"]]),kw={name:"Minus"},bw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},yw=[a("path",{fill:"currentColor",d:"M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"},null,-1)],Dw=l("A",o(kw,[["render",function(l,e,a,t,o,v){return r(),n("svg",bw,yw)}],["__file","minus.vue"]])),Pw={name:"Money"},Rw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tw=[a("path",{fill:"currentColor",d:"M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640h64z"},null,-1),a("path",{fill:"currentColor",d:"M768 192H128v448h640V192zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.056 29.056 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.056 29.056 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"},null,-1),a("path",{fill:"currentColor",d:"M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320zm0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192z"},null,-1)],Ow=o(Pw,[["render",function(l,e,a,t,o,v){return r(),n("svg",Rw,Tw)}],["__file","money.vue"]]),Gw={name:"Monitor"},Uw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ww=[a("path",{fill:"currentColor",d:"M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H544zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H192z"},null,-1)],Iw=o(Gw,[["render",function(l,e,a,t,o,v){return r(),n("svg",Uw,Ww)}],["__file","monitor.vue"]]),Ew={name:"MoonNight"},Nw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zw=[a("path",{fill:"currentColor",d:"M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.256 448.256 0 0 1 384 512zM171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"},null,-1),a("path",{fill:"currentColor",d:"M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"},null,-1)],Kw=o(Ew,[["render",function(l,e,a,t,o,v){return r(),n("svg",Nw,Zw)}],["__file","moon-night.vue"]]),Qw={name:"Moon"},jw={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jw=[a("path",{fill:"currentColor",d:"M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 390.592 390.592 0 0 0-17.408 16.384zm181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696z"},null,-1)],Xw=o(Qw,[["render",function(l,e,a,t,o,v){return r(),n("svg",jw,Jw)}],["__file","moon.vue"]]),Yw={name:"MoreFilled"},$w={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},lc=[a("path",{fill:"currentColor",d:"M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224z"},null,-1)],ec=l("E",o(Yw,[["render",function(l,e,a,t,o,v){return r(),n("svg",$w,lc)}],["__file","more-filled.vue"]])),rc={name:"More"},nc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ac=[a("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-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224zm0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"},null,-1)],tc=l("C",o(rc,[["render",function(l,e,a,t,o,v){return r(),n("svg",nc,ac)}],["__file","more.vue"]])),oc={name:"MostlyCloudy"},vc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},uc=[a("path",{fill:"currentColor",d:"M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.808 207.808 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048zm15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.808 271.808 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72z"},null,-1)],ic=o(oc,[["render",function(l,e,a,t,o,v){return r(),n("svg",vc,uc)}],["__file","mostly-cloudy.vue"]]),hc={name:"Mouse"},wc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cc=[a("path",{fill:"currentColor",d:"M438.144 256c-68.352 0-92.736 4.672-117.76 18.112-20.096 10.752-35.52 26.176-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76 10.752 20.096 26.176 35.52 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112 20.096-10.752 35.52-26.176 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.464 110.464 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256H438.144zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.464 174.464 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.464 174.464 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.464 174.464 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"},null,-1),a("path",{fill:"currentColor",d:"M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32zm32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96v64z"},null,-1)],mc=o(hc,[["render",function(l,e,a,t,o,v){return r(),n("svg",wc,cc)}],["__file","mouse.vue"]]),sc={name:"Mug"},fc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zc=[a("path",{fill:"currentColor",d:"M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64zm64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32H800z"},null,-1)],dc=o(sc,[["render",function(l,e,a,t,o,v){return r(),n("svg",fc,zc)}],["__file","mug.vue"]]),gc={name:"MuteNotification"},pc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hc=[a("path",{fill:"currentColor",d:"m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64H241.216zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.128 320.128 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.552 319.552 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0z"},null,-1),a("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1)],Mc=o(gc,[["render",function(l,e,a,t,o,v){return r(),n("svg",pc,Hc)}],["__file","mute-notification.vue"]]),Cc={name:"Mute"},xc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_c=[a("path",{fill:"currentColor",d:"m412.16 592.128-45.44 45.44A191.232 191.232 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128zm51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528l47.808-47.808zM314.88 779.968l46.144-46.08A222.976 222.976 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032zM266.752 737.6A286.976 286.976 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288L266.752 737.6z"},null,-1),a("path",{fill:"currentColor",d:"M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056l-704 708.544z"},null,-1)],Vc=o(Cc,[["render",function(l,e,a,t,o,v){return r(),n("svg",xc,_c)}],["__file","mute.vue"]]),Bc={name:"NoSmoking"},Lc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ac=[a("path",{fill:"currentColor",d:"M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256l-64 64zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744l64-64zM768 576v128h128V576H768zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1)],Sc=o(Bc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Lc,Ac)}],["__file","no-smoking.vue"]]),qc={name:"Notebook"},Fc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},kc=[a("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32zm0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1)],bc=o(qc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fc,kc)}],["__file","notebook.vue"]]),yc={name:"Notification"},Dc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Pc=[a("path",{fill:"currentColor",d:"M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128h256z"},null,-1),a("path",{fill:"currentColor",d:"M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"},null,-1)],Rc=o(yc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Dc,Pc)}],["__file","notification.vue"]]),Tc={name:"Odometer"},Oc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gc=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("path",{fill:"currentColor",d:"M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0z"},null,-1),a("path",{fill:"currentColor",d:"M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928z"},null,-1)],Uc=o(Tc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Oc,Gc)}],["__file","odometer.vue"]]),Wc={name:"OfficeBuilding"},Ic={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ec=[a("path",{fill:"currentColor",d:"M192 128v704h384V128H192zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M256 256h256v64H256v-64zm0 192h256v64H256v-64zm0 192h256v64H256v-64zm384-128h128v64H640v-64zm0 128h128v64H640v-64zM64 832h896v64H64v-64z"},null,-1),a("path",{fill:"currentColor",d:"M640 384v448h192V384H640zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32z"},null,-1)],Nc=o(Wc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ic,Ec)}],["__file","office-building.vue"]]),Zc={name:"Open"},Kc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qc=[a("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),a("path",{fill:"currentColor",d:"M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1)],jc=o(Zc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Kc,Qc)}],["__file","open.vue"]]),Jc={name:"Operation"},Xc={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Yc=[a("path",{fill:"currentColor",d:"M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64h261.44zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64h453.44zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64h133.44z"},null,-1)],$c=o(Jc,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xc,Yc)}],["__file","operation.vue"]]),lm={name:"Opportunity"},em={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rm=[a("path",{fill:"currentColor",d:"M384 960v-64h192.064v64H384zm448-544a350.656 350.656 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.552 351.552 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416zm-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288h64z"},null,-1)],nm=o(lm,[["render",function(l,e,a,t,o,v){return r(),n("svg",em,rm)}],["__file","opportunity.vue"]]),am={name:"Orange"},tm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},om=[a("path",{fill:"currentColor",d:"M544 894.72a382.336 382.336 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.336 382.336 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024l182.976 182.912zM894.656 480a382.336 382.336 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024h258.688zm-134.72-261.248A382.336 382.336 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696l182.912-182.976zM480 129.344a382.336 382.336 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696V129.344zm-261.248 134.72A382.336 382.336 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024L218.752 264.064zM129.344 544a382.336 382.336 0 0 0 89.408 215.936l182.976-182.912A127.232 127.232 0 0 1 388.032 544H129.344zm134.72 261.248A382.336 382.336 0 0 0 480 894.656V635.968a127.232 127.232 0 0 1-33.024-13.696L264.064 805.248zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896zm0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128z"},null,-1)],vm=o(am,[["render",function(l,e,a,t,o,v){return r(),n("svg",tm,om)}],["__file","orange.vue"]]),um={name:"Paperclip"},im={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},hm=[a("path",{fill:"currentColor",d:"M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744l294.144-294.208z"},null,-1)],wm=l("R",o(um,[["render",function(l,e,a,t,o,v){return r(),n("svg",im,hm)}],["__file","paperclip.vue"]])),cm={name:"PartlyCloudy"},mm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},sm=[a("path",{fill:"currentColor",d:"M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872zm-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"},null,-1),a("path",{fill:"currentColor",d:"M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6003.84 6003.84 0 0 0-49.28 41.408z"},null,-1)],fm=o(cm,[["render",function(l,e,a,t,o,v){return r(),n("svg",mm,sm)}],["__file","partly-cloudy.vue"]]),zm={name:"Pear"},dm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},gm=[a("path",{fill:"currentColor",d:"M542.336 258.816a443.255 443.255 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.688 162.688 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.688 162.688 0 0 0-130.112-133.12zm-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a316.608 316.608 0 0 0-9.792 15.104 226.688 226.688 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"},null,-1)],pm=o(zm,[["render",function(l,e,a,t,o,v){return r(),n("svg",dm,gm)}],["__file","pear.vue"]]),Hm={name:"PhoneFilled"},Mm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Cm=[a("path",{fill:"currentColor",d:"M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048z"},null,-1)],xm=o(Hm,[["render",function(l,e,a,t,o,v){return r(),n("svg",Mm,Cm)}],["__file","phone-filled.vue"]]),_m={name:"Phone"},Vm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Bm=[a("path",{fill:"currentColor",d:"M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472L139.84 402.304zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192zm0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384z"},null,-1)],Lm=o(_m,[["render",function(l,e,a,t,o,v){return r(),n("svg",Vm,Bm)}],["__file","phone.vue"]]),Am={name:"PictureFilled"},Sm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},qm=[a("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 32H96zm315.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.112zM256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384z"},null,-1)],Fm=l("J",o(Am,[["render",function(l,e,a,t,o,v){return r(),n("svg",Sm,qm)}],["__file","picture-filled.vue"]])),km={name:"PictureRounded"},bm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ym=[a("path",{fill:"currentColor",d:"M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768zm0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896z"},null,-1),a("path",{fill:"currentColor",d:"M640 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"},null,-1)],Dm=o(km,[["render",function(l,e,a,t,o,v){return r(),n("svg",bm,ym)}],["__file","picture-rounded.vue"]]),Pm={name:"Picture"},Rm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Tm=[a("path",{fill:"currentColor",d:"M160 160v704h704V160H160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64zM185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952L185.408 876.992z"},null,-1)],Om=o(Pm,[["render",function(l,e,a,t,o,v){return r(),n("svg",Rm,Tm)}],["__file","picture.vue"]]),Gm={name:"PieChart"},Um={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Wm=[a("path",{fill:"currentColor",d:"M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.128 384.128 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.128 448.128 0 0 1 448 68.48z"},null,-1),a("path",{fill:"currentColor",d:"M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28zM512 64V33.152A448 448 0 0 1 990.848 512H512V64z"},null,-1)],Im=o(Gm,[["render",function(l,e,a,t,o,v){return r(),n("svg",Um,Wm)}],["__file","pie-chart.vue"]]),Em={name:"Place"},Nm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Zm=[a("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512z"},null,-1),a("path",{fill:"currentColor",d:"M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912z"},null,-1)],Km=o(Em,[["render",function(l,e,a,t,o,v){return r(),n("svg",Nm,Zm)}],["__file","place.vue"]]),Qm={name:"Platform"},jm={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Jm=[a("path",{fill:"currentColor",d:"M448 832v-64h128v64h192v64H256v-64h192zM128 704V128h768v576H128z"},null,-1)],Xm=o(Qm,[["render",function(l,e,a,t,o,v){return r(),n("svg",jm,Jm)}],["__file","platform.vue"]]),Ym={name:"Plus"},$m={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ls=[a("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-64h352z"},null,-1)],es=l("B",o(Ym,[["render",function(l,e,a,t,o,v){return r(),n("svg",$m,ls)}],["__file","plus.vue"]])),rs={name:"Pointer"},ns={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},as=[a("path",{fill:"currentColor",d:"M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.272 94.272 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128zM359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.272 158.272 0 0 1 185.984 8.32L359.04 556.8z"},null,-1)],ts=o(rs,[["render",function(l,e,a,t,o,v){return r(),n("svg",ns,as)}],["__file","pointer.vue"]]),os={name:"Position"},vs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},us=[a("path",{fill:"currentColor",d:"m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88 249.6 417.088zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992l-391.424-52.736z"},null,-1)],is=o(os,[["render",function(l,e,a,t,o,v){return r(),n("svg",vs,us)}],["__file","position.vue"]]),hs={name:"Postcard"},ws={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},cs=[a("path",{fill:"currentColor",d:"M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32H160zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96z"},null,-1),a("path",{fill:"currentColor",d:"M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128zM288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32zm0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1)],ms=o(hs,[["render",function(l,e,a,t,o,v){return r(),n("svg",ws,cs)}],["__file","postcard.vue"]]),ss={name:"Pouring"},fs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},zs=[a("path",{fill:"currentColor",d:"m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672zM959.552 480a256 256 0 0 1-256 256h-400A239.808 239.808 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480zM224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32zm192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32z"},null,-1)],ds=o(ss,[["render",function(l,e,a,t,o,v){return r(),n("svg",fs,zs)}],["__file","pouring.vue"]]),gs={name:"Present"},ps={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Hs=[a("path",{fill:"currentColor",d:"M480 896V640H192v-64h288V320H192v576h288zm64 0h288V320H544v256h288v64H544v256zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V256z"},null,-1),a("path",{fill:"currentColor",d:"M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32z"},null,-1),a("path",{fill:"currentColor",d:"M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),a("path",{fill:"currentColor",d:"M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1)],Ms=o(gs,[["render",function(l,e,a,t,o,v){return r(),n("svg",ps,Hs)}],["__file","present.vue"]]),Cs={name:"PriceTag"},xs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},_s=[a("path",{fill:"currentColor",d:"M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0z"},null,-1),a("path",{fill:"currentColor",d:"M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1)],Vs=o(Cs,[["render",function(l,e,a,t,o,v){return r(),n("svg",xs,_s)}],["__file","price-tag.vue"]]),Bs={name:"Printer"},Ls={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},As=[a("path",{fill:"currentColor",d:"M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.056 29.056 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.056 29.056 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256V768zm64-192v320h384V576H320zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.296 23.296 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.296 23.296 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704h128zm64-448h384V128H320v128zm-64 128h64v64h-64v-64zm128 0h64v64h-64v-64z"},null,-1)],Ss=o(Bs,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ls,As)}],["__file","printer.vue"]]),qs={name:"Promotion"},Fs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ks=[a("path",{fill:"currentColor",d:"m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472 64 448zm256 512V657.024L512 768 320 960z"},null,-1)],bs=o(qs,[["render",function(l,e,a,t,o,v){return r(),n("svg",Fs,ks)}],["__file","promotion.vue"]]),ys={name:"QuartzWatch"},Ds={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Ps=[a("path",{d:"M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51-8.67.32-16.17 3.66-22.5 10.02-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5c3.01-11.65.51-22.15-7.49-31.49v-.01zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.67 8.99-23.01zm6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01-.32-8.67-3.66-16.16-10.02-22.5-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01 3.35 11.99 10.85 19.49 22.5 22.5zm242.94 0c11.67-3.03 19.01-10.37 22.02-22.02 3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5c-6.36 6.34-9.7 13.84-10.02 22.5-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49zM512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99zm183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01z",fill:"currentColor"},null,-1),a("path",{d:"M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5zM416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68V128zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68V896zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768z",fill:"currentColor"},null,-1),a("path",{d:"M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01 0 9.35 3 17.02 8.99 23.01 6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01 0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99zm112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02z",fill:"currentColor"},null,-1)],Rs=o(ys,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ds,Ps)}],["__file","quartz-watch.vue"]]),Ts={name:"QuestionFilled"},Os={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Gs=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm23.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"},null,-1)],Us=l("F",o(Ts,[["render",function(l,e,a,t,o,v){return r(),n("svg",Os,Gs)}],["__file","question-filled.vue"]])),Ws={name:"Rank"},Is={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Es=[a("path",{fill:"currentColor",d:"m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544H186.496z"},null,-1)],Ns=o(Ws,[["render",function(l,e,a,t,o,v){return r(),n("svg",Is,Es)}],["__file","rank.vue"]]),Zs={name:"ReadingLamp"},Ks={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Qs=[a("path",{fill:"currentColor",d:"M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32zm-44.672-768-99.52 448h608.384l-99.52-448H307.328zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"},null,-1),a("path",{fill:"currentColor",d:"M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32zm-192-.064h64V960h-64z"},null,-1)],js=o(Zs,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ks,Qs)}],["__file","reading-lamp.vue"]]),Js={name:"Reading"},Xs={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ys=[a("path",{fill:"currentColor",d:"m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72l384 54.848zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36z"},null,-1),a("path",{fill:"currentColor",d:"M480 192h64v704h-64z"},null,-1)],$s=o(Js,[["render",function(l,e,a,t,o,v){return r(),n("svg",Xs,Ys)}],["__file","reading.vue"]]),lf={name:"RefreshLeft"},ef={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},rf=[a("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"},null,-1)],nf=l("x",o(lf,[["render",function(l,e,a,t,o,v){return r(),n("svg",ef,rf)}],["__file","refresh-left.vue"]])),af={name:"RefreshRight"},tf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},of=[a("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"},null,-1)],vf=l("y",o(af,[["render",function(l,e,a,t,o,v){return r(),n("svg",tf,of)}],["__file","refresh-right.vue"]])),uf={name:"Refresh"},hf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wf=[a("path",{fill:"currentColor",d:"M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"},null,-1)],cf=o(uf,[["render",function(l,e,a,t,o,v){return r(),n("svg",hf,wf)}],["__file","refresh.vue"]]),mf={name:"Refrigerator"},sf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ff=[a("path",{fill:"currentColor",d:"M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32v288zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512H256zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96zm32 224h64v96h-64v-96zm0 288h64v96h-64v-96z"},null,-1)],zf=o(mf,[["render",function(l,e,a,t,o,v){return r(),n("svg",sf,ff)}],["__file","refrigerator.vue"]]),df={name:"RemoveFilled"},gf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pf=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zM288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512z"},null,-1)],Hf=o(df,[["render",function(l,e,a,t,o,v){return r(),n("svg",gf,pf)}],["__file","remove-filled.vue"]]),Mf={name:"Remove"},Cf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xf=[a("path",{fill:"currentColor",d:"M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64z"},null,-1),a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1)],_f=o(Mf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Cf,xf)}],["__file","remove.vue"]]),Vf={name:"Right"},Bf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lf=[a("path",{fill:"currentColor",d:"M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312L754.752 480z"},null,-1)],Af=o(Vf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Bf,Lf)}],["__file","right.vue"]]),Sf={name:"ScaleToOriginal"},qf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ff=[a("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.118zM512 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.412zM512 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 512z"},null,-1)],kf=l("t",o(Sf,[["render",function(l,e,a,t,o,v){return r(),n("svg",qf,Ff)}],["__file","scale-to-original.vue"]])),bf={name:"School"},yf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Df=[a("path",{fill:"currentColor",d:"M224 128v704h576V128H224zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M64 832h896v64H64zm256-640h128v96H320z"},null,-1),a("path",{fill:"currentColor",d:"M384 832h256v-64a128 128 0 1 0-256 0v64zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192zM320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"},null,-1)],Pf=o(bf,[["render",function(l,e,a,t,o,v){return r(),n("svg",yf,Df)}],["__file","school.vue"]]),Rf={name:"Scissor"},Tf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Of=[a("path",{fill:"currentColor",d:"m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248z"},null,-1)],Gf=o(Rf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Tf,Of)}],["__file","scissor.vue"]]),Uf={name:"Search"},Wf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},If=[a("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 704z"},null,-1)],Ef=l("M",o(Uf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Wf,If)}],["__file","search.vue"]])),Nf={name:"Select"},Zf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Kf=[a("path",{fill:"currentColor",d:"M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496z"},null,-1)],Qf=o(Nf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Zf,Kf)}],["__file","select.vue"]]),jf={name:"Sell"},Jf={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xf=[a("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248z"},null,-1)],Yf=o(jf,[["render",function(l,e,a,t,o,v){return r(),n("svg",Jf,Xf)}],["__file","sell.vue"]]),$f={name:"SemiSelect"},lz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},ez=[a("path",{fill:"currentColor",d:"M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64z"},null,-1)],rz=o($f,[["render",function(l,e,a,t,o,v){return r(),n("svg",lz,ez)}],["__file","semi-select.vue"]]),nz={name:"Service"},az={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tz=[a("path",{fill:"currentColor",d:"M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.064 192.064 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193.235 193.235 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0zM256 448a128 128 0 1 0 0 256V448zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128z"},null,-1)],oz=o(nz,[["render",function(l,e,a,t,o,v){return r(),n("svg",az,tz)}],["__file","service.vue"]]),vz={name:"SetUp"},uz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iz=[a("path",{fill:"currentColor",d:"M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64H224zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96z"},null,-1),a("path",{fill:"currentColor",d:"M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),a("path",{fill:"currentColor",d:"M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128zm0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256z"},null,-1),a("path",{fill:"currentColor",d:"M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1)],hz=o(vz,[["render",function(l,e,a,t,o,v){return r(),n("svg",uz,iz)}],["__file","set-up.vue"]]),wz={name:"Setting"},cz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mz=[a("path",{fill:"currentColor",d:"M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357.12 357.12 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a351.616 351.616 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357.12 357.12 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294.113 294.113 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293.12 293.12 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294.113 294.113 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288.282 288.282 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293.12 293.12 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a287.616 287.616 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384zm0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256z"},null,-1)],sz=o(wz,[["render",function(l,e,a,t,o,v){return r(),n("svg",cz,mz)}],["__file","setting.vue"]]),fz={name:"Share"},zz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dz=[a("path",{fill:"currentColor",d:"m679.872 348.8-301.76 188.608a127.808 127.808 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"},null,-1)],gz=o(fz,[["render",function(l,e,a,t,o,v){return r(),n("svg",zz,dz)}],["__file","share.vue"]]),pz={name:"Ship"},Hz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Mz=[a("path",{fill:"currentColor",d:"M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216L512 386.88zm0-70.272 144.768-65.792L512 171.84v144.768zM512 512H148.864l18.24 64H856.96l18.24-64H512zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2H185.408z"},null,-1)],Cz=o(pz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Hz,Mz)}],["__file","ship.vue"]]),xz={name:"Shop"},_z={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vz=[a("path",{fill:"currentColor",d:"M704 704h64v192H256V704h64v64h384v-64zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640l60.544 423.808z"},null,-1)],Bz=o(xz,[["render",function(l,e,a,t,o,v){return r(),n("svg",_z,Vz)}],["__file","shop.vue"]]),Lz={name:"ShoppingBag"},Az={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Sz=[a("path",{fill:"currentColor",d:"M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320H704zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32h160zm64 0h256a128 128 0 1 0-256 0z"},null,-1),a("path",{fill:"currentColor",d:"M192 704h640v64H192z"},null,-1)],qz=o(Lz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Az,Sz)}],["__file","shopping-bag.vue"]]),Fz={name:"ShoppingCartFull"},kz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bz=[a("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1),a("path",{fill:"currentColor",d:"M699.648 256 608 145.984 516.352 256h183.296zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648l179.2-215.04z"},null,-1)],yz=o(Fz,[["render",function(l,e,a,t,o,v){return r(),n("svg",kz,bz)}],["__file","shopping-cart-full.vue"]]),Dz={name:"ShoppingCart"},Pz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rz=[a("path",{fill:"currentColor",d:"M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96zm320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96zM96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128H96zm314.24 576h395.904l82.304-384H333.44l76.8 384z"},null,-1)],Tz=o(Dz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Pz,Rz)}],["__file","shopping-cart.vue"]]),Oz={name:"ShoppingTrolley"},Gz={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Uz=[a("path",{d:"M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833zm439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64h551zM256 192h622l-96 384H256V192zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833z",fill:"currentColor"},null,-1)],Wz=o(Oz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Gz,Uz)}],["__file","shopping-trolley.vue"]]),Iz={name:"Smoking"},Ez={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Nz=[a("path",{fill:"currentColor",d:"M256 576v128h640V576H256zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"},null,-1)],Zz=o(Iz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ez,Nz)}],["__file","smoking.vue"]]),Kz={name:"Soccer"},Qz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jz=[a("path",{fill:"currentColor",d:"M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24zm72.32-18.176a573.056 573.056 0 0 0 224.832-137.216 573.12 573.12 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.68 567.68 0 0 0 170.432 532.48l320.384 320.384zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536L871.04 418.496zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944-199.936 199.936-497.92 226.112-610.944 113.152zm452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248l45.248 45.248z"},null,-1)],Jz=o(Kz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Qz,jz)}],["__file","soccer.vue"]]),Xz={name:"SoldOut"},Yz={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$z=[a("path",{fill:"currentColor",d:"M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128c-70.272 0-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"},null,-1)],ld=o(Xz,[["render",function(l,e,a,t,o,v){return r(),n("svg",Yz,$z)}],["__file","sold-out.vue"]]),ed={name:"SortDown"},rd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},nd=[a("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 0z"},null,-1)],ad=l("L",o(ed,[["render",function(l,e,a,t,o,v){return r(),n("svg",rd,nd)}],["__file","sort-down.vue"]])),td={name:"SortUp"},od={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vd=[a("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.248z"},null,-1)],ud=l("K",o(td,[["render",function(l,e,a,t,o,v){return r(),n("svg",od,vd)}],["__file","sort-up.vue"]])),id={name:"Sort"},hd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wd=[a("path",{fill:"currentColor",d:"M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632V96zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0V141.248z"},null,-1)],cd=o(id,[["render",function(l,e,a,t,o,v){return r(),n("svg",hd,wd)}],["__file","sort.vue"]]),md={name:"Stamp"},sd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fd=[a("path",{fill:"currentColor",d:"M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0zM128 896v-64h768v64H128z"},null,-1)],zd=o(md,[["render",function(l,e,a,t,o,v){return r(),n("svg",sd,fd)}],["__file","stamp.vue"]]),dd={name:"StarFilled"},gd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pd=[a("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"},null,-1)],Hd=l("G",o(dd,[["render",function(l,e,a,t,o,v){return r(),n("svg",gd,pd)}],["__file","star-filled.vue"]])),Md={name:"Star"},Cd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xd=[a("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.72L512 747.84zM313.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"},null,-1)],_d=l("H",o(Md,[["render",function(l,e,a,t,o,v){return r(),n("svg",Cd,xd)}],["__file","star.vue"]])),Vd={name:"Stopwatch"},Bd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ld=[a("path",{fill:"currentColor",d:"M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896z"},null,-1),a("path",{fill:"currentColor",d:"M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"},null,-1)],Ad=o(Vd,[["render",function(l,e,a,t,o,v){return r(),n("svg",Bd,Ld)}],["__file","stopwatch.vue"]]),Sd={name:"SuccessFilled"},qd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fd=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm-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.336L456.192 600.384z"},null,-1)],kd=l("s",o(Sd,[["render",function(l,e,a,t,o,v){return r(),n("svg",qd,Fd)}],["__file","success-filled.vue"]])),bd={name:"Sugar"},yd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Dd=[a("path",{fill:"currentColor",d:"m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16l-109.248 19.2zm-548.8 198.72h447.168v2.24l60.8-60.8a63.808 63.808 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64.064 64.064 0 0 0-10.24 13.248zm0 64c2.752 4.736 6.144 9.152 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904H252.928zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928h326.208zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632l-137.6 24.256zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"},null,-1)],Pd=o(bd,[["render",function(l,e,a,t,o,v){return r(),n("svg",yd,Dd)}],["__file","sugar.vue"]]),Rd={name:"SuitcaseLine"},Td={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},Od=[a("path",{d:"M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5C77.16 253.82 64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5zM384 128h256v64H384v-64zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128v384zm448 0H320V448h384v384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128v320zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320v64z",fill:"currentColor"},null,-1)],Gd=o(Rd,[["render",function(l,e,a,t,o,v){return r(),n("svg",Td,Od)}],["__file","suitcase-line.vue"]]),Ud={name:"Suitcase"},Wd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Id=[a("path",{fill:"currentColor",d:"M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64v64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448H128zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128z"},null,-1),a("path",{fill:"currentColor",d:"M384 128v64h256v-64H384zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64z"},null,-1)],Ed=o(Ud,[["render",function(l,e,a,t,o,v){return r(),n("svg",Wd,Id)}],["__file","suitcase.vue"]]),Nd={name:"Sunny"},Zd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Kd=[a("path",{fill:"currentColor",d:"M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32zM195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248zM64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32zm768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32zM195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0zm543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0z"},null,-1)],Qd=o(Nd,[["render",function(l,e,a,t,o,v){return r(),n("svg",Zd,Kd)}],["__file","sunny.vue"]]),jd={name:"Sunrise"},Jd={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xd=[a("path",{fill:"currentColor",d:"M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64zm129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0h-64.32zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32zm407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0zm-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248z"},null,-1)],Yd=o(jd,[["render",function(l,e,a,t,o,v){return r(),n("svg",Jd,Xd)}],["__file","sunrise.vue"]]),$d={name:"Sunset"},lg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},eg=[a("path",{fill:"currentColor",d:"M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0H82.56zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32zm256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"},null,-1)],rg=o($d,[["render",function(l,e,a,t,o,v){return r(),n("svg",lg,eg)}],["__file","sunset.vue"]]),ng={name:"SwitchButton"},ag={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tg=[a("path",{fill:"currentColor",d:"M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128z"},null,-1),a("path",{fill:"currentColor",d:"M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32z"},null,-1)],og=o(ng,[["render",function(l,e,a,t,o,v){return r(),n("svg",ag,tg)}],["__file","switch-button.vue"]]),vg={name:"SwitchFilled"},ug={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},ig=[a("path",{d:"M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36z",fill:"currentColor"},null,-1),a("path",{d:"M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.655 196.655 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.67 196.67 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42zm-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.695 131.695 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57v644.36zm402.12-647.67a196.655 196.655 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.69 196.69 0 0 0 139.08-57.61A196.655 196.655 0 0 0 896 699.31V325.29a196.69 196.69 0 0 0-57.61-139.08zm-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82z",fill:"currentColor"},null,-1)],hg=o(vg,[["render",function(l,e,a,t,o,v){return r(),n("svg",ug,ig)}],["__file","switch-filled.vue"]]),wg={name:"Switch"},cg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mg=[a("path",{fill:"currentColor",d:"M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344zM64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32z"},null,-1)],sg=o(wg,[["render",function(l,e,a,t,o,v){return r(),n("svg",cg,mg)}],["__file","switch.vue"]]),fg={name:"TakeawayBox"},zg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},dg=[a("path",{fill:"currentColor",d:"M832 384H192v448h640V384zM96 320h832V128H96v192zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32h-64zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64z"},null,-1)],gg=o(fg,[["render",function(l,e,a,t,o,v){return r(),n("svg",zg,dg)}],["__file","takeaway-box.vue"]]),pg={name:"Ticket"},Hg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Mg=[a("path",{fill:"currentColor",d:"M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64v160zm0-416v192h64V416h-64z"},null,-1)],Cg=o(pg,[["render",function(l,e,a,t,o,v){return r(),n("svg",Hg,Mg)}],["__file","ticket.vue"]]),xg={name:"Tickets"},_g={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Vg=[a("path",{fill:"currentColor",d:"M192 128v768h640V128H192zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm160 448h384v64H320v-64zm0-192h192v64H320v-64zm0 384h384v64H320v-64z"},null,-1)],Bg=o(xg,[["render",function(l,e,a,t,o,v){return r(),n("svg",_g,Vg)}],["__file","tickets.vue"]]),Lg={name:"Timer"},Ag={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Sg=[a("path",{fill:"currentColor",d:"M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640zm0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768z"},null,-1),a("path",{fill:"currentColor",d:"M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0zm96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96z"},null,-1)],qg=o(Lg,[["render",function(l,e,a,t,o,v){return r(),n("svg",Ag,Sg)}],["__file","timer.vue"]]),Fg={name:"ToiletPaper"},kg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bg=[a("path",{fill:"currentColor",d:"M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224zM736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64h416zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224z"},null,-1),a("path",{fill:"currentColor",d:"M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96z"},null,-1)],yg=o(Fg,[["render",function(l,e,a,t,o,v){return r(),n("svg",kg,bg)}],["__file","toilet-paper.vue"]]),Dg={name:"Tools"},Pg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Rg=[a("path",{fill:"currentColor",d:"M764.416 254.72a351.68 351.68 0 0 1 86.336 149.184H960v192.064H850.752a351.68 351.68 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.68 351.68 0 0 1-86.336-149.312H64v-192h109.248a351.68 351.68 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0z"},null,-1)],Tg=o(Dg,[["render",function(l,e,a,t,o,v){return r(),n("svg",Pg,Rg)}],["__file","tools.vue"]]),Og={name:"TopLeft"},Gg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ug=[a("path",{fill:"currentColor",d:"M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0V256z"},null,-1),a("path",{fill:"currentColor",d:"M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312l-544-544z"},null,-1)],Wg=o(Og,[["render",function(l,e,a,t,o,v){return r(),n("svg",Gg,Ug)}],["__file","top-left.vue"]]),Ig={name:"TopRight"},Eg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ng=[a("path",{fill:"currentColor",d:"M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0V256z"},null,-1),a("path",{fill:"currentColor",d:"M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312l544-544z"},null,-1)],Zg=o(Ig,[["render",function(l,e,a,t,o,v){return r(),n("svg",Eg,Ng)}],["__file","top-right.vue"]]),Kg={name:"Top"},Qg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},jg=[a("path",{fill:"currentColor",d:"M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"},null,-1)],Jg=o(Kg,[["render",function(l,e,a,t,o,v){return r(),n("svg",Qg,jg)}],["__file","top.vue"]]),Xg={name:"TrendCharts"},Yg={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},$g=[a("path",{fill:"currentColor",d:"M128 896V128h768v768H128zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624 139.84-156.608zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0z"},null,-1)],lp=o(Xg,[["render",function(l,e,a,t,o,v){return r(),n("svg",Yg,$g)}],["__file","trend-charts.vue"]]),ep={name:"TrophyBase"},rp={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},np=[a("path",{d:"M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4C752 67.2 745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6C259.2 80 256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 16-9.6 22.4 3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4zM256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256v182.4zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6C342.4 480 320 438.4 320 384V128h384v256c0 54.4-19.2 99.2-57.6 134.4zm172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2zM768 896H256c-9.6 0-16 3.2-22.4 9.6-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6 6.4-6.4 9.6-12.8 9.6-22.4s-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6z",fill:"currentColor"},null,-1)],ap=o(ep,[["render",function(l,e,a,t,o,v){return r(),n("svg",rp,np)}],["__file","trophy-base.vue"]]),tp={name:"Trophy"},op={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},vp=[a("path",{fill:"currentColor",d:"M480 896V702.08A256.256 256.256 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.256 256.256 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64h128zm224-448V128H320v320a192 192 0 1 0 384 0zm64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768v192zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448H256z"},null,-1)],up=o(tp,[["render",function(l,e,a,t,o,v){return r(),n("svg",op,vp)}],["__file","trophy.vue"]]),ip={name:"TurnOff"},hp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},wp=[a("path",{fill:"currentColor",d:"M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724H329.956zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36z"},null,-1),a("path",{fill:"currentColor",d:"M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454zm0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088z"},null,-1)],cp=o(ip,[["render",function(l,e,a,t,o,v){return r(),n("svg",hp,wp)}],["__file","turn-off.vue"]]),mp={name:"Umbrella"},sp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},fp=[a("path",{fill:"currentColor",d:"M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0zm570.688-320a384.128 384.128 0 0 0-757.376 0h757.376z"},null,-1)],zp=o(mp,[["render",function(l,e,a,t,o,v){return r(),n("svg",sp,fp)}],["__file","umbrella.vue"]]),dp={name:"Unlock"},gp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},pp=[a("path",{fill:"currentColor",d:"M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32H224zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96z"},null,-1),a("path",{fill:"currentColor",d:"M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32zm178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104l-59.456 23.808z"},null,-1)],Hp=o(dp,[["render",function(l,e,a,t,o,v){return r(),n("svg",gp,pp)}],["__file","unlock.vue"]]),Mp={name:"UploadFilled"},Cp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},xp=[a("path",{fill:"currentColor",d:"M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.808 239.808 0 0 1 512 192a239.872 239.872 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6H544z"},null,-1)],_p=o(Mp,[["render",function(l,e,a,t,o,v){return r(),n("svg",Cp,xp)}],["__file","upload-filled.vue"]]),Vp={name:"Upload"},Bp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Lp=[a("path",{fill:"currentColor",d:"M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64zm384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248L544 253.696z"},null,-1)],Ap=o(Vp,[["render",function(l,e,a,t,o,v){return r(),n("svg",Bp,Lp)}],["__file","upload.vue"]]),Sp={name:"UserFilled"},qp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Fp=[a("path",{fill:"currentColor",d:"M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0zm544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"},null,-1)],kp=o(Sp,[["render",function(l,e,a,t,o,v){return r(),n("svg",qp,Fp)}],["__file","user-filled.vue"]]),bp={name:"User"},yp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Dp=[a("path",{fill:"currentColor",d:"M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384zm0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512zm320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0z"},null,-1)],Pp=o(bp,[["render",function(l,e,a,t,o,v){return r(),n("svg",yp,Dp)}],["__file","user.vue"]]),Rp={name:"Van"},Tp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Op=[a("path",{fill:"currentColor",d:"M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416h24.256zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672zm48.128-192-14.72-96H704v96h151.872zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160zm-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160z"},null,-1)],Gp=o(Rp,[["render",function(l,e,a,t,o,v){return r(),n("svg",Tp,Op)}],["__file","van.vue"]]),Up={name:"VideoCameraFilled"},Wp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Ip=[a("path",{fill:"currentColor",d:"m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v96zM192 768v64h384v-64H192zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0zm64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288zm-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320zm64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0z"},null,-1)],Ep=o(Up,[["render",function(l,e,a,t,o,v){return r(),n("svg",Wp,Ip)}],["__file","video-camera-filled.vue"]]),Np={name:"VideoCamera"},Zp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Kp=[a("path",{fill:"currentColor",d:"M704 768V256H128v512h576zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32v128zm0 71.552v176.896l128 64V359.552l-128 64zM192 320h192v64H192v-64z"},null,-1)],Qp=o(Np,[["render",function(l,e,a,t,o,v){return r(),n("svg",Zp,Kp)}],["__file","video-camera.vue"]]),jp={name:"VideoPause"},Jp={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},Xp=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32zm192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32z"},null,-1)],Yp=o(jp,[["render",function(l,e,a,t,o,v){return r(),n("svg",Jp,Xp)}],["__file","video-pause.vue"]]),$p={name:"VideoPlay"},lH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},eH=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm-48-247.616L668.608 512 464 375.616v272.768zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"},null,-1)],rH=o($p,[["render",function(l,e,a,t,o,v){return r(),n("svg",lH,eH)}],["__file","video-play.vue"]]),nH={name:"View"},aH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},tH=[a("path",{fill:"currentColor",d:"M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352zm0 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-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160z"},null,-1)],oH=l("v",o(nH,[["render",function(l,e,a,t,o,v){return r(),n("svg",aH,tH)}],["__file","view.vue"]])),vH={name:"WalletFilled"},uH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},iH=[a("path",{fill:"currentColor",d:"M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160H688zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96zm-80-544 128 160H384l256-160z"},null,-1)],hH=o(vH,[["render",function(l,e,a,t,o,v){return r(),n("svg",uH,iH)}],["__file","wallet-filled.vue"]]),wH={name:"Wallet"},cH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},mH=[a("path",{fill:"currentColor",d:"M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32v192z"},null,-1),a("path",{fill:"currentColor",d:"M128 320v512h768V320H128zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128z"},null,-1)],sH=o(wH,[["render",function(l,e,a,t,o,v){return r(),n("svg",cH,mH)}],["__file","wallet.vue"]]),fH={name:"WarnTriangleFilled"},zH={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024",style:{"enable-background":"new 0 0 1024 1024"},"xml:space":"preserve"},dH=[a("path",{d:"M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49 12.91-20.12 12.92-44.91.01-65.03zM554.67 768h-85.33v-85.33h85.33V768zm0-426.67v298.66h-85.33V341.32l85.33.01z",fill:"currentColor"},null,-1)],gH=o(fH,[["render",function(l,e,a,t,o,v){return r(),n("svg",zH,dH)}],["__file","warn-triangle-filled.vue"]]),pH={name:"WarningFilled"},HH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},MH=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 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 256zm0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4z"},null,-1)],CH=l("w",o(pH,[["render",function(l,e,a,t,o,v){return r(),n("svg",HH,MH)}],["__file","warning-filled.vue"]])),xH={name:"Warning"},_H={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},VH=[a("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896zm0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768zm48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"},null,-1)],BH=o(xH,[["render",function(l,e,a,t,o,v){return r(),n("svg",_H,VH)}],["__file","warning.vue"]]),LH={name:"Watch"},AH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},SH=[a("path",{fill:"currentColor",d:"M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512zm0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640z"},null,-1),a("path",{fill:"currentColor",d:"M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32z"},null,-1),a("path",{fill:"currentColor",d:"M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32zm128-256V128H416v128h-64V64h320v192h-64zM416 768v128h192V768h64v192H352V768h64z"},null,-1)],qH=o(LH,[["render",function(l,e,a,t,o,v){return r(),n("svg",AH,SH)}],["__file","watch.vue"]]),FH={name:"Watermelon"},kH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},bH=[a("path",{fill:"currentColor",d:"m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248L683.072 600.32zm231.552 141.056a448 448 0 1 1-632-632l632 632z"},null,-1)],yH=o(FH,[["render",function(l,e,a,t,o,v){return r(),n("svg",kH,bH)}],["__file","watermelon.vue"]]),DH={name:"WindPower"},PH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},RH=[a("path",{fill:"currentColor",d:"M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32zm416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92l192-17.472zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96v226.368z"},null,-1)],TH=o(DH,[["render",function(l,e,a,t,o,v){return r(),n("svg",PH,RH)}],["__file","wind-power.vue"]]),OH={name:"ZoomIn"},GH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},UH=[a("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 704zm-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-64h96z"},null,-1)],WH=l("u",o(OH,[["render",function(l,e,a,t,o,v){return r(),n("svg",GH,UH)}],["__file","zoom-in.vue"]])),IH={name:"ZoomOut"},EH={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"},NH=[a("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 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"},null,-1)],ZH=l("z",o(IH,[["render",function(l,e,a,t,o,v){return r(),n("svg",EH,NH)}],["__file","zoom-out.vue"]]));const KH=Object.freeze(Object.defineProperty({__proto__:null,AddLocation:i,Aim:m,AlarmClock:d,Apple:M,ArrowDown:S,ArrowDownBold:V,ArrowLeft:R,ArrowLeftBold:b,ArrowRight:N,ArrowRightBold:U,ArrowUp:$,ArrowUpBold:j,Avatar:nl,Back:vl,Baseball:wl,Basketball:fl,Bell:xl,BellFilled:pl,Bicycle:Ll,Bottom:Ol,BottomLeft:Fl,BottomRight:Dl,Bowl:Il,Box:Kl,Briefcase:Xl,Brush:te,BrushFilled:ee,Burger:ie,Calendar:me,Camera:Me,CameraFilled:de,CaretBottom:Ve,CaretLeft:Se,CaretRight:be,CaretTop:Re,Cellphone:Ue,ChatDotRound:Ne,ChatDotSquare:je,ChatLineRound:$e,ChatLineSquare:nr,ChatRound:vr,ChatSquare:wr,Check:fr,Checked:pr,Cherry:xr,Chicken:Lr,ChromeFilled:Fr,CircleCheck:Or,CircleCheckFilled:Dr,CircleClose:Kr,CircleCloseFilled:Ir,CirclePlus:en,CirclePlusFilled:Xr,Clock:tn,Close:sn,CloseBold:hn,Cloudy:gn,Coffee:Bn,CoffeeCup:Cn,Coin:qn,ColdDrink:yn,Collection:Wn,CollectionTag:Tn,Comment:Zn,Compass:Jn,Connection:la,Coordinate:aa,CopyDocument:ua,Cpu:ca,CreditCard:za,Crop:Ha,DArrowLeft:_a,DArrowRight:Aa,DCaret:ka,DataAnalysis:Pa,DataBoard:Ga,DataLine:Ea,Delete:rt,DeleteFilled:Qa,DeleteLocation:Ya,Dessert:ot,Discount:ht,Dish:gt,DishDot:st,Document:Wt,DocumentAdd:Ct,DocumentChecked:Bt,DocumentCopy:qt,DocumentDelete:yt,DocumentRemove:Tt,Download:Zt,Drizzling:Jt,Edit:ao,EditPen:lo,Eleme:co,ElemeFilled:uo,ElementPlus:zo,Expand:Mo,Failed:Vo,Female:So,Files:bo,Film:Ro,Filter:Uo,Finished:No,FirstAidKit:jo,Flag:$o,Fold:nv,Folder:Lv,FolderAdd:vv,FolderChecked:wv,FolderDelete:fv,FolderOpened:pv,FolderRemove:xv,Food:Fv,Football:Dv,ForkSpoon:Ov,Fries:Iv,FullScreen:Kv,Goblet:iu,GobletFull:Xv,GobletSquare:tu,GobletSquareFull:eu,GoldMedal:mu,Goods:Mu,GoodsFilled:du,Grape:Vu,Grid:Su,Guide:bu,Handbag:Ru,Headset:Uu,Help:ju,HelpFilled:Nu,Hide:$u,Histogram:ni,HomeFilled:vi,HotWater:wi,House:fi,IceCream:Li,IceCreamRound:pi,IceCreamSquare:xi,IceDrink:Fi,IceTea:Di,InfoFilled:Oi,Iphone:Ii,Key:Ki,KnifeFork:Xi,Lightning:eh,Link:th,List:ih,Loading:mh,Location:Vh,LocationFilled:dh,LocationInformation:Mh,Lock:Sh,Lollipop:bh,MagicStick:Rh,Magnet:Uh,Male:Nh,Management:jh,MapLocation:$h,Medal:nw,Memo:vw,Menu:ww,Message:pw,MessageBox:fw,Mic:xw,Microphone:Lw,MilkTea:Fw,Minus:Dw,Money:Ow,Monitor:Iw,Moon:Xw,MoonNight:Kw,More:tc,MoreFilled:ec,MostlyCloudy:ic,Mouse:mc,Mug:dc,Mute:Vc,MuteNotification:Mc,NoSmoking:Sc,Notebook:bc,Notification:Rc,Odometer:Uc,OfficeBuilding:Nc,Open:jc,Operation:$c,Opportunity:nm,Orange:vm,Paperclip:wm,PartlyCloudy:fm,Pear:pm,Phone:Lm,PhoneFilled:xm,Picture:Om,PictureFilled:Fm,PictureRounded:Dm,PieChart:Im,Place:Km,Platform:Xm,Plus:es,Pointer:ts,Position:is,Postcard:ms,Pouring:ds,Present:Ms,PriceTag:Vs,Printer:Ss,Promotion:bs,QuartzWatch:Rs,QuestionFilled:Us,Rank:Ns,Reading:$s,ReadingLamp:js,Refresh:cf,RefreshLeft:nf,RefreshRight:vf,Refrigerator:zf,Remove:_f,RemoveFilled:Hf,Right:Af,ScaleToOriginal:kf,School:Pf,Scissor:Gf,Search:Ef,Select:Qf,Sell:Yf,SemiSelect:rz,Service:oz,SetUp:hz,Setting:sz,Share:gz,Ship:Cz,Shop:Bz,ShoppingBag:qz,ShoppingCart:Tz,ShoppingCartFull:yz,ShoppingTrolley:Wz,Smoking:Zz,Soccer:Jz,SoldOut:ld,Sort:cd,SortDown:ad,SortUp:ud,Stamp:zd,Star:_d,StarFilled:Hd,Stopwatch:Ad,SuccessFilled:kd,Sugar:Pd,Suitcase:Ed,SuitcaseLine:Gd,Sunny:Qd,Sunrise:Yd,Sunset:rg,Switch:sg,SwitchButton:og,SwitchFilled:hg,TakeawayBox:gg,Ticket:Cg,Tickets:Bg,Timer:qg,ToiletPaper:yg,Tools:Tg,Top:Jg,TopLeft:Wg,TopRight:Zg,TrendCharts:lp,Trophy:up,TrophyBase:ap,TurnOff:cp,Umbrella:zp,Unlock:Hp,Upload:Ap,UploadFilled:_p,User:Pp,UserFilled:kp,Van:Gp,VideoCamera:Qp,VideoCameraFilled:Ep,VideoPause:Yp,VideoPlay:rH,View:oH,Wallet:sH,WalletFilled:hH,WarnTriangleFilled:gH,Warning:BH,WarningFilled:CH,Watch:qH,Watermelon:yH,WindPower:TH,ZoomIn:WH,ZoomOut:ZH},Symbol.toStringTag,{value:"Module"}));l("Q",KH)}}})); diff --git a/src/main/resources/html/lc/assets/@icon-park-35d1953e.js b/src/main/resources/html/lc/assets/@icon-park-904b8974.js similarity index 99% rename from src/main/resources/html/lc/assets/@icon-park-35d1953e.js rename to src/main/resources/html/lc/assets/@icon-park-904b8974.js index 0194d26..6dd09e8 100644 --- a/src/main/resources/html/lc/assets/@icon-park-35d1953e.js +++ b/src/main/resources/html/lc/assets/@icon-park-904b8974.js @@ -1 +1 @@ -import{i as W,d as t}from"./@vue-99409b8e.js";var M={size:"1em",strokeWidth:4,strokeLinecap:"round",strokeLinejoin:"round",rtl:!1,theme:"outline",colors:{outline:{fill:"#333",background:"transparent"},filled:{fill:"#333",background:"#FFF"},twoTone:{fill:"#333",twoTone:"#2F88FF"},multiColor:{outStrokeColor:"#333",outFillColor:"#2F88FF",innerStrokeColor:"#FFF",innerFillColor:"#43CCF8"}},prefix:"i"};function g(){return"icon-"+((1+Math.random())*4294967296|0).toString(16).substring(1)}function v(e,k,l){var i=typeof k.fill=="string"?[k.fill]:k.fill||[],n=[],s=k.theme||l.theme;switch(s){case"outline":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("none"),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("none");break;case"filled":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("#FFF"),n.push("#FFF");break;case"two-tone":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.twoTone.twoTone),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.twoTone.twoTone);break;case"multi-color":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.multiColor.outFillColor),n.push(typeof i[2]=="string"?i[2]:l.colors.multiColor.innerStrokeColor),n.push(typeof i[3]=="string"?i[3]:l.colors.multiColor.innerFillColor);break}return{size:k.size||l.size,strokeWidth:k.strokeWidth||l.strokeWidth,strokeLinecap:k.strokeLinecap||l.strokeLinecap,strokeLinejoin:k.strokeLinejoin||l.strokeLinejoin,colors:n,id:e}}var H=Symbol("icon-context");function o(e,k,l){var i={name:"icon-"+e,props:["size","strokeWidth","strokeLinecap","strokeLinejoin","theme","fill","spin"],setup:function(s){var c=g(),r=W(H,M);return function(){var d=s.size,a=s.strokeWidth,u=s.strokeLinecap,L=s.strokeLinejoin,j=s.theme,w=s.fill,C=s.spin,f=v(c,{size:d,strokeWidth:a,strokeLinecap:u,strokeLinejoin:L,theme:j,fill:w},r),h=[r.prefix+"-icon"];return h.push(r.prefix+"-icon-"+e),k&&r.rtl&&h.push(r.prefix+"-icon-rtl"),C&&h.push(r.prefix+"-icon-spin"),t("span",{class:h.join(" ")},[l(f)])}}};return i}const x=o("align-text-left",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M42 9H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M34 19H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M42 29H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M34 39H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),V=o("attention",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C29.5228 44 34.5228 41.7614 38.1421 38.1421C41.7614 34.5228 44 29.5228 44 24C44 18.4772 41.7614 13.4772 38.1421 9.85786C34.5228 6.23858 29.5228 4 24 4C18.4772 4 13.4772 6.23858 9.85786 9.85786C6.23858 13.4772 4 18.4772 4 24C4 29.5228 6.23858 34.5228 9.85786 38.1421C13.4772 41.7614 18.4772 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 37C25.3807 37 26.5 35.8807 26.5 34.5C26.5 33.1193 25.3807 32 24 32C22.6193 32 21.5 33.1193 21.5 34.5C21.5 35.8807 22.6193 37 24 37Z",fill:e.colors[2]},null),t("path",{d:"M24 12V28",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),y=o("branch-one",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 33V15",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"10",y:"9",width:"28",height:"6",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 32L14 25H33.9743L40 32",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"4",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"20",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"36",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),B=o("calendar-dot",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("rect",{x:"4",y:"4",width:"40",height:"40",rx:"2",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 14H44",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("line",{x1:"44",y1:"11",x2:"44",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 22H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 22H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 22H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 29H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 29H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 29H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 36H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 36H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 36H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("line",{x1:"4",y1:"11",x2:"4",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),Z=o("checkbox",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M39 6H9C7.34315 6 6 7.34315 6 9V39C6 40.6569 7.34315 42 9 42H39C40.6569 42 42 40.6569 42 39V9C42 7.34315 40.6569 6 39 6Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M32 16H16V32H32V16Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),F=o("clear",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M20 5.91406H28V13.9141H43V21.9141H5V13.9141H20V5.91406Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 40H40V22H8V40Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 39.8977V33.8977",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 40H36",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),m=o("close-small",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M14 14L34 34",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M14 34L34 14",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),b=o("delete",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M9 10V44H39V10H9Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M20 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M28 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 10H44",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 10L19.289 4H28.7771L32 10H16Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),T=o("delete-one",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M15 12L16.2 5H31.8L33 12",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M6 12H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M37 12L35 43H13L11 12H37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M19 35H29",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),S=o("down-c",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M33 21L24 30L15 21",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),D=o("drop-down-list",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M40 28L24 40L8 28",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 10H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M8 18H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),P=o("edit",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M7 42H43",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M11 26.7199V34H18.3172L39 13.3081L31.6951 6L11 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),I=o("edit-two",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M42 26V40C42 41.1046 41.1046 42 40 42H8C6.89543 42 6 41.1046 6 40V8C6 6.89543 6.89543 6 8 6L22 6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M14 26.7199V34H21.3172L42 13.3081L34.6951 6L14 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),O=o("editor",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M40 33V42C40 43.1046 39.1046 44 38 44H31.5",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M40 16V6C40 4.89543 39.1046 4 38 4H10C8.89543 4 8 4.89543 8 6V42C8 43.1046 8.89543 44 10 44H16",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 16H30",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M23 44L40 23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M16 24H24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),E=o("label",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M9 4H39V44L24 33.4286L9 44V4Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"9",y:"4",width:"30",height:"12",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),N=o("pacifier",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("g",{"clip-path":"url(#"+e.id+"02a82aa8)"},[t("path",{d:"M30.6561 21.5855L34.7593 17.4823C36.761 18.0169 38.9853 17.499 40.5556 15.9286C42.8988 13.5855 42.8988 9.78647 40.5556 7.44332C38.2125 5.10018 34.4135 5.10018 32.0703 7.44332C30.5 9.0137 29.9821 11.238 30.5166 13.2397L26.4135 17.3428",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M41.263 32.1922L15.8071 6.73633L11.918 10.6254L19.6962 21.9391L16.8678 26.1818L21.464 30.778L25.7066 27.9495L37.3739 36.0813L41.263 32.1922Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M19.3197 21.8847C15.9285 20.8969 12.117 21.74 9.44302 24.4139C5.53778 28.3192 5.53778 34.6508 9.44302 38.556C13.3483 42.4613 19.6799 42.4613 23.5852 38.556C26.2591 35.8821 27.1022 32.0706 26.1144 28.6793",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)]),t("defs",null,[t("clipPath",{id:e.id+"02a82aa8"},[t("rect",{width:"48",height:"48",fill:e.colors[2]},null)])])])}),A=o("people-plus",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M36 29V41V29Z",fill:e.colors[1]},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M30 35H42H30Z",fill:e.colors[1]},null),t("path",{d:"M36 29V41M30 35H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M27 28H18.8C14.3196 28 12.0794 28 10.3681 28.8719C8.86278 29.6389 7.63893 30.8628 6.87195 32.3681C6 34.0794 6 36.3196 6 40.8V42H27",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),U=o("peoples",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32.6077 7C34.6405 8.2249 36.0001 10.4537 36.0001 13C36.0001 15.5463 34.6405 17.7751 32.6077 19",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 40.8V42H34V40.8C34 36.3196 34 34.0794 33.1281 32.3681C32.3611 30.8628 31.1372 29.6389 29.6319 28.8719C27.9206 28 25.6804 28 21.2 28H16.8C12.3196 28 10.0794 28 8.36808 28.8719C6.86278 29.6389 5.63893 30.8628 4.87195 32.3681C4 34.0794 4 36.3196 4 40.8Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M43.9999 42.0001V40.8001C43.9999 36.3197 43.9999 34.0795 43.128 32.3682C42.361 30.8629 41.1371 29.6391 39.6318 28.8721",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),_=o("plus",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24.0605 10L24.0239 38",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M10 24L38 24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),G=o("radio-two",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("circle",{cx:"24",cy:"24",r:"20",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("circle",{cx:"24",cy:"24",r:"8",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),R=o("seal",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M5 37C5 35.8954 5.89543 35 7 35H41C42.1046 35 43 35.8954 43 37V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M5 31C5 29.8954 5.89543 29 7 29H41C42.1046 29 43 29.8954 43 31V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V31Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M18.763 15.6637C18.9051 15.2657 19.2821 15 19.7047 15H28.2953C28.7179 15 29.0949 15.2657 29.237 15.6637L34 29H14L18.763 15.6637Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"15",y:"4",width:"18",height:"10.8",rx:"5.4",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null)])}),q=o("setting-two",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M18.2838 43.1713C14.9327 42.1736 11.9498 40.3213 9.58787 37.867C10.469 36.8227 11 35.4734 11 34.0001C11 30.6864 8.31371 28.0001 5 28.0001C4.79955 28.0001 4.60139 28.01 4.40599 28.0292C4.13979 26.7277 4 25.3803 4 24.0001C4 21.9095 4.32077 19.8938 4.91579 17.9995C4.94381 17.9999 4.97188 18.0001 5 18.0001C8.31371 18.0001 11 15.3138 11 12.0001C11 11.0488 10.7786 10.1493 10.3846 9.35011C12.6975 7.1995 15.5205 5.59002 18.6521 4.72314C19.6444 6.66819 21.6667 8.00013 24 8.00013C26.3333 8.00013 28.3556 6.66819 29.3479 4.72314C32.4795 5.59002 35.3025 7.1995 37.6154 9.35011C37.2214 10.1493 37 11.0488 37 12.0001C37 15.3138 39.6863 18.0001 43 18.0001C43.0281 18.0001 43.0562 17.9999 43.0842 17.9995C43.6792 19.8938 44 21.9095 44 24.0001C44 25.3803 43.8602 26.7277 43.594 28.0292C43.3986 28.01 43.2005 28.0001 43 28.0001C39.6863 28.0001 37 30.6864 37 34.0001C37 35.4734 37.531 36.8227 38.4121 37.867C36.0502 40.3213 33.0673 42.1736 29.7162 43.1713C28.9428 40.752 26.676 39.0001 24 39.0001C21.324 39.0001 19.0572 40.752 18.2838 43.1713Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 31C27.866 31 31 27.866 31 24C31 20.134 27.866 17 24 17C20.134 17 17 20.134 17 24C17 27.866 20.134 31 24 31Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),J=o("text",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("rect",{x:"6",y:"6",width:"36",height:"36",rx:"3",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 19V16H32V19",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 34H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 18L24 34",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),K=o("time",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24.0084 12.0001L24.0072 24.0089L32.4866 32.4883",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),Q=o("up-c",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M33 27L24 18L15 27",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),X=o("upload-one",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M11.6777 20.271C7.27476 21.3181 4 25.2766 4 30C4 35.5228 8.47715 40 14 40C14.9474 40 15.864 39.8683 16.7325 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M36.0547 20.271C40.4577 21.3181 43.7324 25.2766 43.7324 30C43.7324 35.5228 39.2553 40 33.7324 40C32.785 40 31.8684 39.8683 30.9999 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M36 20C36 13.3726 30.6274 8 24 8C17.3726 8 12 13.3726 12 20",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M17.0654 27.8812L23.9999 20.9238L31.1318 28.0002",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 38.0001V24.4619",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])});export{V as A,y as B,m as C,b as D,P as E,E as L,U as P,G as R,q as S,J as T,Q as U,O as a,_ as b,R as c,I as d,A as e,T as f,S as g,x as h,N as i,Z as j,D as k,B as l,K as m,F as n,X as o}; +import{i as W,d as t}from"./@vue-5dd246aa.js";var M={size:"1em",strokeWidth:4,strokeLinecap:"round",strokeLinejoin:"round",rtl:!1,theme:"outline",colors:{outline:{fill:"#333",background:"transparent"},filled:{fill:"#333",background:"#FFF"},twoTone:{fill:"#333",twoTone:"#2F88FF"},multiColor:{outStrokeColor:"#333",outFillColor:"#2F88FF",innerStrokeColor:"#FFF",innerFillColor:"#43CCF8"}},prefix:"i"};function g(){return"icon-"+((1+Math.random())*4294967296|0).toString(16).substring(1)}function v(e,k,l){var i=typeof k.fill=="string"?[k.fill]:k.fill||[],n=[],s=k.theme||l.theme;switch(s){case"outline":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("none"),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("none");break;case"filled":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push("#FFF"),n.push("#FFF");break;case"two-tone":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.twoTone.twoTone),n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.twoTone.twoTone);break;case"multi-color":n.push(typeof i[0]=="string"?i[0]:"currentColor"),n.push(typeof i[1]=="string"?i[1]:l.colors.multiColor.outFillColor),n.push(typeof i[2]=="string"?i[2]:l.colors.multiColor.innerStrokeColor),n.push(typeof i[3]=="string"?i[3]:l.colors.multiColor.innerFillColor);break}return{size:k.size||l.size,strokeWidth:k.strokeWidth||l.strokeWidth,strokeLinecap:k.strokeLinecap||l.strokeLinecap,strokeLinejoin:k.strokeLinejoin||l.strokeLinejoin,colors:n,id:e}}var H=Symbol("icon-context");function o(e,k,l){var i={name:"icon-"+e,props:["size","strokeWidth","strokeLinecap","strokeLinejoin","theme","fill","spin"],setup:function(s){var c=g(),r=W(H,M);return function(){var d=s.size,a=s.strokeWidth,u=s.strokeLinecap,L=s.strokeLinejoin,j=s.theme,w=s.fill,C=s.spin,f=v(c,{size:d,strokeWidth:a,strokeLinecap:u,strokeLinejoin:L,theme:j,fill:w},r),h=[r.prefix+"-icon"];return h.push(r.prefix+"-icon-"+e),k&&r.rtl&&h.push(r.prefix+"-icon-rtl"),C&&h.push(r.prefix+"-icon-spin"),t("span",{class:h.join(" ")},[l(f)])}}};return i}const x=o("align-text-left",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M42 9H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M34 19H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M42 29H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M34 39H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),V=o("attention",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C29.5228 44 34.5228 41.7614 38.1421 38.1421C41.7614 34.5228 44 29.5228 44 24C44 18.4772 41.7614 13.4772 38.1421 9.85786C34.5228 6.23858 29.5228 4 24 4C18.4772 4 13.4772 6.23858 9.85786 9.85786C6.23858 13.4772 4 18.4772 4 24C4 29.5228 6.23858 34.5228 9.85786 38.1421C13.4772 41.7614 18.4772 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 37C25.3807 37 26.5 35.8807 26.5 34.5C26.5 33.1193 25.3807 32 24 32C22.6193 32 21.5 33.1193 21.5 34.5C21.5 35.8807 22.6193 37 24 37Z",fill:e.colors[2]},null),t("path",{d:"M24 12V28",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),y=o("branch-one",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 33V15",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"10",y:"9",width:"28",height:"6",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 32L14 25H33.9743L40 32",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"4",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"20",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"36",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),B=o("calendar-dot",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("rect",{x:"4",y:"4",width:"40",height:"40",rx:"2",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 14H44",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("line",{x1:"44",y1:"11",x2:"44",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 22H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 22H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 22H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 29H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 29H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 29H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 36H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 36H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 36H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("line",{x1:"4",y1:"11",x2:"4",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),Z=o("checkbox",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M39 6H9C7.34315 6 6 7.34315 6 9V39C6 40.6569 7.34315 42 9 42H39C40.6569 42 42 40.6569 42 39V9C42 7.34315 40.6569 6 39 6Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M32 16H16V32H32V16Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),F=o("clear",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M20 5.91406H28V13.9141H43V21.9141H5V13.9141H20V5.91406Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 40H40V22H8V40Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 39.8977V33.8977",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M12 40H36",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),m=o("close-small",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M14 14L34 34",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M14 34L34 14",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),b=o("delete",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M9 10V44H39V10H9Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M20 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M28 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 10H44",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 10L19.289 4H28.7771L32 10H16Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),T=o("delete-one",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M15 12L16.2 5H31.8L33 12",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M6 12H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M37 12L35 43H13L11 12H37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M19 35H29",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),S=o("down-c",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M33 21L24 30L15 21",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),D=o("drop-down-list",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M40 28L24 40L8 28",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M8 10H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M8 18H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),P=o("edit",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M7 42H43",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M11 26.7199V34H18.3172L39 13.3081L31.6951 6L11 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),I=o("edit-two",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M42 26V40C42 41.1046 41.1046 42 40 42H8C6.89543 42 6 41.1046 6 40V8C6 6.89543 6.89543 6 8 6L22 6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M14 26.7199V34H21.3172L42 13.3081L34.6951 6L14 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),O=o("editor",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M40 33V42C40 43.1046 39.1046 44 38 44H31.5",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M40 16V6C40 4.89543 39.1046 4 38 4H10C8.89543 4 8 4.89543 8 6V42C8 43.1046 8.89543 44 10 44H16",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 16H30",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M23 44L40 23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),t("path",{d:"M16 24H24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}),E=o("label",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M9 4H39V44L24 33.4286L9 44V4Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"9",y:"4",width:"30",height:"12",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),N=o("pacifier",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("g",{"clip-path":"url(#"+e.id+"02a82aa8)"},[t("path",{d:"M30.6561 21.5855L34.7593 17.4823C36.761 18.0169 38.9853 17.499 40.5556 15.9286C42.8988 13.5855 42.8988 9.78647 40.5556 7.44332C38.2125 5.10018 34.4135 5.10018 32.0703 7.44332C30.5 9.0137 29.9821 11.238 30.5166 13.2397L26.4135 17.3428",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M41.263 32.1922L15.8071 6.73633L11.918 10.6254L19.6962 21.9391L16.8678 26.1818L21.464 30.778L25.7066 27.9495L37.3739 36.0813L41.263 32.1922Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M19.3197 21.8847C15.9285 20.8969 12.117 21.74 9.44302 24.4139C5.53778 28.3192 5.53778 34.6508 9.44302 38.556C13.3483 42.4613 19.6799 42.4613 23.5852 38.556C26.2591 35.8821 27.1022 32.0706 26.1144 28.6793",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)]),t("defs",null,[t("clipPath",{id:e.id+"02a82aa8"},[t("rect",{width:"48",height:"48",fill:e.colors[2]},null)])])])}),A=o("people-plus",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M36 29V41V29Z",fill:e.colors[1]},null),t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M30 35H42H30Z",fill:e.colors[1]},null),t("path",{d:"M36 29V41M30 35H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M27 28H18.8C14.3196 28 12.0794 28 10.3681 28.8719C8.86278 29.6389 7.63893 30.8628 6.87195 32.3681C6 34.0794 6 36.3196 6 40.8V42H27",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),U=o("peoples",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M32.6077 7C34.6405 8.2249 36.0001 10.4537 36.0001 13C36.0001 15.5463 34.6405 17.7751 32.6077 19",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M4 40.8V42H34V40.8C34 36.3196 34 34.0794 33.1281 32.3681C32.3611 30.8628 31.1372 29.6389 29.6319 28.8719C27.9206 28 25.6804 28 21.2 28H16.8C12.3196 28 10.0794 28 8.36808 28.8719C6.86278 29.6389 5.63893 30.8628 4.87195 32.3681C4 34.0794 4 36.3196 4 40.8Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M43.9999 42.0001V40.8001C43.9999 36.3197 43.9999 34.0795 43.128 32.3682C42.361 30.8629 41.1371 29.6391 39.6318 28.8721",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),_=o("plus",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24.0605 10L24.0239 38",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M10 24L38 24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),G=o("radio-two",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("circle",{cx:"24",cy:"24",r:"20",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("circle",{cx:"24",cy:"24",r:"8",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),R=o("seal",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M5 37C5 35.8954 5.89543 35 7 35H41C42.1046 35 43 35.8954 43 37V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M5 31C5 29.8954 5.89543 29 7 29H41C42.1046 29 43 29.8954 43 31V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V31Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M18.763 15.6637C18.9051 15.2657 19.2821 15 19.7047 15H28.2953C28.7179 15 29.0949 15.2657 29.237 15.6637L34 29H14L18.763 15.6637Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("rect",{x:"15",y:"4",width:"18",height:"10.8",rx:"5.4",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null)])}),q=o("setting-two",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M18.2838 43.1713C14.9327 42.1736 11.9498 40.3213 9.58787 37.867C10.469 36.8227 11 35.4734 11 34.0001C11 30.6864 8.31371 28.0001 5 28.0001C4.79955 28.0001 4.60139 28.01 4.40599 28.0292C4.13979 26.7277 4 25.3803 4 24.0001C4 21.9095 4.32077 19.8938 4.91579 17.9995C4.94381 17.9999 4.97188 18.0001 5 18.0001C8.31371 18.0001 11 15.3138 11 12.0001C11 11.0488 10.7786 10.1493 10.3846 9.35011C12.6975 7.1995 15.5205 5.59002 18.6521 4.72314C19.6444 6.66819 21.6667 8.00013 24 8.00013C26.3333 8.00013 28.3556 6.66819 29.3479 4.72314C32.4795 5.59002 35.3025 7.1995 37.6154 9.35011C37.2214 10.1493 37 11.0488 37 12.0001C37 15.3138 39.6863 18.0001 43 18.0001C43.0281 18.0001 43.0562 17.9999 43.0842 17.9995C43.6792 19.8938 44 21.9095 44 24.0001C44 25.3803 43.8602 26.7277 43.594 28.0292C43.3986 28.01 43.2005 28.0001 43 28.0001C39.6863 28.0001 37 30.6864 37 34.0001C37 35.4734 37.531 36.8227 38.4121 37.867C36.0502 40.3213 33.0673 42.1736 29.7162 43.1713C28.9428 40.752 26.676 39.0001 24 39.0001C21.324 39.0001 19.0572 40.752 18.2838 43.1713Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 31C27.866 31 31 27.866 31 24C31 20.134 27.866 17 24 17C20.134 17 17 20.134 17 24C17 27.866 20.134 31 24 31Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}),J=o("text",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("rect",{x:"6",y:"6",width:"36",height:"36",rx:"3",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M16 19V16H32V19",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M22 34H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 18L24 34",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),K=o("time",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24.0084 12.0001L24.0072 24.0089L32.4866 32.4883",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),Q=o("up-c",!1,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),t("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M33 27L24 18L15 27",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}),X=o("upload-one",!0,function(e){return t("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[t("path",{d:"M11.6777 20.271C7.27476 21.3181 4 25.2766 4 30C4 35.5228 8.47715 40 14 40C14.9474 40 15.864 39.8683 16.7325 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M36.0547 20.271C40.4577 21.3181 43.7324 25.2766 43.7324 30C43.7324 35.5228 39.2553 40 33.7324 40C32.785 40 31.8684 39.8683 30.9999 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M36 20C36 13.3726 30.6274 8 24 8C17.3726 8 12 13.3726 12 20",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M17.0654 27.8812L23.9999 20.9238L31.1318 28.0002",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),t("path",{d:"M24 38.0001V24.4619",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])});export{V as A,y as B,m as C,b as D,P as E,E as L,U as P,G as R,q as S,J as T,Q as U,O as a,_ as b,R as c,I as d,A as e,T as f,S as g,x as h,N as i,Z as j,D as k,B as l,K as m,F as n,X as o}; diff --git a/src/main/resources/html/lc/assets/@icon-park-legacy-af6e216d.js b/src/main/resources/html/lc/assets/@icon-park-legacy-d73df4b1.js similarity index 99% rename from src/main/resources/html/lc/assets/@icon-park-legacy-af6e216d.js rename to src/main/resources/html/lc/assets/@icon-park-legacy-d73df4b1.js index 8d1d954..f3fec37 100644 --- a/src/main/resources/html/lc/assets/@icon-park-legacy-af6e216d.js +++ b/src/main/resources/html/lc/assets/@icon-park-legacy-d73df4b1.js @@ -1 +1 @@ -System.register(["./@vue-legacy-6c3c82af.js"],(function(e,o){"use strict";var t,i;return{setters:[e=>{t=e.i,i=e.d}],execute:function(){var o={size:"1em",strokeWidth:4,strokeLinecap:"round",strokeLinejoin:"round",rtl:!1,theme:"outline",colors:{outline:{fill:"#333",background:"transparent"},filled:{fill:"#333",background:"#FFF"},twoTone:{fill:"#333",twoTone:"#2F88FF"},multiColor:{outStrokeColor:"#333",outFillColor:"#2F88FF",innerStrokeColor:"#FFF",innerFillColor:"#43CCF8"}},prefix:"i"},r=Symbol("icon-context");function s(e,s,n){return{name:"icon-"+e,props:["size","strokeWidth","strokeLinecap","strokeLinejoin","theme","fill","spin"],setup:function(l){var k="icon-"+(4294967296*(1+Math.random())|0).toString(16).substring(1),h=t(r,o);return function(){var o=l.size,t=l.strokeWidth,r=l.strokeLinecap,c=l.strokeLinejoin,d=l.theme,p=l.fill,a=l.spin,u=function(e,o,t){var i="string"==typeof o.fill?[o.fill]:o.fill||[],r=[];switch(o.theme||t.theme){case"outline":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("none"),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("none");break;case"filled":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("#FFF"),r.push("#FFF");break;case"two-tone":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.twoTone.twoTone),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.twoTone.twoTone);break;case"multi-color":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.multiColor.outFillColor),r.push("string"==typeof i[2]?i[2]:t.colors.multiColor.innerStrokeColor),r.push("string"==typeof i[3]?i[3]:t.colors.multiColor.innerFillColor)}return{size:o.size||t.size,strokeWidth:o.strokeWidth||t.strokeWidth,strokeLinecap:o.strokeLinecap||t.strokeLinecap,strokeLinejoin:o.strokeLinejoin||t.strokeLinejoin,colors:r,id:e}}(k,{size:o,strokeWidth:t,strokeLinecap:r,strokeLinejoin:c,theme:d,fill:p},h),L=[h.prefix+"-icon"];return L.push(h.prefix+"-icon-"+e),s&&h.rtl&&L.push(h.prefix+"-icon-rtl"),a&&L.push(h.prefix+"-icon-spin"),i("span",{class:L.join(" ")},[n(u)])}}}}e("h",s("align-text-left",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M42 9H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M34 19H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M42 29H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M34 39H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("A",s("attention",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C29.5228 44 34.5228 41.7614 38.1421 38.1421C41.7614 34.5228 44 29.5228 44 24C44 18.4772 41.7614 13.4772 38.1421 9.85786C34.5228 6.23858 29.5228 4 24 4C18.4772 4 13.4772 6.23858 9.85786 9.85786C6.23858 13.4772 4 18.4772 4 24C4 29.5228 6.23858 34.5228 9.85786 38.1421C13.4772 41.7614 18.4772 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 37C25.3807 37 26.5 35.8807 26.5 34.5C26.5 33.1193 25.3807 32 24 32C22.6193 32 21.5 33.1193 21.5 34.5C21.5 35.8807 22.6193 37 24 37Z",fill:e.colors[2]},null),i("path",{d:"M24 12V28",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("B",s("branch-one",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 33V15",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"10",y:"9",width:"28",height:"6",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 32L14 25H33.9743L40 32",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"4",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"20",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"36",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("l",s("calendar-dot",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("rect",{x:"4",y:"4",width:"40",height:"40",rx:"2",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 14H44",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("line",{x1:"44",y1:"11",x2:"44",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 22H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 22H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 22H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 29H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 29H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 29H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 36H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 36H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 36H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("line",{x1:"4",y1:"11",x2:"4",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("j",s("checkbox",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M39 6H9C7.34315 6 6 7.34315 6 9V39C6 40.6569 7.34315 42 9 42H39C40.6569 42 42 40.6569 42 39V9C42 7.34315 40.6569 6 39 6Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M32 16H16V32H32V16Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("n",s("clear",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M20 5.91406H28V13.9141H43V21.9141H5V13.9141H20V5.91406Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 40H40V22H8V40Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 39.8977V33.8977",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 40H36",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("C",s("close-small",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M14 14L34 34",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M14 34L34 14",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("D",s("delete",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M9 10V44H39V10H9Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M20 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M28 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 10H44",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 10L19.289 4H28.7771L32 10H16Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("f",s("delete-one",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M15 12L16.2 5H31.8L33 12",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M6 12H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M37 12L35 43H13L11 12H37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M19 35H29",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("g",s("down-c",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M33 21L24 30L15 21",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("k",s("drop-down-list",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M40 28L24 40L8 28",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 10H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M8 18H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("E",s("edit",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M7 42H43",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M11 26.7199V34H18.3172L39 13.3081L31.6951 6L11 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("d",s("edit-two",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M42 26V40C42 41.1046 41.1046 42 40 42H8C6.89543 42 6 41.1046 6 40V8C6 6.89543 6.89543 6 8 6L22 6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M14 26.7199V34H21.3172L42 13.3081L34.6951 6L14 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("a",s("editor",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M40 33V42C40 43.1046 39.1046 44 38 44H31.5",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M40 16V6C40 4.89543 39.1046 4 38 4H10C8.89543 4 8 4.89543 8 6V42C8 43.1046 8.89543 44 10 44H16",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 16H30",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M23 44L40 23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M16 24H24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("L",s("label",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M9 4H39V44L24 33.4286L9 44V4Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"9",y:"4",width:"30",height:"12",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("i",s("pacifier",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("g",{"clip-path":"url(#"+e.id+"02a82aa8)"},[i("path",{d:"M30.6561 21.5855L34.7593 17.4823C36.761 18.0169 38.9853 17.499 40.5556 15.9286C42.8988 13.5855 42.8988 9.78647 40.5556 7.44332C38.2125 5.10018 34.4135 5.10018 32.0703 7.44332C30.5 9.0137 29.9821 11.238 30.5166 13.2397L26.4135 17.3428",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M41.263 32.1922L15.8071 6.73633L11.918 10.6254L19.6962 21.9391L16.8678 26.1818L21.464 30.778L25.7066 27.9495L37.3739 36.0813L41.263 32.1922Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M19.3197 21.8847C15.9285 20.8969 12.117 21.74 9.44302 24.4139C5.53778 28.3192 5.53778 34.6508 9.44302 38.556C13.3483 42.4613 19.6799 42.4613 23.5852 38.556C26.2591 35.8821 27.1022 32.0706 26.1144 28.6793",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)]),i("defs",null,[i("clipPath",{id:e.id+"02a82aa8"},[i("rect",{width:"48",height:"48",fill:e.colors[2]},null)])])])}))),e("e",s("people-plus",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M36 29V41V29Z",fill:e.colors[1]},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M30 35H42H30Z",fill:e.colors[1]},null),i("path",{d:"M36 29V41M30 35H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M27 28H18.8C14.3196 28 12.0794 28 10.3681 28.8719C8.86278 29.6389 7.63893 30.8628 6.87195 32.3681C6 34.0794 6 36.3196 6 40.8V42H27",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("P",s("peoples",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32.6077 7C34.6405 8.2249 36.0001 10.4537 36.0001 13C36.0001 15.5463 34.6405 17.7751 32.6077 19",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 40.8V42H34V40.8C34 36.3196 34 34.0794 33.1281 32.3681C32.3611 30.8628 31.1372 29.6389 29.6319 28.8719C27.9206 28 25.6804 28 21.2 28H16.8C12.3196 28 10.0794 28 8.36808 28.8719C6.86278 29.6389 5.63893 30.8628 4.87195 32.3681C4 34.0794 4 36.3196 4 40.8Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M43.9999 42.0001V40.8001C43.9999 36.3197 43.9999 34.0795 43.128 32.3682C42.361 30.8629 41.1371 29.6391 39.6318 28.8721",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("b",s("plus",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24.0605 10L24.0239 38",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M10 24L38 24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("R",s("radio-two",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("circle",{cx:"24",cy:"24",r:"20",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("circle",{cx:"24",cy:"24",r:"8",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("c",s("seal",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M5 37C5 35.8954 5.89543 35 7 35H41C42.1046 35 43 35.8954 43 37V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M5 31C5 29.8954 5.89543 29 7 29H41C42.1046 29 43 29.8954 43 31V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V31Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M18.763 15.6637C18.9051 15.2657 19.2821 15 19.7047 15H28.2953C28.7179 15 29.0949 15.2657 29.237 15.6637L34 29H14L18.763 15.6637Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"15",y:"4",width:"18",height:"10.8",rx:"5.4",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null)])}))),e("S",s("setting-two",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M18.2838 43.1713C14.9327 42.1736 11.9498 40.3213 9.58787 37.867C10.469 36.8227 11 35.4734 11 34.0001C11 30.6864 8.31371 28.0001 5 28.0001C4.79955 28.0001 4.60139 28.01 4.40599 28.0292C4.13979 26.7277 4 25.3803 4 24.0001C4 21.9095 4.32077 19.8938 4.91579 17.9995C4.94381 17.9999 4.97188 18.0001 5 18.0001C8.31371 18.0001 11 15.3138 11 12.0001C11 11.0488 10.7786 10.1493 10.3846 9.35011C12.6975 7.1995 15.5205 5.59002 18.6521 4.72314C19.6444 6.66819 21.6667 8.00013 24 8.00013C26.3333 8.00013 28.3556 6.66819 29.3479 4.72314C32.4795 5.59002 35.3025 7.1995 37.6154 9.35011C37.2214 10.1493 37 11.0488 37 12.0001C37 15.3138 39.6863 18.0001 43 18.0001C43.0281 18.0001 43.0562 17.9999 43.0842 17.9995C43.6792 19.8938 44 21.9095 44 24.0001C44 25.3803 43.8602 26.7277 43.594 28.0292C43.3986 28.01 43.2005 28.0001 43 28.0001C39.6863 28.0001 37 30.6864 37 34.0001C37 35.4734 37.531 36.8227 38.4121 37.867C36.0502 40.3213 33.0673 42.1736 29.7162 43.1713C28.9428 40.752 26.676 39.0001 24 39.0001C21.324 39.0001 19.0572 40.752 18.2838 43.1713Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 31C27.866 31 31 27.866 31 24C31 20.134 27.866 17 24 17C20.134 17 17 20.134 17 24C17 27.866 20.134 31 24 31Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("T",s("text",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("rect",{x:"6",y:"6",width:"36",height:"36",rx:"3",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 19V16H32V19",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 34H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 18L24 34",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("m",s("time",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24.0084 12.0001L24.0072 24.0089L32.4866 32.4883",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("U",s("up-c",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M33 27L24 18L15 27",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("o",s("upload-one",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M11.6777 20.271C7.27476 21.3181 4 25.2766 4 30C4 35.5228 8.47715 40 14 40C14.9474 40 15.864 39.8683 16.7325 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M36.0547 20.271C40.4577 21.3181 43.7324 25.2766 43.7324 30C43.7324 35.5228 39.2553 40 33.7324 40C32.785 40 31.8684 39.8683 30.9999 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M36 20C36 13.3726 30.6274 8 24 8C17.3726 8 12 13.3726 12 20",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M17.0654 27.8812L23.9999 20.9238L31.1318 28.0002",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 38.0001V24.4619",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])})))}}})); +System.register(["./@vue-legacy-4de3d5b5.js"],(function(e,o){"use strict";var t,i;return{setters:[e=>{t=e.i,i=e.d}],execute:function(){var o={size:"1em",strokeWidth:4,strokeLinecap:"round",strokeLinejoin:"round",rtl:!1,theme:"outline",colors:{outline:{fill:"#333",background:"transparent"},filled:{fill:"#333",background:"#FFF"},twoTone:{fill:"#333",twoTone:"#2F88FF"},multiColor:{outStrokeColor:"#333",outFillColor:"#2F88FF",innerStrokeColor:"#FFF",innerFillColor:"#43CCF8"}},prefix:"i"},r=Symbol("icon-context");function s(e,s,n){return{name:"icon-"+e,props:["size","strokeWidth","strokeLinecap","strokeLinejoin","theme","fill","spin"],setup:function(l){var k="icon-"+(4294967296*(1+Math.random())|0).toString(16).substring(1),h=t(r,o);return function(){var o=l.size,t=l.strokeWidth,r=l.strokeLinecap,c=l.strokeLinejoin,d=l.theme,p=l.fill,a=l.spin,u=function(e,o,t){var i="string"==typeof o.fill?[o.fill]:o.fill||[],r=[];switch(o.theme||t.theme){case"outline":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("none"),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("none");break;case"filled":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("#FFF"),r.push("#FFF");break;case"two-tone":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.twoTone.twoTone),r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.twoTone.twoTone);break;case"multi-color":r.push("string"==typeof i[0]?i[0]:"currentColor"),r.push("string"==typeof i[1]?i[1]:t.colors.multiColor.outFillColor),r.push("string"==typeof i[2]?i[2]:t.colors.multiColor.innerStrokeColor),r.push("string"==typeof i[3]?i[3]:t.colors.multiColor.innerFillColor)}return{size:o.size||t.size,strokeWidth:o.strokeWidth||t.strokeWidth,strokeLinecap:o.strokeLinecap||t.strokeLinecap,strokeLinejoin:o.strokeLinejoin||t.strokeLinejoin,colors:r,id:e}}(k,{size:o,strokeWidth:t,strokeLinecap:r,strokeLinejoin:c,theme:d,fill:p},h),L=[h.prefix+"-icon"];return L.push(h.prefix+"-icon-"+e),s&&h.rtl&&L.push(h.prefix+"-icon-rtl"),a&&L.push(h.prefix+"-icon-spin"),i("span",{class:L.join(" ")},[n(u)])}}}}e("h",s("align-text-left",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M42 9H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M34 19H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M42 29H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M34 39H6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("A",s("attention",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C29.5228 44 34.5228 41.7614 38.1421 38.1421C41.7614 34.5228 44 29.5228 44 24C44 18.4772 41.7614 13.4772 38.1421 9.85786C34.5228 6.23858 29.5228 4 24 4C18.4772 4 13.4772 6.23858 9.85786 9.85786C6.23858 13.4772 4 18.4772 4 24C4 29.5228 6.23858 34.5228 9.85786 38.1421C13.4772 41.7614 18.4772 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 37C25.3807 37 26.5 35.8807 26.5 34.5C26.5 33.1193 25.3807 32 24 32C22.6193 32 21.5 33.1193 21.5 34.5C21.5 35.8807 22.6193 37 24 37Z",fill:e.colors[2]},null),i("path",{d:"M24 12V28",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("B",s("branch-one",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 33V15",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"10",y:"9",width:"28",height:"6",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 32L14 25H33.9743L40 32",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"4",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"20",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"36",y:"33",width:"8",height:"8",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("l",s("calendar-dot",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("rect",{x:"4",y:"4",width:"40",height:"40",rx:"2",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 14H44",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("line",{x1:"44",y1:"11",x2:"44",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 22H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 22H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 22H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 29H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 29H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 29H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 36H16",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 36H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 36H36",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("line",{x1:"4",y1:"11",x2:"4",y2:"23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("j",s("checkbox",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M39 6H9C7.34315 6 6 7.34315 6 9V39C6 40.6569 7.34315 42 9 42H39C40.6569 42 42 40.6569 42 39V9C42 7.34315 40.6569 6 39 6Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M32 16H16V32H32V16Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("n",s("clear",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M20 5.91406H28V13.9141H43V21.9141H5V13.9141H20V5.91406Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 40H40V22H8V40Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 39.8977V33.8977",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32 39.8976V33.9141",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M12 40H36",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("C",s("close-small",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M14 14L34 34",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M14 34L34 14",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("D",s("delete",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M9 10V44H39V10H9Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M20 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M28 20V33",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 10H44",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 10L19.289 4H28.7771L32 10H16Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("f",s("delete-one",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M15 12L16.2 5H31.8L33 12",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M6 12H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M37 12L35 43H13L11 12H37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M19 35H29",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("g",s("down-c",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M33 21L24 30L15 21",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("k",s("drop-down-list",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M40 28L24 40L8 28",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M8 10H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M8 18H40",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("E",s("edit",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M7 42H43",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M11 26.7199V34H18.3172L39 13.3081L31.6951 6L11 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("d",s("edit-two",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M42 26V40C42 41.1046 41.1046 42 40 42H8C6.89543 42 6 41.1046 6 40V8C6 6.89543 6.89543 6 8 6L22 6",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M14 26.7199V34H21.3172L42 13.3081L34.6951 6L14 26.7199Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("a",s("editor",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M40 33V42C40 43.1046 39.1046 44 38 44H31.5",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M40 16V6C40 4.89543 39.1046 4 38 4H10C8.89543 4 8 4.89543 8 6V42C8 43.1046 8.89543 44 10 44H16",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 16H30",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M23 44L40 23",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null),i("path",{d:"M16 24H24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap},null)])}))),e("L",s("label",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M9 4H39V44L24 33.4286L9 44V4Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"9",y:"4",width:"30",height:"12",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("i",s("pacifier",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("g",{"clip-path":"url(#"+e.id+"02a82aa8)"},[i("path",{d:"M30.6561 21.5855L34.7593 17.4823C36.761 18.0169 38.9853 17.499 40.5556 15.9286C42.8988 13.5855 42.8988 9.78647 40.5556 7.44332C38.2125 5.10018 34.4135 5.10018 32.0703 7.44332C30.5 9.0137 29.9821 11.238 30.5166 13.2397L26.4135 17.3428",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M41.263 32.1922L15.8071 6.73633L11.918 10.6254L19.6962 21.9391L16.8678 26.1818L21.464 30.778L25.7066 27.9495L37.3739 36.0813L41.263 32.1922Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M19.3197 21.8847C15.9285 20.8969 12.117 21.74 9.44302 24.4139C5.53778 28.3192 5.53778 34.6508 9.44302 38.556C13.3483 42.4613 19.6799 42.4613 23.5852 38.556C26.2591 35.8821 27.1022 32.0706 26.1144 28.6793",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)]),i("defs",null,[i("clipPath",{id:e.id+"02a82aa8"},[i("rect",{width:"48",height:"48",fill:e.colors[2]},null)])])])}))),e("e",s("people-plus",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M36 29V41V29Z",fill:e.colors[1]},null),i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M30 35H42H30Z",fill:e.colors[1]},null),i("path",{d:"M36 29V41M30 35H42",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M27 28H18.8C14.3196 28 12.0794 28 10.3681 28.8719C8.86278 29.6389 7.63893 30.8628 6.87195 32.3681C6 34.0794 6 36.3196 6 40.8V42H27",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("P",s("peoples",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M19 20C22.866 20 26 16.866 26 13C26 9.13401 22.866 6 19 6C15.134 6 12 9.13401 12 13C12 16.866 15.134 20 19 20Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M32.6077 7C34.6405 8.2249 36.0001 10.4537 36.0001 13C36.0001 15.5463 34.6405 17.7751 32.6077 19",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M4 40.8V42H34V40.8C34 36.3196 34 34.0794 33.1281 32.3681C32.3611 30.8628 31.1372 29.6389 29.6319 28.8719C27.9206 28 25.6804 28 21.2 28H16.8C12.3196 28 10.0794 28 8.36808 28.8719C6.86278 29.6389 5.63893 30.8628 4.87195 32.3681C4 34.0794 4 36.3196 4 40.8Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M43.9999 42.0001V40.8001C43.9999 36.3197 43.9999 34.0795 43.128 32.3682C42.361 30.8629 41.1371 29.6391 39.6318 28.8721",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("b",s("plus",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24.0605 10L24.0239 38",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M10 24L38 24",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("R",s("radio-two",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("circle",{cx:"24",cy:"24",r:"20",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("circle",{cx:"24",cy:"24",r:"8",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("c",s("seal",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M5 37C5 35.8954 5.89543 35 7 35H41C42.1046 35 43 35.8954 43 37V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V37Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M5 31C5 29.8954 5.89543 29 7 29H41C42.1046 29 43 29.8954 43 31V42C43 43.1046 42.1046 44 41 44H7C5.89543 44 5 43.1046 5 42V31Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M18.763 15.6637C18.9051 15.2657 19.2821 15 19.7047 15H28.2953C28.7179 15 29.0949 15.2657 29.237 15.6637L34 29H14L18.763 15.6637Z",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("rect",{x:"15",y:"4",width:"18",height:"10.8",rx:"5.4",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth},null)])}))),e("S",s("setting-two",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M18.2838 43.1713C14.9327 42.1736 11.9498 40.3213 9.58787 37.867C10.469 36.8227 11 35.4734 11 34.0001C11 30.6864 8.31371 28.0001 5 28.0001C4.79955 28.0001 4.60139 28.01 4.40599 28.0292C4.13979 26.7277 4 25.3803 4 24.0001C4 21.9095 4.32077 19.8938 4.91579 17.9995C4.94381 17.9999 4.97188 18.0001 5 18.0001C8.31371 18.0001 11 15.3138 11 12.0001C11 11.0488 10.7786 10.1493 10.3846 9.35011C12.6975 7.1995 15.5205 5.59002 18.6521 4.72314C19.6444 6.66819 21.6667 8.00013 24 8.00013C26.3333 8.00013 28.3556 6.66819 29.3479 4.72314C32.4795 5.59002 35.3025 7.1995 37.6154 9.35011C37.2214 10.1493 37 11.0488 37 12.0001C37 15.3138 39.6863 18.0001 43 18.0001C43.0281 18.0001 43.0562 17.9999 43.0842 17.9995C43.6792 19.8938 44 21.9095 44 24.0001C44 25.3803 43.8602 26.7277 43.594 28.0292C43.3986 28.01 43.2005 28.0001 43 28.0001C39.6863 28.0001 37 30.6864 37 34.0001C37 35.4734 37.531 36.8227 38.4121 37.867C36.0502 40.3213 33.0673 42.1736 29.7162 43.1713C28.9428 40.752 26.676 39.0001 24 39.0001C21.324 39.0001 19.0572 40.752 18.2838 43.1713Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 31C27.866 31 31 27.866 31 24C31 20.134 27.866 17 24 17C20.134 17 17 20.134 17 24C17 27.866 20.134 31 24 31Z",fill:e.colors[3],stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("T",s("text",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("rect",{x:"6",y:"6",width:"36",height:"36",rx:"3",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M16 19V16H32V19",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M22 34H26",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 18L24 34",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("m",s("time",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24.0084 12.0001L24.0072 24.0089L32.4866 32.4883",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("U",s("up-c",!1,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",stroke:e.colors[0],"stroke-width":e.strokeWidth},null),i("path",{d:"M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z",fill:e.colors[1],stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M33 27L24 18L15 27",stroke:e.colors[2],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])}))),e("o",s("upload-one",!0,(function(e){return i("svg",{width:e.size,height:e.size,viewBox:"0 0 48 48",fill:"none"},[i("path",{d:"M11.6777 20.271C7.27476 21.3181 4 25.2766 4 30C4 35.5228 8.47715 40 14 40C14.9474 40 15.864 39.8683 16.7325 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M36.0547 20.271C40.4577 21.3181 43.7324 25.2766 43.7324 30C43.7324 35.5228 39.2553 40 33.7324 40C32.785 40 31.8684 39.8683 30.9999 39.6221",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M36 20C36 13.3726 30.6274 8 24 8C17.3726 8 12 13.3726 12 20",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M17.0654 27.8812L23.9999 20.9238L31.1318 28.0002",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null),i("path",{d:"M24 38.0001V24.4619",stroke:e.colors[0],"stroke-width":e.strokeWidth,"stroke-linecap":e.strokeLinecap,"stroke-linejoin":e.strokeLinejoin},null)])})))}}})); diff --git a/src/main/resources/html/lc/assets/@vue-99409b8e.js b/src/main/resources/html/lc/assets/@vue-5dd246aa.js similarity index 99% rename from src/main/resources/html/lc/assets/@vue-99409b8e.js rename to src/main/resources/html/lc/assets/@vue-5dd246aa.js index 9450bf5..bfd9dc9 100644 --- a/src/main/resources/html/lc/assets/@vue-99409b8e.js +++ b/src/main/resources/html/lc/assets/@vue-5dd246aa.js @@ -1 +1 @@ -function kn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r!!n[r.toLowerCase()]:r=>!!n[r]}function sn(e){if(N(e)){const t={};for(let n=0;n{if(n){const s=n.split(_i);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function rn(e){let t="";if(ee(e))t=e;else if(N(e))for(let n=0;nat(n,t))}const Zl=e=>ee(e)?e:e==null?"":N(e)||q(e)&&(e.toString===lr||!D(e.toString))?JSON.stringify(e,ir,2):String(e),ir=(e,t)=>t&&t.__v_isRef?ir(e,t.value):ot(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:ln(t)?{[`Set(${t.size})`]:[...t.values()]}:q(t)&&!N(t)&&!cr(t)?String(t):t,Q={},it=[],we=()=>{},Ti=()=>!1,wi=/^on[^a-z]/,on=e=>wi.test(e),Vn=e=>e.startsWith("onUpdate:"),ie=Object.assign,Wn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},vi=Object.prototype.hasOwnProperty,K=(e,t)=>vi.call(e,t),N=Array.isArray,ot=e=>Ht(e)==="[object Map]",ln=e=>Ht(e)==="[object Set]",Cs=e=>Ht(e)==="[object Date]",D=e=>typeof e=="function",ee=e=>typeof e=="string",It=e=>typeof e=="symbol",q=e=>e!==null&&typeof e=="object",or=e=>q(e)&&D(e.then)&&D(e.catch),lr=Object.prototype.toString,Ht=e=>lr.call(e),Ai=e=>Ht(e).slice(8,-1),cr=e=>Ht(e)==="[object Object]",zn=e=>ee(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,qt=kn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),cn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Ii=/-(\w)/g,Me=cn(e=>e.replace(Ii,(t,n)=>n?n.toUpperCase():"")),Fi=/\B([A-Z])/g,nt=cn(e=>e.replace(Fi,"-$1").toLowerCase()),fn=cn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Jt=cn(e=>e?`on${fn(e)}`:""),Ft=(e,t)=>!Object.is(e,t),lt=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Mt=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let xs;const Mi=()=>xs||(xs=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let pe;class fr{constructor(t=!1){this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=pe,!t&&pe&&(this.index=(pe.scopes||(pe.scopes=[])).push(this)-1)}run(t){if(this.active){const n=pe;try{return pe=this,t()}finally{pe=n}}}on(){pe=this}off(){pe=this.parent}stop(t){if(this.active){let n,s;for(n=0,s=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},ur=e=>(e.w&ke)>0,ar=e=>(e.n&ke)>0,Pi=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s{(d==="length"||d>=f)&&l.push(a)})}else switch(n!==void 0&&l.push(o.get(n)),t){case"add":N(e)?zn(n)&&l.push(o.get("length")):(l.push(o.get(et)),ot(e)&&l.push(o.get(Nn)));break;case"delete":N(e)||(l.push(o.get(et)),ot(e)&&l.push(o.get(Nn)));break;case"set":ot(e)&&l.push(o.get(et));break}if(l.length===1)l[0]&&Rn(l[0]);else{const f=[];for(const a of l)a&&f.push(...a);Rn(qn(f))}}function Rn(e,t){const n=N(e)?e:[...e];for(const s of n)s.computed&&Ts(s);for(const s of n)s.computed||Ts(s)}function Ts(e,t){(e!==Ee||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const Ri=kn("__proto__,__v_isRef,__isVue"),pr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(It)),Si=Yn(),Li=Yn(!1,!0),Di=Yn(!0),ws=Hi();function Hi(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=U(this);for(let i=0,o=this.length;i{e[t]=function(...n){mt();const s=U(this)[t].apply(this,n);return _t(),s}}),e}function Yn(e=!1,t=!1){return function(s,r,i){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&i===(e?t?Gi:yr:t?br:_r).get(s))return s;const o=N(s);if(!e&&o&&K(ws,r))return Reflect.get(ws,r,i);const l=Reflect.get(s,r,i);return(It(r)?pr.has(r):Ri(r))||(e||me(s,"get",r),t)?l:le(l)?o&&zn(r)?l:l.value:q(l)?e?Cr(l):Qn(l):l}}const $i=gr(),Bi=gr(!0);function gr(e=!1){return function(n,s,r,i){let o=n[s];if(dt(o)&&le(o)&&!le(r))return!1;if(!e&&(!en(r)&&!dt(r)&&(o=U(o),r=U(r)),!N(n)&&le(o)&&!le(r)))return o.value=r,!0;const l=N(n)&&zn(s)?Number(s)e,un=e=>Reflect.getPrototypeOf(e);function jt(e,t,n=!1,s=!1){e=e.__v_raw;const r=U(e),i=U(t);n||(t!==i&&me(r,"get",t),me(r,"get",i));const{has:o}=un(r),l=s?Zn:n?es:Ot;if(o.call(r,t))return l(e.get(t));if(o.call(r,i))return l(e.get(i));e!==r&&e.get(t)}function Kt(e,t=!1){const n=this.__v_raw,s=U(n),r=U(e);return t||(e!==r&&me(s,"has",e),me(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Ut(e,t=!1){return e=e.__v_raw,!t&&me(U(e),"iterate",et),Reflect.get(e,"size",e)}function vs(e){e=U(e);const t=U(this);return un(t).has.call(t,e)||(t.add(e),Re(t,"add",e,e)),this}function As(e,t){t=U(t);const n=U(this),{has:s,get:r}=un(n);let i=s.call(n,e);i||(e=U(e),i=s.call(n,e));const o=r.call(n,e);return n.set(e,t),i?Ft(t,o)&&Re(n,"set",e,t):Re(n,"add",e,t),this}function Is(e){const t=U(this),{has:n,get:s}=un(t);let r=n.call(t,e);r||(e=U(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&Re(t,"delete",e,void 0),i}function Fs(){const e=U(this),t=e.size!==0,n=e.clear();return t&&Re(e,"clear",void 0,void 0),n}function kt(e,t){return function(s,r){const i=this,o=i.__v_raw,l=U(o),f=t?Zn:e?es:Ot;return!e&&me(l,"iterate",et),o.forEach((a,d)=>s.call(r,f(a),f(d),i))}}function Vt(e,t,n){return function(...s){const r=this.__v_raw,i=U(r),o=ot(i),l=e==="entries"||e===Symbol.iterator&&o,f=e==="keys"&&o,a=r[e](...s),d=n?Zn:t?es:Ot;return!t&&me(i,"iterate",f?Nn:et),{next(){const{value:p,done:g}=a.next();return g?{value:p,done:g}:{value:l?[d(p[0]),d(p[1])]:d(p),done:g}},[Symbol.iterator](){return this}}}}function De(e){return function(...t){return e==="delete"?!1:this}}function Wi(){const e={get(i){return jt(this,i)},get size(){return Ut(this)},has:Kt,add:vs,set:As,delete:Is,clear:Fs,forEach:kt(!1,!1)},t={get(i){return jt(this,i,!1,!0)},get size(){return Ut(this)},has:Kt,add:vs,set:As,delete:Is,clear:Fs,forEach:kt(!1,!0)},n={get(i){return jt(this,i,!0)},get size(){return Ut(this,!0)},has(i){return Kt.call(this,i,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:kt(!0,!1)},s={get(i){return jt(this,i,!0,!0)},get size(){return Ut(this,!0)},has(i){return Kt.call(this,i,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:kt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=Vt(i,!1,!1),n[i]=Vt(i,!0,!1),t[i]=Vt(i,!1,!0),s[i]=Vt(i,!0,!0)}),[e,n,t,s]}const[zi,qi,Ji,Yi]=Wi();function Xn(e,t){const n=t?e?Yi:Ji:e?qi:zi;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(K(n,r)&&r in s?n:s,r,i)}const Zi={get:Xn(!1,!1)},Xi={get:Xn(!1,!0)},Qi={get:Xn(!0,!1)},_r=new WeakMap,br=new WeakMap,yr=new WeakMap,Gi=new WeakMap;function eo(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function to(e){return e.__v_skip||!Object.isExtensible(e)?0:eo(Ai(e))}function Qn(e){return dt(e)?e:Gn(e,!1,mr,Zi,_r)}function no(e){return Gn(e,!1,Vi,Xi,br)}function Cr(e){return Gn(e,!0,ki,Qi,yr)}function Gn(e,t,n,s,r){if(!q(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=to(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function ct(e){return dt(e)?ct(e.__v_raw):!!(e&&e.__v_isReactive)}function dt(e){return!!(e&&e.__v_isReadonly)}function en(e){return!!(e&&e.__v_isShallow)}function xr(e){return ct(e)||dt(e)}function U(e){const t=e&&e.__v_raw;return t?U(t):e}function Er(e){return Gt(e,"__v_skip",!0),e}const Ot=e=>q(e)?Qn(e):e,es=e=>q(e)?Cr(e):e;function Tr(e){Ke&&Ee&&(e=U(e),hr(e.dep||(e.dep=qn())))}function ts(e,t){e=U(e),e.dep&&Rn(e.dep)}function le(e){return!!(e&&e.__v_isRef===!0)}function ec(e){return wr(e,!1)}function tc(e){return wr(e,!0)}function wr(e,t){return le(e)?e:new so(e,t)}class so{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:U(t),this._value=n?t:Ot(t)}get value(){return Tr(this),this._value}set value(t){const n=this.__v_isShallow||en(t)||dt(t);t=n?t:U(t),Ft(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Ot(t),ts(this))}}function nc(e){ts(e)}function ro(e){return le(e)?e.value:e}const io={get:(e,t,n)=>ro(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function vr(e){return ct(e)?e:new Proxy(e,io)}function sc(e){const t=N(e)?new Array(e.length):{};for(const n in e)t[n]=lo(e,n);return t}class oo{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}}function lo(e,t,n){const s=e[t];return le(s)?s:new oo(e,t,n)}var Ar;class co{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Ar]=!1,this._dirty=!0,this.effect=new Jn(t,()=>{this._dirty||(this._dirty=!0,ts(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=U(this);return Tr(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Ar="__v_isReadonly";function fo(e,t,n=!1){let s,r;const i=D(e);return i?(s=e,r=we):(s=e.get,r=e.set),new co(s,r,i||!r,n)}function rc(e,...t){}function Ue(e,t,n,s){let r;try{r=s?e(...s):e()}catch(i){an(i,t,n)}return r}function ye(e,t,n,s){if(D(e)){const i=Ue(e,t,n,s);return i&&or(i)&&i.catch(o=>{an(o,t,n)}),i}const r=[];for(let i=0;i>>1;Nt(fe[s])Fe&&fe.splice(t,1)}function po(e){N(e)?ft.push(...e):(!Ne||!Ne.includes(e,e.allowRecurse?Ze+1:Ze))&&ft.push(e),Fr()}function Ms(e,t=Pt?Fe+1:0){for(;tNt(n)-Nt(s)),Ze=0;Zee.id==null?1/0:e.id,go=(e,t)=>{const n=Nt(e)-Nt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Or(e){Sn=!1,Pt=!0,fe.sort(go);const t=we;try{for(Fe=0;Feee(v)?v.trim():v)),p&&(r=n.map(Mt))}let l,f=s[l=Jt(t)]||s[l=Jt(Me(t))];!f&&i&&(f=s[l=Jt(nt(t))]),f&&ye(f,e,6,r);const a=s[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,ye(a,e,6,r)}}function Pr(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!D(e)){const f=a=>{const d=Pr(a,t,!0);d&&(l=!0,ie(o,d))};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}return!i&&!l?(q(e)&&s.set(e,null),null):(N(i)?i.forEach(f=>o[f]=null):ie(o,i),q(e)&&s.set(e,o),o)}function dn(e,t){return!e||!on(t)?!1:(t=t.slice(2).replace(/Once$/,""),K(e,t[0].toLowerCase()+t.slice(1))||K(e,nt(t))||K(e,t))}let ce=null,hn=null;function tn(e){const t=ce;return ce=e,hn=e&&e.type.__scopeId||null,t}function ic(e){hn=e}function oc(){hn=null}function _o(e,t=ce,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&js(-1);const i=tn(t);let o;try{o=e(...r)}finally{tn(i),s._d&&js(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function En(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:i,propsOptions:[o],slots:l,attrs:f,emit:a,render:d,renderCache:p,data:g,setupState:v,ctx:S,inheritAttrs:F}=e;let W,$;const I=tn(e);try{if(n.shapeFlag&4){const w=r||s;W=Ie(d.call(w,w,p,i,v,g,S)),$=f}else{const w=t;W=Ie(w.length>1?w(i,{attrs:f,slots:l,emit:a}):w(i,null)),$=t.props?f:bo(f)}}catch(w){At.length=0,an(w,e,1),W=ue(Ce)}let E=W;if($&&F!==!1){const w=Object.keys($),{shapeFlag:B}=E;w.length&&B&7&&(o&&w.some(Vn)&&($=yo($,o)),E=Se(E,$))}return n.dirs&&(E=Se(E),E.dirs=E.dirs?E.dirs.concat(n.dirs):n.dirs),n.transition&&(E.transition=n.transition),W=E,tn(I),W}const bo=e=>{let t;for(const n in e)(n==="class"||n==="style"||on(n))&&((t||(t={}))[n]=e[n]);return t},yo=(e,t)=>{const n={};for(const s in e)(!Vn(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Co(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:f}=t,a=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&f>=0){if(f&1024)return!0;if(f&16)return s?Os(s,o,a):!!o;if(f&8){const d=t.dynamicProps;for(let p=0;pe.__isSuspense;function Eo(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):po(e)}function To(e,t){if(re){let n=re.provides;const s=re.parent&&re.parent.provides;s===n&&(n=re.provides=Object.create(s)),n[e]=t}}function Yt(e,t,n=!1){const s=re||ce;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&D(t)?t.call(s.proxy):t}}function lc(e,t){return rs(e,null,t)}const Wt={};function Zt(e,t,n){return rs(e,t,n)}function rs(e,t,{immediate:n,deep:s,flush:r,onTrack:i,onTrigger:o}=Q){const l=re;let f,a=!1,d=!1;if(le(e)?(f=()=>e.value,a=en(e)):ct(e)?(f=()=>e,s=!0):N(e)?(d=!0,a=e.some(E=>ct(E)||en(E)),f=()=>e.map(E=>{if(le(E))return E.value;if(ct(E))return Ge(E);if(D(E))return Ue(E,l,2)})):D(e)?t?f=()=>Ue(e,l,2):f=()=>{if(!(l&&l.isUnmounted))return p&&p(),ye(e,l,3,[g])}:f=we,t&&s){const E=f;f=()=>Ge(E())}let p,g=E=>{p=$.onStop=()=>{Ue(E,l,4)}},v;if(Dt)if(g=we,t?n&&ye(t,l,3,[f(),d?[]:void 0,g]):f(),r==="sync"){const E=_l();v=E.__watcherHandles||(E.__watcherHandles=[])}else return we;let S=d?new Array(e.length).fill(Wt):Wt;const F=()=>{if($.active)if(t){const E=$.run();(s||a||(d?E.some((w,B)=>Ft(w,S[B])):Ft(E,S)))&&(p&&p(),ye(t,l,3,[E,S===Wt?void 0:d&&S[0]===Wt?[]:S,g]),S=E)}else $.run()};F.allowRecurse=!!t;let W;r==="sync"?W=F:r==="post"?W=()=>oe(F,l&&l.suspense):(F.pre=!0,l&&(F.id=l.uid),W=()=>ss(F));const $=new Jn(f,W);t?n?F():S=$.run():r==="post"?oe($.run.bind($),l&&l.suspense):$.run();const I=()=>{$.stop(),l&&l.scope&&Wn(l.scope.effects,$)};return v&&v.push(I),I}function wo(e,t,n){const s=this.proxy,r=ee(e)?e.includes(".")?Rr(s,e):()=>s[e]:e.bind(s,s);let i;D(t)?i=t:(i=t.handler,n=t);const o=re;pt(this);const l=rs(r,i.bind(s),n);return o?pt(o):tt(),l}function Rr(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r{Ge(n,t)});else if(cr(e))for(const n in e)Ge(e[n],t);return e}function Sr(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return os(()=>{e.isMounted=!0}),cs(()=>{e.isUnmounting=!0}),e}const _e=[Function,Array],vo={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:_e,onEnter:_e,onAfterEnter:_e,onEnterCancelled:_e,onBeforeLeave:_e,onLeave:_e,onAfterLeave:_e,onLeaveCancelled:_e,onBeforeAppear:_e,onAppear:_e,onAfterAppear:_e,onAppearCancelled:_e},setup(e,{slots:t}){const n=bn(),s=Sr();let r;return()=>{const i=t.default&&is(t.default(),!0);if(!i||!i.length)return;let o=i[0];if(i.length>1){for(const F of i)if(F.type!==Ce){o=F;break}}const l=U(e),{mode:f}=l;if(s.isLeaving)return Tn(o);const a=Ps(o);if(!a)return Tn(o);const d=Rt(a,l,s,n);ht(a,d);const p=n.subTree,g=p&&Ps(p);let v=!1;const{getTransitionKey:S}=a.type;if(S){const F=S();r===void 0?r=F:F!==r&&(r=F,v=!0)}if(g&&g.type!==Ce&&(!Xe(a,g)||v)){const F=Rt(g,l,s,n);if(ht(g,F),f==="out-in")return s.isLeaving=!0,F.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},Tn(o);f==="in-out"&&a.type!==Ce&&(F.delayLeave=(W,$,I)=>{const E=Dr(s,g);E[String(g.key)]=g,W._leaveCb=()=>{$(),W._leaveCb=void 0,delete d.delayedLeave},d.delayedLeave=I})}return o}}},Lr=vo;function Dr(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Rt(e,t,n,s){const{appear:r,mode:i,persisted:o=!1,onBeforeEnter:l,onEnter:f,onAfterEnter:a,onEnterCancelled:d,onBeforeLeave:p,onLeave:g,onAfterLeave:v,onLeaveCancelled:S,onBeforeAppear:F,onAppear:W,onAfterAppear:$,onAppearCancelled:I}=t,E=String(e.key),w=Dr(n,e),B=(R,k)=>{R&&ye(R,s,9,k)},Z=(R,k)=>{const j=k[1];B(R,k),N(R)?R.every(X=>X.length<=1)&&j():R.length<=1&&j()},V={mode:i,persisted:o,beforeEnter(R){let k=l;if(!n.isMounted)if(r)k=F||l;else return;R._leaveCb&&R._leaveCb(!0);const j=w[E];j&&Xe(e,j)&&j.el._leaveCb&&j.el._leaveCb(),B(k,[R])},enter(R){let k=f,j=a,X=d;if(!n.isMounted)if(r)k=W||f,j=$||a,X=I||d;else return;let M=!1;const G=R._enterCb=de=>{M||(M=!0,de?B(X,[R]):B(j,[R]),V.delayedLeave&&V.delayedLeave(),R._enterCb=void 0)};k?Z(k,[R,G]):G()},leave(R,k){const j=String(e.key);if(R._enterCb&&R._enterCb(!0),n.isUnmounting)return k();B(p,[R]);let X=!1;const M=R._leaveCb=G=>{X||(X=!0,k(),G?B(S,[R]):B(v,[R]),R._leaveCb=void 0,w[j]===e&&delete w[j])};w[j]=e,g?Z(g,[R,M]):M()},clone(R){return Rt(R,t,n,s)}};return V}function Tn(e){if(pn(e))return e=Se(e),e.children=null,e}function Ps(e){return pn(e)?e.children?e.children[0]:void 0:e}function ht(e,t){e.shapeFlag&6&&e.component?ht(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function is(e,t=!1,n){let s=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader,pn=e=>e.type.__isKeepAlive,Ao={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=bn(),s=n.ctx;if(!s.renderer)return()=>{const I=t.default&&t.default();return I&&I.length===1?I[0]:I};const r=new Map,i=new Set;let o=null;const l=n.suspense,{renderer:{p:f,m:a,um:d,o:{createElement:p}}}=s,g=p("div");s.activate=(I,E,w,B,Z)=>{const V=I.component;a(I,E,w,0,l),f(V.vnode,I,E,w,V,l,B,I.slotScopeIds,Z),oe(()=>{V.isDeactivated=!1,V.a&<(V.a);const R=I.props&&I.props.onVnodeMounted;R&&be(R,V.parent,I)},l)},s.deactivate=I=>{const E=I.component;a(I,g,null,1,l),oe(()=>{E.da&<(E.da);const w=I.props&&I.props.onVnodeUnmounted;w&&be(w,E.parent,I),E.isDeactivated=!0},l)};function v(I){wn(I),d(I,n,l,!0)}function S(I){r.forEach((E,w)=>{const B=Kn(E.type);B&&(!I||!I(B))&&F(w)})}function F(I){const E=r.get(I);!o||E.type!==o.type?v(E):o&&wn(o),r.delete(I),i.delete(I)}Zt(()=>[e.include,e.exclude],([I,E])=>{I&&S(w=>Tt(I,w)),E&&S(w=>!Tt(E,w))},{flush:"post",deep:!0});let W=null;const $=()=>{W!=null&&r.set(W,vn(n.subTree))};return os($),ls($),cs(()=>{r.forEach(I=>{const{subTree:E,suspense:w}=n,B=vn(E);if(I.type===B.type){wn(B);const Z=B.component.da;Z&&oe(Z,w);return}v(I)})}),()=>{if(W=null,!t.default)return null;const I=t.default(),E=I[0];if(I.length>1)return o=null,I;if(!Lt(E)||!(E.shapeFlag&4)&&!(E.shapeFlag&128))return o=null,E;let w=vn(E);const B=w.type,Z=Kn(ut(w)?w.type.__asyncResolved||{}:B),{include:V,exclude:R,max:k}=e;if(V&&(!Z||!Tt(V,Z))||R&&Z&&Tt(R,Z))return o=w,E;const j=w.key==null?B:w.key,X=r.get(j);return w.el&&(w=Se(w),E.shapeFlag&128&&(E.ssContent=w)),W=j,X?(w.el=X.el,w.component=X.component,w.transition&&ht(w,w.transition),w.shapeFlag|=512,i.delete(j),i.add(j)):(i.add(j),k&&i.size>parseInt(k,10)&&F(i.values().next().value)),w.shapeFlag|=256,o=w,Nr(E.type)?E:w}}},fc=Ao;function Tt(e,t){return N(e)?e.some(n=>Tt(n,t)):ee(e)?e.split(",").includes(t):e.test?e.test(t):!1}function Io(e,t){Hr(e,"a",t)}function Fo(e,t){Hr(e,"da",t)}function Hr(e,t,n=re){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(gn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)pn(r.parent.vnode)&&Mo(s,t,n,r),r=r.parent}}function Mo(e,t,n,s){const r=gn(t,e,s,!0);$r(()=>{Wn(s[t],r)},n)}function wn(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function vn(e){return e.shapeFlag&128?e.ssContent:e}function gn(e,t,n=re,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;mt(),pt(n);const l=ye(t,n,e,o);return tt(),_t(),l});return s?r.unshift(i):r.push(i),i}}const Le=e=>(t,n=re)=>(!Dt||e==="sp")&&gn(e,(...s)=>t(...s),n),Oo=Le("bm"),os=Le("m"),Po=Le("bu"),ls=Le("u"),cs=Le("bum"),$r=Le("um"),No=Le("sp"),Ro=Le("rtg"),So=Le("rtc");function Lo(e,t=re){gn("ec",e,t)}function uc(e,t){const n=ce;if(n===null)return e;const s=yn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;it(o,l,void 0,i&&i[l]));else{const o=Object.keys(e);r=new Array(o.length);for(let l=0,f=o.length;l{const i=s.fn(...r);return i&&(i.key=s.key),i}:s.fn)}return e}function mc(e,t,n={},s,r){if(ce.isCE||ce.parent&&ut(ce.parent)&&ce.parent.isCE)return t!=="default"&&(n.name=t),ue("slot",n,s&&s());let i=e[t];i&&i._c&&(i._d=!1),Yr();const o=i&&jr(i(n)),l=Xr(ge,{key:n.key||o&&o.key||`_${t}`},o||(s?s():[]),o&&e._===1?64:-2);return!r&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function jr(e){return e.some(t=>Lt(t)?!(t.type===Ce||t.type===ge&&!jr(t.children)):!0)?e:null}function _c(e,t){const n={};for(const s in e)n[t&&/[A-Z]/.test(s)?`on:${s}`:Jt(s)]=e[s];return n}const Ln=e=>e?ei(e)?yn(e)||e.proxy:Ln(e.parent):null,wt=ie(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=>Ln(e.parent),$root:e=>Ln(e.root),$emit:e=>e.emit,$options:e=>as(e),$forceUpdate:e=>e.f||(e.f=()=>ss(e.update)),$nextTick:e=>e.n||(e.n=uo.bind(e.proxy)),$watch:e=>wo.bind(e)}),An=(e,t)=>e!==Q&&!e.__isScriptSetup&&K(e,t),Ho={get({_:e},t){const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:f}=e;let a;if(t[0]!=="$"){const v=o[t];if(v!==void 0)switch(v){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(An(s,t))return o[t]=1,s[t];if(r!==Q&&K(r,t))return o[t]=2,r[t];if((a=e.propsOptions[0])&&K(a,t))return o[t]=3,i[t];if(n!==Q&&K(n,t))return o[t]=4,n[t];Dn&&(o[t]=0)}}const d=wt[t];let p,g;if(d)return t==="$attrs"&&me(e,"get",t),d(e);if((p=l.__cssModules)&&(p=p[t]))return p;if(n!==Q&&K(n,t))return o[t]=4,n[t];if(g=f.config.globalProperties,K(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return An(r,t)?(r[t]=n,!0):s!==Q&&K(s,t)?(s[t]=n,!0):K(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==Q&&K(e,o)||An(t,o)||(l=i[0])&&K(l,o)||K(s,o)||K(wt,o)||K(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:K(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Dn=!0;function $o(e){const t=as(e),n=e.proxy,s=e.ctx;Dn=!1,t.beforeCreate&&Rs(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:f,inject:a,created:d,beforeMount:p,mounted:g,beforeUpdate:v,updated:S,activated:F,deactivated:W,beforeDestroy:$,beforeUnmount:I,destroyed:E,unmounted:w,render:B,renderTracked:Z,renderTriggered:V,errorCaptured:R,serverPrefetch:k,expose:j,inheritAttrs:X,components:M,directives:G,filters:de}=t;if(a&&Bo(a,s,null,e.appContext.config.unwrapInjectedRef),o)for(const te in o){const J=o[te];D(J)&&(s[te]=J.bind(n))}if(r){const te=r.call(n,n);q(te)&&(e.data=Qn(te))}if(Dn=!0,i)for(const te in i){const J=i[te],Ve=D(J)?J.bind(n,n):D(J.get)?J.get.bind(n,n):we,$t=!D(J)&&D(J.set)?J.set.bind(n):we,We=pl({get:Ve,set:$t});Object.defineProperty(s,te,{enumerable:!0,configurable:!0,get:()=>We.value,set:ve=>We.value=ve})}if(l)for(const te in l)Kr(l[te],s,n,te);if(f){const te=D(f)?f.call(n):f;Reflect.ownKeys(te).forEach(J=>{To(J,te[J])})}d&&Rs(d,e,"c");function se(te,J){N(J)?J.forEach(Ve=>te(Ve.bind(n))):J&&te(J.bind(n))}if(se(Oo,p),se(os,g),se(Po,v),se(ls,S),se(Io,F),se(Fo,W),se(Lo,R),se(So,Z),se(Ro,V),se(cs,I),se($r,w),se(No,k),N(j))if(j.length){const te=e.exposed||(e.exposed={});j.forEach(J=>{Object.defineProperty(te,J,{get:()=>n[J],set:Ve=>n[J]=Ve})})}else e.exposed||(e.exposed={});B&&e.render===we&&(e.render=B),X!=null&&(e.inheritAttrs=X),M&&(e.components=M),G&&(e.directives=G)}function Bo(e,t,n=we,s=!1){N(e)&&(e=Hn(e));for(const r in e){const i=e[r];let o;q(i)?"default"in i?o=Yt(i.from||r,i.default,!0):o=Yt(i.from||r):o=Yt(i),le(o)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:l=>o.value=l}):t[r]=o}}function Rs(e,t,n){ye(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Kr(e,t,n,s){const r=s.includes(".")?Rr(n,s):()=>n[s];if(ee(e)){const i=t[e];D(i)&&Zt(r,i)}else if(D(e))Zt(r,e.bind(n));else if(q(e))if(N(e))e.forEach(i=>Kr(i,t,n,s));else{const i=D(e.handler)?e.handler.bind(n):t[e.handler];D(i)&&Zt(r,i,e)}}function as(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let f;return l?f=l:!r.length&&!n&&!s?f=t:(f={},r.length&&r.forEach(a=>nn(f,a,o,!0)),nn(f,t,o)),q(t)&&i.set(t,f),f}function nn(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&nn(e,i,n,!0),r&&r.forEach(o=>nn(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=jo[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const jo={data:Ss,props:Ye,emits:Ye,methods:Ye,computed:Ye,beforeCreate:ae,created:ae,beforeMount:ae,mounted:ae,beforeUpdate:ae,updated:ae,beforeDestroy:ae,beforeUnmount:ae,destroyed:ae,unmounted:ae,activated:ae,deactivated:ae,errorCaptured:ae,serverPrefetch:ae,components:Ye,directives:Ye,watch:Uo,provide:Ss,inject:Ko};function Ss(e,t){return t?e?function(){return ie(D(e)?e.call(this,this):e,D(t)?t.call(this,this):t)}:t:e}function Ko(e,t){return Ye(Hn(e),Hn(t))}function Hn(e){if(N(e)){const t={};for(let n=0;n0)&&!(o&16)){if(o&8){const d=e.vnode.dynamicProps;for(let p=0;p{f=!0;const[g,v]=kr(p,t,!0);ie(o,g),v&&l.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!i&&!f)return q(e)&&s.set(e,it),it;if(N(i))for(let d=0;d-1,v[1]=F<0||S-1||K(v,"default"))&&l.push(p)}}}const a=[o,l];return q(e)&&s.set(e,a),a}function Ls(e){return e[0]!=="$"}function Ds(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function Hs(e,t){return Ds(e)===Ds(t)}function $s(e,t){return N(t)?t.findIndex(n=>Hs(n,e)):D(t)&&Hs(t,e)?0:-1}const Vr=e=>e[0]==="_"||e==="$stable",ds=e=>N(e)?e.map(Ie):[Ie(e)],Wo=(e,t,n)=>{if(t._n)return t;const s=_o((...r)=>ds(t(...r)),n);return s._c=!1,s},Wr=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Vr(r))continue;const i=e[r];if(D(i))t[r]=Wo(r,i,s);else if(i!=null){const o=ds(i);t[r]=()=>o}}},zr=(e,t)=>{const n=ds(t);e.slots.default=()=>n},zo=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=U(t),Gt(t,"_",n)):Wr(t,e.slots={})}else e.slots={},t&&zr(e,t);Gt(e.slots,_n,1)},qo=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=Q;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:(ie(r,t),!n&&l===1&&delete r._):(i=!t.$stable,Wr(t,r)),o=t}else t&&(zr(e,t),o={default:1});if(i)for(const l in r)!Vr(l)&&!(l in o)&&delete r[l]};function qr(){return{app:null,config:{isNativeTag:Ti,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Jo=0;function Yo(e,t){return function(s,r=null){D(s)||(s=Object.assign({},s)),r!=null&&!q(r)&&(r=null);const i=qr(),o=new Set;let l=!1;const f=i.app={_uid:Jo++,_component:s,_props:r,_container:null,_context:i,_instance:null,version:bl,get config(){return i.config},set config(a){},use(a,...d){return o.has(a)||(a&&D(a.install)?(o.add(a),a.install(f,...d)):D(a)&&(o.add(a),a(f,...d))),f},mixin(a){return i.mixins.includes(a)||i.mixins.push(a),f},component(a,d){return d?(i.components[a]=d,f):i.components[a]},directive(a,d){return d?(i.directives[a]=d,f):i.directives[a]},mount(a,d,p){if(!l){const g=ue(s,r);return g.appContext=i,d&&t?t(g,a):e(g,a,p),l=!0,f._container=a,a.__vue_app__=f,yn(g.component)||g.component.proxy}},unmount(){l&&(e(null,f._container),delete f._container.__vue_app__)},provide(a,d){return i.provides[a]=d,f}};return f}}function Bn(e,t,n,s,r=!1){if(N(e)){e.forEach((g,v)=>Bn(g,t&&(N(t)?t[v]:t),n,s,r));return}if(ut(s)&&!r)return;const i=s.shapeFlag&4?yn(s.component)||s.component.proxy:s.el,o=r?null:i,{i:l,r:f}=e,a=t&&t.r,d=l.refs===Q?l.refs={}:l.refs,p=l.setupState;if(a!=null&&a!==f&&(ee(a)?(d[a]=null,K(p,a)&&(p[a]=null)):le(a)&&(a.value=null)),D(f))Ue(f,l,12,[o,d]);else{const g=ee(f),v=le(f);if(g||v){const S=()=>{if(e.f){const F=g?K(p,f)?p[f]:d[f]:f.value;r?N(F)&&Wn(F,i):N(F)?F.includes(i)||F.push(i):g?(d[f]=[i],K(p,f)&&(p[f]=d[f])):(f.value=[i],e.k&&(d[e.k]=f.value))}else g?(d[f]=o,K(p,f)&&(p[f]=o)):v&&(f.value=o,e.k&&(d[e.k]=o))};o?(S.id=-1,oe(S,n)):S()}}}const oe=Eo;function Zo(e){return Xo(e)}function Xo(e,t){const n=Mi();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:f,setText:a,setElementText:d,parentNode:p,nextSibling:g,setScopeId:v=we,insertStaticContent:S}=e,F=(c,u,h,_=null,m=null,C=null,T=!1,y=null,x=!!u.dynamicChildren)=>{if(c===u)return;c&&!Xe(c,u)&&(_=Bt(c),ve(c,m,C,!0),c=null),u.patchFlag===-2&&(x=!1,u.dynamicChildren=null);const{type:b,ref:O,shapeFlag:A}=u;switch(b){case mn:W(c,u,h,_);break;case Ce:$(c,u,h,_);break;case Xt:c==null&&I(u,h,_,T);break;case ge:M(c,u,h,_,m,C,T,y,x);break;default:A&1?B(c,u,h,_,m,C,T,y,x):A&6?G(c,u,h,_,m,C,T,y,x):(A&64||A&128)&&b.process(c,u,h,_,m,C,T,y,x,st)}O!=null&&m&&Bn(O,c&&c.ref,C,u||c,!u)},W=(c,u,h,_)=>{if(c==null)s(u.el=l(u.children),h,_);else{const m=u.el=c.el;u.children!==c.children&&a(m,u.children)}},$=(c,u,h,_)=>{c==null?s(u.el=f(u.children||""),h,_):u.el=c.el},I=(c,u,h,_)=>{[c.el,c.anchor]=S(c.children,u,h,_,c.el,c.anchor)},E=({el:c,anchor:u},h,_)=>{let m;for(;c&&c!==u;)m=g(c),s(c,h,_),c=m;s(u,h,_)},w=({el:c,anchor:u})=>{let h;for(;c&&c!==u;)h=g(c),r(c),c=h;r(u)},B=(c,u,h,_,m,C,T,y,x)=>{T=T||u.type==="svg",c==null?Z(u,h,_,m,C,T,y,x):k(c,u,m,C,T,y,x)},Z=(c,u,h,_,m,C,T,y)=>{let x,b;const{type:O,props:A,shapeFlag:P,transition:L,dirs:H}=c;if(x=c.el=o(c.type,C,A&&A.is,A),P&8?d(x,c.children):P&16&&R(c.children,x,null,_,m,C&&O!=="foreignObject",T,y),H&&ze(c,null,_,"created"),A){for(const z in A)z!=="value"&&!qt(z)&&i(x,z,null,A[z],C,c.children,_,m,Oe);"value"in A&&i(x,"value",null,A.value),(b=A.onVnodeBeforeMount)&&be(b,_,c)}V(x,c,c.scopeId,T,_),H&&ze(c,null,_,"beforeMount");const Y=(!m||m&&!m.pendingBranch)&&L&&!L.persisted;Y&&L.beforeEnter(x),s(x,u,h),((b=A&&A.onVnodeMounted)||Y||H)&&oe(()=>{b&&be(b,_,c),Y&&L.enter(x),H&&ze(c,null,_,"mounted")},m)},V=(c,u,h,_,m)=>{if(h&&v(c,h),_)for(let C=0;C<_.length;C++)v(c,_[C]);if(m){let C=m.subTree;if(u===C){const T=m.vnode;V(c,T,T.scopeId,T.slotScopeIds,m.parent)}}},R=(c,u,h,_,m,C,T,y,x=0)=>{for(let b=x;b{const y=u.el=c.el;let{patchFlag:x,dynamicChildren:b,dirs:O}=u;x|=c.patchFlag&16;const A=c.props||Q,P=u.props||Q;let L;h&&qe(h,!1),(L=P.onVnodeBeforeUpdate)&&be(L,h,u,c),O&&ze(u,c,h,"beforeUpdate"),h&&qe(h,!0);const H=m&&u.type!=="foreignObject";if(b?j(c.dynamicChildren,b,y,h,_,H,C):T||J(c,u,y,null,h,_,H,C,!1),x>0){if(x&16)X(y,u,A,P,h,_,m);else if(x&2&&A.class!==P.class&&i(y,"class",null,P.class,m),x&4&&i(y,"style",A.style,P.style,m),x&8){const Y=u.dynamicProps;for(let z=0;z{L&&be(L,h,u,c),O&&ze(u,c,h,"updated")},_)},j=(c,u,h,_,m,C,T)=>{for(let y=0;y{if(h!==_){if(h!==Q)for(const y in h)!qt(y)&&!(y in _)&&i(c,y,h[y],null,T,u.children,m,C,Oe);for(const y in _){if(qt(y))continue;const x=_[y],b=h[y];x!==b&&y!=="value"&&i(c,y,b,x,T,u.children,m,C,Oe)}"value"in _&&i(c,"value",h.value,_.value)}},M=(c,u,h,_,m,C,T,y,x)=>{const b=u.el=c?c.el:l(""),O=u.anchor=c?c.anchor:l("");let{patchFlag:A,dynamicChildren:P,slotScopeIds:L}=u;L&&(y=y?y.concat(L):L),c==null?(s(b,h,_),s(O,h,_),R(u.children,h,O,m,C,T,y,x)):A>0&&A&64&&P&&c.dynamicChildren?(j(c.dynamicChildren,P,h,m,C,T,y),(u.key!=null||m&&u===m.subTree)&&hs(c,u,!0)):J(c,u,h,O,m,C,T,y,x)},G=(c,u,h,_,m,C,T,y,x)=>{u.slotScopeIds=y,c==null?u.shapeFlag&512?m.ctx.activate(u,h,_,T,x):de(u,h,_,m,C,T,x):bt(c,u,x)},de=(c,u,h,_,m,C,T)=>{const y=c.component=fl(c,_,m);if(pn(c)&&(y.ctx.renderer=st),ul(y),y.asyncDep){if(m&&m.registerDep(y,se),!c.el){const x=y.subTree=ue(Ce);$(null,x,u,h)}return}se(y,c,u,h,m,C,T)},bt=(c,u,h)=>{const _=u.component=c.component;if(Co(c,u,h))if(_.asyncDep&&!_.asyncResolved){te(_,u,h);return}else _.next=u,ho(_.update),_.update();else u.el=c.el,_.vnode=u},se=(c,u,h,_,m,C,T)=>{const y=()=>{if(c.isMounted){let{next:O,bu:A,u:P,parent:L,vnode:H}=c,Y=O,z;qe(c,!1),O?(O.el=H.el,te(c,O,T)):O=H,A&<(A),(z=O.props&&O.props.onVnodeBeforeUpdate)&&be(z,L,O,H),qe(c,!0);const ne=En(c),xe=c.subTree;c.subTree=ne,F(xe,ne,p(xe.el),Bt(xe),c,m,C),O.el=ne.el,Y===null&&xo(c,ne.el),P&&oe(P,m),(z=O.props&&O.props.onVnodeUpdated)&&oe(()=>be(z,L,O,H),m)}else{let O;const{el:A,props:P}=u,{bm:L,m:H,parent:Y}=c,z=ut(u);if(qe(c,!1),L&<(L),!z&&(O=P&&P.onVnodeBeforeMount)&&be(O,Y,u),qe(c,!0),A&&xn){const ne=()=>{c.subTree=En(c),xn(A,c.subTree,c,m,null)};z?u.type.__asyncLoader().then(()=>!c.isUnmounted&&ne()):ne()}else{const ne=c.subTree=En(c);F(null,ne,h,_,c,m,C),u.el=ne.el}if(H&&oe(H,m),!z&&(O=P&&P.onVnodeMounted)){const ne=u;oe(()=>be(O,Y,ne),m)}(u.shapeFlag&256||Y&&ut(Y.vnode)&&Y.vnode.shapeFlag&256)&&c.a&&oe(c.a,m),c.isMounted=!0,u=h=_=null}},x=c.effect=new Jn(y,()=>ss(b),c.scope),b=c.update=()=>x.run();b.id=c.uid,qe(c,!0),b()},te=(c,u,h)=>{u.component=c;const _=c.vnode.props;c.vnode=u,c.next=null,Vo(c,u.props,_,h),qo(c,u.children,h),mt(),Ms(),_t()},J=(c,u,h,_,m,C,T,y,x=!1)=>{const b=c&&c.children,O=c?c.shapeFlag:0,A=u.children,{patchFlag:P,shapeFlag:L}=u;if(P>0){if(P&128){$t(b,A,h,_,m,C,T,y,x);return}else if(P&256){Ve(b,A,h,_,m,C,T,y,x);return}}L&8?(O&16&&Oe(b,m,C),A!==b&&d(h,A)):O&16?L&16?$t(b,A,h,_,m,C,T,y,x):Oe(b,m,C,!0):(O&8&&d(h,""),L&16&&R(A,h,_,m,C,T,y,x))},Ve=(c,u,h,_,m,C,T,y,x)=>{c=c||it,u=u||it;const b=c.length,O=u.length,A=Math.min(b,O);let P;for(P=0;PO?Oe(c,m,C,!0,!1,A):R(u,h,_,m,C,T,y,x,A)},$t=(c,u,h,_,m,C,T,y,x)=>{let b=0;const O=u.length;let A=c.length-1,P=O-1;for(;b<=A&&b<=P;){const L=c[b],H=u[b]=x?Be(u[b]):Ie(u[b]);if(Xe(L,H))F(L,H,h,null,m,C,T,y,x);else break;b++}for(;b<=A&&b<=P;){const L=c[A],H=u[P]=x?Be(u[P]):Ie(u[P]);if(Xe(L,H))F(L,H,h,null,m,C,T,y,x);else break;A--,P--}if(b>A){if(b<=P){const L=P+1,H=LP)for(;b<=A;)ve(c[b],m,C,!0),b++;else{const L=b,H=b,Y=new Map;for(b=H;b<=P;b++){const he=u[b]=x?Be(u[b]):Ie(u[b]);he.key!=null&&Y.set(he.key,b)}let z,ne=0;const xe=P-H+1;let rt=!1,_s=0;const yt=new Array(xe);for(b=0;b=xe){ve(he,m,C,!0);continue}let Ae;if(he.key!=null)Ae=Y.get(he.key);else for(z=H;z<=P;z++)if(yt[z-H]===0&&Xe(he,u[z])){Ae=z;break}Ae===void 0?ve(he,m,C,!0):(yt[Ae-H]=b+1,Ae>=_s?_s=Ae:rt=!0,F(he,u[Ae],h,null,m,C,T,y,x),ne++)}const bs=rt?Qo(yt):it;for(z=bs.length-1,b=xe-1;b>=0;b--){const he=H+b,Ae=u[he],ys=he+1{const{el:C,type:T,transition:y,children:x,shapeFlag:b}=c;if(b&6){We(c.component.subTree,u,h,_);return}if(b&128){c.suspense.move(u,h,_);return}if(b&64){T.move(c,u,h,st);return}if(T===ge){s(C,u,h);for(let A=0;Ay.enter(C),m);else{const{leave:A,delayLeave:P,afterLeave:L}=y,H=()=>s(C,u,h),Y=()=>{A(C,()=>{H(),L&&L()})};P?P(C,H,Y):Y()}else s(C,u,h)},ve=(c,u,h,_=!1,m=!1)=>{const{type:C,props:T,ref:y,children:x,dynamicChildren:b,shapeFlag:O,patchFlag:A,dirs:P}=c;if(y!=null&&Bn(y,null,h,c,!0),O&256){u.ctx.deactivate(c);return}const L=O&1&&P,H=!ut(c);let Y;if(H&&(Y=T&&T.onVnodeBeforeUnmount)&&be(Y,u,c),O&6)gi(c.component,h,_);else{if(O&128){c.suspense.unmount(h,_);return}L&&ze(c,null,u,"beforeUnmount"),O&64?c.type.remove(c,u,h,m,st,_):b&&(C!==ge||A>0&&A&64)?Oe(b,u,h,!1,!0):(C===ge&&A&384||!m&&O&16)&&Oe(x,u,h),_&&gs(c)}(H&&(Y=T&&T.onVnodeUnmounted)||L)&&oe(()=>{Y&&be(Y,u,c),L&&ze(c,null,u,"unmounted")},h)},gs=c=>{const{type:u,el:h,anchor:_,transition:m}=c;if(u===ge){pi(h,_);return}if(u===Xt){w(c);return}const C=()=>{r(h),m&&!m.persisted&&m.afterLeave&&m.afterLeave()};if(c.shapeFlag&1&&m&&!m.persisted){const{leave:T,delayLeave:y}=m,x=()=>T(h,C);y?y(c.el,C,x):x()}else C()},pi=(c,u)=>{let h;for(;c!==u;)h=g(c),r(c),c=h;r(u)},gi=(c,u,h)=>{const{bum:_,scope:m,update:C,subTree:T,um:y}=c;_&<(_),m.stop(),C&&(C.active=!1,ve(T,c,u,h)),y&&oe(y,u),oe(()=>{c.isUnmounted=!0},u),u&&u.pendingBranch&&!u.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===u.pendingId&&(u.deps--,u.deps===0&&u.resolve())},Oe=(c,u,h,_=!1,m=!1,C=0)=>{for(let T=C;Tc.shapeFlag&6?Bt(c.component.subTree):c.shapeFlag&128?c.suspense.next():g(c.anchor||c.el),ms=(c,u,h)=>{c==null?u._vnode&&ve(u._vnode,null,null,!0):F(u._vnode||null,c,u,null,null,null,h),Ms(),Mr(),u._vnode=c},st={p:F,um:ve,m:We,r:gs,mt:de,mc:R,pc:J,pbc:j,n:Bt,o:e};let Cn,xn;return t&&([Cn,xn]=t(st)),{render:ms,hydrate:Cn,createApp:Yo(ms,Cn)}}function qe({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function hs(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}const Go=e=>e.__isTeleport,vt=e=>e&&(e.disabled||e.disabled===""),Bs=e=>typeof SVGElement<"u"&&e instanceof SVGElement,jn=(e,t)=>{const n=e&&e.to;return ee(n)?t?t(n):null:n},el={__isTeleport:!0,process(e,t,n,s,r,i,o,l,f,a){const{mc:d,pc:p,pbc:g,o:{insert:v,querySelector:S,createText:F,createComment:W}}=a,$=vt(t.props);let{shapeFlag:I,children:E,dynamicChildren:w}=t;if(e==null){const B=t.el=F(""),Z=t.anchor=F("");v(B,n,s),v(Z,n,s);const V=t.target=jn(t.props,S),R=t.targetAnchor=F("");V&&(v(R,V),o=o||Bs(V));const k=(j,X)=>{I&16&&d(E,j,X,r,i,o,l,f)};$?k(n,Z):V&&k(V,R)}else{t.el=e.el;const B=t.anchor=e.anchor,Z=t.target=e.target,V=t.targetAnchor=e.targetAnchor,R=vt(e.props),k=R?n:Z,j=R?B:V;if(o=o||Bs(Z),w?(g(e.dynamicChildren,w,k,r,i,o,l),hs(e,t,!0)):f||p(e,t,k,j,r,i,o,l,!1),$)R||zt(t,n,B,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const X=t.target=jn(t.props,S);X&&zt(t,X,null,a,0)}else R&&zt(t,Z,V,a,1)}Jr(t)},remove(e,t,n,s,{um:r,o:{remove:i}},o){const{shapeFlag:l,children:f,anchor:a,targetAnchor:d,target:p,props:g}=e;if(p&&i(d),(o||!vt(g))&&(i(a),l&16))for(let v=0;v0?Te||it:null,nl(),St>0&&Te&&Te.push(e),e}function yc(e,t,n,s,r,i){return Zr(Gr(e,t,n,s,r,i,!0))}function Xr(e,t,n,s,r){return Zr(ue(e,t,n,s,r,!0))}function Lt(e){return e?e.__v_isVNode===!0:!1}function Xe(e,t){return e.type===t.type&&e.key===t.key}const _n="__vInternal",Qr=({key:e})=>e!=null?e:null,Qt=({ref:e,ref_key:t,ref_for:n})=>e!=null?ee(e)||le(e)||D(e)?{i:ce,r:e,k:t,f:!!n}:e:null;function Gr(e,t=null,n=null,s=0,r=null,i=e===ge?0:1,o=!1,l=!1){const f={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qr(t),ref:t&&Qt(t),scopeId:hn,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:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:ce};return l?(ps(f,n),i&128&&e.normalize(f)):n&&(f.shapeFlag|=ee(n)?8:16),St>0&&!o&&Te&&(f.patchFlag>0||i&6)&&f.patchFlag!==32&&Te.push(f),f}const ue=sl;function sl(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Br)&&(e=Ce),Lt(e)){const l=Se(e,t,!0);return n&&ps(l,n),St>0&&!i&&Te&&(l.shapeFlag&6?Te[Te.indexOf(e)]=l:Te.push(l)),l.patchFlag|=-2,l}if(hl(e)&&(e=e.__vccOpts),t){t=rl(t);let{class:l,style:f}=t;l&&!ee(l)&&(t.class=rn(l)),q(f)&&(xr(f)&&!N(f)&&(f=ie({},f)),t.style=sn(f))}const o=ee(e)?1:Nr(e)?128:Go(e)?64:q(e)?4:D(e)?2:0;return Gr(e,t,n,s,r,o,i,!0)}function rl(e){return e?xr(e)||_n in e?ie({},e):e:null}function Se(e,t,n=!1){const{props:s,ref:r,patchFlag:i,children:o}=e,l=t?ol(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&Qr(l),ref:t&&t.ref?n&&r?N(r)?r.concat(Qt(t)):[r,Qt(t)]:Qt(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ge?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Se(e.ssContent),ssFallback:e.ssFallback&&Se(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function il(e=" ",t=0){return ue(mn,null,e,t)}function Cc(e,t){const n=ue(Xt,null,e);return n.staticCount=t,n}function xc(e="",t=!1){return t?(Yr(),Xr(Ce,null,e)):ue(Ce,null,e)}function Ie(e){return e==null||typeof e=="boolean"?ue(Ce):N(e)?ue(ge,null,e.slice()):typeof e=="object"?Be(e):ue(mn,null,String(e))}function Be(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Se(e)}function ps(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),ps(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(_n in t)?t._ctx=ce:r===3&&ce&&(ce.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else D(t)?(t={default:t,_ctx:ce},n=32):(t=String(t),s&64?(n=16,t=[il(t)]):n=8);e.children=t,e.shapeFlag|=n}function ol(...e){const t={};for(let n=0;nre||ce,pt=e=>{re=e,e.scope.on()},tt=()=>{re&&re.scope.off(),re=null};function ei(e){return e.vnode.shapeFlag&4}let Dt=!1;function ul(e,t=!1){Dt=t;const{props:n,children:s}=e.vnode,r=ei(e);ko(e,n,r,t),zo(e,s);const i=r?al(e,t):void 0;return Dt=!1,i}function al(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Er(new Proxy(e.ctx,Ho));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?ni(e):null;pt(e),mt();const i=Ue(s,e,0,[e.props,r]);if(_t(),tt(),or(i)){if(i.then(tt,tt),t)return i.then(o=>{Ks(e,o,t)}).catch(o=>{an(o,e,0)});e.asyncDep=i}else Ks(e,i,t)}else ti(e,t)}function Ks(e,t,n){D(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:q(t)&&(e.setupState=vr(t)),ti(e,n)}let Us;function ti(e,t,n){const s=e.type;if(!e.render){if(!t&&Us&&!s.render){const r=s.template||as(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:l,compilerOptions:f}=s,a=ie(ie({isCustomElement:i,delimiters:l},o),f);s.render=Us(r,a)}}e.render=s.render||we}pt(e),mt(),$o(e),_t(),tt()}function dl(e){return new Proxy(e.attrs,{get(t,n){return me(e,"get","$attrs"),t[n]}})}function ni(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=dl(e))},slots:e.slots,emit:e.emit,expose:t}}function yn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(vr(Er(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in wt)return wt[n](e)},has(t,n){return n in t||n in wt}}))}function Kn(e,t=!0){return D(e)?e.displayName||e.name:e.name||t&&e.__name}function hl(e){return D(e)&&"__vccOpts"in e}const pl=(e,t)=>fo(e,t,Dt);function Ec(){return si().slots}function Tc(){return si().attrs}function si(){const e=bn();return e.setupContext||(e.setupContext=ni(e))}function gl(e,t,n){const s=arguments.length;return s===2?q(t)&&!N(t)?Lt(t)?ue(e,null,[t]):ue(e,t):ue(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&Lt(n)&&(n=[n]),ue(e,t,n))}const ml=Symbol(""),_l=()=>Yt(ml),bl="3.2.45",yl="http://www.w3.org/2000/svg",Qe=typeof document<"u"?document:null,ks=Qe&&Qe.createElement("template"),Cl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?Qe.createElementNS(yl,e):Qe.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Qe.createTextNode(e),createComment:e=>Qe.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Qe.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{ks.innerHTML=s?`${e}`:e;const l=ks.content;if(s){const f=l.firstChild;for(;f.firstChild;)l.appendChild(f.firstChild);l.removeChild(f)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function xl(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function El(e,t,n){const s=e.style,r=ee(n);if(n&&!r){for(const i in n)Un(s,i,n[i]);if(t&&!ee(t))for(const i in t)n[i]==null&&Un(s,i,"")}else{const i=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=i)}}const Vs=/\s*!important$/;function Un(e,t,n){if(N(n))n.forEach(s=>Un(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Tl(e,t);Vs.test(n)?e.setProperty(nt(s),n.replace(Vs,""),"important"):e[s]=n}}const Ws=["Webkit","Moz","ms"],In={};function Tl(e,t){const n=In[t];if(n)return n;let s=Me(t);if(s!=="filter"&&s in e)return In[t]=s;s=fn(s);for(let r=0;rFn||(Ml.then(()=>Fn=0),Fn=Date.now());function Pl(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;ye(Nl(s,n.value),t,5,[s])};return n.value=e,n.attached=Ol(),n}function Nl(e,t){if(N(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Js=/^on[a-z]/,Rl=(e,t,n,s,r=!1,i,o,l,f)=>{t==="class"?xl(e,s,r):t==="style"?El(e,n,s):on(t)?Vn(t)||Il(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Sl(e,t,s,r))?vl(e,t,s,i,o,l,f):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),wl(e,t,s,r))};function Sl(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&Js.test(t)&&D(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||Js.test(t)&&ee(n)?!1:t in e}const He="transition",Ct="animation",ri=(e,{slots:t})=>gl(Lr,oi(e),t);ri.displayName="Transition";const ii={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},Ll=ri.props=ie({},Lr.props,ii),Je=(e,t=[])=>{N(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ys=e=>e?N(e)?e.some(t=>t.length>1):e.length>1:!1;function oi(e){const t={};for(const M in e)M in ii||(t[M]=e[M]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:f=i,appearActiveClass:a=o,appearToClass:d=l,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:g=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,S=Dl(r),F=S&&S[0],W=S&&S[1],{onBeforeEnter:$,onEnter:I,onEnterCancelled:E,onLeave:w,onLeaveCancelled:B,onBeforeAppear:Z=$,onAppear:V=I,onAppearCancelled:R=E}=t,k=(M,G,de)=>{$e(M,G?d:l),$e(M,G?a:o),de&&de()},j=(M,G)=>{M._isLeaving=!1,$e(M,p),$e(M,v),$e(M,g),G&&G()},X=M=>(G,de)=>{const bt=M?V:I,se=()=>k(G,M,de);Je(bt,[G,se]),Zs(()=>{$e(G,M?f:i),Pe(G,M?d:l),Ys(bt)||Xs(G,s,F,se)})};return ie(t,{onBeforeEnter(M){Je($,[M]),Pe(M,i),Pe(M,o)},onBeforeAppear(M){Je(Z,[M]),Pe(M,f),Pe(M,a)},onEnter:X(!1),onAppear:X(!0),onLeave(M,G){M._isLeaving=!0;const de=()=>j(M,G);Pe(M,p),ci(),Pe(M,g),Zs(()=>{M._isLeaving&&($e(M,p),Pe(M,v),Ys(w)||Xs(M,s,W,de))}),Je(w,[M,de])},onEnterCancelled(M){k(M,!1),Je(E,[M])},onAppearCancelled(M){k(M,!0),Je(R,[M])},onLeaveCancelled(M){j(M),Je(B,[M])}})}function Dl(e){if(e==null)return null;if(q(e))return[Mn(e.enter),Mn(e.leave)];{const t=Mn(e);return[t,t]}}function Mn(e){return Mt(e)}function Pe(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function $e(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Zs(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hl=0;function Xs(e,t,n,s){const r=e._endId=++Hl,i=()=>{r===e._endId&&s()};if(n)return setTimeout(i,n);const{type:o,timeout:l,propCount:f}=li(e,t);if(!o)return s();const a=o+"end";let d=0;const p=()=>{e.removeEventListener(a,g),i()},g=v=>{v.target===e&&++d>=f&&p()};setTimeout(()=>{d(n[S]||"").split(", "),r=s(`${He}Delay`),i=s(`${He}Duration`),o=Qs(r,i),l=s(`${Ct}Delay`),f=s(`${Ct}Duration`),a=Qs(l,f);let d=null,p=0,g=0;t===He?o>0&&(d=He,p=o,g=i.length):t===Ct?a>0&&(d=Ct,p=a,g=f.length):(p=Math.max(o,a),d=p>0?o>a?He:Ct:null,g=d?d===He?i.length:f.length:0);const v=d===He&&/\b(transform|all)(,|$)/.test(s(`${He}Property`).toString());return{type:d,timeout:p,propCount:g,hasTransform:v}}function Qs(e,t){for(;e.lengthGs(n)+Gs(e[s])))}function Gs(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function ci(){return document.body.offsetHeight}const fi=new WeakMap,ui=new WeakMap,$l={name:"TransitionGroup",props:ie({},Ll,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=bn(),s=Sr();let r,i;return ls(()=>{if(!r.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!Ul(r[0].el,n.vnode.el,o))return;r.forEach(Bl),r.forEach(jl);const l=r.filter(Kl);ci(),l.forEach(f=>{const a=f.el,d=a.style;Pe(a,o),d.transform=d.webkitTransform=d.transitionDuration="";const p=a._moveCb=g=>{g&&g.target!==a||(!g||/transform$/.test(g.propertyName))&&(a.removeEventListener("transitionend",p),a._moveCb=null,$e(a,o))};a.addEventListener("transitionend",p)})}),()=>{const o=U(e),l=oi(o);let f=o.tag||ge;r=i,i=t.default?is(t.default()):[];for(let a=0;a{o.split(/\s+/).forEach(l=>l&&s.classList.remove(l))}),n.split(/\s+/).forEach(o=>o&&s.classList.add(o)),s.style.display="none";const r=t.nodeType===1?t:t.parentNode;r.appendChild(s);const{hasTransform:i}=li(s);return r.removeChild(s),i}const gt=e=>{const t=e.props["onUpdate:modelValue"]||!1;return N(t)?n=>lt(t,n):t};function kl(e){e.target.composing=!0}function er(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const vc={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e._assign=gt(r);const i=s||r.props&&r.props.type==="number";je(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;n&&(l=l.trim()),i&&(l=Mt(l)),e._assign(l)}),n&&je(e,"change",()=>{e.value=e.value.trim()}),t||(je(e,"compositionstart",kl),je(e,"compositionend",er),je(e,"change",er))},mounted(e,{value:t}){e.value=t==null?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:s,number:r}},i){if(e._assign=gt(i),e.composing||document.activeElement===e&&e.type!=="range"&&(n||s&&e.value.trim()===t||(r||e.type==="number")&&Mt(e.value)===t))return;const o=t==null?"":t;e.value!==o&&(e.value=o)}},Ac={deep:!0,created(e,t,n){e._assign=gt(n),je(e,"change",()=>{const s=e._modelValue,r=ai(e),i=e.checked,o=e._assign;if(N(s)){const l=rr(s,r),f=l!==-1;if(i&&!f)o(s.concat(r));else if(!i&&f){const a=[...s];a.splice(l,1),o(a)}}else if(ln(s)){const l=new Set(s);i?l.add(r):l.delete(r),o(l)}else o(di(e,i))})},mounted:tr,beforeUpdate(e,t,n){e._assign=gt(n),tr(e,t,n)}};function tr(e,{value:t,oldValue:n},s){e._modelValue=t,N(t)?e.checked=rr(t,s.props.value)>-1:ln(t)?e.checked=t.has(s.props.value):t!==n&&(e.checked=at(t,di(e,!0)))}const Ic={created(e,{value:t},n){e.checked=at(t,n.props.value),e._assign=gt(n),je(e,"change",()=>{e._assign(ai(e))})},beforeUpdate(e,{value:t,oldValue:n},s){e._assign=gt(s),t!==n&&(e.checked=at(t,s.props.value))}};function ai(e){return"_value"in e?e._value:e.value}function di(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Vl=["ctrl","shift","alt","meta"],Wl={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&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Vl.some(n=>e[`${n}Key`]&&!t.includes(n))},Fc=(e,t)=>(n,...s)=>{for(let r=0;rn=>{if(!("key"in n))return;const s=nt(n.key);if(t.some(r=>r===s||zl[r]===s))return e(n)},Oc={beforeMount(e,{value:t},{transition:n}){e._vod=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):xt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),xt(e,!0),s.enter(e)):s.leave(e,()=>{xt(e,!1)}):xt(e,t))},beforeUnmount(e,{value:t}){xt(e,t)}};function xt(e,t){e.style.display=t?e._vod:"none"}const ql=ie({patchProp:Rl},Cl);let nr;function hi(){return nr||(nr=Zo(ql))}const Pc=(...e)=>{hi().render(...e)},Nc=(...e)=>{const t=hi().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Jl(s);if(!r)return;const i=t._component;!D(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function Jl(e){return ee(e)?document.querySelector(e):e}export{Fc as $,Lt as A,To as B,Ce as C,cs as D,lo as E,ge as F,$r as G,le as H,fo as I,Oo as J,cc as K,mc as L,rn as M,we as N,sn as O,ol as P,Ec as Q,Xr as R,_o as S,uc as T,dc as U,xc as V,il as W,Zl as X,Oc as Y,ri as Z,Tc as _,Gr as a,Qn as a0,ls as a1,Se as a2,mn as a3,bc as a4,Fo as a5,pc as a6,Mc as a7,gc as a8,sc as a9,Cs as aa,Yl as ab,U as ac,Ac as ad,Ic as ae,gl as af,ac as ag,Po as ah,or as ai,vc as aj,_c as ak,rl as al,Er as am,Xl as an,nc as ao,Ai as ap,hc as aq,wc as ar,Nc as as,nt as at,no as au,Pc as av,ct as aw,ic as ax,oc as ay,fc as az,Cc as b,yc as c,ue as d,Gl as e,ec as f,Ql as g,Zt as h,Yt as i,bn as j,os as k,pl as l,N as m,uo as n,Yr as o,q as p,ee as q,Cr as r,tc as s,fn as t,ro as u,Me as v,lc as w,K as x,rc as y,D as z}; +function kn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r!!n[r.toLowerCase()]:r=>!!n[r]}function sn(e){if(N(e)){const t={};for(let n=0;n{if(n){const s=n.split(_i);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function rn(e){let t="";if(ee(e))t=e;else if(N(e))for(let n=0;nat(n,t))}const Zl=e=>ee(e)?e:e==null?"":N(e)||q(e)&&(e.toString===lr||!D(e.toString))?JSON.stringify(e,ir,2):String(e),ir=(e,t)=>t&&t.__v_isRef?ir(e,t.value):ot(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:ln(t)?{[`Set(${t.size})`]:[...t.values()]}:q(t)&&!N(t)&&!cr(t)?String(t):t,Q={},it=[],we=()=>{},Ti=()=>!1,wi=/^on[^a-z]/,on=e=>wi.test(e),Vn=e=>e.startsWith("onUpdate:"),ie=Object.assign,Wn=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},vi=Object.prototype.hasOwnProperty,K=(e,t)=>vi.call(e,t),N=Array.isArray,ot=e=>Ht(e)==="[object Map]",ln=e=>Ht(e)==="[object Set]",Cs=e=>Ht(e)==="[object Date]",D=e=>typeof e=="function",ee=e=>typeof e=="string",It=e=>typeof e=="symbol",q=e=>e!==null&&typeof e=="object",or=e=>q(e)&&D(e.then)&&D(e.catch),lr=Object.prototype.toString,Ht=e=>lr.call(e),Ai=e=>Ht(e).slice(8,-1),cr=e=>Ht(e)==="[object Object]",zn=e=>ee(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,qt=kn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),cn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Ii=/-(\w)/g,Me=cn(e=>e.replace(Ii,(t,n)=>n?n.toUpperCase():"")),Fi=/\B([A-Z])/g,nt=cn(e=>e.replace(Fi,"-$1").toLowerCase()),fn=cn(e=>e.charAt(0).toUpperCase()+e.slice(1)),Jt=cn(e=>e?`on${fn(e)}`:""),Ft=(e,t)=>!Object.is(e,t),lt=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Mt=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let xs;const Mi=()=>xs||(xs=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let pe;class fr{constructor(t=!1){this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=pe,!t&&pe&&(this.index=(pe.scopes||(pe.scopes=[])).push(this)-1)}run(t){if(this.active){const n=pe;try{return pe=this,t()}finally{pe=n}}}on(){pe=this}off(){pe=this.parent}stop(t){if(this.active){let n,s;for(n=0,s=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},ur=e=>(e.w&ke)>0,ar=e=>(e.n&ke)>0,Pi=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s{(d==="length"||d>=f)&&l.push(a)})}else switch(n!==void 0&&l.push(o.get(n)),t){case"add":N(e)?zn(n)&&l.push(o.get("length")):(l.push(o.get(et)),ot(e)&&l.push(o.get(Nn)));break;case"delete":N(e)||(l.push(o.get(et)),ot(e)&&l.push(o.get(Nn)));break;case"set":ot(e)&&l.push(o.get(et));break}if(l.length===1)l[0]&&Rn(l[0]);else{const f=[];for(const a of l)a&&f.push(...a);Rn(qn(f))}}function Rn(e,t){const n=N(e)?e:[...e];for(const s of n)s.computed&&Ts(s);for(const s of n)s.computed||Ts(s)}function Ts(e,t){(e!==Ee||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const Ri=kn("__proto__,__v_isRef,__isVue"),pr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(It)),Si=Yn(),Li=Yn(!1,!0),Di=Yn(!0),ws=Hi();function Hi(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=U(this);for(let i=0,o=this.length;i{e[t]=function(...n){mt();const s=U(this)[t].apply(this,n);return _t(),s}}),e}function Yn(e=!1,t=!1){return function(s,r,i){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&i===(e?t?Gi:yr:t?br:_r).get(s))return s;const o=N(s);if(!e&&o&&K(ws,r))return Reflect.get(ws,r,i);const l=Reflect.get(s,r,i);return(It(r)?pr.has(r):Ri(r))||(e||me(s,"get",r),t)?l:le(l)?o&&zn(r)?l:l.value:q(l)?e?Cr(l):Qn(l):l}}const $i=gr(),Bi=gr(!0);function gr(e=!1){return function(n,s,r,i){let o=n[s];if(dt(o)&&le(o)&&!le(r))return!1;if(!e&&(!en(r)&&!dt(r)&&(o=U(o),r=U(r)),!N(n)&&le(o)&&!le(r)))return o.value=r,!0;const l=N(n)&&zn(s)?Number(s)e,un=e=>Reflect.getPrototypeOf(e);function jt(e,t,n=!1,s=!1){e=e.__v_raw;const r=U(e),i=U(t);n||(t!==i&&me(r,"get",t),me(r,"get",i));const{has:o}=un(r),l=s?Zn:n?es:Ot;if(o.call(r,t))return l(e.get(t));if(o.call(r,i))return l(e.get(i));e!==r&&e.get(t)}function Kt(e,t=!1){const n=this.__v_raw,s=U(n),r=U(e);return t||(e!==r&&me(s,"has",e),me(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function Ut(e,t=!1){return e=e.__v_raw,!t&&me(U(e),"iterate",et),Reflect.get(e,"size",e)}function vs(e){e=U(e);const t=U(this);return un(t).has.call(t,e)||(t.add(e),Re(t,"add",e,e)),this}function As(e,t){t=U(t);const n=U(this),{has:s,get:r}=un(n);let i=s.call(n,e);i||(e=U(e),i=s.call(n,e));const o=r.call(n,e);return n.set(e,t),i?Ft(t,o)&&Re(n,"set",e,t):Re(n,"add",e,t),this}function Is(e){const t=U(this),{has:n,get:s}=un(t);let r=n.call(t,e);r||(e=U(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&Re(t,"delete",e,void 0),i}function Fs(){const e=U(this),t=e.size!==0,n=e.clear();return t&&Re(e,"clear",void 0,void 0),n}function kt(e,t){return function(s,r){const i=this,o=i.__v_raw,l=U(o),f=t?Zn:e?es:Ot;return!e&&me(l,"iterate",et),o.forEach((a,d)=>s.call(r,f(a),f(d),i))}}function Vt(e,t,n){return function(...s){const r=this.__v_raw,i=U(r),o=ot(i),l=e==="entries"||e===Symbol.iterator&&o,f=e==="keys"&&o,a=r[e](...s),d=n?Zn:t?es:Ot;return!t&&me(i,"iterate",f?Nn:et),{next(){const{value:p,done:g}=a.next();return g?{value:p,done:g}:{value:l?[d(p[0]),d(p[1])]:d(p),done:g}},[Symbol.iterator](){return this}}}}function De(e){return function(...t){return e==="delete"?!1:this}}function Wi(){const e={get(i){return jt(this,i)},get size(){return Ut(this)},has:Kt,add:vs,set:As,delete:Is,clear:Fs,forEach:kt(!1,!1)},t={get(i){return jt(this,i,!1,!0)},get size(){return Ut(this)},has:Kt,add:vs,set:As,delete:Is,clear:Fs,forEach:kt(!1,!0)},n={get(i){return jt(this,i,!0)},get size(){return Ut(this,!0)},has(i){return Kt.call(this,i,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:kt(!0,!1)},s={get(i){return jt(this,i,!0,!0)},get size(){return Ut(this,!0)},has(i){return Kt.call(this,i,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:kt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=Vt(i,!1,!1),n[i]=Vt(i,!0,!1),t[i]=Vt(i,!1,!0),s[i]=Vt(i,!0,!0)}),[e,n,t,s]}const[zi,qi,Ji,Yi]=Wi();function Xn(e,t){const n=t?e?Yi:Ji:e?qi:zi;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(K(n,r)&&r in s?n:s,r,i)}const Zi={get:Xn(!1,!1)},Xi={get:Xn(!1,!0)},Qi={get:Xn(!0,!1)},_r=new WeakMap,br=new WeakMap,yr=new WeakMap,Gi=new WeakMap;function eo(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function to(e){return e.__v_skip||!Object.isExtensible(e)?0:eo(Ai(e))}function Qn(e){return dt(e)?e:Gn(e,!1,mr,Zi,_r)}function no(e){return Gn(e,!1,Vi,Xi,br)}function Cr(e){return Gn(e,!0,ki,Qi,yr)}function Gn(e,t,n,s,r){if(!q(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=to(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function ct(e){return dt(e)?ct(e.__v_raw):!!(e&&e.__v_isReactive)}function dt(e){return!!(e&&e.__v_isReadonly)}function en(e){return!!(e&&e.__v_isShallow)}function xr(e){return ct(e)||dt(e)}function U(e){const t=e&&e.__v_raw;return t?U(t):e}function Er(e){return Gt(e,"__v_skip",!0),e}const Ot=e=>q(e)?Qn(e):e,es=e=>q(e)?Cr(e):e;function Tr(e){Ke&&Ee&&(e=U(e),hr(e.dep||(e.dep=qn())))}function ts(e,t){e=U(e),e.dep&&Rn(e.dep)}function le(e){return!!(e&&e.__v_isRef===!0)}function ec(e){return wr(e,!1)}function tc(e){return wr(e,!0)}function wr(e,t){return le(e)?e:new so(e,t)}class so{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:U(t),this._value=n?t:Ot(t)}get value(){return Tr(this),this._value}set value(t){const n=this.__v_isShallow||en(t)||dt(t);t=n?t:U(t),Ft(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Ot(t),ts(this))}}function nc(e){ts(e)}function ro(e){return le(e)?e.value:e}const io={get:(e,t,n)=>ro(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return le(r)&&!le(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function vr(e){return ct(e)?e:new Proxy(e,io)}function sc(e){const t=N(e)?new Array(e.length):{};for(const n in e)t[n]=lo(e,n);return t}class oo{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}}function lo(e,t,n){const s=e[t];return le(s)?s:new oo(e,t,n)}var Ar;class co{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[Ar]=!1,this._dirty=!0,this.effect=new Jn(t,()=>{this._dirty||(this._dirty=!0,ts(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=U(this);return Tr(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}Ar="__v_isReadonly";function fo(e,t,n=!1){let s,r;const i=D(e);return i?(s=e,r=we):(s=e.get,r=e.set),new co(s,r,i||!r,n)}function rc(e,...t){}function Ue(e,t,n,s){let r;try{r=s?e(...s):e()}catch(i){an(i,t,n)}return r}function ye(e,t,n,s){if(D(e)){const i=Ue(e,t,n,s);return i&&or(i)&&i.catch(o=>{an(o,t,n)}),i}const r=[];for(let i=0;i>>1;Nt(fe[s])Fe&&fe.splice(t,1)}function po(e){N(e)?ft.push(...e):(!Ne||!Ne.includes(e,e.allowRecurse?Ze+1:Ze))&&ft.push(e),Fr()}function Ms(e,t=Pt?Fe+1:0){for(;tNt(n)-Nt(s)),Ze=0;Zee.id==null?1/0:e.id,go=(e,t)=>{const n=Nt(e)-Nt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Or(e){Sn=!1,Pt=!0,fe.sort(go);const t=we;try{for(Fe=0;Feee(v)?v.trim():v)),p&&(r=n.map(Mt))}let l,f=s[l=Jt(t)]||s[l=Jt(Me(t))];!f&&i&&(f=s[l=Jt(nt(t))]),f&&ye(f,e,6,r);const a=s[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,ye(a,e,6,r)}}function Pr(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!D(e)){const f=a=>{const d=Pr(a,t,!0);d&&(l=!0,ie(o,d))};!n&&t.mixins.length&&t.mixins.forEach(f),e.extends&&f(e.extends),e.mixins&&e.mixins.forEach(f)}return!i&&!l?(q(e)&&s.set(e,null),null):(N(i)?i.forEach(f=>o[f]=null):ie(o,i),q(e)&&s.set(e,o),o)}function dn(e,t){return!e||!on(t)?!1:(t=t.slice(2).replace(/Once$/,""),K(e,t[0].toLowerCase()+t.slice(1))||K(e,nt(t))||K(e,t))}let ce=null,hn=null;function tn(e){const t=ce;return ce=e,hn=e&&e.type.__scopeId||null,t}function ic(e){hn=e}function oc(){hn=null}function _o(e,t=ce,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&js(-1);const i=tn(t);let o;try{o=e(...r)}finally{tn(i),s._d&&js(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function En(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:i,propsOptions:[o],slots:l,attrs:f,emit:a,render:d,renderCache:p,data:g,setupState:v,ctx:S,inheritAttrs:F}=e;let W,$;const I=tn(e);try{if(n.shapeFlag&4){const w=r||s;W=Ie(d.call(w,w,p,i,v,g,S)),$=f}else{const w=t;W=Ie(w.length>1?w(i,{attrs:f,slots:l,emit:a}):w(i,null)),$=t.props?f:bo(f)}}catch(w){At.length=0,an(w,e,1),W=ue(Ce)}let E=W;if($&&F!==!1){const w=Object.keys($),{shapeFlag:B}=E;w.length&&B&7&&(o&&w.some(Vn)&&($=yo($,o)),E=Se(E,$))}return n.dirs&&(E=Se(E),E.dirs=E.dirs?E.dirs.concat(n.dirs):n.dirs),n.transition&&(E.transition=n.transition),W=E,tn(I),W}const bo=e=>{let t;for(const n in e)(n==="class"||n==="style"||on(n))&&((t||(t={}))[n]=e[n]);return t},yo=(e,t)=>{const n={};for(const s in e)(!Vn(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Co(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:f}=t,a=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&f>=0){if(f&1024)return!0;if(f&16)return s?Os(s,o,a):!!o;if(f&8){const d=t.dynamicProps;for(let p=0;pe.__isSuspense;function Eo(e,t){t&&t.pendingBranch?N(e)?t.effects.push(...e):t.effects.push(e):po(e)}function To(e,t){if(re){let n=re.provides;const s=re.parent&&re.parent.provides;s===n&&(n=re.provides=Object.create(s)),n[e]=t}}function Yt(e,t,n=!1){const s=re||ce;if(s){const r=s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&D(t)?t.call(s.proxy):t}}function lc(e,t){return rs(e,null,t)}const Wt={};function Zt(e,t,n){return rs(e,t,n)}function rs(e,t,{immediate:n,deep:s,flush:r,onTrack:i,onTrigger:o}=Q){const l=re;let f,a=!1,d=!1;if(le(e)?(f=()=>e.value,a=en(e)):ct(e)?(f=()=>e,s=!0):N(e)?(d=!0,a=e.some(E=>ct(E)||en(E)),f=()=>e.map(E=>{if(le(E))return E.value;if(ct(E))return Ge(E);if(D(E))return Ue(E,l,2)})):D(e)?t?f=()=>Ue(e,l,2):f=()=>{if(!(l&&l.isUnmounted))return p&&p(),ye(e,l,3,[g])}:f=we,t&&s){const E=f;f=()=>Ge(E())}let p,g=E=>{p=$.onStop=()=>{Ue(E,l,4)}},v;if(Dt)if(g=we,t?n&&ye(t,l,3,[f(),d?[]:void 0,g]):f(),r==="sync"){const E=_l();v=E.__watcherHandles||(E.__watcherHandles=[])}else return we;let S=d?new Array(e.length).fill(Wt):Wt;const F=()=>{if($.active)if(t){const E=$.run();(s||a||(d?E.some((w,B)=>Ft(w,S[B])):Ft(E,S)))&&(p&&p(),ye(t,l,3,[E,S===Wt?void 0:d&&S[0]===Wt?[]:S,g]),S=E)}else $.run()};F.allowRecurse=!!t;let W;r==="sync"?W=F:r==="post"?W=()=>oe(F,l&&l.suspense):(F.pre=!0,l&&(F.id=l.uid),W=()=>ss(F));const $=new Jn(f,W);t?n?F():S=$.run():r==="post"?oe($.run.bind($),l&&l.suspense):$.run();const I=()=>{$.stop(),l&&l.scope&&Wn(l.scope.effects,$)};return v&&v.push(I),I}function wo(e,t,n){const s=this.proxy,r=ee(e)?e.includes(".")?Rr(s,e):()=>s[e]:e.bind(s,s);let i;D(t)?i=t:(i=t.handler,n=t);const o=re;pt(this);const l=rs(r,i.bind(s),n);return o?pt(o):tt(),l}function Rr(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r{Ge(n,t)});else if(cr(e))for(const n in e)Ge(e[n],t);return e}function Sr(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return os(()=>{e.isMounted=!0}),cs(()=>{e.isUnmounting=!0}),e}const _e=[Function,Array],vo={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:_e,onEnter:_e,onAfterEnter:_e,onEnterCancelled:_e,onBeforeLeave:_e,onLeave:_e,onAfterLeave:_e,onLeaveCancelled:_e,onBeforeAppear:_e,onAppear:_e,onAfterAppear:_e,onAppearCancelled:_e},setup(e,{slots:t}){const n=bn(),s=Sr();let r;return()=>{const i=t.default&&is(t.default(),!0);if(!i||!i.length)return;let o=i[0];if(i.length>1){for(const F of i)if(F.type!==Ce){o=F;break}}const l=U(e),{mode:f}=l;if(s.isLeaving)return Tn(o);const a=Ps(o);if(!a)return Tn(o);const d=Rt(a,l,s,n);ht(a,d);const p=n.subTree,g=p&&Ps(p);let v=!1;const{getTransitionKey:S}=a.type;if(S){const F=S();r===void 0?r=F:F!==r&&(r=F,v=!0)}if(g&&g.type!==Ce&&(!Xe(a,g)||v)){const F=Rt(g,l,s,n);if(ht(g,F),f==="out-in")return s.isLeaving=!0,F.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},Tn(o);f==="in-out"&&a.type!==Ce&&(F.delayLeave=(W,$,I)=>{const E=Dr(s,g);E[String(g.key)]=g,W._leaveCb=()=>{$(),W._leaveCb=void 0,delete d.delayedLeave},d.delayedLeave=I})}return o}}},Lr=vo;function Dr(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Rt(e,t,n,s){const{appear:r,mode:i,persisted:o=!1,onBeforeEnter:l,onEnter:f,onAfterEnter:a,onEnterCancelled:d,onBeforeLeave:p,onLeave:g,onAfterLeave:v,onLeaveCancelled:S,onBeforeAppear:F,onAppear:W,onAfterAppear:$,onAppearCancelled:I}=t,E=String(e.key),w=Dr(n,e),B=(R,k)=>{R&&ye(R,s,9,k)},Z=(R,k)=>{const j=k[1];B(R,k),N(R)?R.every(X=>X.length<=1)&&j():R.length<=1&&j()},V={mode:i,persisted:o,beforeEnter(R){let k=l;if(!n.isMounted)if(r)k=F||l;else return;R._leaveCb&&R._leaveCb(!0);const j=w[E];j&&Xe(e,j)&&j.el._leaveCb&&j.el._leaveCb(),B(k,[R])},enter(R){let k=f,j=a,X=d;if(!n.isMounted)if(r)k=W||f,j=$||a,X=I||d;else return;let M=!1;const G=R._enterCb=de=>{M||(M=!0,de?B(X,[R]):B(j,[R]),V.delayedLeave&&V.delayedLeave(),R._enterCb=void 0)};k?Z(k,[R,G]):G()},leave(R,k){const j=String(e.key);if(R._enterCb&&R._enterCb(!0),n.isUnmounting)return k();B(p,[R]);let X=!1;const M=R._leaveCb=G=>{X||(X=!0,k(),G?B(S,[R]):B(v,[R]),R._leaveCb=void 0,w[j]===e&&delete w[j])};w[j]=e,g?Z(g,[R,M]):M()},clone(R){return Rt(R,t,n,s)}};return V}function Tn(e){if(pn(e))return e=Se(e),e.children=null,e}function Ps(e){return pn(e)?e.children?e.children[0]:void 0:e}function ht(e,t){e.shapeFlag&6&&e.component?ht(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function is(e,t=!1,n){let s=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader,pn=e=>e.type.__isKeepAlive,Ao={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=bn(),s=n.ctx;if(!s.renderer)return()=>{const I=t.default&&t.default();return I&&I.length===1?I[0]:I};const r=new Map,i=new Set;let o=null;const l=n.suspense,{renderer:{p:f,m:a,um:d,o:{createElement:p}}}=s,g=p("div");s.activate=(I,E,w,B,Z)=>{const V=I.component;a(I,E,w,0,l),f(V.vnode,I,E,w,V,l,B,I.slotScopeIds,Z),oe(()=>{V.isDeactivated=!1,V.a&<(V.a);const R=I.props&&I.props.onVnodeMounted;R&&be(R,V.parent,I)},l)},s.deactivate=I=>{const E=I.component;a(I,g,null,1,l),oe(()=>{E.da&<(E.da);const w=I.props&&I.props.onVnodeUnmounted;w&&be(w,E.parent,I),E.isDeactivated=!0},l)};function v(I){wn(I),d(I,n,l,!0)}function S(I){r.forEach((E,w)=>{const B=Kn(E.type);B&&(!I||!I(B))&&F(w)})}function F(I){const E=r.get(I);!o||E.type!==o.type?v(E):o&&wn(o),r.delete(I),i.delete(I)}Zt(()=>[e.include,e.exclude],([I,E])=>{I&&S(w=>Tt(I,w)),E&&S(w=>!Tt(E,w))},{flush:"post",deep:!0});let W=null;const $=()=>{W!=null&&r.set(W,vn(n.subTree))};return os($),ls($),cs(()=>{r.forEach(I=>{const{subTree:E,suspense:w}=n,B=vn(E);if(I.type===B.type){wn(B);const Z=B.component.da;Z&&oe(Z,w);return}v(I)})}),()=>{if(W=null,!t.default)return null;const I=t.default(),E=I[0];if(I.length>1)return o=null,I;if(!Lt(E)||!(E.shapeFlag&4)&&!(E.shapeFlag&128))return o=null,E;let w=vn(E);const B=w.type,Z=Kn(ut(w)?w.type.__asyncResolved||{}:B),{include:V,exclude:R,max:k}=e;if(V&&(!Z||!Tt(V,Z))||R&&Z&&Tt(R,Z))return o=w,E;const j=w.key==null?B:w.key,X=r.get(j);return w.el&&(w=Se(w),E.shapeFlag&128&&(E.ssContent=w)),W=j,X?(w.el=X.el,w.component=X.component,w.transition&&ht(w,w.transition),w.shapeFlag|=512,i.delete(j),i.add(j)):(i.add(j),k&&i.size>parseInt(k,10)&&F(i.values().next().value)),w.shapeFlag|=256,o=w,Nr(E.type)?E:w}}},fc=Ao;function Tt(e,t){return N(e)?e.some(n=>Tt(n,t)):ee(e)?e.split(",").includes(t):e.test?e.test(t):!1}function Io(e,t){Hr(e,"a",t)}function Fo(e,t){Hr(e,"da",t)}function Hr(e,t,n=re){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(gn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)pn(r.parent.vnode)&&Mo(s,t,n,r),r=r.parent}}function Mo(e,t,n,s){const r=gn(t,e,s,!0);$r(()=>{Wn(s[t],r)},n)}function wn(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function vn(e){return e.shapeFlag&128?e.ssContent:e}function gn(e,t,n=re,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;mt(),pt(n);const l=ye(t,n,e,o);return tt(),_t(),l});return s?r.unshift(i):r.push(i),i}}const Le=e=>(t,n=re)=>(!Dt||e==="sp")&&gn(e,(...s)=>t(...s),n),Oo=Le("bm"),os=Le("m"),Po=Le("bu"),ls=Le("u"),cs=Le("bum"),$r=Le("um"),No=Le("sp"),Ro=Le("rtg"),So=Le("rtc");function Lo(e,t=re){gn("ec",e,t)}function uc(e,t){const n=ce;if(n===null)return e;const s=yn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;it(o,l,void 0,i&&i[l]));else{const o=Object.keys(e);r=new Array(o.length);for(let l=0,f=o.length;l{const i=s.fn(...r);return i&&(i.key=s.key),i}:s.fn)}return e}function mc(e,t,n={},s,r){if(ce.isCE||ce.parent&&ut(ce.parent)&&ce.parent.isCE)return t!=="default"&&(n.name=t),ue("slot",n,s&&s());let i=e[t];i&&i._c&&(i._d=!1),Yr();const o=i&&jr(i(n)),l=Xr(ge,{key:n.key||o&&o.key||`_${t}`},o||(s?s():[]),o&&e._===1?64:-2);return!r&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function jr(e){return e.some(t=>Lt(t)?!(t.type===Ce||t.type===ge&&!jr(t.children)):!0)?e:null}function _c(e,t){const n={};for(const s in e)n[t&&/[A-Z]/.test(s)?`on:${s}`:Jt(s)]=e[s];return n}const Ln=e=>e?ei(e)?yn(e)||e.proxy:Ln(e.parent):null,wt=ie(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=>Ln(e.parent),$root:e=>Ln(e.root),$emit:e=>e.emit,$options:e=>as(e),$forceUpdate:e=>e.f||(e.f=()=>ss(e.update)),$nextTick:e=>e.n||(e.n=uo.bind(e.proxy)),$watch:e=>wo.bind(e)}),An=(e,t)=>e!==Q&&!e.__isScriptSetup&&K(e,t),Ho={get({_:e},t){const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:f}=e;let a;if(t[0]!=="$"){const v=o[t];if(v!==void 0)switch(v){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(An(s,t))return o[t]=1,s[t];if(r!==Q&&K(r,t))return o[t]=2,r[t];if((a=e.propsOptions[0])&&K(a,t))return o[t]=3,i[t];if(n!==Q&&K(n,t))return o[t]=4,n[t];Dn&&(o[t]=0)}}const d=wt[t];let p,g;if(d)return t==="$attrs"&&me(e,"get",t),d(e);if((p=l.__cssModules)&&(p=p[t]))return p;if(n!==Q&&K(n,t))return o[t]=4,n[t];if(g=f.config.globalProperties,K(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return An(r,t)?(r[t]=n,!0):s!==Q&&K(s,t)?(s[t]=n,!0):K(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==Q&&K(e,o)||An(t,o)||(l=i[0])&&K(l,o)||K(s,o)||K(wt,o)||K(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:K(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Dn=!0;function $o(e){const t=as(e),n=e.proxy,s=e.ctx;Dn=!1,t.beforeCreate&&Rs(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:f,inject:a,created:d,beforeMount:p,mounted:g,beforeUpdate:v,updated:S,activated:F,deactivated:W,beforeDestroy:$,beforeUnmount:I,destroyed:E,unmounted:w,render:B,renderTracked:Z,renderTriggered:V,errorCaptured:R,serverPrefetch:k,expose:j,inheritAttrs:X,components:M,directives:G,filters:de}=t;if(a&&Bo(a,s,null,e.appContext.config.unwrapInjectedRef),o)for(const te in o){const J=o[te];D(J)&&(s[te]=J.bind(n))}if(r){const te=r.call(n,n);q(te)&&(e.data=Qn(te))}if(Dn=!0,i)for(const te in i){const J=i[te],Ve=D(J)?J.bind(n,n):D(J.get)?J.get.bind(n,n):we,$t=!D(J)&&D(J.set)?J.set.bind(n):we,We=pl({get:Ve,set:$t});Object.defineProperty(s,te,{enumerable:!0,configurable:!0,get:()=>We.value,set:ve=>We.value=ve})}if(l)for(const te in l)Kr(l[te],s,n,te);if(f){const te=D(f)?f.call(n):f;Reflect.ownKeys(te).forEach(J=>{To(J,te[J])})}d&&Rs(d,e,"c");function se(te,J){N(J)?J.forEach(Ve=>te(Ve.bind(n))):J&&te(J.bind(n))}if(se(Oo,p),se(os,g),se(Po,v),se(ls,S),se(Io,F),se(Fo,W),se(Lo,R),se(So,Z),se(Ro,V),se(cs,I),se($r,w),se(No,k),N(j))if(j.length){const te=e.exposed||(e.exposed={});j.forEach(J=>{Object.defineProperty(te,J,{get:()=>n[J],set:Ve=>n[J]=Ve})})}else e.exposed||(e.exposed={});B&&e.render===we&&(e.render=B),X!=null&&(e.inheritAttrs=X),M&&(e.components=M),G&&(e.directives=G)}function Bo(e,t,n=we,s=!1){N(e)&&(e=Hn(e));for(const r in e){const i=e[r];let o;q(i)?"default"in i?o=Yt(i.from||r,i.default,!0):o=Yt(i.from||r):o=Yt(i),le(o)&&s?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:l=>o.value=l}):t[r]=o}}function Rs(e,t,n){ye(N(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Kr(e,t,n,s){const r=s.includes(".")?Rr(n,s):()=>n[s];if(ee(e)){const i=t[e];D(i)&&Zt(r,i)}else if(D(e))Zt(r,e.bind(n));else if(q(e))if(N(e))e.forEach(i=>Kr(i,t,n,s));else{const i=D(e.handler)?e.handler.bind(n):t[e.handler];D(i)&&Zt(r,i,e)}}function as(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let f;return l?f=l:!r.length&&!n&&!s?f=t:(f={},r.length&&r.forEach(a=>nn(f,a,o,!0)),nn(f,t,o)),q(t)&&i.set(t,f),f}function nn(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&nn(e,i,n,!0),r&&r.forEach(o=>nn(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=jo[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const jo={data:Ss,props:Ye,emits:Ye,methods:Ye,computed:Ye,beforeCreate:ae,created:ae,beforeMount:ae,mounted:ae,beforeUpdate:ae,updated:ae,beforeDestroy:ae,beforeUnmount:ae,destroyed:ae,unmounted:ae,activated:ae,deactivated:ae,errorCaptured:ae,serverPrefetch:ae,components:Ye,directives:Ye,watch:Uo,provide:Ss,inject:Ko};function Ss(e,t){return t?e?function(){return ie(D(e)?e.call(this,this):e,D(t)?t.call(this,this):t)}:t:e}function Ko(e,t){return Ye(Hn(e),Hn(t))}function Hn(e){if(N(e)){const t={};for(let n=0;n0)&&!(o&16)){if(o&8){const d=e.vnode.dynamicProps;for(let p=0;p{f=!0;const[g,v]=kr(p,t,!0);ie(o,g),v&&l.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(d),e.extends&&d(e.extends),e.mixins&&e.mixins.forEach(d)}if(!i&&!f)return q(e)&&s.set(e,it),it;if(N(i))for(let d=0;d-1,v[1]=F<0||S-1||K(v,"default"))&&l.push(p)}}}const a=[o,l];return q(e)&&s.set(e,a),a}function Ls(e){return e[0]!=="$"}function Ds(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:e===null?"null":""}function Hs(e,t){return Ds(e)===Ds(t)}function $s(e,t){return N(t)?t.findIndex(n=>Hs(n,e)):D(t)&&Hs(t,e)?0:-1}const Vr=e=>e[0]==="_"||e==="$stable",ds=e=>N(e)?e.map(Ie):[Ie(e)],Wo=(e,t,n)=>{if(t._n)return t;const s=_o((...r)=>ds(t(...r)),n);return s._c=!1,s},Wr=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Vr(r))continue;const i=e[r];if(D(i))t[r]=Wo(r,i,s);else if(i!=null){const o=ds(i);t[r]=()=>o}}},zr=(e,t)=>{const n=ds(t);e.slots.default=()=>n},zo=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=U(t),Gt(t,"_",n)):Wr(t,e.slots={})}else e.slots={},t&&zr(e,t);Gt(e.slots,_n,1)},qo=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=Q;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:(ie(r,t),!n&&l===1&&delete r._):(i=!t.$stable,Wr(t,r)),o=t}else t&&(zr(e,t),o={default:1});if(i)for(const l in r)!Vr(l)&&!(l in o)&&delete r[l]};function qr(){return{app:null,config:{isNativeTag:Ti,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Jo=0;function Yo(e,t){return function(s,r=null){D(s)||(s=Object.assign({},s)),r!=null&&!q(r)&&(r=null);const i=qr(),o=new Set;let l=!1;const f=i.app={_uid:Jo++,_component:s,_props:r,_container:null,_context:i,_instance:null,version:bl,get config(){return i.config},set config(a){},use(a,...d){return o.has(a)||(a&&D(a.install)?(o.add(a),a.install(f,...d)):D(a)&&(o.add(a),a(f,...d))),f},mixin(a){return i.mixins.includes(a)||i.mixins.push(a),f},component(a,d){return d?(i.components[a]=d,f):i.components[a]},directive(a,d){return d?(i.directives[a]=d,f):i.directives[a]},mount(a,d,p){if(!l){const g=ue(s,r);return g.appContext=i,d&&t?t(g,a):e(g,a,p),l=!0,f._container=a,a.__vue_app__=f,yn(g.component)||g.component.proxy}},unmount(){l&&(e(null,f._container),delete f._container.__vue_app__)},provide(a,d){return i.provides[a]=d,f}};return f}}function Bn(e,t,n,s,r=!1){if(N(e)){e.forEach((g,v)=>Bn(g,t&&(N(t)?t[v]:t),n,s,r));return}if(ut(s)&&!r)return;const i=s.shapeFlag&4?yn(s.component)||s.component.proxy:s.el,o=r?null:i,{i:l,r:f}=e,a=t&&t.r,d=l.refs===Q?l.refs={}:l.refs,p=l.setupState;if(a!=null&&a!==f&&(ee(a)?(d[a]=null,K(p,a)&&(p[a]=null)):le(a)&&(a.value=null)),D(f))Ue(f,l,12,[o,d]);else{const g=ee(f),v=le(f);if(g||v){const S=()=>{if(e.f){const F=g?K(p,f)?p[f]:d[f]:f.value;r?N(F)&&Wn(F,i):N(F)?F.includes(i)||F.push(i):g?(d[f]=[i],K(p,f)&&(p[f]=d[f])):(f.value=[i],e.k&&(d[e.k]=f.value))}else g?(d[f]=o,K(p,f)&&(p[f]=o)):v&&(f.value=o,e.k&&(d[e.k]=o))};o?(S.id=-1,oe(S,n)):S()}}}const oe=Eo;function Zo(e){return Xo(e)}function Xo(e,t){const n=Mi();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:f,setText:a,setElementText:d,parentNode:p,nextSibling:g,setScopeId:v=we,insertStaticContent:S}=e,F=(c,u,h,_=null,m=null,C=null,T=!1,y=null,x=!!u.dynamicChildren)=>{if(c===u)return;c&&!Xe(c,u)&&(_=Bt(c),ve(c,m,C,!0),c=null),u.patchFlag===-2&&(x=!1,u.dynamicChildren=null);const{type:b,ref:O,shapeFlag:A}=u;switch(b){case mn:W(c,u,h,_);break;case Ce:$(c,u,h,_);break;case Xt:c==null&&I(u,h,_,T);break;case ge:M(c,u,h,_,m,C,T,y,x);break;default:A&1?B(c,u,h,_,m,C,T,y,x):A&6?G(c,u,h,_,m,C,T,y,x):(A&64||A&128)&&b.process(c,u,h,_,m,C,T,y,x,st)}O!=null&&m&&Bn(O,c&&c.ref,C,u||c,!u)},W=(c,u,h,_)=>{if(c==null)s(u.el=l(u.children),h,_);else{const m=u.el=c.el;u.children!==c.children&&a(m,u.children)}},$=(c,u,h,_)=>{c==null?s(u.el=f(u.children||""),h,_):u.el=c.el},I=(c,u,h,_)=>{[c.el,c.anchor]=S(c.children,u,h,_,c.el,c.anchor)},E=({el:c,anchor:u},h,_)=>{let m;for(;c&&c!==u;)m=g(c),s(c,h,_),c=m;s(u,h,_)},w=({el:c,anchor:u})=>{let h;for(;c&&c!==u;)h=g(c),r(c),c=h;r(u)},B=(c,u,h,_,m,C,T,y,x)=>{T=T||u.type==="svg",c==null?Z(u,h,_,m,C,T,y,x):k(c,u,m,C,T,y,x)},Z=(c,u,h,_,m,C,T,y)=>{let x,b;const{type:O,props:A,shapeFlag:P,transition:L,dirs:H}=c;if(x=c.el=o(c.type,C,A&&A.is,A),P&8?d(x,c.children):P&16&&R(c.children,x,null,_,m,C&&O!=="foreignObject",T,y),H&&ze(c,null,_,"created"),A){for(const z in A)z!=="value"&&!qt(z)&&i(x,z,null,A[z],C,c.children,_,m,Oe);"value"in A&&i(x,"value",null,A.value),(b=A.onVnodeBeforeMount)&&be(b,_,c)}V(x,c,c.scopeId,T,_),H&&ze(c,null,_,"beforeMount");const Y=(!m||m&&!m.pendingBranch)&&L&&!L.persisted;Y&&L.beforeEnter(x),s(x,u,h),((b=A&&A.onVnodeMounted)||Y||H)&&oe(()=>{b&&be(b,_,c),Y&&L.enter(x),H&&ze(c,null,_,"mounted")},m)},V=(c,u,h,_,m)=>{if(h&&v(c,h),_)for(let C=0;C<_.length;C++)v(c,_[C]);if(m){let C=m.subTree;if(u===C){const T=m.vnode;V(c,T,T.scopeId,T.slotScopeIds,m.parent)}}},R=(c,u,h,_,m,C,T,y,x=0)=>{for(let b=x;b{const y=u.el=c.el;let{patchFlag:x,dynamicChildren:b,dirs:O}=u;x|=c.patchFlag&16;const A=c.props||Q,P=u.props||Q;let L;h&&qe(h,!1),(L=P.onVnodeBeforeUpdate)&&be(L,h,u,c),O&&ze(u,c,h,"beforeUpdate"),h&&qe(h,!0);const H=m&&u.type!=="foreignObject";if(b?j(c.dynamicChildren,b,y,h,_,H,C):T||J(c,u,y,null,h,_,H,C,!1),x>0){if(x&16)X(y,u,A,P,h,_,m);else if(x&2&&A.class!==P.class&&i(y,"class",null,P.class,m),x&4&&i(y,"style",A.style,P.style,m),x&8){const Y=u.dynamicProps;for(let z=0;z{L&&be(L,h,u,c),O&&ze(u,c,h,"updated")},_)},j=(c,u,h,_,m,C,T)=>{for(let y=0;y{if(h!==_){if(h!==Q)for(const y in h)!qt(y)&&!(y in _)&&i(c,y,h[y],null,T,u.children,m,C,Oe);for(const y in _){if(qt(y))continue;const x=_[y],b=h[y];x!==b&&y!=="value"&&i(c,y,b,x,T,u.children,m,C,Oe)}"value"in _&&i(c,"value",h.value,_.value)}},M=(c,u,h,_,m,C,T,y,x)=>{const b=u.el=c?c.el:l(""),O=u.anchor=c?c.anchor:l("");let{patchFlag:A,dynamicChildren:P,slotScopeIds:L}=u;L&&(y=y?y.concat(L):L),c==null?(s(b,h,_),s(O,h,_),R(u.children,h,O,m,C,T,y,x)):A>0&&A&64&&P&&c.dynamicChildren?(j(c.dynamicChildren,P,h,m,C,T,y),(u.key!=null||m&&u===m.subTree)&&hs(c,u,!0)):J(c,u,h,O,m,C,T,y,x)},G=(c,u,h,_,m,C,T,y,x)=>{u.slotScopeIds=y,c==null?u.shapeFlag&512?m.ctx.activate(u,h,_,T,x):de(u,h,_,m,C,T,x):bt(c,u,x)},de=(c,u,h,_,m,C,T)=>{const y=c.component=fl(c,_,m);if(pn(c)&&(y.ctx.renderer=st),ul(y),y.asyncDep){if(m&&m.registerDep(y,se),!c.el){const x=y.subTree=ue(Ce);$(null,x,u,h)}return}se(y,c,u,h,m,C,T)},bt=(c,u,h)=>{const _=u.component=c.component;if(Co(c,u,h))if(_.asyncDep&&!_.asyncResolved){te(_,u,h);return}else _.next=u,ho(_.update),_.update();else u.el=c.el,_.vnode=u},se=(c,u,h,_,m,C,T)=>{const y=()=>{if(c.isMounted){let{next:O,bu:A,u:P,parent:L,vnode:H}=c,Y=O,z;qe(c,!1),O?(O.el=H.el,te(c,O,T)):O=H,A&<(A),(z=O.props&&O.props.onVnodeBeforeUpdate)&&be(z,L,O,H),qe(c,!0);const ne=En(c),xe=c.subTree;c.subTree=ne,F(xe,ne,p(xe.el),Bt(xe),c,m,C),O.el=ne.el,Y===null&&xo(c,ne.el),P&&oe(P,m),(z=O.props&&O.props.onVnodeUpdated)&&oe(()=>be(z,L,O,H),m)}else{let O;const{el:A,props:P}=u,{bm:L,m:H,parent:Y}=c,z=ut(u);if(qe(c,!1),L&<(L),!z&&(O=P&&P.onVnodeBeforeMount)&&be(O,Y,u),qe(c,!0),A&&xn){const ne=()=>{c.subTree=En(c),xn(A,c.subTree,c,m,null)};z?u.type.__asyncLoader().then(()=>!c.isUnmounted&&ne()):ne()}else{const ne=c.subTree=En(c);F(null,ne,h,_,c,m,C),u.el=ne.el}if(H&&oe(H,m),!z&&(O=P&&P.onVnodeMounted)){const ne=u;oe(()=>be(O,Y,ne),m)}(u.shapeFlag&256||Y&&ut(Y.vnode)&&Y.vnode.shapeFlag&256)&&c.a&&oe(c.a,m),c.isMounted=!0,u=h=_=null}},x=c.effect=new Jn(y,()=>ss(b),c.scope),b=c.update=()=>x.run();b.id=c.uid,qe(c,!0),b()},te=(c,u,h)=>{u.component=c;const _=c.vnode.props;c.vnode=u,c.next=null,Vo(c,u.props,_,h),qo(c,u.children,h),mt(),Ms(),_t()},J=(c,u,h,_,m,C,T,y,x=!1)=>{const b=c&&c.children,O=c?c.shapeFlag:0,A=u.children,{patchFlag:P,shapeFlag:L}=u;if(P>0){if(P&128){$t(b,A,h,_,m,C,T,y,x);return}else if(P&256){Ve(b,A,h,_,m,C,T,y,x);return}}L&8?(O&16&&Oe(b,m,C),A!==b&&d(h,A)):O&16?L&16?$t(b,A,h,_,m,C,T,y,x):Oe(b,m,C,!0):(O&8&&d(h,""),L&16&&R(A,h,_,m,C,T,y,x))},Ve=(c,u,h,_,m,C,T,y,x)=>{c=c||it,u=u||it;const b=c.length,O=u.length,A=Math.min(b,O);let P;for(P=0;PO?Oe(c,m,C,!0,!1,A):R(u,h,_,m,C,T,y,x,A)},$t=(c,u,h,_,m,C,T,y,x)=>{let b=0;const O=u.length;let A=c.length-1,P=O-1;for(;b<=A&&b<=P;){const L=c[b],H=u[b]=x?Be(u[b]):Ie(u[b]);if(Xe(L,H))F(L,H,h,null,m,C,T,y,x);else break;b++}for(;b<=A&&b<=P;){const L=c[A],H=u[P]=x?Be(u[P]):Ie(u[P]);if(Xe(L,H))F(L,H,h,null,m,C,T,y,x);else break;A--,P--}if(b>A){if(b<=P){const L=P+1,H=LP)for(;b<=A;)ve(c[b],m,C,!0),b++;else{const L=b,H=b,Y=new Map;for(b=H;b<=P;b++){const he=u[b]=x?Be(u[b]):Ie(u[b]);he.key!=null&&Y.set(he.key,b)}let z,ne=0;const xe=P-H+1;let rt=!1,_s=0;const yt=new Array(xe);for(b=0;b=xe){ve(he,m,C,!0);continue}let Ae;if(he.key!=null)Ae=Y.get(he.key);else for(z=H;z<=P;z++)if(yt[z-H]===0&&Xe(he,u[z])){Ae=z;break}Ae===void 0?ve(he,m,C,!0):(yt[Ae-H]=b+1,Ae>=_s?_s=Ae:rt=!0,F(he,u[Ae],h,null,m,C,T,y,x),ne++)}const bs=rt?Qo(yt):it;for(z=bs.length-1,b=xe-1;b>=0;b--){const he=H+b,Ae=u[he],ys=he+1{const{el:C,type:T,transition:y,children:x,shapeFlag:b}=c;if(b&6){We(c.component.subTree,u,h,_);return}if(b&128){c.suspense.move(u,h,_);return}if(b&64){T.move(c,u,h,st);return}if(T===ge){s(C,u,h);for(let A=0;Ay.enter(C),m);else{const{leave:A,delayLeave:P,afterLeave:L}=y,H=()=>s(C,u,h),Y=()=>{A(C,()=>{H(),L&&L()})};P?P(C,H,Y):Y()}else s(C,u,h)},ve=(c,u,h,_=!1,m=!1)=>{const{type:C,props:T,ref:y,children:x,dynamicChildren:b,shapeFlag:O,patchFlag:A,dirs:P}=c;if(y!=null&&Bn(y,null,h,c,!0),O&256){u.ctx.deactivate(c);return}const L=O&1&&P,H=!ut(c);let Y;if(H&&(Y=T&&T.onVnodeBeforeUnmount)&&be(Y,u,c),O&6)gi(c.component,h,_);else{if(O&128){c.suspense.unmount(h,_);return}L&&ze(c,null,u,"beforeUnmount"),O&64?c.type.remove(c,u,h,m,st,_):b&&(C!==ge||A>0&&A&64)?Oe(b,u,h,!1,!0):(C===ge&&A&384||!m&&O&16)&&Oe(x,u,h),_&&gs(c)}(H&&(Y=T&&T.onVnodeUnmounted)||L)&&oe(()=>{Y&&be(Y,u,c),L&&ze(c,null,u,"unmounted")},h)},gs=c=>{const{type:u,el:h,anchor:_,transition:m}=c;if(u===ge){pi(h,_);return}if(u===Xt){w(c);return}const C=()=>{r(h),m&&!m.persisted&&m.afterLeave&&m.afterLeave()};if(c.shapeFlag&1&&m&&!m.persisted){const{leave:T,delayLeave:y}=m,x=()=>T(h,C);y?y(c.el,C,x):x()}else C()},pi=(c,u)=>{let h;for(;c!==u;)h=g(c),r(c),c=h;r(u)},gi=(c,u,h)=>{const{bum:_,scope:m,update:C,subTree:T,um:y}=c;_&<(_),m.stop(),C&&(C.active=!1,ve(T,c,u,h)),y&&oe(y,u),oe(()=>{c.isUnmounted=!0},u),u&&u.pendingBranch&&!u.isUnmounted&&c.asyncDep&&!c.asyncResolved&&c.suspenseId===u.pendingId&&(u.deps--,u.deps===0&&u.resolve())},Oe=(c,u,h,_=!1,m=!1,C=0)=>{for(let T=C;Tc.shapeFlag&6?Bt(c.component.subTree):c.shapeFlag&128?c.suspense.next():g(c.anchor||c.el),ms=(c,u,h)=>{c==null?u._vnode&&ve(u._vnode,null,null,!0):F(u._vnode||null,c,u,null,null,null,h),Ms(),Mr(),u._vnode=c},st={p:F,um:ve,m:We,r:gs,mt:de,mc:R,pc:J,pbc:j,n:Bt,o:e};let Cn,xn;return t&&([Cn,xn]=t(st)),{render:ms,hydrate:Cn,createApp:Yo(ms,Cn)}}function qe({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function hs(e,t,n=!1){const s=e.children,r=t.children;if(N(s)&&N(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}const Go=e=>e.__isTeleport,vt=e=>e&&(e.disabled||e.disabled===""),Bs=e=>typeof SVGElement<"u"&&e instanceof SVGElement,jn=(e,t)=>{const n=e&&e.to;return ee(n)?t?t(n):null:n},el={__isTeleport:!0,process(e,t,n,s,r,i,o,l,f,a){const{mc:d,pc:p,pbc:g,o:{insert:v,querySelector:S,createText:F,createComment:W}}=a,$=vt(t.props);let{shapeFlag:I,children:E,dynamicChildren:w}=t;if(e==null){const B=t.el=F(""),Z=t.anchor=F("");v(B,n,s),v(Z,n,s);const V=t.target=jn(t.props,S),R=t.targetAnchor=F("");V&&(v(R,V),o=o||Bs(V));const k=(j,X)=>{I&16&&d(E,j,X,r,i,o,l,f)};$?k(n,Z):V&&k(V,R)}else{t.el=e.el;const B=t.anchor=e.anchor,Z=t.target=e.target,V=t.targetAnchor=e.targetAnchor,R=vt(e.props),k=R?n:Z,j=R?B:V;if(o=o||Bs(Z),w?(g(e.dynamicChildren,w,k,r,i,o,l),hs(e,t,!0)):f||p(e,t,k,j,r,i,o,l,!1),$)R||zt(t,n,B,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const X=t.target=jn(t.props,S);X&&zt(t,X,null,a,0)}else R&&zt(t,Z,V,a,1)}Jr(t)},remove(e,t,n,s,{um:r,o:{remove:i}},o){const{shapeFlag:l,children:f,anchor:a,targetAnchor:d,target:p,props:g}=e;if(p&&i(d),(o||!vt(g))&&(i(a),l&16))for(let v=0;v0?Te||it:null,nl(),St>0&&Te&&Te.push(e),e}function yc(e,t,n,s,r,i){return Zr(Gr(e,t,n,s,r,i,!0))}function Xr(e,t,n,s,r){return Zr(ue(e,t,n,s,r,!0))}function Lt(e){return e?e.__v_isVNode===!0:!1}function Xe(e,t){return e.type===t.type&&e.key===t.key}const _n="__vInternal",Qr=({key:e})=>e!=null?e:null,Qt=({ref:e,ref_key:t,ref_for:n})=>e!=null?ee(e)||le(e)||D(e)?{i:ce,r:e,k:t,f:!!n}:e:null;function Gr(e,t=null,n=null,s=0,r=null,i=e===ge?0:1,o=!1,l=!1){const f={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qr(t),ref:t&&Qt(t),scopeId:hn,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:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:ce};return l?(ps(f,n),i&128&&e.normalize(f)):n&&(f.shapeFlag|=ee(n)?8:16),St>0&&!o&&Te&&(f.patchFlag>0||i&6)&&f.patchFlag!==32&&Te.push(f),f}const ue=sl;function sl(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Br)&&(e=Ce),Lt(e)){const l=Se(e,t,!0);return n&&ps(l,n),St>0&&!i&&Te&&(l.shapeFlag&6?Te[Te.indexOf(e)]=l:Te.push(l)),l.patchFlag|=-2,l}if(hl(e)&&(e=e.__vccOpts),t){t=rl(t);let{class:l,style:f}=t;l&&!ee(l)&&(t.class=rn(l)),q(f)&&(xr(f)&&!N(f)&&(f=ie({},f)),t.style=sn(f))}const o=ee(e)?1:Nr(e)?128:Go(e)?64:q(e)?4:D(e)?2:0;return Gr(e,t,n,s,r,o,i,!0)}function rl(e){return e?xr(e)||_n in e?ie({},e):e:null}function Se(e,t,n=!1){const{props:s,ref:r,patchFlag:i,children:o}=e,l=t?ol(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&Qr(l),ref:t&&t.ref?n&&r?N(r)?r.concat(Qt(t)):[r,Qt(t)]:Qt(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ge?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Se(e.ssContent),ssFallback:e.ssFallback&&Se(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function il(e=" ",t=0){return ue(mn,null,e,t)}function Cc(e,t){const n=ue(Xt,null,e);return n.staticCount=t,n}function xc(e="",t=!1){return t?(Yr(),Xr(Ce,null,e)):ue(Ce,null,e)}function Ie(e){return e==null||typeof e=="boolean"?ue(Ce):N(e)?ue(ge,null,e.slice()):typeof e=="object"?Be(e):ue(mn,null,String(e))}function Be(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Se(e)}function ps(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(N(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),ps(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(_n in t)?t._ctx=ce:r===3&&ce&&(ce.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else D(t)?(t={default:t,_ctx:ce},n=32):(t=String(t),s&64?(n=16,t=[il(t)]):n=8);e.children=t,e.shapeFlag|=n}function ol(...e){const t={};for(let n=0;nre||ce,pt=e=>{re=e,e.scope.on()},tt=()=>{re&&re.scope.off(),re=null};function ei(e){return e.vnode.shapeFlag&4}let Dt=!1;function ul(e,t=!1){Dt=t;const{props:n,children:s}=e.vnode,r=ei(e);ko(e,n,r,t),zo(e,s);const i=r?al(e,t):void 0;return Dt=!1,i}function al(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Er(new Proxy(e.ctx,Ho));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?ni(e):null;pt(e),mt();const i=Ue(s,e,0,[e.props,r]);if(_t(),tt(),or(i)){if(i.then(tt,tt),t)return i.then(o=>{Ks(e,o,t)}).catch(o=>{an(o,e,0)});e.asyncDep=i}else Ks(e,i,t)}else ti(e,t)}function Ks(e,t,n){D(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:q(t)&&(e.setupState=vr(t)),ti(e,n)}let Us;function ti(e,t,n){const s=e.type;if(!e.render){if(!t&&Us&&!s.render){const r=s.template||as(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:l,compilerOptions:f}=s,a=ie(ie({isCustomElement:i,delimiters:l},o),f);s.render=Us(r,a)}}e.render=s.render||we}pt(e),mt(),$o(e),_t(),tt()}function dl(e){return new Proxy(e.attrs,{get(t,n){return me(e,"get","$attrs"),t[n]}})}function ni(e){const t=s=>{e.exposed=s||{}};let n;return{get attrs(){return n||(n=dl(e))},slots:e.slots,emit:e.emit,expose:t}}function yn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(vr(Er(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in wt)return wt[n](e)},has(t,n){return n in t||n in wt}}))}function Kn(e,t=!0){return D(e)?e.displayName||e.name:e.name||t&&e.__name}function hl(e){return D(e)&&"__vccOpts"in e}const pl=(e,t)=>fo(e,t,Dt);function Ec(){return si().slots}function Tc(){return si().attrs}function si(){const e=bn();return e.setupContext||(e.setupContext=ni(e))}function gl(e,t,n){const s=arguments.length;return s===2?q(t)&&!N(t)?Lt(t)?ue(e,null,[t]):ue(e,t):ue(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&Lt(n)&&(n=[n]),ue(e,t,n))}const ml=Symbol(""),_l=()=>Yt(ml),bl="3.2.45",yl="http://www.w3.org/2000/svg",Qe=typeof document<"u"?document:null,ks=Qe&&Qe.createElement("template"),Cl={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?Qe.createElementNS(yl,e):Qe.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Qe.createTextNode(e),createComment:e=>Qe.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Qe.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{ks.innerHTML=s?`${e}`:e;const l=ks.content;if(s){const f=l.firstChild;for(;f.firstChild;)l.appendChild(f.firstChild);l.removeChild(f)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function xl(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function El(e,t,n){const s=e.style,r=ee(n);if(n&&!r){for(const i in n)Un(s,i,n[i]);if(t&&!ee(t))for(const i in t)n[i]==null&&Un(s,i,"")}else{const i=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=i)}}const Vs=/\s*!important$/;function Un(e,t,n){if(N(n))n.forEach(s=>Un(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Tl(e,t);Vs.test(n)?e.setProperty(nt(s),n.replace(Vs,""),"important"):e[s]=n}}const Ws=["Webkit","Moz","ms"],In={};function Tl(e,t){const n=In[t];if(n)return n;let s=Me(t);if(s!=="filter"&&s in e)return In[t]=s;s=fn(s);for(let r=0;rFn||(Ml.then(()=>Fn=0),Fn=Date.now());function Pl(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;ye(Nl(s,n.value),t,5,[s])};return n.value=e,n.attached=Ol(),n}function Nl(e,t){if(N(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Js=/^on[a-z]/,Rl=(e,t,n,s,r=!1,i,o,l,f)=>{t==="class"?xl(e,s,r):t==="style"?El(e,n,s):on(t)?Vn(t)||Il(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Sl(e,t,s,r))?vl(e,t,s,i,o,l,f):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),wl(e,t,s,r))};function Sl(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&Js.test(t)&&D(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||Js.test(t)&&ee(n)?!1:t in e}const He="transition",Ct="animation",ri=(e,{slots:t})=>gl(Lr,oi(e),t);ri.displayName="Transition";const ii={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},Ll=ri.props=ie({},Lr.props,ii),Je=(e,t=[])=>{N(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ys=e=>e?N(e)?e.some(t=>t.length>1):e.length>1:!1;function oi(e){const t={};for(const M in e)M in ii||(t[M]=e[M]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:f=i,appearActiveClass:a=o,appearToClass:d=l,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:g=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,S=Dl(r),F=S&&S[0],W=S&&S[1],{onBeforeEnter:$,onEnter:I,onEnterCancelled:E,onLeave:w,onLeaveCancelled:B,onBeforeAppear:Z=$,onAppear:V=I,onAppearCancelled:R=E}=t,k=(M,G,de)=>{$e(M,G?d:l),$e(M,G?a:o),de&&de()},j=(M,G)=>{M._isLeaving=!1,$e(M,p),$e(M,v),$e(M,g),G&&G()},X=M=>(G,de)=>{const bt=M?V:I,se=()=>k(G,M,de);Je(bt,[G,se]),Zs(()=>{$e(G,M?f:i),Pe(G,M?d:l),Ys(bt)||Xs(G,s,F,se)})};return ie(t,{onBeforeEnter(M){Je($,[M]),Pe(M,i),Pe(M,o)},onBeforeAppear(M){Je(Z,[M]),Pe(M,f),Pe(M,a)},onEnter:X(!1),onAppear:X(!0),onLeave(M,G){M._isLeaving=!0;const de=()=>j(M,G);Pe(M,p),ci(),Pe(M,g),Zs(()=>{M._isLeaving&&($e(M,p),Pe(M,v),Ys(w)||Xs(M,s,W,de))}),Je(w,[M,de])},onEnterCancelled(M){k(M,!1),Je(E,[M])},onAppearCancelled(M){k(M,!0),Je(R,[M])},onLeaveCancelled(M){j(M),Je(B,[M])}})}function Dl(e){if(e==null)return null;if(q(e))return[Mn(e.enter),Mn(e.leave)];{const t=Mn(e);return[t,t]}}function Mn(e){return Mt(e)}function Pe(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function $e(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Zs(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hl=0;function Xs(e,t,n,s){const r=e._endId=++Hl,i=()=>{r===e._endId&&s()};if(n)return setTimeout(i,n);const{type:o,timeout:l,propCount:f}=li(e,t);if(!o)return s();const a=o+"end";let d=0;const p=()=>{e.removeEventListener(a,g),i()},g=v=>{v.target===e&&++d>=f&&p()};setTimeout(()=>{d(n[S]||"").split(", "),r=s(`${He}Delay`),i=s(`${He}Duration`),o=Qs(r,i),l=s(`${Ct}Delay`),f=s(`${Ct}Duration`),a=Qs(l,f);let d=null,p=0,g=0;t===He?o>0&&(d=He,p=o,g=i.length):t===Ct?a>0&&(d=Ct,p=a,g=f.length):(p=Math.max(o,a),d=p>0?o>a?He:Ct:null,g=d?d===He?i.length:f.length:0);const v=d===He&&/\b(transform|all)(,|$)/.test(s(`${He}Property`).toString());return{type:d,timeout:p,propCount:g,hasTransform:v}}function Qs(e,t){for(;e.lengthGs(n)+Gs(e[s])))}function Gs(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function ci(){return document.body.offsetHeight}const fi=new WeakMap,ui=new WeakMap,$l={name:"TransitionGroup",props:ie({},Ll,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=bn(),s=Sr();let r,i;return ls(()=>{if(!r.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!Ul(r[0].el,n.vnode.el,o))return;r.forEach(Bl),r.forEach(jl);const l=r.filter(Kl);ci(),l.forEach(f=>{const a=f.el,d=a.style;Pe(a,o),d.transform=d.webkitTransform=d.transitionDuration="";const p=a._moveCb=g=>{g&&g.target!==a||(!g||/transform$/.test(g.propertyName))&&(a.removeEventListener("transitionend",p),a._moveCb=null,$e(a,o))};a.addEventListener("transitionend",p)})}),()=>{const o=U(e),l=oi(o);let f=o.tag||ge;r=i,i=t.default?is(t.default()):[];for(let a=0;a{o.split(/\s+/).forEach(l=>l&&s.classList.remove(l))}),n.split(/\s+/).forEach(o=>o&&s.classList.add(o)),s.style.display="none";const r=t.nodeType===1?t:t.parentNode;r.appendChild(s);const{hasTransform:i}=li(s);return r.removeChild(s),i}const gt=e=>{const t=e.props["onUpdate:modelValue"]||!1;return N(t)?n=>lt(t,n):t};function kl(e){e.target.composing=!0}function er(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const vc={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e._assign=gt(r);const i=s||r.props&&r.props.type==="number";je(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;n&&(l=l.trim()),i&&(l=Mt(l)),e._assign(l)}),n&&je(e,"change",()=>{e.value=e.value.trim()}),t||(je(e,"compositionstart",kl),je(e,"compositionend",er),je(e,"change",er))},mounted(e,{value:t}){e.value=t==null?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:s,number:r}},i){if(e._assign=gt(i),e.composing||document.activeElement===e&&e.type!=="range"&&(n||s&&e.value.trim()===t||(r||e.type==="number")&&Mt(e.value)===t))return;const o=t==null?"":t;e.value!==o&&(e.value=o)}},Ac={deep:!0,created(e,t,n){e._assign=gt(n),je(e,"change",()=>{const s=e._modelValue,r=ai(e),i=e.checked,o=e._assign;if(N(s)){const l=rr(s,r),f=l!==-1;if(i&&!f)o(s.concat(r));else if(!i&&f){const a=[...s];a.splice(l,1),o(a)}}else if(ln(s)){const l=new Set(s);i?l.add(r):l.delete(r),o(l)}else o(di(e,i))})},mounted:tr,beforeUpdate(e,t,n){e._assign=gt(n),tr(e,t,n)}};function tr(e,{value:t,oldValue:n},s){e._modelValue=t,N(t)?e.checked=rr(t,s.props.value)>-1:ln(t)?e.checked=t.has(s.props.value):t!==n&&(e.checked=at(t,di(e,!0)))}const Ic={created(e,{value:t},n){e.checked=at(t,n.props.value),e._assign=gt(n),je(e,"change",()=>{e._assign(ai(e))})},beforeUpdate(e,{value:t,oldValue:n},s){e._assign=gt(s),t!==n&&(e.checked=at(t,s.props.value))}};function ai(e){return"_value"in e?e._value:e.value}function di(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Vl=["ctrl","shift","alt","meta"],Wl={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&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Vl.some(n=>e[`${n}Key`]&&!t.includes(n))},Fc=(e,t)=>(n,...s)=>{for(let r=0;rn=>{if(!("key"in n))return;const s=nt(n.key);if(t.some(r=>r===s||zl[r]===s))return e(n)},Oc={beforeMount(e,{value:t},{transition:n}){e._vod=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):xt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),xt(e,!0),s.enter(e)):s.leave(e,()=>{xt(e,!1)}):xt(e,t))},beforeUnmount(e,{value:t}){xt(e,t)}};function xt(e,t){e.style.display=t?e._vod:"none"}const ql=ie({patchProp:Rl},Cl);let nr;function hi(){return nr||(nr=Zo(ql))}const Pc=(...e)=>{hi().render(...e)},Nc=(...e)=>{const t=hi().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Jl(s);if(!r)return;const i=t._component;!D(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t};function Jl(e){return ee(e)?document.querySelector(e):e}export{Tc as $,rc as A,D as B,Lt as C,Ce as D,To as E,ge as F,cs as G,lo as H,$r as I,le as J,fo as K,Oo as L,mc as M,we as N,rn as O,sn as P,ol as Q,Ec as R,Xr as S,_o as T,uc as U,dc as V,xc as W,il as X,Zl as Y,Oc as Z,ri as _,Gr as a,Fc as a0,Qn as a1,ls as a2,Se as a3,mn as a4,bc as a5,Fo as a6,pc as a7,Mc as a8,gc as a9,sc as aa,Cs as ab,Yl as ac,Ac as ad,Ic as ae,gl as af,ac as ag,Po as ah,or as ai,vc as aj,_c as ak,rl as al,Er as am,Xl as an,nc as ao,Ai as ap,hc as aq,wc as ar,Nc as as,nt as at,no as au,Pc as av,ct as aw,ic as ax,oc as ay,fc as az,Cc as b,yc as c,ue as d,Gl as e,ec as f,Ql as g,Zt as h,Yt as i,bn as j,os as k,pl as l,cc as m,uo as n,Yr as o,N as p,q,Cr as r,tc as s,U as t,ro as u,ee as v,lc as w,fn as x,Me as y,K as z}; diff --git a/src/main/resources/html/lc/assets/@vue-legacy-4de3d5b5.js b/src/main/resources/html/lc/assets/@vue-legacy-4de3d5b5.js new file mode 100644 index 0000000..5b220e8 --- /dev/null +++ b/src/main/resources/html/lc/assets/@vue-legacy-4de3d5b5.js @@ -0,0 +1 @@ +System.register([],(function(e,t){"use strict";return{execute:function(){function t(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r!!n[e.toLowerCase()]:e=>!!n[e]}function n(e){if(S(e)){const t={};for(let o=0;ot(e,n,void 0,s&&s[n])));else{const n=Object.keys(e);r=new Array(n.length);for(let o=0,l=n.length;o{const t=o.fn(...e);return t&&(t.key=o.key),t}:o.fn)}return e},aa:function(e){const t=S(e)?new Array(e.length):{};for(const n in e)t[n]=wt(e,n);return t},ac:function(e){if(!e)return null;let{class:t,style:o}=e;return t&&!T(t)&&(e.class=i(t)),o&&(e.style=n(o)),e},af:kr,ag:function(e,t){return Gn(Hn,e,!0,t)||e},ak:function(e,t){const n={};for(const o in e)n[t&&/[A-Z]/.test(o)?`on:${o}`:K(o)]=e[o];return n},al:nr,am:ft,an:function(e){return new Q(e)},ao:function(e){gt(e)},aq:function(e){return Gn("directives",e)},au:ot,aw:lt,ax:function(e){Xt=e},ay:function(){Xt=null},b:function(e,t){const n=tr(Bo,null,e);return n.staticCount=t,n},c:function(e,t,n,o,r,s){return qo(er(e,t,n,o,r,s,!0))},e:function(e){X&&X.cleanups.push(e)},f:function(e){return mt(e,!1)},g:function(){return X},h:an,i:ln,m:function(e){return F(e)?{setup:e,name:e.name}:e},n:Ut,o:Wo,r:rt,s:function(e){return mt(e,!0)},t:ut,u:_t,w:function(e,t){return un(e,null,t)}});const o=/;(?![^(]*\))/g,r=/:([^]+)/,s=/\/\*.*?\*\//gs;function l(e){const t={};return e.replace(s,"").split(o).forEach((e=>{if(e){const n=e.split(r);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function i(e){let t="";if(T(e))t=e;else if(S(e))for(let n=0;nu(e,t)))}e("Y",(e=>T(e)?e:null==e?"":S(e)||$(e)&&(e.toString===j||!F(e.toString))?JSON.stringify(e,p,2):String(e)));const p=(e,t)=>t&&t.__v_isRef?p(e,t.value):k(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:A(t)?{[`Set(${t.size})`]:[...t.values()]}:!$(t)||S(t)||R(t)?t:String(t),d={},h=[],g=e("N",(()=>{})),v=()=>!1,m=/^on[^a-z]/,y=e=>m.test(e),_=e=>e.startsWith("onUpdate:"),b=Object.assign,x=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},C=Object.prototype.hasOwnProperty,w=e("z",((e,t)=>C.call(e,t))),S=e("p",Array.isArray),k=e=>"[object Map]"===M(e),A=e=>"[object Set]"===M(e),E=e("ab",(e=>"[object Date]"===M(e))),F=e("B",(e=>"function"==typeof e)),T=e("v",(e=>"string"==typeof e)),O=e=>"symbol"==typeof e,$=e("q",(e=>null!==e&&"object"==typeof e)),L=e("ai",(e=>$(e)&&F(e.then)&&F(e.catch))),j=Object.prototype.toString,M=e=>j.call(e),P=e("ap",(e=>M(e).slice(8,-1))),R=e=>"[object Object]"===M(e),V=e=>T(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,N=t(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),U=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},I=/-(\w)/g,B=e("y",U((e=>e.replace(I,((e,t)=>t?t.toUpperCase():""))))),D=/\B([A-Z])/g,z=e("at",U((e=>e.replace(D,"-$1").toLowerCase()))),W=e("x",U((e=>e.charAt(0).toUpperCase()+e.slice(1)))),K=U((e=>e?`on${W(e)}`:"")),H=(e,t)=>!Object.is(e,t),q=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Z=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let J,X;class Q{constructor(e=!1){this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=X,!e&&X&&(this.index=(X.scopes||(X.scopes=[])).push(this)-1)}run(e){if(this.active){const t=X;try{return X=this,e()}finally{X=t}}}on(){X=this}off(){X=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},ee=e=>(e.w&se)>0,te=e=>(e.n&se)>0,ne=new WeakMap;let oe,re=0,se=1;const le=Symbol(""),ie=Symbol("");class ce{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,function(e,t=X){t&&t.active&&t.effects.push(e)}(this,n)}run(){if(!this.active)return this.fn();let e=oe,t=ue;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=oe,oe=this,ue=!0,se=1<<++re,re<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===n||n>=e)&&i.push(t)}))}else switch(void 0!==n&&i.push(l.get(n)),t){case"add":S(e)?V(n)&&i.push(l.get("length")):(i.push(l.get(le)),k(e)&&i.push(l.get(ie)));break;case"delete":S(e)||(i.push(l.get(le)),k(e)&&i.push(l.get(ie)));break;case"set":k(e)&&i.push(l.get(le))}if(1===i.length)i[0]&&me(i[0]);else{const e=[];for(const t of i)t&&e.push(...t);me(Y(e))}}function me(e,t){const n=S(e)?e:[...e];for(const o of n)o.computed&&ye(o);for(const o of n)o.computed||ye(o)}function ye(e,t){(e!==oe||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const _e=t("__proto__,__v_isRef,__isVue"),be=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(O)),xe=Ae(),Ce=Ae(!1,!0),we=Ae(!0),Se=ke();function ke(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=ut(this);for(let t=0,r=this.length;t{e[t]=function(...e){pe();const n=ut(this)[t].apply(this,e);return de(),n}})),e}function Ae(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?tt:et:t?Ye:Qe).get(n))return n;const s=S(n);if(!e&&s&&w(Se,o))return Reflect.get(Se,o,r);const l=Reflect.get(n,o,r);return(O(o)?be.has(o):_e(o))?l:(e||he(n,0,o),t?l:vt(l)?s&&V(o)?l:l.value:$(l)?e?rt(l):nt(l):l)}}function Ee(e=!1){return function(t,n,o,r){let s=t[n];if(it(s)&&vt(s)&&!vt(o))return!1;if(!e&&(ct(o)||it(o)||(s=ut(s),o=ut(o)),!S(t)&&vt(s)&&!vt(o)))return s.value=o,!0;const l=S(t)&&V(n)?Number(n)!0,deleteProperty:(e,t)=>!0},Oe=b({},Fe,{get:Ce,set:Ee(!0)}),$e=e=>e,Le=e=>Reflect.getPrototypeOf(e);function je(e,t,n=!1,o=!1){const r=ut(e=e.__v_raw),s=ut(t);n||(t!==s&&he(r,0,t),he(r,0,s));const{has:l}=Le(r),i=o?$e:n?dt:pt;return l.call(r,t)?i(e.get(t)):l.call(r,s)?i(e.get(s)):void(e!==r&&e.get(t))}function Me(e,t=!1){const n=this.__v_raw,o=ut(n),r=ut(e);return t||(e!==r&&he(o,0,e),he(o,0,r)),e===r?n.has(e):n.has(e)||n.has(r)}function Pe(e,t=!1){return e=e.__v_raw,!t&&he(ut(e),0,le),Reflect.get(e,"size",e)}function Re(e){e=ut(e);const t=ut(this);return Le(t).has.call(t,e)||(t.add(e),ve(t,"add",e,e)),this}function Ve(e,t){t=ut(t);const n=ut(this),{has:o,get:r}=Le(n);let s=o.call(n,e);s||(e=ut(e),s=o.call(n,e));const l=r.call(n,e);return n.set(e,t),s?H(t,l)&&ve(n,"set",e,t):ve(n,"add",e,t),this}function Ne(e){const t=ut(this),{has:n,get:o}=Le(t);let r=n.call(t,e);r||(e=ut(e),r=n.call(t,e)),o&&o.call(t,e);const s=t.delete(e);return r&&ve(t,"delete",e,void 0),s}function Ue(){const e=ut(this),t=0!==e.size,n=e.clear();return t&&ve(e,"clear",void 0,void 0),n}function Ie(e,t){return function(n,o){const r=this,s=r.__v_raw,l=ut(s),i=t?$e:e?dt:pt;return!e&&he(l,0,le),s.forEach(((e,t)=>n.call(o,i(e),i(t),r)))}}function Be(e,t,n){return function(...o){const r=this.__v_raw,s=ut(r),l=k(s),i="entries"===e||e===Symbol.iterator&&l,c="keys"===e&&l,a=r[e](...o),u=n?$e:t?dt:pt;return!t&&he(s,0,c?ie:le),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:i?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function De(e){return function(...t){return"delete"!==e&&this}}function ze(){const e={get(e){return je(this,e)},get size(){return Pe(this)},has:Me,add:Re,set:Ve,delete:Ne,clear:Ue,forEach:Ie(!1,!1)},t={get(e){return je(this,e,!1,!0)},get size(){return Pe(this)},has:Me,add:Re,set:Ve,delete:Ne,clear:Ue,forEach:Ie(!1,!0)},n={get(e){return je(this,e,!0)},get size(){return Pe(this,!0)},has(e){return Me.call(this,e,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Ie(!0,!1)},o={get(e){return je(this,e,!0,!0)},get size(){return Pe(this,!0)},has(e){return Me.call(this,e,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Ie(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=Be(r,!1,!1),n[r]=Be(r,!0,!1),t[r]=Be(r,!1,!0),o[r]=Be(r,!0,!0)})),[e,n,t,o]}const[We,Ke,He,qe]=ze();function Ge(e,t){const n=t?e?qe:He:e?Ke:We;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(w(n,o)&&o in t?n:t,o,r)}const Ze={get:Ge(!1,!1)},Je={get:Ge(!1,!0)},Xe={get:Ge(!0,!1)},Qe=new WeakMap,Ye=new WeakMap,et=new WeakMap,tt=new WeakMap;function nt(e){return it(e)?e:st(e,!1,Fe,Ze,Qe)}function ot(e){return st(e,!1,Oe,Je,Ye)}function rt(e){return st(e,!0,Te,Xe,et)}function st(e,t,n,o,r){if(!$(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const s=r.get(e);if(s)return s;const l=(i=e).__v_skip||!Object.isExtensible(i)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(P(i));var i;if(0===l)return e;const c=new Proxy(e,2===l?o:n);return r.set(e,c),c}function lt(e){return it(e)?lt(e.__v_raw):!(!e||!e.__v_isReactive)}function it(e){return!(!e||!e.__v_isReadonly)}function ct(e){return!(!e||!e.__v_isShallow)}function at(e){return lt(e)||it(e)}function ut(e){const t=e&&e.__v_raw;return t?ut(t):e}function ft(e){return G(e,"__v_skip",!0),e}const pt=e=>$(e)?nt(e):e,dt=e=>$(e)?rt(e):e;function ht(e){ue&&oe&&ge((e=ut(e)).dep||(e.dep=Y()))}function gt(e,t){(e=ut(e)).dep&&me(e.dep)}function vt(e){return!(!e||!0!==e.__v_isRef)}function mt(e,t){return vt(e)?e:new yt(e,t)}class yt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:ut(e),this._value=t?e:pt(e)}get value(){return ht(this),this._value}set value(e){const t=this.__v_isShallow||ct(e)||it(e);e=t?e:ut(e),H(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:pt(e),gt(this))}}function _t(e){return vt(e)?e.value:e}const bt={get:(e,t,n)=>_t(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return vt(r)&&!vt(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function xt(e){return lt(e)?e:new Proxy(e,bt)}class Ct{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}}function wt(e,t,n){const o=e[t];return vt(o)?o:new Ct(e,t,n)}var St;class kt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[St]=!1,this._dirty=!0,this.effect=new ce(e,(()=>{this._dirty||(this._dirty=!0,gt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=ut(this);return ht(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function At(e,t,n=!1){let o,r;const s=F(e);return s?(o=e,r=g):(o=e.get,r=e.set),new kt(o,r,s||!r,n)}function Et(e,t,n,o){let r;try{r=o?e(...o):e()}catch(s){Tt(s,t,n)}return r}function Ft(e,t,n,o){if(F(e)){const r=Et(e,t,n,o);return r&&L(r)&&r.catch((e=>{Tt(e,t,n)})),r}const r=[];for(let s=0;s>>1;Wt(Lt[o])Wt(e)-Wt(t))),Rt=0;Rtnull==e.id?1/0:e.id,Kt=(e,t)=>{const n=Wt(e)-Wt(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Ht(e){$t=!1,Ot=!0,Lt.sort(Kt);try{for(jt=0;jtT(e)?e.trim():e))),t&&(r=n.map(Z))}let i,c=o[i=K(t)]||o[i=K(B(t))];!c&&s&&(c=o[i=K(z(t))]),c&&Ft(c,e,6,r);const a=o[i+"Once"];if(a){if(e.emitted){if(e.emitted[i])return}else e.emitted={};e.emitted[i]=!0,Ft(a,e,6,r)}}function Gt(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const s=e.emits;let l={},i=!1;if(!F(e)){const o=e=>{const n=Gt(e,t,!0);n&&(i=!0,b(l,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return s||i?(S(s)?s.forEach((e=>l[e]=null)):b(l,s),$(e)&&o.set(e,l),l):($(e)&&o.set(e,null),null)}function Zt(e,t){return!(!e||!y(t))&&(t=t.slice(2).replace(/Once$/,""),w(e,t[0].toLowerCase()+t.slice(1))||w(e,z(t))||w(e,t))}let Jt=null,Xt=null;function Qt(e){const t=Jt;return Jt=e,Xt=e&&e.type.__scopeId||null,t}function Yt(e,t=Jt,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&Ho(-1);const r=Qt(t);let s;try{s=e(...n)}finally{Qt(r),o._d&&Ho(1)}return s};return o._n=!0,o._c=!0,o._d=!0,o}function en(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:s,propsOptions:[l],slots:i,attrs:c,emit:a,render:u,renderCache:f,data:p,setupState:d,ctx:h,inheritAttrs:g}=e;let v,m;const y=Qt(e);try{if(4&n.shapeFlag){const e=r||o;v=sr(u.call(e,e,f,s,d,p,h)),m=c}else{const e=t;v=sr(e.length>1?e(s,{attrs:c,slots:i,emit:a}):e(s,null)),m=t.props?c:tn(c)}}catch(x){Do.length=0,Tt(x,e,1),v=tr(Io)}let b=v;if(m&&!1!==g){const e=Object.keys(m),{shapeFlag:t}=b;e.length&&7&t&&(l&&e.some(_)&&(m=nn(m,l)),b=or(b,m))}return n.dirs&&(b=or(b),b.dirs=b.dirs?b.dirs.concat(n.dirs):n.dirs),n.transition&&(b.transition=n.transition),v=b,Qt(y),v}const tn=e=>{let t;for(const n in e)("class"===n||"style"===n||y(n))&&((t||(t={}))[n]=e[n]);return t},nn=(e,t)=>{const n={};for(const o in e)_(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function on(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;re.__isSuspense;function sn(e,t){if(pr){let n=pr.provides;const o=pr.parent&&pr.parent.provides;o===n&&(n=pr.provides=Object.create(o)),n[e]=t}}function ln(e,t,n=!1){const o=pr||Jt;if(o){const r=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&F(t)?t.call(o.proxy):t}}const cn={};function an(e,t,n){return un(e,t,n)}function un(e,t,{immediate:n,deep:o,flush:r,onTrack:s,onTrigger:l}=d){const i=pr;let c,a,u=!1,f=!1;if(vt(e)?(c=()=>e.value,u=ct(e)):lt(e)?(c=()=>e,o=!0):S(e)?(f=!0,u=e.some((e=>lt(e)||ct(e))),c=()=>e.map((e=>vt(e)?e.value:lt(e)?dn(e):F(e)?Et(e,i,2):void 0))):c=F(e)?t?()=>Et(e,i,2):()=>{if(!i||!i.isUnmounted)return a&&a(),Ft(e,i,3,[h])}:g,t&&o){const e=c;c=()=>dn(e())}let p,h=e=>{a=_.onStop=()=>{Et(e,i,4)}};if(mr){if(h=g,t?n&&Ft(t,i,3,[c(),f?[]:void 0,h]):c(),"sync"!==r)return g;{const e=Er();p=e.__watcherHandles||(e.__watcherHandles=[])}}let v=f?new Array(e.length).fill(cn):cn;const m=()=>{if(_.active)if(t){const e=_.run();(o||u||(f?e.some(((e,t)=>H(e,v[t]))):H(e,v)))&&(a&&a(),Ft(t,i,3,[e,v===cn?void 0:f&&v[0]===cn?[]:v,h]),v=e)}else _.run()};let y;m.allowRecurse=!!t,"sync"===r?y=m:"post"===r?y=()=>To(m,i&&i.suspense):(m.pre=!0,i&&(m.id=i.uid),y=()=>It(m));const _=new ce(c,y);t?n?m():v=_.run():"post"===r?To(_.run.bind(_),i&&i.suspense):_.run();const b=()=>{_.stop(),i&&i.scope&&x(i.scope.effects,_)};return p&&p.push(b),b}function fn(e,t,n){const o=this.proxy,r=T(e)?e.includes(".")?pn(o,e):()=>o[e]:e.bind(o,o);let s;F(t)?s=t:(s=t.handler,n=t);const l=pr;hr(this);const i=un(r,s.bind(o),n);return l?hr(l):gr(),i}function pn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{dn(e,t)}));else if(R(e))for(const n in e)dn(e[n],t);return e}function hn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Rn((()=>{e.isMounted=!0})),Un((()=>{e.isUnmounting=!0})),e}const gn=[Function,Array],vn={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:gn,onEnter:gn,onAfterEnter:gn,onEnterCancelled:gn,onBeforeLeave:gn,onLeave:gn,onAfterLeave:gn,onLeaveCancelled:gn,onBeforeAppear:gn,onAppear:gn,onAfterAppear:gn,onAppearCancelled:gn},setup(e,{slots:t}){const n=dr(),o=hn();let r;return()=>{const s=t.default&&Cn(t.default(),!0);if(!s||!s.length)return;let l=s[0];if(s.length>1)for(const e of s)if(e.type!==Io){l=e;break}const i=ut(e),{mode:c}=i;if(o.isLeaving)return _n(l);const a=bn(l);if(!a)return _n(l);const u=yn(a,i,o,n);xn(a,u);const f=n.subTree,p=f&&bn(f);let d=!1;const{getTransitionKey:h}=a.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,d=!0)}if(p&&p.type!==Io&&(!Jo(a,p)||d)){const e=yn(p,i,o,n);if(xn(p,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,!1!==n.update.active&&n.update()},_n(l);"in-out"===c&&a.type!==Io&&(e.delayLeave=(e,t,n)=>{mn(o,p)[String(p.key)]=p,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return l}}};function mn(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 yn(e,t,n,o){const{appear:r,mode:s,persisted:l=!1,onBeforeEnter:i,onEnter:c,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:f,onLeave:p,onAfterLeave:d,onLeaveCancelled:h,onBeforeAppear:g,onAppear:v,onAfterAppear:m,onAppearCancelled:y}=t,_=String(e.key),b=mn(n,e),x=(e,t)=>{e&&Ft(e,o,9,t)},C=(e,t)=>{const n=t[1];x(e,t),S(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},w={mode:s,persisted:l,beforeEnter(t){let o=i;if(!n.isMounted){if(!r)return;o=g||i}t._leaveCb&&t._leaveCb(!0);const s=b[_];s&&Jo(e,s)&&s.el._leaveCb&&s.el._leaveCb(),x(o,[t])},enter(e){let t=c,o=a,s=u;if(!n.isMounted){if(!r)return;t=v||c,o=m||a,s=y||u}let l=!1;const i=e._enterCb=t=>{l||(l=!0,x(t?s:o,[e]),w.delayedLeave&&w.delayedLeave(),e._enterCb=void 0)};t?C(t,[e,i]):i()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();x(f,[t]);let s=!1;const l=t._leaveCb=n=>{s||(s=!0,o(),x(n?h:d,[t]),t._leaveCb=void 0,b[r]===e&&delete b[r])};b[r]=e,p?C(p,[t,l]):l()},clone:e=>yn(e,t,n,o)};return w}function _n(e){if(Sn(e))return(e=or(e)).children=null,e}function bn(e){return Sn(e)?e.children?e.children[0]:void 0:e}function xn(e,t){6&e.shapeFlag&&e.component?xn(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 Cn(e,t=!1,n){let o=[],r=0;for(let s=0;s1)for(let s=0;s!!e.type.__asyncLoader,Sn=e=>e.type.__isKeepAlive,kn={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=dr(),o=n.ctx;if(!o.renderer)return()=>{const e=t.default&&t.default();return e&&1===e.length?e[0]:e};const r=new Map,s=new Set;let l=null;const i=n.suspense,{renderer:{p:c,m:a,um:u,o:{createElement:f}}}=o,p=f("div");function d(e){$n(e),u(e,n,i,!0)}function h(e){r.forEach(((t,n)=>{const o=Cr(t.type);!o||e&&e(o)||g(n)}))}function g(e){const t=r.get(e);l&&t.type===l.type?l&&$n(l):d(t),r.delete(e),s.delete(e)}o.activate=(e,t,n,o,r)=>{const s=e.component;a(e,t,n,0,i),c(s.vnode,e,t,n,s,i,o,e.slotScopeIds,r),To((()=>{s.isDeactivated=!1,s.a&&q(s.a);const t=e.props&&e.props.onVnodeMounted;t&&ar(t,s.parent,e)}),i)},o.deactivate=e=>{const t=e.component;a(e,p,null,1,i),To((()=>{t.da&&q(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&ar(n,t.parent,e),t.isDeactivated=!0}),i)},an((()=>[e.include,e.exclude]),(([e,t])=>{e&&h((t=>An(e,t))),t&&h((e=>!An(t,e)))}),{flush:"post",deep:!0});let v=null;const m=()=>{null!=v&&r.set(v,Ln(n.subTree))};return Rn(m),Nn(m),Un((()=>{r.forEach((e=>{const{subTree:t,suspense:o}=n,r=Ln(t);if(e.type!==r.type)d(e);else{$n(r);const e=r.component.da;e&&To(e,o)}}))})),()=>{if(v=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return l=null,n;if(!Zo(o)||!(4&o.shapeFlag||128&o.shapeFlag))return l=null,o;let i=Ln(o);const c=i.type,a=Cr(wn(i)?i.type.__asyncResolved||{}:c),{include:u,exclude:f,max:p}=e;if(u&&(!a||!An(u,a))||f&&a&&An(f,a))return l=i,o;const d=null==i.key?c:i.key,h=r.get(d);return i.el&&(i=or(i),128&o.shapeFlag&&(o.ssContent=i)),v=d,h?(i.el=h.el,i.component=h.component,i.transition&&xn(i,i.transition),i.shapeFlag|=512,s.delete(d),s.add(d)):(s.add(d),p&&s.size>parseInt(p,10)&&g(s.values().next().value)),i.shapeFlag|=256,l=i,rn(o.type)?o:i}}};function An(e,t){return S(e)?e.some((e=>An(e,t))):T(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function En(e,t){Tn(e,"a",t)}function Fn(e,t){Tn(e,"da",t)}function Tn(e,t,n=pr){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(jn(t,o,n),n){let e=n.parent;for(;e&&e.parent;)Sn(e.parent.vnode)&&On(o,t,n,e),e=e.parent}}function On(e,t,n,o){const r=jn(t,e,o,!0);In((()=>{x(o[t],r)}),n)}function $n(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Ln(e){return 128&e.shapeFlag?e.ssContent:e}function jn(e,t,n=pr,o=!1){if(n){const r=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;pe(),hr(n);const r=Ft(t,n,e,o);return gr(),de(),r});return o?r.unshift(s):r.push(s),s}}e("az",kn);const Mn=e=>(t,n=pr)=>(!mr||"sp"===e)&&jn(e,((...e)=>t(...e)),n),Pn=e("L",Mn("bm")),Rn=e("k",Mn("m")),Vn=e("ah",Mn("bu")),Nn=e("a2",Mn("u")),Un=e("G",Mn("bum")),In=e("I",Mn("um")),Bn=Mn("sp"),Dn=Mn("rtg"),zn=Mn("rtc");function Wn(e,t=pr){jn("ec",e,t)}function Kn(e,t,n,o){const r=e.dirs,s=t&&t.dirs;for(let l=0;l!Zo(e)||e.type!==Io&&!(e.type===No&&!Jn(e.children))))?e:null}const Xn=e=>e?vr(e)?xr(e)||e.proxy:Xn(e.parent):null,Qn=b(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=>Xn(e.parent),$root:e=>Xn(e.root),$emit:e=>e.emit,$options:e=>so(e),$forceUpdate:e=>e.f||(e.f=()=>It(e.update)),$nextTick:e=>e.n||(e.n=Ut.bind(e.proxy)),$watch:e=>fn.bind(e)}),Yn=(e,t)=>e!==d&&!e.__isScriptSetup&&w(e,t),eo={get({_:e},t){const{ctx:n,setupState:o,data:r,props:s,accessCache:l,type:i,appContext:c}=e;let a;if("$"!==t[0]){const i=l[t];if(void 0!==i)switch(i){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return s[t]}else{if(Yn(o,t))return l[t]=1,o[t];if(r!==d&&w(r,t))return l[t]=2,r[t];if((a=e.propsOptions[0])&&w(a,t))return l[t]=3,s[t];if(n!==d&&w(n,t))return l[t]=4,n[t];to&&(l[t]=0)}}const u=Qn[t];let f,p;return u?("$attrs"===t&&he(e,0,t),u(e)):(f=i.__cssModules)&&(f=f[t])?f:n!==d&&w(n,t)?(l[t]=4,n[t]):(p=c.config.globalProperties,w(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:r,ctx:s}=e;return Yn(r,t)?(r[t]=n,!0):o!==d&&w(o,t)?(o[t]=n,!0):!(w(e.props,t)||"$"===t[0]&&t.slice(1)in e||(s[t]=n,0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:s}},l){let i;return!!n[l]||e!==d&&w(e,l)||Yn(t,l)||(i=s[0])&&w(i,l)||w(o,l)||w(Qn,l)||w(r.config.globalProperties,l)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:w(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let to=!0;function no(e){const t=so(e),n=e.proxy,o=e.ctx;to=!1,t.beforeCreate&&oo(t.beforeCreate,e,"bc");const{data:r,computed:s,methods:l,watch:i,provide:c,inject:a,created:u,beforeMount:f,mounted:p,beforeUpdate:d,updated:h,activated:v,deactivated:m,beforeDestroy:y,beforeUnmount:_,destroyed:b,unmounted:x,render:C,renderTracked:w,renderTriggered:k,errorCaptured:A,serverPrefetch:E,expose:T,inheritAttrs:O,components:L,directives:j,filters:M}=t;if(a&&function(e,t,n=g,o=!1){S(e)&&(e=ao(e));for(const r in e){const n=e[r];let s;s=$(n)?"default"in n?ln(n.from||r,n.default,!0):ln(n.from||r):ln(n),vt(s)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e}):t[r]=s}}(a,o,null,e.appContext.config.unwrapInjectedRef),l)for(const g in l){const e=l[g];F(e)&&(o[g]=e.bind(n))}if(r){const t=r.call(n,n);$(t)&&(e.data=nt(t))}if(to=!0,s)for(const S in s){const e=s[S],t=F(e)?e.bind(n,n):F(e.get)?e.get.bind(n,n):g,r=!F(e)&&F(e.set)?e.set.bind(n):g,l=wr({get:t,set:r});Object.defineProperty(o,S,{enumerable:!0,configurable:!0,get:()=>l.value,set:e=>l.value=e})}if(i)for(const g in i)ro(i[g],o,n,g);if(c){const e=F(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{sn(t,e[t])}))}function P(e,t){S(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&oo(u,e,"c"),P(Pn,f),P(Rn,p),P(Vn,d),P(Nn,h),P(En,v),P(Fn,m),P(Wn,A),P(zn,w),P(Dn,k),P(Un,_),P(In,x),P(Bn,E),S(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===g&&(e.render=C),null!=O&&(e.inheritAttrs=O),L&&(e.components=L),j&&(e.directives=j)}function oo(e,t,n){Ft(S(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function ro(e,t,n,o){const r=o.includes(".")?pn(n,o):()=>n[o];if(T(e)){const n=t[e];F(n)&&an(r,n)}else if(F(e))an(r,e.bind(n));else if($(e))if(S(e))e.forEach((e=>ro(e,t,n,o)));else{const o=F(e.handler)?e.handler.bind(n):t[e.handler];F(o)&&an(r,o,e)}}function so(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:s,config:{optionMergeStrategies:l}}=e.appContext,i=s.get(t);let c;return i?c=i:r.length||n||o?(c={},r.length&&r.forEach((e=>lo(c,e,l,!0))),lo(c,t,l)):c=t,$(t)&&s.set(t,c),c}function lo(e,t,n,o=!1){const{mixins:r,extends:s}=t;s&&lo(e,s,n,!0),r&&r.forEach((t=>lo(e,t,n,!0)));for(const l in t)if(o&&"expose"===l);else{const o=io[l]||n&&n[l];e[l]=o?o(e[l],t[l]):t[l]}return e}const io={data:co,props:fo,emits:fo,methods:fo,computed:fo,beforeCreate:uo,created:uo,beforeMount:uo,mounted:uo,beforeUpdate:uo,updated:uo,beforeDestroy:uo,beforeUnmount:uo,destroyed:uo,unmounted:uo,activated:uo,deactivated:uo,errorCaptured:uo,serverPrefetch:uo,components:fo,directives:fo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=b(Object.create(null),e);for(const o in t)n[o]=uo(e[o],t[o]);return n},provide:co,inject:function(e,t){return fo(ao(e),ao(t))}};function co(e,t){return t?e?function(){return b(F(e)?e.call(this,this):e,F(t)?t.call(this,this):t)}:t:e}function ao(e){if(S(e)){const t={};for(let n=0;n{c=!0;const[n,o]=go(e,t,!0);b(l,n),o&&i.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!s&&!c)return $(e)&&o.set(e,h),h;if(S(s))for(let u=0;u-1,n[1]=o<0||t-1||w(n,"default"))&&i.push(e)}}}const a=[l,i];return $(e)&&o.set(e,a),a}function vo(e){return"$"!==e[0]}function mo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function yo(e,t){return mo(e)===mo(t)}function _o(e,t){return S(t)?t.findIndex((t=>yo(t,e))):F(t)&&yo(t,e)?0:-1}const bo=e=>"_"===e[0]||"$stable"===e,xo=e=>S(e)?e.map(sr):[sr(e)],Co=(e,t,n)=>{if(t._n)return t;const o=Yt(((...e)=>xo(t(...e))),n);return o._c=!1,o},wo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(bo(r))continue;const n=e[r];if(F(n))t[r]=Co(0,n,o);else if(null!=n){const e=xo(n);t[r]=()=>e}}},So=(e,t)=>{const n=xo(t);e.slots.default=()=>n};function ko(){return{app:null,config:{isNativeTag:v,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Ao=0;function Eo(e,t){return function(n,o=null){F(n)||(n=Object.assign({},n)),null==o||$(o)||(o=null);const r=ko(),s=new Set;let l=!1;const i=r.app={_uid:Ao++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:Fr,get config(){return r.config},set config(e){},use:(e,...t)=>(s.has(e)||(e&&F(e.install)?(s.add(e),e.install(i,...t)):F(e)&&(s.add(e),e(i,...t))),i),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),i),component:(e,t)=>t?(r.components[e]=t,i):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,i):r.directives[e],mount(s,c,a){if(!l){const u=tr(n,o);return u.appContext=r,c&&t?t(u,s):e(u,s,a),l=!0,i._container=s,s.__vue_app__=i,xr(u.component)||u.component.proxy}},unmount(){l&&(e(null,i._container),delete i._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,i)};return i}}function Fo(e,t,n,o,r=!1){if(S(e))return void e.forEach(((e,s)=>Fo(e,t&&(S(t)?t[s]:t),n,o,r)));if(wn(o)&&!r)return;const s=4&o.shapeFlag?xr(o.component)||o.component.proxy:o.el,l=r?null:s,{i:i,r:c}=e,a=t&&t.r,u=i.refs===d?i.refs={}:i.refs,f=i.setupState;if(null!=a&&a!==c&&(T(a)?(u[a]=null,w(f,a)&&(f[a]=null)):vt(a)&&(a.value=null)),F(c))Et(c,i,12,[l,u]);else{const t=T(c),o=vt(c);if(t||o){const i=()=>{if(e.f){const n=t?w(f,c)?f[c]:u[c]:c.value;r?S(n)&&x(n,s):S(n)?n.includes(s)||n.push(s):t?(u[c]=[s],w(f,c)&&(f[c]=u[c])):(c.value=[s],e.k&&(u[e.k]=c.value))}else t?(u[c]=l,w(f,c)&&(f[c]=l)):o&&(c.value=l,e.k&&(u[e.k]=l))};l?(i.id=-1,To(i,n)):i()}}}const To=function(e,t){var n;t&&t.pendingBranch?S(e)?t.effects.push(...e):t.effects.push(e):(S(n=e)?Mt.push(...n):Pt&&Pt.includes(n,n.allowRecurse?Rt+1:Rt)||Mt.push(n),Bt())};function Oo(e){return function(e,t){(J||(J="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,createElement:s,createText:l,createComment:i,setText:c,setElementText:a,parentNode:u,nextSibling:f,setScopeId:p=g,insertStaticContent:v}=e,m=(e,t,n,o=null,r=null,s=null,l=!1,i=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!Jo(e,t)&&(o=te(e),H(e,r,s,!0),e=null),-2===t.patchFlag&&(c=!1,t.dynamicChildren=null);const{type:a,ref:u,shapeFlag:f}=t;switch(a){case Uo:y(e,t,n,o);break;case Io:_(e,t,n,o);break;case Bo:null==e&&x(t,n,o,l);break;case No:j(e,t,n,o,r,s,l,i,c);break;default:1&f?k(e,t,n,o,r,s,l,i,c):6&f?M(e,t,n,o,r,s,l,i,c):(64&f||128&f)&&a.process(e,t,n,o,r,s,l,i,c,oe)}null!=u&&r&&Fo(u,e&&e.ref,s,t||e,!t)},y=(e,t,o,r)=>{if(null==e)n(t.el=l(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&c(n,t.children)}},_=(e,t,o,r)=>{null==e?n(t.el=i(t.children||""),o,r):t.el=e.el},x=(e,t,n,o)=>{[e.el,e.anchor]=v(e.children,t,n,o,e.el,e.anchor)},C=({el:e,anchor:t},o,r)=>{let s;for(;e&&e!==t;)s=f(e),n(e,o,r),e=s;n(t,o,r)},S=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=f(e),o(e),e=n;o(t)},k=(e,t,n,o,r,s,l,i,c)=>{l=l||"svg"===t.type,null==e?A(t,n,o,r,s,l,i,c):T(e,t,r,s,l,i,c)},A=(e,t,o,l,i,c,u,f)=>{let p,d;const{type:h,props:g,shapeFlag:v,transition:m,dirs:y}=e;if(p=e.el=s(e.type,c,g&&g.is,g),8&v?a(p,e.children):16&v&&F(e.children,p,null,l,i,c&&"foreignObject"!==h,u,f),y&&Kn(e,null,l,"created"),g){for(const t in g)"value"===t||N(t)||r(p,t,null,g[t],c,e.children,l,i,ee);"value"in g&&r(p,"value",null,g.value),(d=g.onVnodeBeforeMount)&&ar(d,l,e)}E(p,e,e.scopeId,u,l),y&&Kn(e,null,l,"beforeMount");const _=(!i||i&&!i.pendingBranch)&&m&&!m.persisted;_&&m.beforeEnter(p),n(p,t,o),((d=g&&g.onVnodeMounted)||_||y)&&To((()=>{d&&ar(d,l,e),_&&m.enter(p),y&&Kn(e,null,l,"mounted")}),i)},E=(e,t,n,o,r)=>{if(n&&p(e,n),o)for(let s=0;s{for(let a=c;a{const c=t.el=e.el;let{patchFlag:u,dynamicChildren:f,dirs:p}=t;u|=16&e.patchFlag;const h=e.props||d,g=t.props||d;let v;n&&$o(n,!1),(v=g.onVnodeBeforeUpdate)&&ar(v,n,t,e),p&&Kn(t,e,n,"beforeUpdate"),n&&$o(n,!0);const m=s&&"foreignObject"!==t.type;if(f?O(e.dynamicChildren,f,c,n,o,m,l):i||I(e,t,c,null,n,o,m,l,!1),u>0){if(16&u)$(c,t,h,g,n,o,s);else if(2&u&&h.class!==g.class&&r(c,"class",null,g.class,s),4&u&&r(c,"style",h.style,g.style,s),8&u){const l=t.dynamicProps;for(let t=0;t{v&&ar(v,n,t,e),p&&Kn(t,e,n,"updated")}),o)},O=(e,t,n,o,r,s,l)=>{for(let i=0;i{if(n!==o){if(n!==d)for(const c in n)N(c)||c in o||r(e,c,n[c],null,i,t.children,s,l,ee);for(const c in o){if(N(c))continue;const a=o[c],u=n[c];a!==u&&"value"!==c&&r(e,c,u,a,i,t.children,s,l,ee)}"value"in o&&r(e,"value",n.value,o.value)}},j=(e,t,o,r,s,i,c,a,u)=>{const f=t.el=e?e.el:l(""),p=t.anchor=e?e.anchor:l("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:g}=t;g&&(a=a?a.concat(g):g),null==e?(n(f,o,r),n(p,o,r),F(t.children,o,p,s,i,c,a,u)):d>0&&64&d&&h&&e.dynamicChildren?(O(e.dynamicChildren,h,o,s,i,c,a),(null!=t.key||s&&t===s.subTree)&&Lo(e,t,!0)):I(e,t,o,p,s,i,c,a,u)},M=(e,t,n,o,r,s,l,i,c)=>{t.slotScopeIds=i,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,l,c):P(t,n,o,r,s,l,c):R(e,t,c)},P=(e,t,n,o,r,s,l)=>{const i=e.component=function(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||ur,s={uid:fr++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Q(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:go(o,r),emitsOptions:Gt(o,r),emit:null,emitted:null,propsDefaults:d,inheritAttrs:o.inheritAttrs,ctx:d,data:d,props:d,attrs:d,slots:d,refs:d,setupState:d,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=qt.bind(null,s),e.ce&&e.ce(s),s}(e,o,r);if(Sn(e)&&(i.ctx.renderer=oe),function(e,t=!1){mr=t;const{props:n,children:o}=e.vnode,r=vr(e);(function(e,t,n,o=!1){const r={},s={};G(s,Xo,1),e.propsDefaults=Object.create(null),po(e,t,r,s);for(const l in e.propsOptions[0])l in r||(r[l]=void 0);n?e.props=o?r:ot(r):e.type.props?e.props=r:e.props=s,e.attrs=s})(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=ut(t),G(t,"_",n)):wo(t,e.slots={})}else e.slots={},t&&So(e,t);G(e.slots,Xo,1)})(e,o);r&&function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=ft(new Proxy(e.ctx,eo));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?br(e):null;hr(e),pe();const r=Et(o,e,0,[e.props,n]);if(de(),gr(),L(r)){if(r.then(gr,gr),t)return r.then((n=>{yr(e,n,t)})).catch((t=>{Tt(t,e,0)}));e.asyncDep=r}else yr(e,r,t)}else _r(e)}(e,t);mr=!1}(i),i.asyncDep){if(r&&r.registerDep(i,V),!e.el){const e=i.subTree=tr(Io);_(null,e,t,n)}}else V(i,e,t,n,r,s,l)},R=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:s}=e,{props:l,children:i,patchFlag:c}=t,a=s.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&c>=0))return!(!r&&!i||i&&i.$stable)||o!==l&&(o?!l||on(o,l,a):!!l);if(1024&c)return!0;if(16&c)return o?on(o,l,a):!!l;if(8&c){const e=t.dynamicProps;for(let t=0;tjt&&Lt.splice(t,1)}(o.update),o.update()}else t.el=e.el,o.vnode=t},V=(e,t,n,o,r,s,l)=>{const i=()=>{if(e.isMounted){let t,{next:n,bu:o,u:i,parent:c,vnode:a}=e,f=n;$o(e,!1),n?(n.el=a.el,U(e,n,l)):n=a,o&&q(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&ar(t,c,n,a),$o(e,!0);const p=en(e),d=e.subTree;e.subTree=p,m(d,p,u(d.el),te(d),e,r,s),n.el=p.el,null===f&&function({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}(e,p.el),i&&To(i,r),(t=n.props&&n.props.onVnodeUpdated)&&To((()=>ar(t,c,n,a)),r)}else{let l;const{el:i,props:c}=t,{bm:a,m:u,parent:f}=e,p=wn(t);if($o(e,!1),a&&q(a),!p&&(l=c&&c.onVnodeBeforeMount)&&ar(l,f,t),$o(e,!0),i&&se){const n=()=>{e.subTree=en(e),se(i,e.subTree,e,r,null)};p?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const l=e.subTree=en(e);m(null,l,n,o,e,r,s),t.el=l.el}if(u&&To(u,r),!p&&(l=c&&c.onVnodeMounted)){const e=t;To((()=>ar(l,f,e)),r)}(256&t.shapeFlag||f&&wn(f.vnode)&&256&f.vnode.shapeFlag)&&e.a&&To(e.a,r),e.isMounted=!0,t=n=o=null}},c=e.effect=new ce(i,(()=>It(a)),e.scope),a=e.update=()=>c.run();a.id=e.uid,$o(e,!0),a()},U=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:s,vnode:{patchFlag:l}}=e,i=ut(r),[c]=e.propsOptions;let a=!1;if(!(o||l>0)||16&l){let o;po(e,t,r,s)&&(a=!0);for(const s in i)t&&(w(t,s)||(o=z(s))!==s&&w(t,o))||(c?!n||void 0===n[s]&&void 0===n[o]||(r[s]=ho(c,i,s,void 0,e,!0)):delete r[s]);if(s!==i)for(const e in s)t&&w(t,e)||(delete s[e],a=!0)}else if(8&l){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:r}=e;let s=!0,l=d;if(32&o.shapeFlag){const e=t._;e?n&&1===e?s=!1:(b(r,t),n||1!==e||delete r._):(s=!t.$stable,wo(t,r)),l=t}else t&&(So(e,t),l={default:1});if(s)for(const i in r)bo(i)||i in l||delete r[i]})(e,t.children,n),pe(),Dt(),de()},I=(e,t,n,o,r,s,l,i,c=!1)=>{const u=e&&e.children,f=e?e.shapeFlag:0,p=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void W(u,p,n,o,r,s,l,i,c);if(256&d)return void D(u,p,n,o,r,s,l,i,c)}8&h?(16&f&&ee(u,r,s),p!==u&&a(n,p)):16&f?16&h?W(u,p,n,o,r,s,l,i,c):ee(u,r,s,!0):(8&f&&a(n,""),16&h&&F(p,n,o,r,s,l,i,c))},D=(e,t,n,o,r,s,l,i,c)=>{t=t||h;const a=(e=e||h).length,u=t.length,f=Math.min(a,u);let p;for(p=0;pu?ee(e,r,s,!0,!1,f):F(t,n,o,r,s,l,i,c,f)},W=(e,t,n,o,r,s,l,i,c)=>{let a=0;const u=t.length;let f=e.length-1,p=u-1;for(;a<=f&&a<=p;){const o=e[a],u=t[a]=c?lr(t[a]):sr(t[a]);if(!Jo(o,u))break;m(o,u,n,null,r,s,l,i,c),a++}for(;a<=f&&a<=p;){const o=e[f],a=t[p]=c?lr(t[p]):sr(t[p]);if(!Jo(o,a))break;m(o,a,n,null,r,s,l,i,c),f--,p--}if(a>f){if(a<=p){const e=p+1,f=ep)for(;a<=f;)H(e[a],r,s,!0),a++;else{const d=a,g=a,v=new Map;for(a=g;a<=p;a++){const e=t[a]=c?lr(t[a]):sr(t[a]);null!=e.key&&v.set(e.key,a)}let y,_=0;const b=p-g+1;let x=!1,C=0;const w=new Array(b);for(a=0;a=b){H(o,r,s,!0);continue}let u;if(null!=o.key)u=v.get(o.key);else for(y=g;y<=p;y++)if(0===w[y-g]&&Jo(o,t[y])){u=y;break}void 0===u?H(o,r,s,!0):(w[u-g]=a+1,u>=C?C=u:x=!0,m(o,t[u],n,null,r,s,l,i,c),_++)}const S=x?function(e){const t=e.slice(),n=[0];let o,r,s,l,i;const c=e.length;for(o=0;o>1,e[n[i]]0&&(t[o]=n[s-1]),n[s]=o)}}for(s=n.length,l=n[s-1];s-- >0;)n[s]=l,l=t[l];return n}(w):h;for(y=S.length-1,a=b-1;a>=0;a--){const e=g+a,f=t[e],p=e+1{const{el:l,type:i,transition:c,children:a,shapeFlag:u}=e;if(6&u)K(e.component.subTree,t,o,r);else if(128&u)e.suspense.move(t,o,r);else if(64&u)i.move(e,t,o,oe);else if(i!==No)if(i!==Bo)if(2!==r&&1&u&&c)if(0===r)c.beforeEnter(l),n(l,t,o),To((()=>c.enter(l)),s);else{const{leave:e,delayLeave:r,afterLeave:s}=c,i=()=>n(l,t,o),a=()=>{e(l,(()=>{i(),s&&s()}))};r?r(l,i,a):a()}else n(l,t,o);else C(e,t,o);else{n(l,t,o);for(let e=0;e{const{type:s,props:l,ref:i,children:c,dynamicChildren:a,shapeFlag:u,patchFlag:f,dirs:p}=e;if(null!=i&&Fo(i,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const d=1&u&&p,h=!wn(e);let g;if(h&&(g=l&&l.onVnodeBeforeUnmount)&&ar(g,t,e),6&u)Y(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);d&&Kn(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,oe,o):a&&(s!==No||f>0&&64&f)?ee(a,t,n,!1,!0):(s===No&&384&f||!r&&16&u)&&ee(c,t,n),o&&Z(e)}(h&&(g=l&&l.onVnodeUnmounted)||d)&&To((()=>{g&&ar(g,t,e),d&&Kn(e,null,t,"unmounted")}),n)},Z=e=>{const{type:t,el:n,anchor:r,transition:s}=e;if(t===No)return void X(n,r);if(t===Bo)return void S(e);const l=()=>{o(n),s&&!s.persisted&&s.afterLeave&&s.afterLeave()};if(1&e.shapeFlag&&s&&!s.persisted){const{leave:t,delayLeave:o}=s,r=()=>t(n,l);o?o(e.el,l,r):r()}else l()},X=(e,t)=>{let n;for(;e!==t;)n=f(e),o(e),e=n;o(t)},Y=(e,t,n)=>{const{bum:o,scope:r,update:s,subTree:l,um:i}=e;o&&q(o),r.stop(),s&&(s.active=!1,H(l,e,t,n)),i&&To(i,t),To((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,o=!1,r=!1,s=0)=>{for(let l=s;l6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():f(e.anchor||e.el),ne=(e,t,n)=>{null==e?t._vnode&&H(t._vnode,null,null,!0):m(t._vnode||null,e,t,null,null,null,n),Dt(),zt(),t._vnode=e},oe={p:m,um:H,m:K,r:Z,mt:P,mc:F,pc:I,pbc:O,n:te,o:e};let re,se;return t&&([re,se]=t(oe)),{render:ne,hydrate:re,createApp:Eo(ne,re)}}(e)}function $o({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Lo(e,t,n=!1){const o=e.children,r=t.children;if(S(o)&&S(r))for(let s=0;se&&(e.disabled||""===e.disabled),Mo=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,Po=(e,t)=>{const n=e&&e.to;return T(n)?t?t(n):null:n};function Ro(e,t,n,{o:{insert:o},m:r},s=2){0===s&&o(e.targetAnchor,t,n);const{el:l,anchor:i,shapeFlag:c,children:a,props:u}=e,f=2===s;if(f&&o(l,t,n),(!f||jo(u))&&16&c)for(let p=0;p{16&y&&u(_,e,t,r,s,l,i,c)};m?v(n,a):f&&v(f,p)}else{t.el=e.el;const o=t.anchor=e.anchor,u=t.target=e.target,d=t.targetAnchor=e.targetAnchor,g=jo(e.props),v=g?n:u,y=g?o:d;if(l=l||Mo(u),b?(p(e.dynamicChildren,b,v,r,s,l,i),Lo(e,t,!0)):c||f(e,t,v,y,r,s,l,i,!1),m)g||Ro(t,n,o,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=Po(t.props,h);e&&Ro(t,e,null,a,0)}else g&&Ro(t,u,d,a,1)}Vo(t)},remove(e,t,n,o,{um:r,o:{remove:s}},l){const{shapeFlag:i,children:c,anchor:a,targetAnchor:u,target:f,props:p}=e;if(f&&s(u),(l||!jo(p))&&(s(a),16&i))for(let d=0;d0?zo||h:null,Do.pop(),zo=Do[Do.length-1]||null,Ko>0&&zo&&zo.push(e),e}function Go(e,t,n,o,r){return qo(tr(e,t,n,o,r,!0))}function Zo(e){return!!e&&!0===e.__v_isVNode}function Jo(e,t){return e.type===t.type&&e.key===t.key}const Xo="__vInternal",Qo=({key:e})=>null!=e?e:null,Yo=({ref:e,ref_key:t,ref_for:n})=>null!=e?T(e)||vt(e)||F(e)?{i:Jt,r:e,k:t,f:!!n}:e:null;function er(e,t=null,n=null,o=0,r=null,s=(e===No?0:1),l=!1,i=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qo(t),ref:t&&Yo(t),scopeId:Xt,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:s,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Jt};return i?(ir(c,n),128&s&&e.normalize(c)):n&&(c.shapeFlag|=T(n)?8:16),Ko>0&&!l&&zo&&(c.patchFlag>0||6&s)&&32!==c.patchFlag&&zo.push(c),c}const tr=e("d",(function(e,t=null,o=null,r=0,s=null,l=!1){if(e&&e!==qn||(e=Io),Zo(e)){const n=or(e,t,!0);return o&&ir(n,o),Ko>0&&!l&&zo&&(6&n.shapeFlag?zo[zo.indexOf(e)]=n:zo.push(n)),n.patchFlag|=-2,n}var c;if(F(c=e)&&"__vccOpts"in c&&(e=e.__vccOpts),t){t=nr(t);let{class:e,style:o}=t;e&&!T(e)&&(t.class=i(e)),$(o)&&(at(o)&&!S(o)&&(o=b({},o)),t.style=n(o))}const a=T(e)?1:rn(e)?128:(e=>e.__isTeleport)(e)?64:$(e)?4:F(e)?2:0;return er(e,t,o,r,s,a,l,!0)}));function nr(e){return e?at(e)||Xo in e?b({},e):e:null}function or(e,t,n=!1){const{props:o,ref:r,patchFlag:s,children:l}=e,i=t?cr(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:i,key:i&&Qo(i),ref:t&&t.ref?n&&r?S(r)?r.concat(Yo(t)):[r,Yo(t)]:Yo(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==No?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&or(e.ssContent),ssFallback:e.ssFallback&&or(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function rr(e=" ",t=0){return tr(Uo,null,e,t)}function sr(e){return null==e||"boolean"==typeof e?tr(Io):S(e)?tr(No,null,e.slice()):"object"==typeof e?lr(e):tr(Uo,null,String(e))}function lr(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:or(e)}function ir(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(S(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),ir(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||Xo in t?3===o&&Jt&&(1===Jt.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Jt}}else F(t)?(t={default:t,_ctx:Jt},n=32):(t=String(t),64&o?(n=16,t=[rr(t)]):n=8);e.children=t,e.shapeFlag|=n}function cr(...e){const t={};for(let o=0;opr||Jt)),hr=e=>{pr=e,e.scope.on()},gr=()=>{pr&&pr.scope.off(),pr=null};function vr(e){return 4&e.vnode.shapeFlag}let mr=!1;function yr(e,t,n){F(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:$(t)&&(e.setupState=xt(t)),_r(e)}function _r(e,t,n){const o=e.type;e.render||(e.render=o.render||g),hr(e),pe(),no(e),de(),gr()}function br(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(he(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function xr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(xt(ft(e.exposed)),{get:(t,n)=>n in t?t[n]:n in Qn?Qn[n](e):void 0,has:(e,t)=>t in e||t in Qn}))}function Cr(e,t=!0){return F(e)?e.displayName||e.name:e.name||t&&e.__name}const wr=e("l",((e,t)=>At(e,0,mr)));function Sr(){const e=dr();return e.setupContext||(e.setupContext=br(e))}function kr(e,t,n){const o=arguments.length;return 2===o?$(t)&&!S(t)?Zo(t)?tr(e,null,[t]):tr(e,t):tr(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&Zo(n)&&(n=[n]),tr(e,t,n))}const Ar=Symbol(""),Er=()=>ln(Ar),Fr="3.2.45",Tr="undefined"!=typeof document?document:null,Or=Tr&&Tr.createElement("template"),$r={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=t?Tr.createElementNS("http://www.w3.org/2000/svg",e):Tr.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Tr.createTextNode(e),createComment:e=>Tr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Tr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,s){const l=n?n.previousSibling:t.lastChild;if(r&&(r===s||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==s&&(r=r.nextSibling););else{Or.innerHTML=o?`${e}`:e;const r=Or.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[l?l.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Lr=/\s*!important$/;function jr(e,t,n){if(S(n))n.forEach((n=>jr(e,t,n)));else if(null==n&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Pr[t];if(n)return n;let o=B(t);if("filter"!==o&&o in e)return Pr[t]=o;o=W(o);for(let r=0;r{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();Ft(function(e,t){if(S(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}(e,n.value),t,5,[e])};return n.value=e,n.attached=Ir||(Br.then((()=>Ir=0)),Ir=Date.now()),n}(o,r);Vr(e,n,l,i)}else l&&(function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,l,i),s[t]=void 0)}}const Ur=/(?:Once|Passive|Capture)$/;let Ir=0;const Br=Promise.resolve(),Dr=/^on[a-z]/,zr="transition",Wr="animation",Kr=e("_",((e,{slots:t})=>kr(vn,Jr(e),t)));Kr.displayName="Transition";const Hr={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},qr=Kr.props=b({},vn.props,Hr),Gr=(e,t=[])=>{S(e)?e.forEach((e=>e(...t))):e&&e(...t)},Zr=e=>!!e&&(S(e)?e.some((e=>e.length>1)):e.length>1);function Jr(e){const t={};for(const b in e)b in Hr||(t[b]=e[b]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:s=`${n}-enter-from`,enterActiveClass:l=`${n}-enter-active`,enterToClass:i=`${n}-enter-to`,appearFromClass:c=s,appearActiveClass:a=l,appearToClass:u=i,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if($(e))return[Xr(e.enter),Xr(e.leave)];{const t=Xr(e);return[t,t]}}(r),g=h&&h[0],v=h&&h[1],{onBeforeEnter:m,onEnter:y,onEnterCancelled:_,onLeave:x,onLeaveCancelled:C,onBeforeAppear:w=m,onAppear:S=y,onAppearCancelled:k=_}=t,A=(e,t,n)=>{Yr(e,t?u:i),Yr(e,t?a:l),n&&n()},E=(e,t)=>{e._isLeaving=!1,Yr(e,f),Yr(e,d),Yr(e,p),t&&t()},F=e=>(t,n)=>{const r=e?S:y,l=()=>A(t,e,n);Gr(r,[t,l]),es((()=>{Yr(t,e?c:s),Qr(t,e?u:i),Zr(r)||ns(t,o,g,l)}))};return b(t,{onBeforeEnter(e){Gr(m,[e]),Qr(e,s),Qr(e,l)},onBeforeAppear(e){Gr(w,[e]),Qr(e,c),Qr(e,a)},onEnter:F(!1),onAppear:F(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>E(e,t);Qr(e,f),ls(),Qr(e,p),es((()=>{e._isLeaving&&(Yr(e,f),Qr(e,d),Zr(x)||ns(e,o,v,n))})),Gr(x,[e,n])},onEnterCancelled(e){A(e,!1),Gr(_,[e])},onAppearCancelled(e){A(e,!0),Gr(k,[e])},onLeaveCancelled(e){E(e),Gr(C,[e])}})}function Xr(e){return Z(e)}function Qr(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function Yr(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function es(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let ts=0;function ns(e,t,n,o){const r=e._endId=++ts,s=()=>{r===e._endId&&o()};if(n)return setTimeout(s,n);const{type:l,timeout:i,propCount:c}=os(e,t);if(!l)return o();const a=l+"end";let u=0;const f=()=>{e.removeEventListener(a,p),s()},p=t=>{t.target===e&&++u>=c&&f()};setTimeout((()=>{u(n[e]||"").split(", "),r=o(`${zr}Delay`),s=o(`${zr}Duration`),l=rs(r,s),i=o(`${Wr}Delay`),c=o(`${Wr}Duration`),a=rs(i,c);let u=null,f=0,p=0;return t===zr?l>0&&(u=zr,f=l,p=s.length):t===Wr?a>0&&(u=Wr,f=a,p=c.length):(f=Math.max(l,a),u=f>0?l>a?zr:Wr:null,p=u?u===zr?s.length:c.length:0),{type:u,timeout:f,propCount:p,hasTransform:u===zr&&/\b(transform|all)(,|$)/.test(o(`${zr}Property`).toString())}}function rs(e,t){for(;e.lengthss(t)+ss(e[n]))))}function ss(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function ls(){return document.body.offsetHeight}const is=new WeakMap,cs=new WeakMap;function as(e){const t=e.el;t._moveCb&&t._moveCb(),t._enterCb&&t._enterCb()}function us(e){cs.set(e,e.el.getBoundingClientRect())}function fs(e){const t=is.get(e),n=cs.get(e),o=t.left-n.left,r=t.top-n.top;if(o||r){const t=e.el.style;return t.transform=t.webkitTransform=`translate(${o}px,${r}px)`,t.transitionDuration="0s",e}}e("ar",{name:"TransitionGroup",props:b({},qr,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=dr(),o=hn();let r,s;return Nn((()=>{if(!r.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach((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 r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:s}=os(o);return r.removeChild(o),s}(r[0].el,n.vnode.el,t))return;r.forEach(as),r.forEach(us);const o=r.filter(fs);ls(),o.forEach((e=>{const n=e.el,o=n.style;Qr(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,Yr(n,t))};n.addEventListener("transitionend",r)}))})),()=>{const l=ut(e),i=Jr(l);let c=l.tag||No;r=s,s=t.default?Cn(t.default()):[];for(let e=0;e{const t=e.props["onUpdate:modelValue"]||!1;return S(t)?e=>q(t,e):t};function ds(e){e.target.composing=!0}function hs(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}function gs(e,{value:t,oldValue:n},o){e._modelValue=t,S(t)?e.checked=f(t,o.props.value)>-1:A(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=u(t,ms(e,!0)))}function vs(e){return"_value"in e?e._value:e.value}function ms(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}e("aj",{created(e,{modifiers:{lazy:t,trim:n,number:o}},r){e._assign=ps(r);const s=o||r.props&&"number"===r.props.type;Vr(e,t?"change":"input",(t=>{if(t.target.composing)return;let o=e.value;n&&(o=o.trim()),s&&(o=Z(o)),e._assign(o)})),n&&Vr(e,"change",(()=>{e.value=e.value.trim()})),t||(Vr(e,"compositionstart",ds),Vr(e,"compositionend",hs),Vr(e,"change",hs))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:r}},s){if(e._assign=ps(s),e.composing)return;if(document.activeElement===e&&"range"!==e.type){if(n)return;if(o&&e.value.trim()===t)return;if((r||"number"===e.type)&&Z(e.value)===t)return}const l=null==t?"":t;e.value!==l&&(e.value=l)}}),e("ad",{deep:!0,created(e,t,n){e._assign=ps(n),Vr(e,"change",(()=>{const t=e._modelValue,n=vs(e),o=e.checked,r=e._assign;if(S(t)){const e=f(t,n),s=-1!==e;if(o&&!s)r(t.concat(n));else if(!o&&s){const n=[...t];n.splice(e,1),r(n)}}else if(A(t)){const e=new Set(t);o?e.add(n):e.delete(n),r(e)}else r(ms(e,o))}))},mounted:gs,beforeUpdate(e,t,n){e._assign=ps(n),gs(e,t,n)}}),e("ae",{created(e,{value:t},n){e.checked=u(t,n.props.value),e._assign=ps(n),Vr(e,"change",(()=>{e._assign(vs(e))}))},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=ps(o),t!==n&&(e.checked=u(t,o.props.value))}});const ys=["ctrl","shift","alt","meta"],_s={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)=>ys.some((n=>e[`${n}Key`]&&!t.includes(n)))},bs=(e("a0",((e,t)=>(n,...o)=>{for(let e=0;en=>{if(!("key"in n))return;const o=z(n.key);return t.some((e=>e===o||bs[e]===o))?e(n):void 0})),e("Z",{beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):xs(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),xs(e,!0),o.enter(e)):o.leave(e,(()=>{xs(e,!1)})):xs(e,t))},beforeUnmount(e,{value:t}){xs(e,t)}});const Cs=b({patchProp:(e,t,n,o,r=!1,s,l,i,u)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,r):"style"===t?function(e,t,n){const o=e.style,r=T(n);if(n&&!r){for(const e in n)jr(o,e,n[e]);if(t&&!T(t))for(const e in t)null==n[e]&&jr(o,e,"")}else{const s=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=s)}}(e,n,o):y(t)?_(t)||Nr(e,t,0,o,l):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){return o?"innerHTML"===t||"textContent"===t||!!(t in e&&Dr.test(t)&&F(n)):"spellcheck"!==t&&"draggable"!==t&&"translate"!==t&&("form"!==t&&(("list"!==t||"INPUT"!==e.tagName)&&(("type"!==t||"TEXTAREA"!==e.tagName)&&((!Dr.test(t)||!T(n))&&t in e))))}(e,t,o,r))?function(e,t,n,o,r,s,l){if("innerHTML"===t||"textContent"===t)return o&&l(o,r,s),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}let i=!1;if(""===n||null==n){const o=typeof e[t];"boolean"===o?n=a(n):null==n&&"string"===o?(n="",i=!0):"number"===o&&(n=0,i=!0)}try{e[t]=n}catch(c){}i&&e.removeAttribute(t)}(e,t,o,s,l,i,u):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,r){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(Rr,t.slice(6,t.length)):e.setAttributeNS(Rr,t,n);else{const o=c(t);null==n||o&&!a(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,r))}},$r);let ws;function Ss(){return ws||(ws=Oo(Cs))}e("av",((...e)=>{Ss().render(...e)})),e("as",((...e)=>{const t=Ss().createApp(...e),{mount:n}=t;return t.mount=e=>{const o=function(e){return T(e)?document.querySelector(e):e}(e);if(!o)return;const r=t._component;F(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const s=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),s},t}))}}})); diff --git a/src/main/resources/html/lc/assets/@vue-legacy-6c3c82af.js b/src/main/resources/html/lc/assets/@vue-legacy-6c3c82af.js deleted file mode 100644 index b925b23..0000000 --- a/src/main/resources/html/lc/assets/@vue-legacy-6c3c82af.js +++ /dev/null @@ -1 +0,0 @@ -System.register([],(function(e,t){"use strict";return{execute:function(){function t(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r!!n[e.toLowerCase()]:e=>!!n[e]}function n(e){if(S(e)){const t={};for(let o=0;ot(e,n,void 0,s&&s[n])));else{const n=Object.keys(e);r=new Array(n.length);for(let o=0,l=n.length;o{const t=o.fn(...e);return t&&(t.key=o.key),t}:o.fn)}return e},a9:function(e){const t=S(e)?new Array(e.length):{};for(const n in e)t[n]=wt(e,n);return t},ab:function(e){if(!e)return null;let{class:t,style:o}=e;return t&&!T(t)&&(e.class=i(t)),o&&(e.style=n(o)),e},ac:ut,af:kr,ag:function(e,t){return Gn(Hn,e,!0,t)||e},ak:function(e,t){const n={};for(const o in e)n[t&&/[A-Z]/.test(o)?`on:${o}`:K(o)]=e[o];return n},al:nr,am:ft,an:function(e){return new Q(e)},ao:function(e){gt(e)},aq:function(e){return Gn("directives",e)},au:ot,aw:lt,ax:function(e){Xt=e},ay:function(){Xt=null},b:function(e,t){const n=tr(Bo,null,e);return n.staticCount=t,n},c:function(e,t,n,o,r,s){return qo(er(e,t,n,o,r,s,!0))},e:function(e){X&&X.cleanups.push(e)},f:function(e){return mt(e,!1)},g:function(){return X},h:an,i:ln,n:Ut,o:Wo,r:rt,s:function(e){return mt(e,!0)},u:_t,w:function(e,t){return un(e,null,t)},y:function(e,...t){}});const o=/;(?![^(]*\))/g,r=/:([^]+)/,s=/\/\*.*?\*\//gs;function l(e){const t={};return e.replace(s,"").split(o).forEach((e=>{if(e){const n=e.split(r);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function i(e){let t="";if(T(e))t=e;else if(S(e))for(let n=0;nu(e,t)))}e("X",(e=>T(e)?e:null==e?"":S(e)||$(e)&&(e.toString===j||!F(e.toString))?JSON.stringify(e,p,2):String(e)));const p=(e,t)=>t&&t.__v_isRef?p(e,t.value):k(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:A(t)?{[`Set(${t.size})`]:[...t.values()]}:!$(t)||S(t)||R(t)?t:String(t),d={},h=[],g=e("N",(()=>{})),v=()=>!1,m=/^on[^a-z]/,y=e=>m.test(e),_=e=>e.startsWith("onUpdate:"),b=Object.assign,x=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},C=Object.prototype.hasOwnProperty,w=e("x",((e,t)=>C.call(e,t))),S=e("m",Array.isArray),k=e=>"[object Map]"===M(e),A=e=>"[object Set]"===M(e),E=e("aa",(e=>"[object Date]"===M(e))),F=e("z",(e=>"function"==typeof e)),T=e("q",(e=>"string"==typeof e)),O=e=>"symbol"==typeof e,$=e("p",(e=>null!==e&&"object"==typeof e)),L=e("ai",(e=>$(e)&&F(e.then)&&F(e.catch))),j=Object.prototype.toString,M=e=>j.call(e),P=e("ap",(e=>M(e).slice(8,-1))),R=e=>"[object Object]"===M(e),V=e=>T(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,N=t(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),U=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},I=/-(\w)/g,B=e("v",U((e=>e.replace(I,((e,t)=>t?t.toUpperCase():""))))),D=/\B([A-Z])/g,z=e("at",U((e=>e.replace(D,"-$1").toLowerCase()))),W=e("t",U((e=>e.charAt(0).toUpperCase()+e.slice(1)))),K=U((e=>e?`on${W(e)}`:"")),H=(e,t)=>!Object.is(e,t),q=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Z=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let J,X;class Q{constructor(e=!1){this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=X,!e&&X&&(this.index=(X.scopes||(X.scopes=[])).push(this)-1)}run(e){if(this.active){const t=X;try{return X=this,e()}finally{X=t}}}on(){X=this}off(){X=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},ee=e=>(e.w&se)>0,te=e=>(e.n&se)>0,ne=new WeakMap;let oe,re=0,se=1;const le=Symbol(""),ie=Symbol("");class ce{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,function(e,t=X){t&&t.active&&t.effects.push(e)}(this,n)}run(){if(!this.active)return this.fn();let e=oe,t=ue;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=oe,oe=this,ue=!0,se=1<<++re,re<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===n||n>=e)&&i.push(t)}))}else switch(void 0!==n&&i.push(l.get(n)),t){case"add":S(e)?V(n)&&i.push(l.get("length")):(i.push(l.get(le)),k(e)&&i.push(l.get(ie)));break;case"delete":S(e)||(i.push(l.get(le)),k(e)&&i.push(l.get(ie)));break;case"set":k(e)&&i.push(l.get(le))}if(1===i.length)i[0]&&me(i[0]);else{const e=[];for(const t of i)t&&e.push(...t);me(Y(e))}}function me(e,t){const n=S(e)?e:[...e];for(const o of n)o.computed&&ye(o);for(const o of n)o.computed||ye(o)}function ye(e,t){(e!==oe||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const _e=t("__proto__,__v_isRef,__isVue"),be=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(O)),xe=Ae(),Ce=Ae(!1,!0),we=Ae(!0),Se=ke();function ke(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=ut(this);for(let t=0,r=this.length;t{e[t]=function(...e){pe();const n=ut(this)[t].apply(this,e);return de(),n}})),e}function Ae(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?tt:et:t?Ye:Qe).get(n))return n;const s=S(n);if(!e&&s&&w(Se,o))return Reflect.get(Se,o,r);const l=Reflect.get(n,o,r);return(O(o)?be.has(o):_e(o))?l:(e||he(n,0,o),t?l:vt(l)?s&&V(o)?l:l.value:$(l)?e?rt(l):nt(l):l)}}function Ee(e=!1){return function(t,n,o,r){let s=t[n];if(it(s)&&vt(s)&&!vt(o))return!1;if(!e&&(ct(o)||it(o)||(s=ut(s),o=ut(o)),!S(t)&&vt(s)&&!vt(o)))return s.value=o,!0;const l=S(t)&&V(n)?Number(n)!0,deleteProperty:(e,t)=>!0},Oe=b({},Fe,{get:Ce,set:Ee(!0)}),$e=e=>e,Le=e=>Reflect.getPrototypeOf(e);function je(e,t,n=!1,o=!1){const r=ut(e=e.__v_raw),s=ut(t);n||(t!==s&&he(r,0,t),he(r,0,s));const{has:l}=Le(r),i=o?$e:n?dt:pt;return l.call(r,t)?i(e.get(t)):l.call(r,s)?i(e.get(s)):void(e!==r&&e.get(t))}function Me(e,t=!1){const n=this.__v_raw,o=ut(n),r=ut(e);return t||(e!==r&&he(o,0,e),he(o,0,r)),e===r?n.has(e):n.has(e)||n.has(r)}function Pe(e,t=!1){return e=e.__v_raw,!t&&he(ut(e),0,le),Reflect.get(e,"size",e)}function Re(e){e=ut(e);const t=ut(this);return Le(t).has.call(t,e)||(t.add(e),ve(t,"add",e,e)),this}function Ve(e,t){t=ut(t);const n=ut(this),{has:o,get:r}=Le(n);let s=o.call(n,e);s||(e=ut(e),s=o.call(n,e));const l=r.call(n,e);return n.set(e,t),s?H(t,l)&&ve(n,"set",e,t):ve(n,"add",e,t),this}function Ne(e){const t=ut(this),{has:n,get:o}=Le(t);let r=n.call(t,e);r||(e=ut(e),r=n.call(t,e)),o&&o.call(t,e);const s=t.delete(e);return r&&ve(t,"delete",e,void 0),s}function Ue(){const e=ut(this),t=0!==e.size,n=e.clear();return t&&ve(e,"clear",void 0,void 0),n}function Ie(e,t){return function(n,o){const r=this,s=r.__v_raw,l=ut(s),i=t?$e:e?dt:pt;return!e&&he(l,0,le),s.forEach(((e,t)=>n.call(o,i(e),i(t),r)))}}function Be(e,t,n){return function(...o){const r=this.__v_raw,s=ut(r),l=k(s),i="entries"===e||e===Symbol.iterator&&l,c="keys"===e&&l,a=r[e](...o),u=n?$e:t?dt:pt;return!t&&he(s,0,c?ie:le),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:i?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function De(e){return function(...t){return"delete"!==e&&this}}function ze(){const e={get(e){return je(this,e)},get size(){return Pe(this)},has:Me,add:Re,set:Ve,delete:Ne,clear:Ue,forEach:Ie(!1,!1)},t={get(e){return je(this,e,!1,!0)},get size(){return Pe(this)},has:Me,add:Re,set:Ve,delete:Ne,clear:Ue,forEach:Ie(!1,!0)},n={get(e){return je(this,e,!0)},get size(){return Pe(this,!0)},has(e){return Me.call(this,e,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Ie(!0,!1)},o={get(e){return je(this,e,!0,!0)},get size(){return Pe(this,!0)},has(e){return Me.call(this,e,!0)},add:De("add"),set:De("set"),delete:De("delete"),clear:De("clear"),forEach:Ie(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=Be(r,!1,!1),n[r]=Be(r,!0,!1),t[r]=Be(r,!1,!0),o[r]=Be(r,!0,!0)})),[e,n,t,o]}const[We,Ke,He,qe]=ze();function Ge(e,t){const n=t?e?qe:He:e?Ke:We;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(w(n,o)&&o in t?n:t,o,r)}const Ze={get:Ge(!1,!1)},Je={get:Ge(!1,!0)},Xe={get:Ge(!0,!1)},Qe=new WeakMap,Ye=new WeakMap,et=new WeakMap,tt=new WeakMap;function nt(e){return it(e)?e:st(e,!1,Fe,Ze,Qe)}function ot(e){return st(e,!1,Oe,Je,Ye)}function rt(e){return st(e,!0,Te,Xe,et)}function st(e,t,n,o,r){if(!$(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const s=r.get(e);if(s)return s;const l=(i=e).__v_skip||!Object.isExtensible(i)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(P(i));var i;if(0===l)return e;const c=new Proxy(e,2===l?o:n);return r.set(e,c),c}function lt(e){return it(e)?lt(e.__v_raw):!(!e||!e.__v_isReactive)}function it(e){return!(!e||!e.__v_isReadonly)}function ct(e){return!(!e||!e.__v_isShallow)}function at(e){return lt(e)||it(e)}function ut(e){const t=e&&e.__v_raw;return t?ut(t):e}function ft(e){return G(e,"__v_skip",!0),e}const pt=e=>$(e)?nt(e):e,dt=e=>$(e)?rt(e):e;function ht(e){ue&&oe&&ge((e=ut(e)).dep||(e.dep=Y()))}function gt(e,t){(e=ut(e)).dep&&me(e.dep)}function vt(e){return!(!e||!0!==e.__v_isRef)}function mt(e,t){return vt(e)?e:new yt(e,t)}class yt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:ut(e),this._value=t?e:pt(e)}get value(){return ht(this),this._value}set value(e){const t=this.__v_isShallow||ct(e)||it(e);e=t?e:ut(e),H(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:pt(e),gt(this))}}function _t(e){return vt(e)?e.value:e}const bt={get:(e,t,n)=>_t(Reflect.get(e,t,n)),set:(e,t,n,o)=>{const r=e[t];return vt(r)&&!vt(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function xt(e){return lt(e)?e:new Proxy(e,bt)}class Ct{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}}function wt(e,t,n){const o=e[t];return vt(o)?o:new Ct(e,t,n)}var St;class kt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[St]=!1,this._dirty=!0,this.effect=new ce(e,(()=>{this._dirty||(this._dirty=!0,gt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=ut(this);return ht(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function At(e,t,n=!1){let o,r;const s=F(e);return s?(o=e,r=g):(o=e.get,r=e.set),new kt(o,r,s||!r,n)}function Et(e,t,n,o){let r;try{r=o?e(...o):e()}catch(s){Tt(s,t,n)}return r}function Ft(e,t,n,o){if(F(e)){const r=Et(e,t,n,o);return r&&L(r)&&r.catch((e=>{Tt(e,t,n)})),r}const r=[];for(let s=0;s>>1;Wt(Lt[o])Wt(e)-Wt(t))),Rt=0;Rtnull==e.id?1/0:e.id,Kt=(e,t)=>{const n=Wt(e)-Wt(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Ht(e){$t=!1,Ot=!0,Lt.sort(Kt);try{for(jt=0;jtT(e)?e.trim():e))),t&&(r=n.map(Z))}let i,c=o[i=K(t)]||o[i=K(B(t))];!c&&s&&(c=o[i=K(z(t))]),c&&Ft(c,e,6,r);const a=o[i+"Once"];if(a){if(e.emitted){if(e.emitted[i])return}else e.emitted={};e.emitted[i]=!0,Ft(a,e,6,r)}}function Gt(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const s=e.emits;let l={},i=!1;if(!F(e)){const o=e=>{const n=Gt(e,t,!0);n&&(i=!0,b(l,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return s||i?(S(s)?s.forEach((e=>l[e]=null)):b(l,s),$(e)&&o.set(e,l),l):($(e)&&o.set(e,null),null)}function Zt(e,t){return!(!e||!y(t))&&(t=t.slice(2).replace(/Once$/,""),w(e,t[0].toLowerCase()+t.slice(1))||w(e,z(t))||w(e,t))}let Jt=null,Xt=null;function Qt(e){const t=Jt;return Jt=e,Xt=e&&e.type.__scopeId||null,t}function Yt(e,t=Jt,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&Ho(-1);const r=Qt(t);let s;try{s=e(...n)}finally{Qt(r),o._d&&Ho(1)}return s};return o._n=!0,o._c=!0,o._d=!0,o}function en(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:s,propsOptions:[l],slots:i,attrs:c,emit:a,render:u,renderCache:f,data:p,setupState:d,ctx:h,inheritAttrs:g}=e;let v,m;const y=Qt(e);try{if(4&n.shapeFlag){const e=r||o;v=sr(u.call(e,e,f,s,d,p,h)),m=c}else{const e=t;v=sr(e.length>1?e(s,{attrs:c,slots:i,emit:a}):e(s,null)),m=t.props?c:tn(c)}}catch(x){Do.length=0,Tt(x,e,1),v=tr(Io)}let b=v;if(m&&!1!==g){const e=Object.keys(m),{shapeFlag:t}=b;e.length&&7&t&&(l&&e.some(_)&&(m=nn(m,l)),b=or(b,m))}return n.dirs&&(b=or(b),b.dirs=b.dirs?b.dirs.concat(n.dirs):n.dirs),n.transition&&(b.transition=n.transition),v=b,Qt(y),v}const tn=e=>{let t;for(const n in e)("class"===n||"style"===n||y(n))&&((t||(t={}))[n]=e[n]);return t},nn=(e,t)=>{const n={};for(const o in e)_(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function on(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;re.__isSuspense;function sn(e,t){if(pr){let n=pr.provides;const o=pr.parent&&pr.parent.provides;o===n&&(n=pr.provides=Object.create(o)),n[e]=t}}function ln(e,t,n=!1){const o=pr||Jt;if(o){const r=null==o.parent?o.vnode.appContext&&o.vnode.appContext.provides:o.parent.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&F(t)?t.call(o.proxy):t}}const cn={};function an(e,t,n){return un(e,t,n)}function un(e,t,{immediate:n,deep:o,flush:r,onTrack:s,onTrigger:l}=d){const i=pr;let c,a,u=!1,f=!1;if(vt(e)?(c=()=>e.value,u=ct(e)):lt(e)?(c=()=>e,o=!0):S(e)?(f=!0,u=e.some((e=>lt(e)||ct(e))),c=()=>e.map((e=>vt(e)?e.value:lt(e)?dn(e):F(e)?Et(e,i,2):void 0))):c=F(e)?t?()=>Et(e,i,2):()=>{if(!i||!i.isUnmounted)return a&&a(),Ft(e,i,3,[h])}:g,t&&o){const e=c;c=()=>dn(e())}let p,h=e=>{a=_.onStop=()=>{Et(e,i,4)}};if(mr){if(h=g,t?n&&Ft(t,i,3,[c(),f?[]:void 0,h]):c(),"sync"!==r)return g;{const e=Er();p=e.__watcherHandles||(e.__watcherHandles=[])}}let v=f?new Array(e.length).fill(cn):cn;const m=()=>{if(_.active)if(t){const e=_.run();(o||u||(f?e.some(((e,t)=>H(e,v[t]))):H(e,v)))&&(a&&a(),Ft(t,i,3,[e,v===cn?void 0:f&&v[0]===cn?[]:v,h]),v=e)}else _.run()};let y;m.allowRecurse=!!t,"sync"===r?y=m:"post"===r?y=()=>To(m,i&&i.suspense):(m.pre=!0,i&&(m.id=i.uid),y=()=>It(m));const _=new ce(c,y);t?n?m():v=_.run():"post"===r?To(_.run.bind(_),i&&i.suspense):_.run();const b=()=>{_.stop(),i&&i.scope&&x(i.scope.effects,_)};return p&&p.push(b),b}function fn(e,t,n){const o=this.proxy,r=T(e)?e.includes(".")?pn(o,e):()=>o[e]:e.bind(o,o);let s;F(t)?s=t:(s=t.handler,n=t);const l=pr;hr(this);const i=un(r,s.bind(o),n);return l?hr(l):gr(),i}function pn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{dn(e,t)}));else if(R(e))for(const n in e)dn(e[n],t);return e}function hn(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Rn((()=>{e.isMounted=!0})),Un((()=>{e.isUnmounting=!0})),e}const gn=[Function,Array],vn={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:gn,onEnter:gn,onAfterEnter:gn,onEnterCancelled:gn,onBeforeLeave:gn,onLeave:gn,onAfterLeave:gn,onLeaveCancelled:gn,onBeforeAppear:gn,onAppear:gn,onAfterAppear:gn,onAppearCancelled:gn},setup(e,{slots:t}){const n=dr(),o=hn();let r;return()=>{const s=t.default&&Cn(t.default(),!0);if(!s||!s.length)return;let l=s[0];if(s.length>1)for(const e of s)if(e.type!==Io){l=e;break}const i=ut(e),{mode:c}=i;if(o.isLeaving)return _n(l);const a=bn(l);if(!a)return _n(l);const u=yn(a,i,o,n);xn(a,u);const f=n.subTree,p=f&&bn(f);let d=!1;const{getTransitionKey:h}=a.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,d=!0)}if(p&&p.type!==Io&&(!Jo(a,p)||d)){const e=yn(p,i,o,n);if(xn(p,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,!1!==n.update.active&&n.update()},_n(l);"in-out"===c&&a.type!==Io&&(e.delayLeave=(e,t,n)=>{mn(o,p)[String(p.key)]=p,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return l}}};function mn(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 yn(e,t,n,o){const{appear:r,mode:s,persisted:l=!1,onBeforeEnter:i,onEnter:c,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:f,onLeave:p,onAfterLeave:d,onLeaveCancelled:h,onBeforeAppear:g,onAppear:v,onAfterAppear:m,onAppearCancelled:y}=t,_=String(e.key),b=mn(n,e),x=(e,t)=>{e&&Ft(e,o,9,t)},C=(e,t)=>{const n=t[1];x(e,t),S(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},w={mode:s,persisted:l,beforeEnter(t){let o=i;if(!n.isMounted){if(!r)return;o=g||i}t._leaveCb&&t._leaveCb(!0);const s=b[_];s&&Jo(e,s)&&s.el._leaveCb&&s.el._leaveCb(),x(o,[t])},enter(e){let t=c,o=a,s=u;if(!n.isMounted){if(!r)return;t=v||c,o=m||a,s=y||u}let l=!1;const i=e._enterCb=t=>{l||(l=!0,x(t?s:o,[e]),w.delayedLeave&&w.delayedLeave(),e._enterCb=void 0)};t?C(t,[e,i]):i()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();x(f,[t]);let s=!1;const l=t._leaveCb=n=>{s||(s=!0,o(),x(n?h:d,[t]),t._leaveCb=void 0,b[r]===e&&delete b[r])};b[r]=e,p?C(p,[t,l]):l()},clone:e=>yn(e,t,n,o)};return w}function _n(e){if(Sn(e))return(e=or(e)).children=null,e}function bn(e){return Sn(e)?e.children?e.children[0]:void 0:e}function xn(e,t){6&e.shapeFlag&&e.component?xn(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 Cn(e,t=!1,n){let o=[],r=0;for(let s=0;s1)for(let s=0;s!!e.type.__asyncLoader,Sn=e=>e.type.__isKeepAlive,kn={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=dr(),o=n.ctx;if(!o.renderer)return()=>{const e=t.default&&t.default();return e&&1===e.length?e[0]:e};const r=new Map,s=new Set;let l=null;const i=n.suspense,{renderer:{p:c,m:a,um:u,o:{createElement:f}}}=o,p=f("div");function d(e){$n(e),u(e,n,i,!0)}function h(e){r.forEach(((t,n)=>{const o=Cr(t.type);!o||e&&e(o)||g(n)}))}function g(e){const t=r.get(e);l&&t.type===l.type?l&&$n(l):d(t),r.delete(e),s.delete(e)}o.activate=(e,t,n,o,r)=>{const s=e.component;a(e,t,n,0,i),c(s.vnode,e,t,n,s,i,o,e.slotScopeIds,r),To((()=>{s.isDeactivated=!1,s.a&&q(s.a);const t=e.props&&e.props.onVnodeMounted;t&&ar(t,s.parent,e)}),i)},o.deactivate=e=>{const t=e.component;a(e,p,null,1,i),To((()=>{t.da&&q(t.da);const n=e.props&&e.props.onVnodeUnmounted;n&&ar(n,t.parent,e),t.isDeactivated=!0}),i)},an((()=>[e.include,e.exclude]),(([e,t])=>{e&&h((t=>An(e,t))),t&&h((e=>!An(t,e)))}),{flush:"post",deep:!0});let v=null;const m=()=>{null!=v&&r.set(v,Ln(n.subTree))};return Rn(m),Nn(m),Un((()=>{r.forEach((e=>{const{subTree:t,suspense:o}=n,r=Ln(t);if(e.type!==r.type)d(e);else{$n(r);const e=r.component.da;e&&To(e,o)}}))})),()=>{if(v=null,!t.default)return null;const n=t.default(),o=n[0];if(n.length>1)return l=null,n;if(!Zo(o)||!(4&o.shapeFlag||128&o.shapeFlag))return l=null,o;let i=Ln(o);const c=i.type,a=Cr(wn(i)?i.type.__asyncResolved||{}:c),{include:u,exclude:f,max:p}=e;if(u&&(!a||!An(u,a))||f&&a&&An(f,a))return l=i,o;const d=null==i.key?c:i.key,h=r.get(d);return i.el&&(i=or(i),128&o.shapeFlag&&(o.ssContent=i)),v=d,h?(i.el=h.el,i.component=h.component,i.transition&&xn(i,i.transition),i.shapeFlag|=512,s.delete(d),s.add(d)):(s.add(d),p&&s.size>parseInt(p,10)&&g(s.values().next().value)),i.shapeFlag|=256,l=i,rn(o.type)?o:i}}};function An(e,t){return S(e)?e.some((e=>An(e,t))):T(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function En(e,t){Tn(e,"a",t)}function Fn(e,t){Tn(e,"da",t)}function Tn(e,t,n=pr){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(jn(t,o,n),n){let e=n.parent;for(;e&&e.parent;)Sn(e.parent.vnode)&&On(o,t,n,e),e=e.parent}}function On(e,t,n,o){const r=jn(t,e,o,!0);In((()=>{x(o[t],r)}),n)}function $n(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function Ln(e){return 128&e.shapeFlag?e.ssContent:e}function jn(e,t,n=pr,o=!1){if(n){const r=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;pe(),hr(n);const r=Ft(t,n,e,o);return gr(),de(),r});return o?r.unshift(s):r.push(s),s}}e("az",kn);const Mn=e=>(t,n=pr)=>(!mr||"sp"===e)&&jn(e,((...e)=>t(...e)),n),Pn=e("J",Mn("bm")),Rn=e("k",Mn("m")),Vn=e("ah",Mn("bu")),Nn=e("a1",Mn("u")),Un=e("D",Mn("bum")),In=e("G",Mn("um")),Bn=Mn("sp"),Dn=Mn("rtg"),zn=Mn("rtc");function Wn(e,t=pr){jn("ec",e,t)}function Kn(e,t,n,o){const r=e.dirs,s=t&&t.dirs;for(let l=0;l!Zo(e)||e.type!==Io&&!(e.type===No&&!Jn(e.children))))?e:null}const Xn=e=>e?vr(e)?xr(e)||e.proxy:Xn(e.parent):null,Qn=b(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=>Xn(e.parent),$root:e=>Xn(e.root),$emit:e=>e.emit,$options:e=>so(e),$forceUpdate:e=>e.f||(e.f=()=>It(e.update)),$nextTick:e=>e.n||(e.n=Ut.bind(e.proxy)),$watch:e=>fn.bind(e)}),Yn=(e,t)=>e!==d&&!e.__isScriptSetup&&w(e,t),eo={get({_:e},t){const{ctx:n,setupState:o,data:r,props:s,accessCache:l,type:i,appContext:c}=e;let a;if("$"!==t[0]){const i=l[t];if(void 0!==i)switch(i){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return s[t]}else{if(Yn(o,t))return l[t]=1,o[t];if(r!==d&&w(r,t))return l[t]=2,r[t];if((a=e.propsOptions[0])&&w(a,t))return l[t]=3,s[t];if(n!==d&&w(n,t))return l[t]=4,n[t];to&&(l[t]=0)}}const u=Qn[t];let f,p;return u?("$attrs"===t&&he(e,0,t),u(e)):(f=i.__cssModules)&&(f=f[t])?f:n!==d&&w(n,t)?(l[t]=4,n[t]):(p=c.config.globalProperties,w(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:r,ctx:s}=e;return Yn(r,t)?(r[t]=n,!0):o!==d&&w(o,t)?(o[t]=n,!0):!(w(e.props,t)||"$"===t[0]&&t.slice(1)in e||(s[t]=n,0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:s}},l){let i;return!!n[l]||e!==d&&w(e,l)||Yn(t,l)||(i=s[0])&&w(i,l)||w(o,l)||w(Qn,l)||w(r.config.globalProperties,l)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:w(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let to=!0;function no(e){const t=so(e),n=e.proxy,o=e.ctx;to=!1,t.beforeCreate&&oo(t.beforeCreate,e,"bc");const{data:r,computed:s,methods:l,watch:i,provide:c,inject:a,created:u,beforeMount:f,mounted:p,beforeUpdate:d,updated:h,activated:v,deactivated:m,beforeDestroy:y,beforeUnmount:_,destroyed:b,unmounted:x,render:C,renderTracked:w,renderTriggered:k,errorCaptured:A,serverPrefetch:E,expose:T,inheritAttrs:O,components:L,directives:j,filters:M}=t;if(a&&function(e,t,n=g,o=!1){S(e)&&(e=ao(e));for(const r in e){const n=e[r];let s;s=$(n)?"default"in n?ln(n.from||r,n.default,!0):ln(n.from||r):ln(n),vt(s)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e}):t[r]=s}}(a,o,null,e.appContext.config.unwrapInjectedRef),l)for(const g in l){const e=l[g];F(e)&&(o[g]=e.bind(n))}if(r){const t=r.call(n,n);$(t)&&(e.data=nt(t))}if(to=!0,s)for(const S in s){const e=s[S],t=F(e)?e.bind(n,n):F(e.get)?e.get.bind(n,n):g,r=!F(e)&&F(e.set)?e.set.bind(n):g,l=wr({get:t,set:r});Object.defineProperty(o,S,{enumerable:!0,configurable:!0,get:()=>l.value,set:e=>l.value=e})}if(i)for(const g in i)ro(i[g],o,n,g);if(c){const e=F(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{sn(t,e[t])}))}function P(e,t){S(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&oo(u,e,"c"),P(Pn,f),P(Rn,p),P(Vn,d),P(Nn,h),P(En,v),P(Fn,m),P(Wn,A),P(zn,w),P(Dn,k),P(Un,_),P(In,x),P(Bn,E),S(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===g&&(e.render=C),null!=O&&(e.inheritAttrs=O),L&&(e.components=L),j&&(e.directives=j)}function oo(e,t,n){Ft(S(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function ro(e,t,n,o){const r=o.includes(".")?pn(n,o):()=>n[o];if(T(e)){const n=t[e];F(n)&&an(r,n)}else if(F(e))an(r,e.bind(n));else if($(e))if(S(e))e.forEach((e=>ro(e,t,n,o)));else{const o=F(e.handler)?e.handler.bind(n):t[e.handler];F(o)&&an(r,o,e)}}function so(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:s,config:{optionMergeStrategies:l}}=e.appContext,i=s.get(t);let c;return i?c=i:r.length||n||o?(c={},r.length&&r.forEach((e=>lo(c,e,l,!0))),lo(c,t,l)):c=t,$(t)&&s.set(t,c),c}function lo(e,t,n,o=!1){const{mixins:r,extends:s}=t;s&&lo(e,s,n,!0),r&&r.forEach((t=>lo(e,t,n,!0)));for(const l in t)if(o&&"expose"===l);else{const o=io[l]||n&&n[l];e[l]=o?o(e[l],t[l]):t[l]}return e}const io={data:co,props:fo,emits:fo,methods:fo,computed:fo,beforeCreate:uo,created:uo,beforeMount:uo,mounted:uo,beforeUpdate:uo,updated:uo,beforeDestroy:uo,beforeUnmount:uo,destroyed:uo,unmounted:uo,activated:uo,deactivated:uo,errorCaptured:uo,serverPrefetch:uo,components:fo,directives:fo,watch:function(e,t){if(!e)return t;if(!t)return e;const n=b(Object.create(null),e);for(const o in t)n[o]=uo(e[o],t[o]);return n},provide:co,inject:function(e,t){return fo(ao(e),ao(t))}};function co(e,t){return t?e?function(){return b(F(e)?e.call(this,this):e,F(t)?t.call(this,this):t)}:t:e}function ao(e){if(S(e)){const t={};for(let n=0;n{c=!0;const[n,o]=go(e,t,!0);b(l,n),o&&i.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!s&&!c)return $(e)&&o.set(e,h),h;if(S(s))for(let u=0;u-1,n[1]=o<0||t-1||w(n,"default"))&&i.push(e)}}}const a=[l,i];return $(e)&&o.set(e,a),a}function vo(e){return"$"!==e[0]}function mo(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function yo(e,t){return mo(e)===mo(t)}function _o(e,t){return S(t)?t.findIndex((t=>yo(t,e))):F(t)&&yo(t,e)?0:-1}const bo=e=>"_"===e[0]||"$stable"===e,xo=e=>S(e)?e.map(sr):[sr(e)],Co=(e,t,n)=>{if(t._n)return t;const o=Yt(((...e)=>xo(t(...e))),n);return o._c=!1,o},wo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(bo(r))continue;const n=e[r];if(F(n))t[r]=Co(0,n,o);else if(null!=n){const e=xo(n);t[r]=()=>e}}},So=(e,t)=>{const n=xo(t);e.slots.default=()=>n};function ko(){return{app:null,config:{isNativeTag:v,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Ao=0;function Eo(e,t){return function(n,o=null){F(n)||(n=Object.assign({},n)),null==o||$(o)||(o=null);const r=ko(),s=new Set;let l=!1;const i=r.app={_uid:Ao++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:Fr,get config(){return r.config},set config(e){},use:(e,...t)=>(s.has(e)||(e&&F(e.install)?(s.add(e),e.install(i,...t)):F(e)&&(s.add(e),e(i,...t))),i),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),i),component:(e,t)=>t?(r.components[e]=t,i):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,i):r.directives[e],mount(s,c,a){if(!l){const u=tr(n,o);return u.appContext=r,c&&t?t(u,s):e(u,s,a),l=!0,i._container=s,s.__vue_app__=i,xr(u.component)||u.component.proxy}},unmount(){l&&(e(null,i._container),delete i._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,i)};return i}}function Fo(e,t,n,o,r=!1){if(S(e))return void e.forEach(((e,s)=>Fo(e,t&&(S(t)?t[s]:t),n,o,r)));if(wn(o)&&!r)return;const s=4&o.shapeFlag?xr(o.component)||o.component.proxy:o.el,l=r?null:s,{i:i,r:c}=e,a=t&&t.r,u=i.refs===d?i.refs={}:i.refs,f=i.setupState;if(null!=a&&a!==c&&(T(a)?(u[a]=null,w(f,a)&&(f[a]=null)):vt(a)&&(a.value=null)),F(c))Et(c,i,12,[l,u]);else{const t=T(c),o=vt(c);if(t||o){const i=()=>{if(e.f){const n=t?w(f,c)?f[c]:u[c]:c.value;r?S(n)&&x(n,s):S(n)?n.includes(s)||n.push(s):t?(u[c]=[s],w(f,c)&&(f[c]=u[c])):(c.value=[s],e.k&&(u[e.k]=c.value))}else t?(u[c]=l,w(f,c)&&(f[c]=l)):o&&(c.value=l,e.k&&(u[e.k]=l))};l?(i.id=-1,To(i,n)):i()}}}const To=function(e,t){var n;t&&t.pendingBranch?S(e)?t.effects.push(...e):t.effects.push(e):(S(n=e)?Mt.push(...n):Pt&&Pt.includes(n,n.allowRecurse?Rt+1:Rt)||Mt.push(n),Bt())};function Oo(e){return function(e,t){(J||(J="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,createElement:s,createText:l,createComment:i,setText:c,setElementText:a,parentNode:u,nextSibling:f,setScopeId:p=g,insertStaticContent:v}=e,m=(e,t,n,o=null,r=null,s=null,l=!1,i=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!Jo(e,t)&&(o=te(e),H(e,r,s,!0),e=null),-2===t.patchFlag&&(c=!1,t.dynamicChildren=null);const{type:a,ref:u,shapeFlag:f}=t;switch(a){case Uo:y(e,t,n,o);break;case Io:_(e,t,n,o);break;case Bo:null==e&&x(t,n,o,l);break;case No:j(e,t,n,o,r,s,l,i,c);break;default:1&f?k(e,t,n,o,r,s,l,i,c):6&f?M(e,t,n,o,r,s,l,i,c):(64&f||128&f)&&a.process(e,t,n,o,r,s,l,i,c,oe)}null!=u&&r&&Fo(u,e&&e.ref,s,t||e,!t)},y=(e,t,o,r)=>{if(null==e)n(t.el=l(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&c(n,t.children)}},_=(e,t,o,r)=>{null==e?n(t.el=i(t.children||""),o,r):t.el=e.el},x=(e,t,n,o)=>{[e.el,e.anchor]=v(e.children,t,n,o,e.el,e.anchor)},C=({el:e,anchor:t},o,r)=>{let s;for(;e&&e!==t;)s=f(e),n(e,o,r),e=s;n(t,o,r)},S=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=f(e),o(e),e=n;o(t)},k=(e,t,n,o,r,s,l,i,c)=>{l=l||"svg"===t.type,null==e?A(t,n,o,r,s,l,i,c):T(e,t,r,s,l,i,c)},A=(e,t,o,l,i,c,u,f)=>{let p,d;const{type:h,props:g,shapeFlag:v,transition:m,dirs:y}=e;if(p=e.el=s(e.type,c,g&&g.is,g),8&v?a(p,e.children):16&v&&F(e.children,p,null,l,i,c&&"foreignObject"!==h,u,f),y&&Kn(e,null,l,"created"),g){for(const t in g)"value"===t||N(t)||r(p,t,null,g[t],c,e.children,l,i,ee);"value"in g&&r(p,"value",null,g.value),(d=g.onVnodeBeforeMount)&&ar(d,l,e)}E(p,e,e.scopeId,u,l),y&&Kn(e,null,l,"beforeMount");const _=(!i||i&&!i.pendingBranch)&&m&&!m.persisted;_&&m.beforeEnter(p),n(p,t,o),((d=g&&g.onVnodeMounted)||_||y)&&To((()=>{d&&ar(d,l,e),_&&m.enter(p),y&&Kn(e,null,l,"mounted")}),i)},E=(e,t,n,o,r)=>{if(n&&p(e,n),o)for(let s=0;s{for(let a=c;a{const c=t.el=e.el;let{patchFlag:u,dynamicChildren:f,dirs:p}=t;u|=16&e.patchFlag;const h=e.props||d,g=t.props||d;let v;n&&$o(n,!1),(v=g.onVnodeBeforeUpdate)&&ar(v,n,t,e),p&&Kn(t,e,n,"beforeUpdate"),n&&$o(n,!0);const m=s&&"foreignObject"!==t.type;if(f?O(e.dynamicChildren,f,c,n,o,m,l):i||I(e,t,c,null,n,o,m,l,!1),u>0){if(16&u)$(c,t,h,g,n,o,s);else if(2&u&&h.class!==g.class&&r(c,"class",null,g.class,s),4&u&&r(c,"style",h.style,g.style,s),8&u){const l=t.dynamicProps;for(let t=0;t{v&&ar(v,n,t,e),p&&Kn(t,e,n,"updated")}),o)},O=(e,t,n,o,r,s,l)=>{for(let i=0;i{if(n!==o){if(n!==d)for(const c in n)N(c)||c in o||r(e,c,n[c],null,i,t.children,s,l,ee);for(const c in o){if(N(c))continue;const a=o[c],u=n[c];a!==u&&"value"!==c&&r(e,c,u,a,i,t.children,s,l,ee)}"value"in o&&r(e,"value",n.value,o.value)}},j=(e,t,o,r,s,i,c,a,u)=>{const f=t.el=e?e.el:l(""),p=t.anchor=e?e.anchor:l("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:g}=t;g&&(a=a?a.concat(g):g),null==e?(n(f,o,r),n(p,o,r),F(t.children,o,p,s,i,c,a,u)):d>0&&64&d&&h&&e.dynamicChildren?(O(e.dynamicChildren,h,o,s,i,c,a),(null!=t.key||s&&t===s.subTree)&&Lo(e,t,!0)):I(e,t,o,p,s,i,c,a,u)},M=(e,t,n,o,r,s,l,i,c)=>{t.slotScopeIds=i,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,l,c):P(t,n,o,r,s,l,c):R(e,t,c)},P=(e,t,n,o,r,s,l)=>{const i=e.component=function(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||ur,s={uid:fr++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Q(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:go(o,r),emitsOptions:Gt(o,r),emit:null,emitted:null,propsDefaults:d,inheritAttrs:o.inheritAttrs,ctx:d,data:d,props:d,attrs:d,slots:d,refs:d,setupState:d,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return s.ctx={_:s},s.root=t?t.root:s,s.emit=qt.bind(null,s),e.ce&&e.ce(s),s}(e,o,r);if(Sn(e)&&(i.ctx.renderer=oe),function(e,t=!1){mr=t;const{props:n,children:o}=e.vnode,r=vr(e);(function(e,t,n,o=!1){const r={},s={};G(s,Xo,1),e.propsDefaults=Object.create(null),po(e,t,r,s);for(const l in e.propsOptions[0])l in r||(r[l]=void 0);n?e.props=o?r:ot(r):e.type.props?e.props=r:e.props=s,e.attrs=s})(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=ut(t),G(t,"_",n)):wo(t,e.slots={})}else e.slots={},t&&So(e,t);G(e.slots,Xo,1)})(e,o);r&&function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=ft(new Proxy(e.ctx,eo));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?br(e):null;hr(e),pe();const r=Et(o,e,0,[e.props,n]);if(de(),gr(),L(r)){if(r.then(gr,gr),t)return r.then((n=>{yr(e,n,t)})).catch((t=>{Tt(t,e,0)}));e.asyncDep=r}else yr(e,r,t)}else _r(e)}(e,t);mr=!1}(i),i.asyncDep){if(r&&r.registerDep(i,V),!e.el){const e=i.subTree=tr(Io);_(null,e,t,n)}}else V(i,e,t,n,r,s,l)},R=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:s}=e,{props:l,children:i,patchFlag:c}=t,a=s.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&c>=0))return!(!r&&!i||i&&i.$stable)||o!==l&&(o?!l||on(o,l,a):!!l);if(1024&c)return!0;if(16&c)return o?on(o,l,a):!!l;if(8&c){const e=t.dynamicProps;for(let t=0;tjt&&Lt.splice(t,1)}(o.update),o.update()}else t.el=e.el,o.vnode=t},V=(e,t,n,o,r,s,l)=>{const i=()=>{if(e.isMounted){let t,{next:n,bu:o,u:i,parent:c,vnode:a}=e,f=n;$o(e,!1),n?(n.el=a.el,U(e,n,l)):n=a,o&&q(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&ar(t,c,n,a),$o(e,!0);const p=en(e),d=e.subTree;e.subTree=p,m(d,p,u(d.el),te(d),e,r,s),n.el=p.el,null===f&&function({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}(e,p.el),i&&To(i,r),(t=n.props&&n.props.onVnodeUpdated)&&To((()=>ar(t,c,n,a)),r)}else{let l;const{el:i,props:c}=t,{bm:a,m:u,parent:f}=e,p=wn(t);if($o(e,!1),a&&q(a),!p&&(l=c&&c.onVnodeBeforeMount)&&ar(l,f,t),$o(e,!0),i&&se){const n=()=>{e.subTree=en(e),se(i,e.subTree,e,r,null)};p?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const l=e.subTree=en(e);m(null,l,n,o,e,r,s),t.el=l.el}if(u&&To(u,r),!p&&(l=c&&c.onVnodeMounted)){const e=t;To((()=>ar(l,f,e)),r)}(256&t.shapeFlag||f&&wn(f.vnode)&&256&f.vnode.shapeFlag)&&e.a&&To(e.a,r),e.isMounted=!0,t=n=o=null}},c=e.effect=new ce(i,(()=>It(a)),e.scope),a=e.update=()=>c.run();a.id=e.uid,$o(e,!0),a()},U=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:s,vnode:{patchFlag:l}}=e,i=ut(r),[c]=e.propsOptions;let a=!1;if(!(o||l>0)||16&l){let o;po(e,t,r,s)&&(a=!0);for(const s in i)t&&(w(t,s)||(o=z(s))!==s&&w(t,o))||(c?!n||void 0===n[s]&&void 0===n[o]||(r[s]=ho(c,i,s,void 0,e,!0)):delete r[s]);if(s!==i)for(const e in s)t&&w(t,e)||(delete s[e],a=!0)}else if(8&l){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:r}=e;let s=!0,l=d;if(32&o.shapeFlag){const e=t._;e?n&&1===e?s=!1:(b(r,t),n||1!==e||delete r._):(s=!t.$stable,wo(t,r)),l=t}else t&&(So(e,t),l={default:1});if(s)for(const i in r)bo(i)||i in l||delete r[i]})(e,t.children,n),pe(),Dt(),de()},I=(e,t,n,o,r,s,l,i,c=!1)=>{const u=e&&e.children,f=e?e.shapeFlag:0,p=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void W(u,p,n,o,r,s,l,i,c);if(256&d)return void D(u,p,n,o,r,s,l,i,c)}8&h?(16&f&&ee(u,r,s),p!==u&&a(n,p)):16&f?16&h?W(u,p,n,o,r,s,l,i,c):ee(u,r,s,!0):(8&f&&a(n,""),16&h&&F(p,n,o,r,s,l,i,c))},D=(e,t,n,o,r,s,l,i,c)=>{t=t||h;const a=(e=e||h).length,u=t.length,f=Math.min(a,u);let p;for(p=0;pu?ee(e,r,s,!0,!1,f):F(t,n,o,r,s,l,i,c,f)},W=(e,t,n,o,r,s,l,i,c)=>{let a=0;const u=t.length;let f=e.length-1,p=u-1;for(;a<=f&&a<=p;){const o=e[a],u=t[a]=c?lr(t[a]):sr(t[a]);if(!Jo(o,u))break;m(o,u,n,null,r,s,l,i,c),a++}for(;a<=f&&a<=p;){const o=e[f],a=t[p]=c?lr(t[p]):sr(t[p]);if(!Jo(o,a))break;m(o,a,n,null,r,s,l,i,c),f--,p--}if(a>f){if(a<=p){const e=p+1,f=ep)for(;a<=f;)H(e[a],r,s,!0),a++;else{const d=a,g=a,v=new Map;for(a=g;a<=p;a++){const e=t[a]=c?lr(t[a]):sr(t[a]);null!=e.key&&v.set(e.key,a)}let y,_=0;const b=p-g+1;let x=!1,C=0;const w=new Array(b);for(a=0;a=b){H(o,r,s,!0);continue}let u;if(null!=o.key)u=v.get(o.key);else for(y=g;y<=p;y++)if(0===w[y-g]&&Jo(o,t[y])){u=y;break}void 0===u?H(o,r,s,!0):(w[u-g]=a+1,u>=C?C=u:x=!0,m(o,t[u],n,null,r,s,l,i,c),_++)}const S=x?function(e){const t=e.slice(),n=[0];let o,r,s,l,i;const c=e.length;for(o=0;o>1,e[n[i]]0&&(t[o]=n[s-1]),n[s]=o)}}for(s=n.length,l=n[s-1];s-- >0;)n[s]=l,l=t[l];return n}(w):h;for(y=S.length-1,a=b-1;a>=0;a--){const e=g+a,f=t[e],p=e+1{const{el:l,type:i,transition:c,children:a,shapeFlag:u}=e;if(6&u)K(e.component.subTree,t,o,r);else if(128&u)e.suspense.move(t,o,r);else if(64&u)i.move(e,t,o,oe);else if(i!==No)if(i!==Bo)if(2!==r&&1&u&&c)if(0===r)c.beforeEnter(l),n(l,t,o),To((()=>c.enter(l)),s);else{const{leave:e,delayLeave:r,afterLeave:s}=c,i=()=>n(l,t,o),a=()=>{e(l,(()=>{i(),s&&s()}))};r?r(l,i,a):a()}else n(l,t,o);else C(e,t,o);else{n(l,t,o);for(let e=0;e{const{type:s,props:l,ref:i,children:c,dynamicChildren:a,shapeFlag:u,patchFlag:f,dirs:p}=e;if(null!=i&&Fo(i,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const d=1&u&&p,h=!wn(e);let g;if(h&&(g=l&&l.onVnodeBeforeUnmount)&&ar(g,t,e),6&u)Y(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);d&&Kn(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,oe,o):a&&(s!==No||f>0&&64&f)?ee(a,t,n,!1,!0):(s===No&&384&f||!r&&16&u)&&ee(c,t,n),o&&Z(e)}(h&&(g=l&&l.onVnodeUnmounted)||d)&&To((()=>{g&&ar(g,t,e),d&&Kn(e,null,t,"unmounted")}),n)},Z=e=>{const{type:t,el:n,anchor:r,transition:s}=e;if(t===No)return void X(n,r);if(t===Bo)return void S(e);const l=()=>{o(n),s&&!s.persisted&&s.afterLeave&&s.afterLeave()};if(1&e.shapeFlag&&s&&!s.persisted){const{leave:t,delayLeave:o}=s,r=()=>t(n,l);o?o(e.el,l,r):r()}else l()},X=(e,t)=>{let n;for(;e!==t;)n=f(e),o(e),e=n;o(t)},Y=(e,t,n)=>{const{bum:o,scope:r,update:s,subTree:l,um:i}=e;o&&q(o),r.stop(),s&&(s.active=!1,H(l,e,t,n)),i&&To(i,t),To((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,o=!1,r=!1,s=0)=>{for(let l=s;l6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():f(e.anchor||e.el),ne=(e,t,n)=>{null==e?t._vnode&&H(t._vnode,null,null,!0):m(t._vnode||null,e,t,null,null,null,n),Dt(),zt(),t._vnode=e},oe={p:m,um:H,m:K,r:Z,mt:P,mc:F,pc:I,pbc:O,n:te,o:e};let re,se;return t&&([re,se]=t(oe)),{render:ne,hydrate:re,createApp:Eo(ne,re)}}(e)}function $o({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Lo(e,t,n=!1){const o=e.children,r=t.children;if(S(o)&&S(r))for(let s=0;se&&(e.disabled||""===e.disabled),Mo=e=>"undefined"!=typeof SVGElement&&e instanceof SVGElement,Po=(e,t)=>{const n=e&&e.to;return T(n)?t?t(n):null:n};function Ro(e,t,n,{o:{insert:o},m:r},s=2){0===s&&o(e.targetAnchor,t,n);const{el:l,anchor:i,shapeFlag:c,children:a,props:u}=e,f=2===s;if(f&&o(l,t,n),(!f||jo(u))&&16&c)for(let p=0;p{16&y&&u(_,e,t,r,s,l,i,c)};m?v(n,a):f&&v(f,p)}else{t.el=e.el;const o=t.anchor=e.anchor,u=t.target=e.target,d=t.targetAnchor=e.targetAnchor,g=jo(e.props),v=g?n:u,y=g?o:d;if(l=l||Mo(u),b?(p(e.dynamicChildren,b,v,r,s,l,i),Lo(e,t,!0)):c||f(e,t,v,y,r,s,l,i,!1),m)g||Ro(t,n,o,a,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const e=t.target=Po(t.props,h);e&&Ro(t,e,null,a,0)}else g&&Ro(t,u,d,a,1)}Vo(t)},remove(e,t,n,o,{um:r,o:{remove:s}},l){const{shapeFlag:i,children:c,anchor:a,targetAnchor:u,target:f,props:p}=e;if(f&&s(u),(l||!jo(p))&&(s(a),16&i))for(let d=0;d0?zo||h:null,Do.pop(),zo=Do[Do.length-1]||null,Ko>0&&zo&&zo.push(e),e}function Go(e,t,n,o,r){return qo(tr(e,t,n,o,r,!0))}function Zo(e){return!!e&&!0===e.__v_isVNode}function Jo(e,t){return e.type===t.type&&e.key===t.key}const Xo="__vInternal",Qo=({key:e})=>null!=e?e:null,Yo=({ref:e,ref_key:t,ref_for:n})=>null!=e?T(e)||vt(e)||F(e)?{i:Jt,r:e,k:t,f:!!n}:e:null;function er(e,t=null,n=null,o=0,r=null,s=(e===No?0:1),l=!1,i=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qo(t),ref:t&&Yo(t),scopeId:Xt,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:s,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Jt};return i?(ir(c,n),128&s&&e.normalize(c)):n&&(c.shapeFlag|=T(n)?8:16),Ko>0&&!l&&zo&&(c.patchFlag>0||6&s)&&32!==c.patchFlag&&zo.push(c),c}const tr=e("d",(function(e,t=null,o=null,r=0,s=null,l=!1){if(e&&e!==qn||(e=Io),Zo(e)){const n=or(e,t,!0);return o&&ir(n,o),Ko>0&&!l&&zo&&(6&n.shapeFlag?zo[zo.indexOf(e)]=n:zo.push(n)),n.patchFlag|=-2,n}var c;if(F(c=e)&&"__vccOpts"in c&&(e=e.__vccOpts),t){t=nr(t);let{class:e,style:o}=t;e&&!T(e)&&(t.class=i(e)),$(o)&&(at(o)&&!S(o)&&(o=b({},o)),t.style=n(o))}const a=T(e)?1:rn(e)?128:(e=>e.__isTeleport)(e)?64:$(e)?4:F(e)?2:0;return er(e,t,o,r,s,a,l,!0)}));function nr(e){return e?at(e)||Xo in e?b({},e):e:null}function or(e,t,n=!1){const{props:o,ref:r,patchFlag:s,children:l}=e,i=t?cr(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:i,key:i&&Qo(i),ref:t&&t.ref?n&&r?S(r)?r.concat(Yo(t)):[r,Yo(t)]:Yo(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==No?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&or(e.ssContent),ssFallback:e.ssFallback&&or(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx}}function rr(e=" ",t=0){return tr(Uo,null,e,t)}function sr(e){return null==e||"boolean"==typeof e?tr(Io):S(e)?tr(No,null,e.slice()):"object"==typeof e?lr(e):tr(Uo,null,String(e))}function lr(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:or(e)}function ir(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(S(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),ir(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||Xo in t?3===o&&Jt&&(1===Jt.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=Jt}}else F(t)?(t={default:t,_ctx:Jt},n=32):(t=String(t),64&o?(n=16,t=[rr(t)]):n=8);e.children=t,e.shapeFlag|=n}function cr(...e){const t={};for(let o=0;opr||Jt)),hr=e=>{pr=e,e.scope.on()},gr=()=>{pr&&pr.scope.off(),pr=null};function vr(e){return 4&e.vnode.shapeFlag}let mr=!1;function yr(e,t,n){F(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:$(t)&&(e.setupState=xt(t)),_r(e)}function _r(e,t,n){const o=e.type;e.render||(e.render=o.render||g),hr(e),pe(),no(e),de(),gr()}function br(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(he(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}function xr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(xt(ft(e.exposed)),{get:(t,n)=>n in t?t[n]:n in Qn?Qn[n](e):void 0,has:(e,t)=>t in e||t in Qn}))}function Cr(e,t=!0){return F(e)?e.displayName||e.name:e.name||t&&e.__name}const wr=e("l",((e,t)=>At(e,0,mr)));function Sr(){const e=dr();return e.setupContext||(e.setupContext=br(e))}function kr(e,t,n){const o=arguments.length;return 2===o?$(t)&&!S(t)?Zo(t)?tr(e,null,[t]):tr(e,t):tr(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&Zo(n)&&(n=[n]),tr(e,t,n))}const Ar=Symbol(""),Er=()=>ln(Ar),Fr="3.2.45",Tr="undefined"!=typeof document?document:null,Or=Tr&&Tr.createElement("template"),$r={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=t?Tr.createElementNS("http://www.w3.org/2000/svg",e):Tr.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Tr.createTextNode(e),createComment:e=>Tr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Tr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,s){const l=n?n.previousSibling:t.lastChild;if(r&&(r===s||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==s&&(r=r.nextSibling););else{Or.innerHTML=o?`${e}`:e;const r=Or.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[l?l.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Lr=/\s*!important$/;function jr(e,t,n){if(S(n))n.forEach((n=>jr(e,t,n)));else if(null==n&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Pr[t];if(n)return n;let o=B(t);if("filter"!==o&&o in e)return Pr[t]=o;o=W(o);for(let r=0;r{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();Ft(function(e,t){if(S(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}(e,n.value),t,5,[e])};return n.value=e,n.attached=Ir||(Br.then((()=>Ir=0)),Ir=Date.now()),n}(o,r);Vr(e,n,l,i)}else l&&(function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,l,i),s[t]=void 0)}}const Ur=/(?:Once|Passive|Capture)$/;let Ir=0;const Br=Promise.resolve(),Dr=/^on[a-z]/,zr="transition",Wr="animation",Kr=e("Z",((e,{slots:t})=>kr(vn,Jr(e),t)));Kr.displayName="Transition";const Hr={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},qr=Kr.props=b({},vn.props,Hr),Gr=(e,t=[])=>{S(e)?e.forEach((e=>e(...t))):e&&e(...t)},Zr=e=>!!e&&(S(e)?e.some((e=>e.length>1)):e.length>1);function Jr(e){const t={};for(const b in e)b in Hr||(t[b]=e[b]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:s=`${n}-enter-from`,enterActiveClass:l=`${n}-enter-active`,enterToClass:i=`${n}-enter-to`,appearFromClass:c=s,appearActiveClass:a=l,appearToClass:u=i,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:p=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if($(e))return[Xr(e.enter),Xr(e.leave)];{const t=Xr(e);return[t,t]}}(r),g=h&&h[0],v=h&&h[1],{onBeforeEnter:m,onEnter:y,onEnterCancelled:_,onLeave:x,onLeaveCancelled:C,onBeforeAppear:w=m,onAppear:S=y,onAppearCancelled:k=_}=t,A=(e,t,n)=>{Yr(e,t?u:i),Yr(e,t?a:l),n&&n()},E=(e,t)=>{e._isLeaving=!1,Yr(e,f),Yr(e,d),Yr(e,p),t&&t()},F=e=>(t,n)=>{const r=e?S:y,l=()=>A(t,e,n);Gr(r,[t,l]),es((()=>{Yr(t,e?c:s),Qr(t,e?u:i),Zr(r)||ns(t,o,g,l)}))};return b(t,{onBeforeEnter(e){Gr(m,[e]),Qr(e,s),Qr(e,l)},onBeforeAppear(e){Gr(w,[e]),Qr(e,c),Qr(e,a)},onEnter:F(!1),onAppear:F(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>E(e,t);Qr(e,f),ls(),Qr(e,p),es((()=>{e._isLeaving&&(Yr(e,f),Qr(e,d),Zr(x)||ns(e,o,v,n))})),Gr(x,[e,n])},onEnterCancelled(e){A(e,!1),Gr(_,[e])},onAppearCancelled(e){A(e,!0),Gr(k,[e])},onLeaveCancelled(e){E(e),Gr(C,[e])}})}function Xr(e){return Z(e)}function Qr(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function Yr(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function es(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let ts=0;function ns(e,t,n,o){const r=e._endId=++ts,s=()=>{r===e._endId&&o()};if(n)return setTimeout(s,n);const{type:l,timeout:i,propCount:c}=os(e,t);if(!l)return o();const a=l+"end";let u=0;const f=()=>{e.removeEventListener(a,p),s()},p=t=>{t.target===e&&++u>=c&&f()};setTimeout((()=>{u(n[e]||"").split(", "),r=o(`${zr}Delay`),s=o(`${zr}Duration`),l=rs(r,s),i=o(`${Wr}Delay`),c=o(`${Wr}Duration`),a=rs(i,c);let u=null,f=0,p=0;return t===zr?l>0&&(u=zr,f=l,p=s.length):t===Wr?a>0&&(u=Wr,f=a,p=c.length):(f=Math.max(l,a),u=f>0?l>a?zr:Wr:null,p=u?u===zr?s.length:c.length:0),{type:u,timeout:f,propCount:p,hasTransform:u===zr&&/\b(transform|all)(,|$)/.test(o(`${zr}Property`).toString())}}function rs(e,t){for(;e.lengthss(t)+ss(e[n]))))}function ss(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function ls(){return document.body.offsetHeight}const is=new WeakMap,cs=new WeakMap;function as(e){const t=e.el;t._moveCb&&t._moveCb(),t._enterCb&&t._enterCb()}function us(e){cs.set(e,e.el.getBoundingClientRect())}function fs(e){const t=is.get(e),n=cs.get(e),o=t.left-n.left,r=t.top-n.top;if(o||r){const t=e.el.style;return t.transform=t.webkitTransform=`translate(${o}px,${r}px)`,t.transitionDuration="0s",e}}e("ar",{name:"TransitionGroup",props:b({},qr,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=dr(),o=hn();let r,s;return Nn((()=>{if(!r.length)return;const t=e.moveClass||`${e.name||"v"}-move`;if(!function(e,t,n){const o=e.cloneNode();e._vtc&&e._vtc.forEach((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 r=1===t.nodeType?t:t.parentNode;r.appendChild(o);const{hasTransform:s}=os(o);return r.removeChild(o),s}(r[0].el,n.vnode.el,t))return;r.forEach(as),r.forEach(us);const o=r.filter(fs);ls(),o.forEach((e=>{const n=e.el,o=n.style;Qr(n,t),o.transform=o.webkitTransform=o.transitionDuration="";const r=n._moveCb=e=>{e&&e.target!==n||e&&!/transform$/.test(e.propertyName)||(n.removeEventListener("transitionend",r),n._moveCb=null,Yr(n,t))};n.addEventListener("transitionend",r)}))})),()=>{const l=ut(e),i=Jr(l);let c=l.tag||No;r=s,s=t.default?Cn(t.default()):[];for(let e=0;e{const t=e.props["onUpdate:modelValue"]||!1;return S(t)?e=>q(t,e):t};function ds(e){e.target.composing=!0}function hs(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}function gs(e,{value:t,oldValue:n},o){e._modelValue=t,S(t)?e.checked=f(t,o.props.value)>-1:A(t)?e.checked=t.has(o.props.value):t!==n&&(e.checked=u(t,ms(e,!0)))}function vs(e){return"_value"in e?e._value:e.value}function ms(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}e("aj",{created(e,{modifiers:{lazy:t,trim:n,number:o}},r){e._assign=ps(r);const s=o||r.props&&"number"===r.props.type;Vr(e,t?"change":"input",(t=>{if(t.target.composing)return;let o=e.value;n&&(o=o.trim()),s&&(o=Z(o)),e._assign(o)})),n&&Vr(e,"change",(()=>{e.value=e.value.trim()})),t||(Vr(e,"compositionstart",ds),Vr(e,"compositionend",hs),Vr(e,"change",hs))},mounted(e,{value:t}){e.value=null==t?"":t},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:o,number:r}},s){if(e._assign=ps(s),e.composing)return;if(document.activeElement===e&&"range"!==e.type){if(n)return;if(o&&e.value.trim()===t)return;if((r||"number"===e.type)&&Z(e.value)===t)return}const l=null==t?"":t;e.value!==l&&(e.value=l)}}),e("ad",{deep:!0,created(e,t,n){e._assign=ps(n),Vr(e,"change",(()=>{const t=e._modelValue,n=vs(e),o=e.checked,r=e._assign;if(S(t)){const e=f(t,n),s=-1!==e;if(o&&!s)r(t.concat(n));else if(!o&&s){const n=[...t];n.splice(e,1),r(n)}}else if(A(t)){const e=new Set(t);o?e.add(n):e.delete(n),r(e)}else r(ms(e,o))}))},mounted:gs,beforeUpdate(e,t,n){e._assign=ps(n),gs(e,t,n)}}),e("ae",{created(e,{value:t},n){e.checked=u(t,n.props.value),e._assign=ps(n),Vr(e,"change",(()=>{e._assign(vs(e))}))},beforeUpdate(e,{value:t,oldValue:n},o){e._assign=ps(o),t!==n&&(e.checked=u(t,o.props.value))}});const ys=["ctrl","shift","alt","meta"],_s={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)=>ys.some((n=>e[`${n}Key`]&&!t.includes(n)))},bs=(e("$",((e,t)=>(n,...o)=>{for(let e=0;en=>{if(!("key"in n))return;const o=z(n.key);return t.some((e=>e===o||bs[e]===o))?e(n):void 0})),e("Y",{beforeMount(e,{value:t},{transition:n}){e._vod="none"===e.style.display?"":e.style.display,n&&t?n.beforeEnter(e):xs(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:o}){!t!=!n&&(o?t?(o.beforeEnter(e),xs(e,!0),o.enter(e)):o.leave(e,(()=>{xs(e,!1)})):xs(e,t))},beforeUnmount(e,{value:t}){xs(e,t)}});const Cs=b({patchProp:(e,t,n,o,r=!1,s,l,i,u)=>{"class"===t?function(e,t,n){const o=e._vtc;o&&(t=(t?[t,...o]:[...o]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,r):"style"===t?function(e,t,n){const o=e.style,r=T(n);if(n&&!r){for(const e in n)jr(o,e,n[e]);if(t&&!T(t))for(const e in t)null==n[e]&&jr(o,e,"")}else{const s=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=s)}}(e,n,o):y(t)?_(t)||Nr(e,t,0,o,l):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){return o?"innerHTML"===t||"textContent"===t||!!(t in e&&Dr.test(t)&&F(n)):"spellcheck"!==t&&"draggable"!==t&&"translate"!==t&&("form"!==t&&(("list"!==t||"INPUT"!==e.tagName)&&(("type"!==t||"TEXTAREA"!==e.tagName)&&((!Dr.test(t)||!T(n))&&t in e))))}(e,t,o,r))?function(e,t,n,o,r,s,l){if("innerHTML"===t||"textContent"===t)return o&&l(o,r,s),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}let i=!1;if(""===n||null==n){const o=typeof e[t];"boolean"===o?n=a(n):null==n&&"string"===o?(n="",i=!0):"number"===o&&(n=0,i=!0)}try{e[t]=n}catch(c){}i&&e.removeAttribute(t)}(e,t,o,s,l,i,u):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,r){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(Rr,t.slice(6,t.length)):e.setAttributeNS(Rr,t,n);else{const o=c(t);null==n||o&&!a(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,r))}},$r);let ws;function Ss(){return ws||(ws=Oo(Cs))}e("av",((...e)=>{Ss().render(...e)})),e("as",((...e)=>{const t=Ss().createApp(...e),{mount:n}=t;return t.mount=e=>{const o=function(e){return T(e)?document.querySelector(e):e}(e);if(!o)return;const r=t._component;F(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const s=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),s},t}))}}})); diff --git a/src/main/resources/html/lc/assets/@vueuse-c162c6d2.js b/src/main/resources/html/lc/assets/@vueuse-77cc1d99.js similarity index 99% rename from src/main/resources/html/lc/assets/@vueuse-c162c6d2.js rename to src/main/resources/html/lc/assets/@vueuse-77cc1d99.js index 76d38c3..cbad835 100644 --- a/src/main/resources/html/lc/assets/@vueuse-c162c6d2.js +++ b/src/main/resources/html/lc/assets/@vueuse-77cc1d99.js @@ -1 +1 @@ -import{s as L,w as H,r as M,u as J,g as U,e as G,f as O,h as b,j as Q,k as q,n as K,l as B}from"./@vue-99409b8e.js";var X=Object.defineProperty,Y=Object.defineProperties,Z=Object.getOwnPropertyDescriptors,F=Object.getOwnPropertySymbols,k=Object.prototype.hasOwnProperty,ee=Object.prototype.propertyIsEnumerable,N=(e,t,n)=>t in e?X(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,te=(e,t)=>{for(var n in t||(t={}))k.call(t,n)&&N(e,n,t[n]);if(F)for(var n of F(t))ee.call(t,n)&&N(e,n,t[n]);return e},ne=(e,t)=>Y(e,Z(t));function Pe(e,t){var n;const r=L();return H(()=>{r.value=e()},ne(te({},t),{flush:(n=t==null?void 0:t.flush)!=null?n:"sync"})),M(r)}var D;const S=typeof window<"u",re=e=>typeof e<"u",Ie=e=>typeof e=="boolean",oe=e=>typeof e=="function",Ee=e=>typeof e=="number",ie=e=>typeof e=="string",I=()=>{};S&&((D=window==null?void 0:window.navigator)!=null&&D.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function w(e){return typeof e=="function"?e():J(e)}function z(e,t){function n(...r){return new Promise((o,s)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(o).catch(s)})}return n}function se(e,t={}){let n,r,o=I;const s=i=>{clearTimeout(i),o(),o=I};return i=>{const c=w(e),f=w(t.maxWait);return n&&s(n),c<=0||f!==void 0&&f<=0?(r&&(s(r),r=null),Promise.resolve(i())):new Promise((d,m)=>{o=t.rejectOnCancel?m:d,f&&!r&&(r=setTimeout(()=>{n&&s(n),r=null,d(i())},f)),n=setTimeout(()=>{r&&s(r),r=null,d(i())},c)})}}function ue(e,t=!0,n=!0,r=!1){let o=0,s,u=!0,i=I,c;const f=()=>{s&&(clearTimeout(s),s=void 0,i(),i=I)};return m=>{const p=w(e),a=Date.now()-o,l=()=>c=m();if(f(),p<=0)return o=Date.now(),l();if(a>p&&(n||!u))o=Date.now(),l();else if(t)return new Promise((v,h)=>{i=r?h:v,s=setTimeout(()=>{o=Date.now(),u=!0,v(l()),f()},p-a)});return!n&&!s&&(s=setTimeout(()=>u=!0,p)),u=!1,c}}function ae(e){return e}function x(e){return U()?(G(e),!0):!1}function le(e,t=200,n={}){return z(se(t,n),e)}function Se(e,t=200,n={}){const r=O(e.value),o=le(()=>{r.value=e.value},t,n);return b(e,()=>o()),r}function Te(e,t=200,n=!1,r=!0,o=!1){return z(ue(t,n,r,o),e)}function C(e,t=!0){Q()?q(e):t?e():K(e)}function $e(e,t,n={}){const{immediate:r=!0}=n,o=O(!1);let s=null;function u(){s&&(clearTimeout(s),s=null)}function i(){o.value=!1,u()}function c(...f){u(),o.value=!0,s=setTimeout(()=>{o.value=!1,s=null,e(...f)},w(t))}return r&&(o.value=!0,S&&c()),x(i),{isPending:o,start:c,stop:i}}function _(e){var t;const n=w(e);return(t=n==null?void 0:n.$el)!=null?t:n}const P=S?window:void 0,ce=S?window.document:void 0;function y(...e){let t,n,r,o;if(ie(e[0])||Array.isArray(e[0])?([n,r,o]=e,t=P):[t,n,r,o]=e,!t)return I;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const s=[],u=()=>{s.forEach(d=>d()),s.length=0},i=(d,m,p)=>(d.addEventListener(m,p,o),()=>d.removeEventListener(m,p,o)),c=b(()=>_(t),d=>{u(),d&&s.push(...n.flatMap(m=>r.map(p=>i(d,m,p))))},{immediate:!0,flush:"post"}),f=()=>{c(),u()};return x(f),f}function je(e,t,n={}){const{window:r=P,ignore:o=[],capture:s=!0,detectIframe:u=!1}=n;if(!r)return;let i=!0,c;const f=a=>o.some(l=>{if(typeof l=="string")return Array.from(r.document.querySelectorAll(l)).some(v=>v===a.target||a.composedPath().includes(v));{const v=_(l);return v&&(a.target===v||a.composedPath().includes(v))}}),d=a=>{r.clearTimeout(c);const l=_(e);if(!(!l||l===a.target||a.composedPath().includes(l))){if(a.detail===0&&(i=!f(a)),!i){i=!0;return}t(a)}},m=[y(r,"click",d,{passive:!0,capture:s}),y(r,"pointerdown",a=>{const l=_(e);l&&(i=!a.composedPath().includes(l)&&!f(a))},{passive:!0}),y(r,"pointerup",a=>{if(a.button===0){const l=a.composedPath();a.composedPath=()=>l,c=r.setTimeout(()=>d(a),50)}},{passive:!0}),u&&y(r,"blur",a=>{var l;const v=_(e);((l=r.document.activeElement)==null?void 0:l.tagName)==="IFRAME"&&!(v!=null&&v.contains(r.document.activeElement))&&t(a)})].filter(Boolean);return()=>m.forEach(a=>a())}function fe(e,t=!1){const n=O(),r=()=>n.value=Boolean(e());return r(),C(r,t),n}function de(e){return JSON.parse(JSON.stringify(e))}const $=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},j="__vueuse_ssr_handlers__";$[j]=$[j]||{};$[j];function xe(e,t,{window:n=P,initialValue:r=""}={}){const o=O(r),s=B(()=>{var u;return _(t)||((u=n==null?void 0:n.document)==null?void 0:u.documentElement)});return b([s,()=>w(e)],([u,i])=>{var c;if(u&&n){const f=(c=n.getComputedStyle(u).getPropertyValue(i))==null?void 0:c.trim();o.value=f||r}},{immediate:!0}),b(o,u=>{var i;(i=s.value)!=null&&i.style&&s.value.style.setProperty(w(e),u)}),o}function Ce({document:e=ce}={}){if(!e)return O("visible");const t=O(e.visibilityState);return y(e,"visibilitychange",()=>{t.value=e.visibilityState}),t}var R=Object.getOwnPropertySymbols,pe=Object.prototype.hasOwnProperty,ve=Object.prototype.propertyIsEnumerable,me=(e,t)=>{var n={};for(var r in e)pe.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&R)for(var r of R(e))t.indexOf(r)<0&&ve.call(e,r)&&(n[r]=e[r]);return n};function Oe(e,t,n={}){const r=n,{window:o=P}=r,s=me(r,["window"]);let u;const i=fe(()=>o&&"ResizeObserver"in o),c=()=>{u&&(u.disconnect(),u=void 0)},f=b(()=>_(e),m=>{c(),i.value&&o&&m&&(u=new ResizeObserver(t),u.observe(m,s))},{immediate:!0,flush:"post"}),d=()=>{c(),f()};return x(d),{isSupported:i,stop:d}}function Fe(e,t={}){const{reset:n=!0,windowResize:r=!0,windowScroll:o=!0,immediate:s=!0}=t,u=O(0),i=O(0),c=O(0),f=O(0),d=O(0),m=O(0),p=O(0),a=O(0);function l(){const v=_(e);if(!v){n&&(u.value=0,i.value=0,c.value=0,f.value=0,d.value=0,m.value=0,p.value=0,a.value=0);return}const h=v.getBoundingClientRect();u.value=h.height,i.value=h.bottom,c.value=h.left,f.value=h.right,d.value=h.top,m.value=h.width,p.value=h.x,a.value=h.y}return Oe(e,l),b(()=>_(e),v=>!v&&l()),o&&y("scroll",l,{capture:!0,passive:!0}),r&&y("resize",l,{passive:!0}),C(()=>{s&&l()}),{height:u,bottom:i,left:c,right:f,top:d,width:m,x:p,y:a,update:l}}var A;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(A||(A={}));var he=Object.defineProperty,W=Object.getOwnPropertySymbols,ye=Object.prototype.hasOwnProperty,_e=Object.prototype.propertyIsEnumerable,V=(e,t,n)=>t in e?he(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,be=(e,t)=>{for(var n in t||(t={}))ye.call(t,n)&&V(e,n,t[n]);if(W)for(var n of W(t))_e.call(t,n)&&V(e,n,t[n]);return e};const ge={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]};be({linear:ae},ge);function Ne(e,t,n,r={}){var o,s,u;const{clone:i=!1,passive:c=!1,eventName:f,deep:d=!1,defaultValue:m}=r,p=Q(),a=n||(p==null?void 0:p.emit)||((o=p==null?void 0:p.$emit)==null?void 0:o.bind(p))||((u=(s=p==null?void 0:p.proxy)==null?void 0:s.$emit)==null?void 0:u.bind(p==null?void 0:p.proxy));let l=f;t||(t="modelValue"),l=f||l||`update:${t.toString()}`;const v=g=>i?oe(i)?i(g):de(g):g,h=()=>re(e[t])?v(e[t]):m;if(c){const g=h(),T=O(g);return b(()=>e[t],E=>T.value=v(E)),b(T,E=>{(E!==e[t]||d)&&a(l,E)},{deep:d}),T}else return B({get(){return h()},set(g){a(l,g)}})}function De({window:e=P}={}){if(!e)return O(!1);const t=O(e.document.hasFocus());return y(e,"blur",()=>{t.value=!1}),y(e,"focus",()=>{t.value=!0}),t}function Re(e={}){const{window:t=P,initialWidth:n=1/0,initialHeight:r=1/0,listenOrientation:o=!0,includeScrollbar:s=!0}=e,u=O(n),i=O(r),c=()=>{t&&(s?(u.value=t.innerWidth,i.value=t.innerHeight):(u.value=t.document.documentElement.clientWidth,i.value=t.document.documentElement.clientHeight))};return c(),C(c),y("resize",c,{passive:!0}),o&&y("orientationchange",c,{passive:!0}),{width:u,height:i}}export{Ee as a,Ie as b,Re as c,Fe as d,y as e,Oe as f,Te as g,xe as h,S as i,$e as j,Ce as k,De as l,Pe as m,Ne as n,je as o,Se as r,x as t,_ as u}; +import{s as L,w as H,r as M,u as J,g as U,e as G,f as O,h as b,j as Q,k as q,n as K,l as B}from"./@vue-5dd246aa.js";var X=Object.defineProperty,Y=Object.defineProperties,Z=Object.getOwnPropertyDescriptors,F=Object.getOwnPropertySymbols,k=Object.prototype.hasOwnProperty,ee=Object.prototype.propertyIsEnumerable,N=(e,t,n)=>t in e?X(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,te=(e,t)=>{for(var n in t||(t={}))k.call(t,n)&&N(e,n,t[n]);if(F)for(var n of F(t))ee.call(t,n)&&N(e,n,t[n]);return e},ne=(e,t)=>Y(e,Z(t));function Pe(e,t){var n;const r=L();return H(()=>{r.value=e()},ne(te({},t),{flush:(n=t==null?void 0:t.flush)!=null?n:"sync"})),M(r)}var D;const S=typeof window<"u",re=e=>typeof e<"u",Ie=e=>typeof e=="boolean",oe=e=>typeof e=="function",Ee=e=>typeof e=="number",ie=e=>typeof e=="string",I=()=>{};S&&((D=window==null?void 0:window.navigator)!=null&&D.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function w(e){return typeof e=="function"?e():J(e)}function z(e,t){function n(...r){return new Promise((o,s)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(o).catch(s)})}return n}function se(e,t={}){let n,r,o=I;const s=i=>{clearTimeout(i),o(),o=I};return i=>{const c=w(e),f=w(t.maxWait);return n&&s(n),c<=0||f!==void 0&&f<=0?(r&&(s(r),r=null),Promise.resolve(i())):new Promise((d,m)=>{o=t.rejectOnCancel?m:d,f&&!r&&(r=setTimeout(()=>{n&&s(n),r=null,d(i())},f)),n=setTimeout(()=>{r&&s(r),r=null,d(i())},c)})}}function ue(e,t=!0,n=!0,r=!1){let o=0,s,u=!0,i=I,c;const f=()=>{s&&(clearTimeout(s),s=void 0,i(),i=I)};return m=>{const p=w(e),a=Date.now()-o,l=()=>c=m();if(f(),p<=0)return o=Date.now(),l();if(a>p&&(n||!u))o=Date.now(),l();else if(t)return new Promise((v,h)=>{i=r?h:v,s=setTimeout(()=>{o=Date.now(),u=!0,v(l()),f()},p-a)});return!n&&!s&&(s=setTimeout(()=>u=!0,p)),u=!1,c}}function ae(e){return e}function x(e){return U()?(G(e),!0):!1}function le(e,t=200,n={}){return z(se(t,n),e)}function Se(e,t=200,n={}){const r=O(e.value),o=le(()=>{r.value=e.value},t,n);return b(e,()=>o()),r}function Te(e,t=200,n=!1,r=!0,o=!1){return z(ue(t,n,r,o),e)}function C(e,t=!0){Q()?q(e):t?e():K(e)}function $e(e,t,n={}){const{immediate:r=!0}=n,o=O(!1);let s=null;function u(){s&&(clearTimeout(s),s=null)}function i(){o.value=!1,u()}function c(...f){u(),o.value=!0,s=setTimeout(()=>{o.value=!1,s=null,e(...f)},w(t))}return r&&(o.value=!0,S&&c()),x(i),{isPending:o,start:c,stop:i}}function _(e){var t;const n=w(e);return(t=n==null?void 0:n.$el)!=null?t:n}const P=S?window:void 0,ce=S?window.document:void 0;function y(...e){let t,n,r,o;if(ie(e[0])||Array.isArray(e[0])?([n,r,o]=e,t=P):[t,n,r,o]=e,!t)return I;Array.isArray(n)||(n=[n]),Array.isArray(r)||(r=[r]);const s=[],u=()=>{s.forEach(d=>d()),s.length=0},i=(d,m,p)=>(d.addEventListener(m,p,o),()=>d.removeEventListener(m,p,o)),c=b(()=>_(t),d=>{u(),d&&s.push(...n.flatMap(m=>r.map(p=>i(d,m,p))))},{immediate:!0,flush:"post"}),f=()=>{c(),u()};return x(f),f}function je(e,t,n={}){const{window:r=P,ignore:o=[],capture:s=!0,detectIframe:u=!1}=n;if(!r)return;let i=!0,c;const f=a=>o.some(l=>{if(typeof l=="string")return Array.from(r.document.querySelectorAll(l)).some(v=>v===a.target||a.composedPath().includes(v));{const v=_(l);return v&&(a.target===v||a.composedPath().includes(v))}}),d=a=>{r.clearTimeout(c);const l=_(e);if(!(!l||l===a.target||a.composedPath().includes(l))){if(a.detail===0&&(i=!f(a)),!i){i=!0;return}t(a)}},m=[y(r,"click",d,{passive:!0,capture:s}),y(r,"pointerdown",a=>{const l=_(e);l&&(i=!a.composedPath().includes(l)&&!f(a))},{passive:!0}),y(r,"pointerup",a=>{if(a.button===0){const l=a.composedPath();a.composedPath=()=>l,c=r.setTimeout(()=>d(a),50)}},{passive:!0}),u&&y(r,"blur",a=>{var l;const v=_(e);((l=r.document.activeElement)==null?void 0:l.tagName)==="IFRAME"&&!(v!=null&&v.contains(r.document.activeElement))&&t(a)})].filter(Boolean);return()=>m.forEach(a=>a())}function fe(e,t=!1){const n=O(),r=()=>n.value=Boolean(e());return r(),C(r,t),n}function de(e){return JSON.parse(JSON.stringify(e))}const $=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},j="__vueuse_ssr_handlers__";$[j]=$[j]||{};$[j];function xe(e,t,{window:n=P,initialValue:r=""}={}){const o=O(r),s=B(()=>{var u;return _(t)||((u=n==null?void 0:n.document)==null?void 0:u.documentElement)});return b([s,()=>w(e)],([u,i])=>{var c;if(u&&n){const f=(c=n.getComputedStyle(u).getPropertyValue(i))==null?void 0:c.trim();o.value=f||r}},{immediate:!0}),b(o,u=>{var i;(i=s.value)!=null&&i.style&&s.value.style.setProperty(w(e),u)}),o}function Ce({document:e=ce}={}){if(!e)return O("visible");const t=O(e.visibilityState);return y(e,"visibilitychange",()=>{t.value=e.visibilityState}),t}var R=Object.getOwnPropertySymbols,pe=Object.prototype.hasOwnProperty,ve=Object.prototype.propertyIsEnumerable,me=(e,t)=>{var n={};for(var r in e)pe.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&R)for(var r of R(e))t.indexOf(r)<0&&ve.call(e,r)&&(n[r]=e[r]);return n};function Oe(e,t,n={}){const r=n,{window:o=P}=r,s=me(r,["window"]);let u;const i=fe(()=>o&&"ResizeObserver"in o),c=()=>{u&&(u.disconnect(),u=void 0)},f=b(()=>_(e),m=>{c(),i.value&&o&&m&&(u=new ResizeObserver(t),u.observe(m,s))},{immediate:!0,flush:"post"}),d=()=>{c(),f()};return x(d),{isSupported:i,stop:d}}function Fe(e,t={}){const{reset:n=!0,windowResize:r=!0,windowScroll:o=!0,immediate:s=!0}=t,u=O(0),i=O(0),c=O(0),f=O(0),d=O(0),m=O(0),p=O(0),a=O(0);function l(){const v=_(e);if(!v){n&&(u.value=0,i.value=0,c.value=0,f.value=0,d.value=0,m.value=0,p.value=0,a.value=0);return}const h=v.getBoundingClientRect();u.value=h.height,i.value=h.bottom,c.value=h.left,f.value=h.right,d.value=h.top,m.value=h.width,p.value=h.x,a.value=h.y}return Oe(e,l),b(()=>_(e),v=>!v&&l()),o&&y("scroll",l,{capture:!0,passive:!0}),r&&y("resize",l,{passive:!0}),C(()=>{s&&l()}),{height:u,bottom:i,left:c,right:f,top:d,width:m,x:p,y:a,update:l}}var A;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(A||(A={}));var he=Object.defineProperty,W=Object.getOwnPropertySymbols,ye=Object.prototype.hasOwnProperty,_e=Object.prototype.propertyIsEnumerable,V=(e,t,n)=>t in e?he(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,be=(e,t)=>{for(var n in t||(t={}))ye.call(t,n)&&V(e,n,t[n]);if(W)for(var n of W(t))_e.call(t,n)&&V(e,n,t[n]);return e};const ge={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]};be({linear:ae},ge);function Ne(e,t,n,r={}){var o,s,u;const{clone:i=!1,passive:c=!1,eventName:f,deep:d=!1,defaultValue:m}=r,p=Q(),a=n||(p==null?void 0:p.emit)||((o=p==null?void 0:p.$emit)==null?void 0:o.bind(p))||((u=(s=p==null?void 0:p.proxy)==null?void 0:s.$emit)==null?void 0:u.bind(p==null?void 0:p.proxy));let l=f;t||(t="modelValue"),l=f||l||`update:${t.toString()}`;const v=g=>i?oe(i)?i(g):de(g):g,h=()=>re(e[t])?v(e[t]):m;if(c){const g=h(),T=O(g);return b(()=>e[t],E=>T.value=v(E)),b(T,E=>{(E!==e[t]||d)&&a(l,E)},{deep:d}),T}else return B({get(){return h()},set(g){a(l,g)}})}function De({window:e=P}={}){if(!e)return O(!1);const t=O(e.document.hasFocus());return y(e,"blur",()=>{t.value=!1}),y(e,"focus",()=>{t.value=!0}),t}function Re(e={}){const{window:t=P,initialWidth:n=1/0,initialHeight:r=1/0,listenOrientation:o=!0,includeScrollbar:s=!0}=e,u=O(n),i=O(r),c=()=>{t&&(s?(u.value=t.innerWidth,i.value=t.innerHeight):(u.value=t.document.documentElement.clientWidth,i.value=t.document.documentElement.clientHeight))};return c(),C(c),y("resize",c,{passive:!0}),o&&y("orientationchange",c,{passive:!0}),{width:u,height:i}}export{Ee as a,Ie as b,Re as c,Fe as d,y as e,Oe as f,Te as g,xe as h,S as i,$e as j,Ce as k,De as l,Pe as m,Ne as n,je as o,Se as r,x as t,_ as u}; diff --git a/src/main/resources/html/lc/assets/@vueuse-legacy-d0edfa3e.js b/src/main/resources/html/lc/assets/@vueuse-legacy-c8e81244.js similarity index 99% rename from src/main/resources/html/lc/assets/@vueuse-legacy-d0edfa3e.js rename to src/main/resources/html/lc/assets/@vueuse-legacy-c8e81244.js index e6ee149..61744a5 100644 --- a/src/main/resources/html/lc/assets/@vueuse-legacy-d0edfa3e.js +++ b/src/main/resources/html/lc/assets/@vueuse-legacy-c8e81244.js @@ -1 +1 @@ -System.register(["./@vue-legacy-6c3c82af.js"],(function(e,t){"use strict";var n,o,i,r,u,a,l,s,c,d,v,f;return{setters:[e=>{n=e.s,o=e.w,i=e.r,r=e.u,u=e.g,a=e.e,l=e.f,s=e.h,c=e.j,d=e.k,v=e.n,f=e.l}],execute:function(){e({c:function(e={}){const{window:t=A,initialWidth:n=1/0,initialHeight:o=1/0,listenOrientation:i=!0,includeScrollbar:r=!0}=e,u=l(n),a=l(o),s=()=>{t&&(r?(u.value=t.innerWidth,a.value=t.innerHeight):(u.value=t.document.documentElement.clientWidth,a.value=t.document.documentElement.clientHeight))};return s(),S(s),N("resize",s,{passive:!0}),i&&N("orientationchange",s,{passive:!0}),{width:u,height:a}},d:function(e,t={}){const{reset:n=!0,windowResize:o=!0,windowScroll:i=!0,immediate:r=!0}=t,u=l(0),a=l(0),c=l(0),d=l(0),v=l(0),f=l(0),p=l(0),m=l(0);function y(){const t=T(e);if(!t)return void(n&&(u.value=0,a.value=0,c.value=0,d.value=0,v.value=0,f.value=0,p.value=0,m.value=0));const o=t.getBoundingClientRect();u.value=o.height,a.value=o.bottom,c.value=o.left,d.value=o.right,v.value=o.top,f.value=o.width,p.value=o.x,m.value=o.y}return _(e,y),s((()=>T(e)),(e=>!e&&y())),i&&N("scroll",y,{capture:!0,passive:!0}),o&&N("resize",y,{passive:!0}),S((()=>{r&&y()})),{height:u,bottom:a,left:c,right:d,top:v,width:f,x:p,y:m,update:y}},e:N,f:_,g:function(e,t=200,n=!1,o=!0,i=!1){return E(function(e,t=!0,n=!0,o=!1){let i,r,u=0,a=!0,l=P;const s=()=>{i&&(clearTimeout(i),i=void 0,l(),l=P)},c=c=>{const d=I(e),v=Date.now()-u,f=()=>r=c();if(s(),d<=0)return u=Date.now(),f();if(v>d&&(n||!a))u=Date.now(),f();else if(t)return new Promise(((e,t)=>{l=o?t:e,i=setTimeout((()=>{u=Date.now(),a=!0,e(f()),s()}),d-v)}));return n||i||(i=setTimeout((()=>a=!0),d)),a=!1,r};return c}(t,n,o,i),e)},h:function(e,t,{window:n=A,initialValue:o=""}={}){const i=l(o),r=f((()=>{var e;return T(t)||(null==(e=null==n?void 0:n.document)?void 0:e.documentElement)}));return s([r,()=>I(e)],(([e,t])=>{var r;if(e&&n){const u=null==(r=n.getComputedStyle(e).getPropertyValue(t))?void 0:r.trim();i.value=u||o}}),{immediate:!0}),s(i,(t=>{var n;(null==(n=r.value)?void 0:n.style)&&r.value.style.setProperty(I(e),t)})),i},j:function(e,t,n={}){const{immediate:o=!0}=n,i=l(!1);let r=null;function u(){r&&(clearTimeout(r),r=null)}function a(){i.value=!1,u()}function s(...n){u(),i.value=!0,r=setTimeout((()=>{i.value=!1,r=null,e(...n)}),I(t))}return o&&(i.value=!0,g&&s()),j(a),{isPending:i,start:s,stop:a}},k:function({document:e=x}={}){if(!e)return l("visible");const t=l(e.visibilityState);return N(e,"visibilitychange",(()=>{t.value=e.visibilityState})),t},l:function({window:e=A}={}){if(!e)return l(!1);const t=l(e.document.hasFocus());return N(e,"blur",(()=>{t.value=!1})),N(e,"focus",(()=>{t.value=!0})),t},m:function(e,t){var r;const u=n();return o((()=>{u.value=e()}),(a=((e,t)=>{for(var n in t||(t={}))b.call(t,n)&&O(e,n,t[n]);if(w)for(var n of w(t))h.call(t,n)&&O(e,n,t[n]);return e})({},t),l={flush:null!=(r=null==t?void 0:t.flush)?r:"sync"},m(a,y(l)))),i(u);var a,l},n:function(e,t,n,o={}){var i,r,u;const{clone:a=!1,passive:d=!1,eventName:v,deep:p=!1,defaultValue:m}=o,y=c(),w=n||(null==y?void 0:y.emit)||(null==(i=null==y?void 0:y.$emit)?void 0:i.bind(y))||(null==(u=null==(r=null==y?void 0:y.proxy)?void 0:r.$emit)?void 0:u.bind(null==y?void 0:y.proxy));let b=v;t||(t="modelValue"),b=v||b||`update:${t.toString()}`;const h=e=>{return a?(e=>"function"==typeof e)(a)?a(e):(t=e,JSON.parse(JSON.stringify(t))):e;var t},O=()=>void 0!==e[t]?h(e[t]):m;if(d){const n=O(),o=l(n);return s((()=>e[t]),(e=>o.value=h(e))),s(o,(n=>{(n!==e[t]||p)&&w(b,n)}),{deep:p}),o}return f({get:()=>O(),set(e){w(b,e)}})},o:function(e,t,n={}){const{window:o=A,ignore:i=[],capture:r=!0,detectIframe:u=!1}=n;if(!o)return;let a,l=!0;const s=e=>i.some((t=>{if("string"==typeof t)return Array.from(o.document.querySelectorAll(t)).some((t=>t===e.target||e.composedPath().includes(t)));{const n=T(t);return n&&(e.target===n||e.composedPath().includes(n))}})),c=n=>{o.clearTimeout(a);const i=T(e);i&&i!==n.target&&!n.composedPath().includes(i)&&(0===n.detail&&(l=!s(n)),l?t(n):l=!0)},d=[N(o,"click",c,{passive:!0,capture:r}),N(o,"pointerdown",(t=>{const n=T(e);n&&(l=!t.composedPath().includes(n)&&!s(t))}),{passive:!0}),N(o,"pointerup",(e=>{if(0===e.button){const t=e.composedPath();e.composedPath=()=>t,a=o.setTimeout((()=>c(e)),50)}}),{passive:!0}),u&&N(o,"blur",(n=>{var i;const r=T(e);"IFRAME"!==(null==(i=o.document.activeElement)?void 0:i.tagName)||(null==r?void 0:r.contains(o.document.activeElement))||t(n)}))].filter(Boolean);return()=>d.forEach((e=>e()))},r:function(e,t=200,n={}){const o=l(e.value),i=function(e,t=200,n={}){return E(function(e,t={}){let n,o,i=P;const r=e=>{clearTimeout(e),i(),i=P},u=u=>{const a=I(e),l=I(t.maxWait);return n&&r(n),a<=0||void 0!==l&&l<=0?(o&&(r(o),o=null),Promise.resolve(u())):new Promise(((e,s)=>{i=t.rejectOnCancel?s:e,l&&!o&&(o=setTimeout((()=>{n&&r(n),o=null,e(u())}),l)),n=setTimeout((()=>{o&&r(o),o=null,e(u())}),a)}))};return u}(t,n),e)}((()=>{o.value=e.value}),t,n);return s(e,(()=>i())),o},t:j,u:T});var t,p=Object.defineProperty,m=Object.defineProperties,y=Object.getOwnPropertyDescriptors,w=Object.getOwnPropertySymbols,b=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,O=(e,t,n)=>t in e?p(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const g=e("i","undefined"!=typeof window),P=(e("b",(e=>"boolean"==typeof e)),e("a",(e=>"number"==typeof e)),()=>{});function I(e){return"function"==typeof e?e():r(e)}function E(e,t){return function(...n){return new Promise(((o,i)=>{Promise.resolve(e((()=>t.apply(this,n)),{fn:t,thisArg:this,args:n})).then(o).catch(i)}))}}function j(e){return!!u()&&(a(e),!0)}function S(e,t=!0){c()?d(e):t?e():v(e)}function T(e){var t;const n=I(e);return null!=(t=null==n?void 0:n.$el)?t:n}g&&(null==(t=null==window?void 0:window.navigator)?void 0:t.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);const A=g?window:void 0,x=g?window.document:void 0;function N(...e){let t,n,o,i;if("string"==typeof e[0]||Array.isArray(e[0])?([n,o,i]=e,t=A):[t,n,o,i]=e,!t)return P;Array.isArray(n)||(n=[n]),Array.isArray(o)||(o=[o]);const r=[],u=()=>{r.forEach((e=>e())),r.length=0},a=s((()=>T(t)),(e=>{u(),e&&r.push(...n.flatMap((t=>o.map((n=>((e,t,n)=>(e.addEventListener(t,n,i),()=>e.removeEventListener(t,n,i)))(e,t,n))))))}),{immediate:!0,flush:"post"}),l=()=>{a(),u()};return j(l),l}const C="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},Q="__vueuse_ssr_handlers__";C[Q]=C[Q]||{},C[Q];var D,R,k=Object.getOwnPropertySymbols,B=Object.prototype.hasOwnProperty,W=Object.prototype.propertyIsEnumerable;function _(e,t,n={}){const o=n,{window:i=A}=o,r=((e,t)=>{var n={};for(var o in e)B.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&&W.call(e,o)&&(n[o]=e[o]);return n})(o,["window"]);let u;const a=function(e,t=!1){const n=l(),o=()=>n.value=Boolean(e());return o(),S(o,t),n}((()=>i&&"ResizeObserver"in i)),c=()=>{u&&(u.disconnect(),u=void 0)},d=s((()=>T(e)),(e=>{c(),a.value&&i&&e&&(u=new ResizeObserver(t),u.observe(e,r))}),{immediate:!0,flush:"post"}),v=()=>{c(),d()};return j(v),{isSupported:a,stop:v}}(R=D||(D={})).UP="UP",R.RIGHT="RIGHT",R.DOWN="DOWN",R.LEFT="LEFT",R.NONE="NONE";var z=Object.defineProperty,H=Object.getOwnPropertySymbols,F=Object.prototype.hasOwnProperty,L=Object.prototype.propertyIsEnumerable,V=(e,t,n)=>t in e?z(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;((e,t)=>{for(var n in t||(t={}))F.call(t,n)&&V(e,n,t[n]);if(H)for(var n of H(t))L.call(t,n)&&V(e,n,t[n])})({linear:function(e){return e}},{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]})}}})); +System.register(["./@vue-legacy-4de3d5b5.js"],(function(e,t){"use strict";var n,o,i,r,u,a,l,s,c,d,v,f;return{setters:[e=>{n=e.s,o=e.w,i=e.r,r=e.u,u=e.g,a=e.e,l=e.f,s=e.h,c=e.j,d=e.k,v=e.n,f=e.l}],execute:function(){e({c:function(e={}){const{window:t=A,initialWidth:n=1/0,initialHeight:o=1/0,listenOrientation:i=!0,includeScrollbar:r=!0}=e,u=l(n),a=l(o),s=()=>{t&&(r?(u.value=t.innerWidth,a.value=t.innerHeight):(u.value=t.document.documentElement.clientWidth,a.value=t.document.documentElement.clientHeight))};return s(),S(s),N("resize",s,{passive:!0}),i&&N("orientationchange",s,{passive:!0}),{width:u,height:a}},d:function(e,t={}){const{reset:n=!0,windowResize:o=!0,windowScroll:i=!0,immediate:r=!0}=t,u=l(0),a=l(0),c=l(0),d=l(0),v=l(0),f=l(0),p=l(0),m=l(0);function y(){const t=T(e);if(!t)return void(n&&(u.value=0,a.value=0,c.value=0,d.value=0,v.value=0,f.value=0,p.value=0,m.value=0));const o=t.getBoundingClientRect();u.value=o.height,a.value=o.bottom,c.value=o.left,d.value=o.right,v.value=o.top,f.value=o.width,p.value=o.x,m.value=o.y}return _(e,y),s((()=>T(e)),(e=>!e&&y())),i&&N("scroll",y,{capture:!0,passive:!0}),o&&N("resize",y,{passive:!0}),S((()=>{r&&y()})),{height:u,bottom:a,left:c,right:d,top:v,width:f,x:p,y:m,update:y}},e:N,f:_,g:function(e,t=200,n=!1,o=!0,i=!1){return E(function(e,t=!0,n=!0,o=!1){let i,r,u=0,a=!0,l=P;const s=()=>{i&&(clearTimeout(i),i=void 0,l(),l=P)},c=c=>{const d=I(e),v=Date.now()-u,f=()=>r=c();if(s(),d<=0)return u=Date.now(),f();if(v>d&&(n||!a))u=Date.now(),f();else if(t)return new Promise(((e,t)=>{l=o?t:e,i=setTimeout((()=>{u=Date.now(),a=!0,e(f()),s()}),d-v)}));return n||i||(i=setTimeout((()=>a=!0),d)),a=!1,r};return c}(t,n,o,i),e)},h:function(e,t,{window:n=A,initialValue:o=""}={}){const i=l(o),r=f((()=>{var e;return T(t)||(null==(e=null==n?void 0:n.document)?void 0:e.documentElement)}));return s([r,()=>I(e)],(([e,t])=>{var r;if(e&&n){const u=null==(r=n.getComputedStyle(e).getPropertyValue(t))?void 0:r.trim();i.value=u||o}}),{immediate:!0}),s(i,(t=>{var n;(null==(n=r.value)?void 0:n.style)&&r.value.style.setProperty(I(e),t)})),i},j:function(e,t,n={}){const{immediate:o=!0}=n,i=l(!1);let r=null;function u(){r&&(clearTimeout(r),r=null)}function a(){i.value=!1,u()}function s(...n){u(),i.value=!0,r=setTimeout((()=>{i.value=!1,r=null,e(...n)}),I(t))}return o&&(i.value=!0,g&&s()),j(a),{isPending:i,start:s,stop:a}},k:function({document:e=x}={}){if(!e)return l("visible");const t=l(e.visibilityState);return N(e,"visibilitychange",(()=>{t.value=e.visibilityState})),t},l:function({window:e=A}={}){if(!e)return l(!1);const t=l(e.document.hasFocus());return N(e,"blur",(()=>{t.value=!1})),N(e,"focus",(()=>{t.value=!0})),t},m:function(e,t){var r;const u=n();return o((()=>{u.value=e()}),(a=((e,t)=>{for(var n in t||(t={}))b.call(t,n)&&O(e,n,t[n]);if(w)for(var n of w(t))h.call(t,n)&&O(e,n,t[n]);return e})({},t),l={flush:null!=(r=null==t?void 0:t.flush)?r:"sync"},m(a,y(l)))),i(u);var a,l},n:function(e,t,n,o={}){var i,r,u;const{clone:a=!1,passive:d=!1,eventName:v,deep:p=!1,defaultValue:m}=o,y=c(),w=n||(null==y?void 0:y.emit)||(null==(i=null==y?void 0:y.$emit)?void 0:i.bind(y))||(null==(u=null==(r=null==y?void 0:y.proxy)?void 0:r.$emit)?void 0:u.bind(null==y?void 0:y.proxy));let b=v;t||(t="modelValue"),b=v||b||`update:${t.toString()}`;const h=e=>{return a?(e=>"function"==typeof e)(a)?a(e):(t=e,JSON.parse(JSON.stringify(t))):e;var t},O=()=>void 0!==e[t]?h(e[t]):m;if(d){const n=O(),o=l(n);return s((()=>e[t]),(e=>o.value=h(e))),s(o,(n=>{(n!==e[t]||p)&&w(b,n)}),{deep:p}),o}return f({get:()=>O(),set(e){w(b,e)}})},o:function(e,t,n={}){const{window:o=A,ignore:i=[],capture:r=!0,detectIframe:u=!1}=n;if(!o)return;let a,l=!0;const s=e=>i.some((t=>{if("string"==typeof t)return Array.from(o.document.querySelectorAll(t)).some((t=>t===e.target||e.composedPath().includes(t)));{const n=T(t);return n&&(e.target===n||e.composedPath().includes(n))}})),c=n=>{o.clearTimeout(a);const i=T(e);i&&i!==n.target&&!n.composedPath().includes(i)&&(0===n.detail&&(l=!s(n)),l?t(n):l=!0)},d=[N(o,"click",c,{passive:!0,capture:r}),N(o,"pointerdown",(t=>{const n=T(e);n&&(l=!t.composedPath().includes(n)&&!s(t))}),{passive:!0}),N(o,"pointerup",(e=>{if(0===e.button){const t=e.composedPath();e.composedPath=()=>t,a=o.setTimeout((()=>c(e)),50)}}),{passive:!0}),u&&N(o,"blur",(n=>{var i;const r=T(e);"IFRAME"!==(null==(i=o.document.activeElement)?void 0:i.tagName)||(null==r?void 0:r.contains(o.document.activeElement))||t(n)}))].filter(Boolean);return()=>d.forEach((e=>e()))},r:function(e,t=200,n={}){const o=l(e.value),i=function(e,t=200,n={}){return E(function(e,t={}){let n,o,i=P;const r=e=>{clearTimeout(e),i(),i=P},u=u=>{const a=I(e),l=I(t.maxWait);return n&&r(n),a<=0||void 0!==l&&l<=0?(o&&(r(o),o=null),Promise.resolve(u())):new Promise(((e,s)=>{i=t.rejectOnCancel?s:e,l&&!o&&(o=setTimeout((()=>{n&&r(n),o=null,e(u())}),l)),n=setTimeout((()=>{o&&r(o),o=null,e(u())}),a)}))};return u}(t,n),e)}((()=>{o.value=e.value}),t,n);return s(e,(()=>i())),o},t:j,u:T});var t,p=Object.defineProperty,m=Object.defineProperties,y=Object.getOwnPropertyDescriptors,w=Object.getOwnPropertySymbols,b=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,O=(e,t,n)=>t in e?p(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const g=e("i","undefined"!=typeof window),P=(e("b",(e=>"boolean"==typeof e)),e("a",(e=>"number"==typeof e)),()=>{});function I(e){return"function"==typeof e?e():r(e)}function E(e,t){return function(...n){return new Promise(((o,i)=>{Promise.resolve(e((()=>t.apply(this,n)),{fn:t,thisArg:this,args:n})).then(o).catch(i)}))}}function j(e){return!!u()&&(a(e),!0)}function S(e,t=!0){c()?d(e):t?e():v(e)}function T(e){var t;const n=I(e);return null!=(t=null==n?void 0:n.$el)?t:n}g&&(null==(t=null==window?void 0:window.navigator)?void 0:t.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);const A=g?window:void 0,x=g?window.document:void 0;function N(...e){let t,n,o,i;if("string"==typeof e[0]||Array.isArray(e[0])?([n,o,i]=e,t=A):[t,n,o,i]=e,!t)return P;Array.isArray(n)||(n=[n]),Array.isArray(o)||(o=[o]);const r=[],u=()=>{r.forEach((e=>e())),r.length=0},a=s((()=>T(t)),(e=>{u(),e&&r.push(...n.flatMap((t=>o.map((n=>((e,t,n)=>(e.addEventListener(t,n,i),()=>e.removeEventListener(t,n,i)))(e,t,n))))))}),{immediate:!0,flush:"post"}),l=()=>{a(),u()};return j(l),l}const C="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},Q="__vueuse_ssr_handlers__";C[Q]=C[Q]||{},C[Q];var D,R,k=Object.getOwnPropertySymbols,B=Object.prototype.hasOwnProperty,W=Object.prototype.propertyIsEnumerable;function _(e,t,n={}){const o=n,{window:i=A}=o,r=((e,t)=>{var n={};for(var o in e)B.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&&W.call(e,o)&&(n[o]=e[o]);return n})(o,["window"]);let u;const a=function(e,t=!1){const n=l(),o=()=>n.value=Boolean(e());return o(),S(o,t),n}((()=>i&&"ResizeObserver"in i)),c=()=>{u&&(u.disconnect(),u=void 0)},d=s((()=>T(e)),(e=>{c(),a.value&&i&&e&&(u=new ResizeObserver(t),u.observe(e,r))}),{immediate:!0,flush:"post"}),v=()=>{c(),d()};return j(v),{isSupported:a,stop:v}}(R=D||(D={})).UP="UP",R.RIGHT="RIGHT",R.DOWN="DOWN",R.LEFT="LEFT",R.NONE="NONE";var z=Object.defineProperty,H=Object.getOwnPropertySymbols,F=Object.prototype.hasOwnProperty,L=Object.prototype.propertyIsEnumerable,V=(e,t,n)=>t in e?z(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;((e,t)=>{for(var n in t||(t={}))F.call(t,n)&&V(e,n,t[n]);if(H)for(var n of H(t))L.call(t,n)&&V(e,n,t[n])})({linear:function(e){return e}},{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]})}}})); diff --git a/src/main/resources/html/lc/assets/@wangeditor-61a2cfac.js b/src/main/resources/html/lc/assets/@wangeditor-61a2cfac.js new file mode 100644 index 0000000..59c467d --- /dev/null +++ b/src/main/resources/html/lc/assets/@wangeditor-61a2cfac.js @@ -0,0 +1,183 @@ +import{m as eP,f as d4,s as Qz,k as t$,h as e$,w as n$,t as r$,o as nP,c as rP}from"./@vue-5dd246aa.js";var se=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function o$(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function as(t){var e={exports:{}};return t(e,e.exports),e.exports}var yi,M0,Bh=function(t){return t&&t.Math==Math&&t},kt=Bh(typeof globalThis=="object"&&globalThis)||Bh(typeof window=="object"&&window)||Bh(typeof self=="object"&&self)||Bh(typeof se=="object"&&se)||function(){return this}()||Function("return this")(),X3=Function.prototype,fS=X3.apply,i$=X3.bind,dS=X3.call,oP=typeof Reflect=="object"&&Reflect.apply||(i$?dS.bind(fS):function(){return dS.apply(fS,arguments)}),iP=Function.prototype,p4=iP.bind,h4=iP.call,a$=p4&&p4.bind(h4),ge=p4?function(t){return t&&a$(h4,t)}:function(t){return t&&function(){return h4.apply(t,arguments)}},sn=function(t){return typeof t=="function"},Gn=function(t){try{return!!t()}catch(e){return!0}},Hn=!Gn(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!=7}),Oc=Function.prototype.call,zn=Oc.bind?Oc.bind(Oc):function(){return Oc.apply(Oc,arguments)},pS={}.propertyIsEnumerable,hS=Object.getOwnPropertyDescriptor,u$=hS&&!pS.call({1:2},1)?function(t){var e=hS(this,t);return!!e&&e.enumerable}:pS,Z3={f:u$},Yr=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},s$=ge({}.toString),l$=ge("".slice),Eu=function(t){return l$(s$(t),8,-1)},zy=kt.Object,c$=ge("".split),aP=Gn(function(){return!zy("z").propertyIsEnumerable(0)})?function(t){return Eu(t)=="String"?c$(t,""):zy(t)}:zy,f$=kt.TypeError,J3=function(t){if(t==null)throw f$("Can't call method on "+t);return t},Po=function(t){return aP(J3(t))},tr=function(t){return typeof t=="object"?t!==null:sn(t)},Qn={},gS=function(t){return sn(t)?t:void 0},rc=function(t,e){return arguments.length<2?gS(Qn[t])||gS(kt[t]):Qn[t]&&Qn[t][e]||kt[t]&&kt[t][e]},Td=ge({}.isPrototypeOf),$y=rc("navigator","userAgent")||"",vS=kt.process,yS=kt.Deno,mS=vS&&vS.versions||yS&&yS.version,bS=mS&&mS.v8;bS&&(M0=(yi=bS.split("."))[0]>0&&yi[0]<4?1:+(yi[0]+yi[1])),!M0&&$y&&(!(yi=$y.match(/Edge\/(\d+)/))||yi[1]>=74)&&(yi=$y.match(/Chrome\/(\d+)/))&&(M0=+yi[1]);var Fh,bg=M0,po=!!Object.getOwnPropertySymbols&&!Gn(function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&bg&&bg<41}),Q3=po&&!Symbol.sham&&typeof Symbol.iterator=="symbol",d$=kt.Object,pl=Q3?function(t){return typeof t=="symbol"}:function(t){var e=rc("Symbol");return sn(e)&&Td(e.prototype,d$(t))},p$=kt.String,g4=function(t){try{return p$(t)}catch(e){return"Object"}},h$=kt.TypeError,t5=function(t){if(sn(t))return t;throw h$(g4(t)+" is not a function")},wg=function(t,e){var n=t[e];return n==null?void 0:t5(n)},g$=kt.TypeError,v$=Object.defineProperty,ta=kt["__core-js_shared__"]||function(t,e){try{v$(kt,t,{value:e,configurable:!0,writable:!0})}catch(n){kt[t]=e}return e}("__core-js_shared__",{}),us=as(function(t){(t.exports=function(e,n){return ta[e]||(ta[e]=n!==void 0?n:{})})("versions",[]).push({version:"3.19.3",mode:"pure",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})}),y$=kt.Object,Bp=function(t){return y$(J3(t))},m$=ge({}.hasOwnProperty),Vt=Object.hasOwn||function(t,e){return m$(Bp(t),e)},b$=0,w$=Math.random(),E$=ge(1 .toString),Eg=function(t){return"Symbol("+(t===void 0?"":t)+")_"+E$(++b$+w$,36)},kc=us("wks"),Du=kt.Symbol,wS=Du&&Du.for,D$=Q3?Du:Du&&Du.withoutSetter||Eg,Bn=function(t){if(!Vt(kc,t)||!po&&typeof kc[t]!="string"){var e="Symbol."+t;po&&Vt(Du,t)?kc[t]=Du[t]:kc[t]=Q3&&wS?wS(e):D$(e)}return kc[t]},C$=kt.TypeError,S$=Bn("toPrimitive"),x$=function(t,e){if(!tr(t)||pl(t))return t;var n,r=wg(t,S$);if(r){if(e===void 0&&(e="default"),n=zn(r,t,e),!tr(n)||pl(n))return n;throw C$("Can't convert object to primitive value")}return e===void 0&&(e="number"),function(o,i){var a,u;if(i==="string"&&sn(a=o.toString)&&!tr(u=zn(a,o))||sn(a=o.valueOf)&&!tr(u=zn(a,o))||i!=="string"&&sn(a=o.toString)&&!tr(u=zn(a,o)))return u;throw g$("Can't convert object to primitive value")}(t,e)},oc=function(t){var e=x$(t,"string");return pl(e)?e:e+""},v4=kt.document,A$=tr(v4)&&tr(v4.createElement),uP=function(t){return A$?v4.createElement(t):{}},sP=!Hn&&!Gn(function(){return Object.defineProperty(uP("div"),"a",{get:function(){return 7}}).a!=7}),ES=Object.getOwnPropertyDescriptor,O$=Hn?ES:function(t,e){if(t=Po(t),e=oc(e),sP)try{return ES(t,e)}catch(n){}if(Vt(t,e))return Yr(!zn(Z3.f,t,e),t[e])},T1={f:O$},k$=/#|\.prototype\./,Fp=function(t,e){var n=F$[B$(t)];return n==_$||n!=T$&&(sn(e)?Gn(e):!!e)},B$=Fp.normalize=function(t){return String(t).replace(k$,".").toLowerCase()},F$=Fp.data={},T$=Fp.NATIVE="N",_$=Fp.POLYFILL="P",P$=Fp,DS=ge(ge.bind),e5=function(t,e){return t5(t),e===void 0?t:DS?DS(t,e):function(){return t.apply(e,arguments)}},j$=kt.String,N$=kt.TypeError,ar=function(t){if(tr(t))return t;throw N$(j$(t)+" is not an object")},I$=kt.TypeError,CS=Object.defineProperty,L$=Hn?CS:function(t,e,n){if(ar(t),e=oc(e),ar(n),sP)try{return CS(t,e,n)}catch(r){}if("get"in n||"set"in n)throw I$("Accessors not supported");return"value"in n&&(t[e]=n.value),t},ja={f:L$},_n=Hn?function(t,e,n){return ja.f(t,e,Yr(1,n))}:function(t,e,n){return t[e]=n,t},R$=T1.f,M$=function(t){var e=function(n,r,o){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(n);case 2:return new t(n,r)}return new t(n,r,o)}return oP(t,this,arguments)};return e.prototype=t.prototype,e},qo=function(t,e){var n,r,o,i,a,u,s,l,c=t.target,f=t.global,p=t.stat,d=t.proto,y=f?kt:p?kt[c]:(kt[c]||{}).prototype,g=f?Qn:Qn[c]||_n(Qn,c,{})[c],v=g.prototype;for(o in e)n=!P$(f?o:c+(p?".":"#")+o,t.forced)&&y&&Vt(y,o),a=g[o],n&&(u=t.noTargetGet?(l=R$(y,o))&&l.value:y[o]),i=n&&u?u:e[o],n&&typeof a==typeof i||(s=t.bind&&n?e5(i,kt):t.wrap&&n?M$(i):d&&sn(i)?ge(i):i,(t.sham||i&&i.sham||a&&a.sham)&&_n(s,"sham",!0),_n(g,o,s),d&&(Vt(Qn,r=c+"Prototype")||_n(Qn,r,{}),_n(Qn[r],o,i),t.real&&v&&!v[o]&&_n(v,o,i)))},SS=us("keys"),_1=function(t){return SS[t]||(SS[t]=Eg(t))},z$=!Gn(function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}),xS=_1("IE_PROTO"),y4=kt.Object,$$=y4.prototype,Dg=z$?y4.getPrototypeOf:function(t){var e=Bp(t);if(Vt(e,xS))return e[xS];var n=e.constructor;return sn(n)&&e instanceof n?n.prototype:e instanceof y4?$$:null},H$=kt.String,V$=kt.TypeError,Cg=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=ge(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),e=n instanceof Array}catch(r){}return function(r,o){return ar(r),function(i){if(typeof i=="object"||sn(i))return i;throw V$("Can't set "+H$(i)+" as a prototype")}(o),e?t(r,o):r.__proto__=o,r}}():void 0),U$=Math.ceil,W$=Math.floor,n5=function(t){var e=+t;return e!=e||e===0?0:(e>0?W$:U$)(e)},G$=Math.max,q$=Math.min,m4=function(t,e){var n=n5(t);return n<0?G$(n+e,0):q$(n,e)},K$=Math.min,Tp=function(t){return(e=t.length)>0?K$(n5(e),9007199254740991):0;var e},AS=function(t){return function(e,n,r){var o,i=Po(e),a=Tp(i),u=m4(r,a);if(t&&n!=n){for(;a>u;)if((o=i[u++])!=o)return!0}else for(;a>u;u++)if((t||u in i)&&i[u]===n)return t||u||0;return!t&&-1}},Y$={includes:AS(!0),indexOf:AS(!1)},_p={},X$=Y$.indexOf,OS=ge([].push),lP=function(t,e){var n,r=Po(t),o=0,i=[];for(n in r)!Vt(_p,n)&&Vt(r,n)&&OS(i,n);for(;e.length>o;)Vt(r,n=e[o++])&&(~X$(i,n)||OS(i,n));return i},Sg=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Z$=Sg.concat("length","prototype"),J$=Object.getOwnPropertyNames||function(t){return lP(t,Z$)},r5={f:J$},z0={f:Object.getOwnPropertySymbols},Q$=ge([].concat),tH=rc("Reflect","ownKeys")||function(t){var e=r5.f(ar(t)),n=z0.f;return n?Q$(e,n(t)):e},o5=Object.keys||function(t){return lP(t,Sg)},eH=Hn?Object.defineProperties:function(t,e){ar(t);for(var n,r=Po(e),o=o5(e),i=o.length,a=0;i>a;)ja.f(t,n=o[a++],r[n]);return t},nH=rc("document","documentElement"),cP=_1("IE_PROTO"),Hy=function(){},fP=function(t){return" - - + + + + + + - + - - + + - + + - + - - + + - + + @@ -40,7 +45,7 @@
- - + + diff --git a/src/main/resources/templates/service.java.btl b/src/main/resources/templates/service.java.btl index ac06294..fc6f498 100644 --- a/src/main/resources/templates/service.java.btl +++ b/src/main/resources/templates/service.java.btl @@ -1,5 +1,10 @@ package ${package.Service}; +import ${package.Entity}.${entity}; +import com.ydool.common.base.BaseService; +import com.ydool.oa.workFlow.mapper.${entity}Mapper; +import org.springframework.stereotype.Service; + /** *

* ${table.comment!} 服务类 @@ -8,7 +13,8 @@ package ${package.Service}; * @author ${author} * @since ${date} */ -public interface ${table.serviceName} { +@Service +public class ${table.serviceImplName} extends BaseService<${entity}Mapper, ${entity}> { } diff --git a/src/main/resources/templates/serviceImpl.java.btl b/src/main/resources/templates/serviceImpl.java.btl deleted file mode 100644 index 6b5db92..0000000 --- a/src/main/resources/templates/serviceImpl.java.btl +++ /dev/null @@ -1,21 +0,0 @@ -package ${package.ServiceImpl}; - -import ${package.Entity}.${entity}; -import com.ydool.common.base.BaseService; -import com.ydool.staff.mapper.${entity}Mapper; -import com.ydool.staff.service.${table.serviceName}; -import org.springframework.stereotype.Service; - -/** - *

- * ${table.comment!} 服务类 - *

- * - * @author ${author} - * @since ${date} - */ -@Service -public class ${table.serviceImplName} extends BaseService<${entity}Mapper, ${entity}> implements ${table.serviceName} { - -} -